${
- this.getId(chip) === 'tab-context' ?
+ this.getId_(chip) === 'tab-context' ?
html`
})
` :
''}
diff -Nru chromium-143.0.7499.109/chrome/browser/resources/new_tab_page/action_chips/action_chips.ts chromium-143.0.7499.169/chrome/browser/resources/new_tab_page/action_chips/action_chips.ts
--- chromium-143.0.7499.109/chrome/browser/resources/new_tab_page/action_chips/action_chips.ts 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/resources/new_tab_page/action_chips/action_chips.ts 2025-12-17 23:05:18.000000000 +0000
@@ -24,6 +24,25 @@
}
/**
+ * The enum value sent as part of action-chips-retrieval-state-changed.
+ * The handler of the event should expect to receive UPDATED multiple times.
+ */
+export enum ActionChipsRetrievalState {
+ // The initial state. This is not sent as part of the event and can be used as
+ // the default value of a variable containing this enum.
+ INITIAL,
+ // The state used in an event firing when the first and only retrieval
+ // request is sent from this component.
+ REQUESTED,
+ // The state used in events firing when the action chips are updated by a call
+ // from the browser side.
+ UPDATED,
+}
+
+const kActionChipsRetrievalStateChangedEvent =
+ 'action-chips-retrieval-state-changed';
+
+/**
* The element for displaying Action Chips.
*/
export class ActionChipsElement extends CrLitElement {
@@ -65,7 +84,7 @@
}
}
- protected getId(chip: ActionChip): string|null {
+ protected getId_(chip: ActionChip): string|null {
switch (chip.type) {
case ChipType.kImage:
return 'nano-banana';
@@ -91,8 +110,14 @@
this.callbackRouter.onActionChipsChanged.addListener(
(actionChips: ActionChip[]) => {
this.actionChips_ = actionChips;
+ this.fire(
+ kActionChipsRetrievalStateChangedEvent,
+ {state: ActionChipsRetrievalState.UPDATED});
});
this.handler.startActionChipsRetrieval();
+ this.fire(
+ kActionChipsRetrievalStateChangedEvent,
+ {state: ActionChipsRetrievalState.REQUESTED});
}
override disconnectedCallback() {
diff -Nru chromium-143.0.7499.109/chrome/browser/resources/new_tab_page/app.html chromium-143.0.7499.169/chrome/browser/resources/new_tab_page/app.html
--- chromium-143.0.7499.109/chrome/browser/resources/new_tab_page/app.html 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/resources/new_tab_page/app.html 2025-12-17 23:05:18.000000000 +0000
@@ -55,7 +55,7 @@
?ntp-realbox-next-enabled="${this.ntpRealboxNextEnabled_}"
?cycling-placeholders="${this.searchboxCyclingPlaceholders_}"
@searchbox-input-focus-changed="${this.onInputFocusChanged_}"
- ?ntp-next-features-enabled="${this.ntpNextFeaturesEnabled_}">
+ context-menu-glif-animation-state="${this.contextMenuGlifAnimationState_}">
${this.showComposebox_ ? html`
+ @action-chip-click="${this.openComposebox_}"
+ @action-chips-retrieval-state-changed="${this.onActionChipsRetrievalStateChanged_}">
` : ''}
${this.lazyRender_ ? html`
diff -Nru chromium-143.0.7499.109/chrome/browser/resources/new_tab_page/app.ts chromium-143.0.7499.169/chrome/browser/resources/new_tab_page/app.ts
--- chromium-143.0.7499.109/chrome/browser/resources/new_tab_page/app.ts 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/resources/new_tab_page/app.ts 2025-12-17 23:05:18.000000000 +0000
@@ -11,6 +11,7 @@
import 'chrome://resources/cr_elements/cr_button/cr_button.js';
import 'chrome://resources/cr_components/composebox/composebox.js';
+import {GlifAnimationState} from '//resources/cr_components/composebox/context_menu_entrypoint.js';
import type {CustomizeButtonsElement} from 'chrome://new-tab-page/shared/customize_buttons/customize_buttons.js';
import {ColorChangeUpdater} from 'chrome://resources/cr_components/color_change_listener/colors_css_updater.js';
import type {ContextualUpload} from 'chrome://resources/cr_components/composebox/common.js';
@@ -32,6 +33,7 @@
import type {PropertyValues} from 'chrome://resources/lit/v3_0/lit.rollup.js';
import type {SkColor} from 'chrome://resources/mojo/skia/public/mojom/skcolor.mojom-webui.js';
+import {ActionChipsRetrievalState} from './action_chips/action_chips.js';
import {getCss} from './app.css.js';
import {getHtml} from './app.html.js';
import {BackgroundManager} from './background_manager.js';
@@ -312,6 +314,8 @@
* Whether the scrim is shown in Realbox Next.
*/
showScrim_: {type: Boolean, reflect: true},
+
+ contextMenuGlifAnimationState_: {type: String},
};
}
@@ -392,6 +396,10 @@
protected accessor searchboxInputFocused_: boolean = false;
protected accessor composeboxInputFocused_: boolean = false;
protected accessor showScrim_: boolean = false;
+ protected accessor contextMenuGlifAnimationState_: GlifAnimationState =
+ this.ntpNextFeaturesEnabled_ && this.isActionChipsVisible_ ?
+ GlifAnimationState.SPINNER_ONLY :
+ GlifAnimationState.INELIGIBLE;
private callbackRouter_: PageCallbackRouter;
private pageHandler_: PageHandlerRemote;
@@ -942,13 +950,13 @@
ctrlKeyPressed = ctrlKeyPressed || e.metaKey;
//
if (e.key === 'Escape' && this.showComposebox_) {
- const composebox =
- this.shadowRoot.querySelector('#composebox');
- if (composebox) {
- composebox.handleEscapeKeyLogic();
- e.preventDefault();
- return;
- }
+ const composebox =
+ this.shadowRoot.querySelector('#composebox');
+ if (composebox) {
+ composebox.handleEscapeKeyLogic();
+ e.preventDefault();
+ return;
+ }
}
if (ctrlKeyPressed && e.code === 'Period' && e.shiftKey) {
this.showVoiceSearchOverlay_ = true;
@@ -1326,6 +1334,33 @@
protected onModulesShownToUserChanged_(e: CustomEvent<{value: boolean}>) {
this.modulesShownToUser = e.detail.value;
}
+
+ protected onActionChipsRetrievalStateChanged_(
+ e: CustomEvent<{state: ActionChipsRetrievalState}>) {
+ const state = e.detail.state;
+ // Mapping of ActionChipsRetrievalState => GlifAnimationState:
+ // REQUESTED => SPINNER_ONLY
+ // UPDATED => STARTED (or FINISHED if cr_context_menu_entrypoint sets it)
+ // To avoid going back (or continuing) GlifAnimationState.STARTED, we stop
+ // updating the field when the current state is STARTED or FINISHED.
+ // There are a few cases to consider:
+ // - IsActionChipsVisible_ is false (and remains so): no event from the
+ // action chips element, and thus the animation state remains INELIGIBLE.
+ // - IsActionChipsVisible_ is false and later becomes true: the change
+ // triggers the rendering of the action chips element, and this in turn
+ // causes an event with ActionChipsRetrievalState.REQUESTED to be fired.
+ // After some time, an event with ActionChipsRetrievalState.UPDATED will
+ // fire, and this starts the animation.
+ // - IsActionChipsVisible_ is true from the beginning: Same as above.
+ if ([GlifAnimationState.STARTED, GlifAnimationState.FINISHED].every(
+ s => s !== this.contextMenuGlifAnimationState_)) {
+ if (state === ActionChipsRetrievalState.REQUESTED) {
+ this.contextMenuGlifAnimationState_ = GlifAnimationState.SPINNER_ONLY;
+ } else if (state === ActionChipsRetrievalState.UPDATED) {
+ this.contextMenuGlifAnimationState_ = GlifAnimationState.STARTED;
+ }
+ }
+ }
}
declare global {
diff -Nru chromium-143.0.7499.109/chrome/browser/resources/new_tab_page/lazy_load.ts chromium-143.0.7499.169/chrome/browser/resources/new_tab_page/lazy_load.ts
--- chromium-143.0.7499.109/chrome/browser/resources/new_tab_page/lazy_load.ts 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/resources/new_tab_page/lazy_load.ts 2025-12-17 23:05:18.000000000 +0000
@@ -29,7 +29,7 @@
export {ComposeboxFileThumbnailElement} from 'chrome://resources/cr_components/composebox/file_thumbnail.js';
export {PageImageServiceBrowserProxy} from 'chrome://resources/cr_components/page_image_service/browser_proxy.js';
export {PluralStringProxyImpl as NTPPluralStringProxyImpl} from 'chrome://resources/js/plural_string_proxy.js';
-export {ActionChipsElement} from './action_chips/action_chips.js';
+export {ActionChipsElement, ActionChipsRetrievalState} from './action_chips/action_chips.js';
export {ActionChipsApiProxyImpl} from './action_chips/action_chips_proxy.js';
export {LensErrorType, LensFormElement, LensSubmitType} from './lens_form.js';
export {LensUploadDialogAction, LensUploadDialogElement, LensUploadDialogError} from './lens_upload_dialog.js';
diff -Nru chromium-143.0.7499.109/chrome/browser/resources/omnibox_popup/aim_app.css chromium-143.0.7499.169/chrome/browser/resources/omnibox_popup/aim_app.css
--- chromium-143.0.7499.109/chrome/browser/resources/omnibox_popup/aim_app.css 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/resources/omnibox_popup/aim_app.css 2025-12-17 23:05:18.000000000 +0000
@@ -69,3 +69,8 @@
left: 12px;
top: 14px;
}
+
+:host-context([dir='rtl']) cr-composebox[searchbox-layout-mode="Compact"]::part(context-menu-entrypoint-icon) {
+ left: unset;
+ right: 12px;
+}
diff -Nru chromium-143.0.7499.109/chrome/browser/resources/omnibox_popup/app.html.ts chromium-143.0.7499.169/chrome/browser/resources/omnibox_popup/app.html.ts
--- chromium-143.0.7499.109/chrome/browser/resources/omnibox_popup/app.html.ts 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/resources/omnibox_popup/app.html.ts 2025-12-17 23:05:18.000000000 +0000
@@ -9,7 +9,7 @@
export function getHtml(this: OmniboxPopupAppElement) {
// clang-format off
const searchboxDropdown = html`
-= result.matches.length) {
- this.$.matches.unselect();
+ this.getDropdown().selectFirst();
+ } else if (this.getDropdown().selectedMatchIndex >= result.matches.length) {
+ this.getDropdown().unselect();
}
}
@@ -216,7 +222,7 @@
private onUpdateSelection_(
oldSelection: OmniboxPopupSelection, selection: OmniboxPopupSelection) {
- this.$.matches.updateSelection(oldSelection, selection);
+ this.getDropdown().updateSelection(oldSelection, selection);
}
protected onHasSecondarySideChanged_(e: CustomEvent<{value: boolean}>) {
diff -Nru chromium-143.0.7499.109/chrome/browser/resources/settings/people_page/sync_controls.ts chromium-143.0.7499.169/chrome/browser/resources/settings/people_page/sync_controls.ts
--- chromium-143.0.7499.109/chrome/browser/resources/settings/people_page/sync_controls.ts 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/resources/settings/people_page/sync_controls.ts 2025-12-17 23:05:18.000000000 +0000
@@ -360,7 +360,8 @@
return !!this.syncStatus.hasError &&
this.syncStatus.statusAction !== StatusAction.ENTER_PASSPHRASE &&
this.syncStatus.statusAction !==
- StatusAction.RETRIEVE_TRUSTED_VAULT_KEYS;
+ StatusAction.RETRIEVE_TRUSTED_VAULT_KEYS &&
+ this.syncStatus.statusAction !== StatusAction.CONFIRM_SYNC_SETTINGS;
}
}
diff -Nru chromium-143.0.7499.109/chrome/browser/resources/settings/people_page/sync_page.ts chromium-143.0.7499.169/chrome/browser/resources/settings/people_page/sync_page.ts
--- chromium-143.0.7499.109/chrome/browser/resources/settings/people_page/sync_page.ts 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/resources/settings/people_page/sync_page.ts 2025-12-17 23:05:18.000000000 +0000
@@ -352,7 +352,9 @@
(!!this.syncStatus_.hasError &&
this.syncStatus_.statusAction !== StatusAction.ENTER_PASSPHRASE &&
this.syncStatus_.statusAction !==
- StatusAction.RETRIEVE_TRUSTED_VAULT_KEYS));
+ StatusAction.RETRIEVE_TRUSTED_VAULT_KEYS &&
+ this.syncStatus_.statusAction !==
+ StatusAction.CONFIRM_SYNC_SETTINGS));
}
private computeSyncDisabledByAdmin_(): boolean {
diff -Nru chromium-143.0.7499.109/chrome/browser/safe_browsing/chrome_safe_browsing_blocking_page_factory.cc chromium-143.0.7499.169/chrome/browser/safe_browsing/chrome_safe_browsing_blocking_page_factory.cc
--- chromium-143.0.7499.109/chrome/browser/safe_browsing/chrome_safe_browsing_blocking_page_factory.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/safe_browsing/chrome_safe_browsing_blocking_page_factory.cc 2025-12-17 23:05:18.000000000 +0000
@@ -78,7 +78,7 @@
BaseBlockingPage::IsMainPageResourceLoadPending(unsafe_resources),
is_extended_reporting_opt_in_allowed,
web_contents->GetBrowserContext()->IsOffTheRecord(),
- IsExtendedReportingEnabledBypassDeprecationFlag(*prefs),
+ IsExtendedReportingEnabled(*prefs),
IsExtendedReportingPolicyManaged(*prefs),
IsEnhancedProtectionEnabled(*prefs), is_proceed_anyway_disabled,
false, // should_open_links_in_new_tab
diff -Nru chromium-143.0.7499.109/chrome/browser/touch_to_fill/password_manager/android/internal/java/strings/translations/android_touch_to_fill_strings_zh-CN.xtb chromium-143.0.7499.169/chrome/browser/touch_to_fill/password_manager/android/internal/java/strings/translations/android_touch_to_fill_strings_zh-CN.xtb
--- chromium-143.0.7499.109/chrome/browser/touch_to_fill/password_manager/android/internal/java/strings/translations/android_touch_to_fill_strings_zh-CN.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/touch_to_fill/password_manager/android/internal/java/strings/translations/android_touch_to_fill_strings_zh-CN.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -27,5 +27,5 @@
可在无法登录 时使用的临时恢复密码
出现问题时的临时恢复方法
与您分享了一个用于登录 的密码
-凭据列表已关闭。
+凭证列表已关闭。
\ No newline at end of file
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/android/fast_checkout/internal/java/strings/translations/android_fast_checkout_strings_zh-CN.xtb chromium-143.0.7499.169/chrome/browser/ui/android/fast_checkout/internal/java/strings/translations/android_fast_checkout_strings_zh-CN.xtb
--- chromium-143.0.7499.109/chrome/browser/ui/android/fast_checkout/internal/java/strings/translations/android_fast_checkout_strings_zh-CN.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/android/fast_checkout/internal/java/strings/translations/android_fast_checkout_strings_zh-CN.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -1,7 +1,7 @@
-工作地点
+工作
已选择
更改为此菜单项下的其他付款方式。
管理地址。
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/android/strings/translations/android_chrome_strings_ar.xtb chromium-143.0.7499.169/chrome/browser/ui/android/strings/translations/android_chrome_strings_ar.xtb
--- chromium-143.0.7499.109/chrome/browser/ui/android/strings/translations/android_chrome_strings_ar.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/android/strings/translations/android_chrome_strings_ar.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -545,7 +545,7 @@
هل لديك العديد من النوافذ؟ يمكنك إدارتها من هنا.
للحفاظ على إمكانية الوصول إلى كلمات المرور، عليك تصديرها الآن وتحديث "خدمات Google Play" ثمّ استيرادها مرة أخرى إلى "مدير كلمات المرور في Google". الاطّلاع على التعليمات الكاملة
أمن المعلومات
-إضافة التاب إلى مجموعة جديدة
+الإضافة إلى مجموعة جديدة
سجِّل الدخول إلى Chrome للوصول إلى كلمات المرور وغيرها على جميع أجهزتك
ستظهر لك هنا علامات التبويب الأخيرة.
إعادة تحميل الصفحة الحالية
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/android/strings/translations/android_chrome_strings_ca.xtb chromium-143.0.7499.169/chrome/browser/ui/android/strings/translations/android_chrome_strings_ca.xtb
--- chromium-143.0.7499.109/chrome/browser/ui/android/strings/translations/android_chrome_strings_ca.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/android/strings/translations/android_chrome_strings_ca.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -1426,7 +1426,7 @@
La teva organització gestiona el navegador
Chrome et proporciona més control sobre els anuncis que veus i limita la informació que els llocs web poden obtenir sobre tu quan et mostren anuncis personalitzats.
Anomena aquesta finestra
-Valor predeterminat del sistema
+Predeterminat del sistema
Gestiona el contingut que segueixes i els temes i les cerques suggerits
Tanca
{NUM_SITES,plural, =1{S'han revisat els permisos per a 1 lloc web}other{S'han revisat els permisos per a # llocs web}}
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/android/strings/translations/android_chrome_strings_da.xtb chromium-143.0.7499.169/chrome/browser/ui/android/strings/translations/android_chrome_strings_da.xtb
--- chromium-143.0.7499.109/chrome/browser/ui/android/strings/translations/android_chrome_strings_da.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/android/strings/translations/android_chrome_strings_da.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -717,7 +717,7 @@
Få oplæst denne side
Følger
Genvej til værktøjslinje
-Adgangskoder og Autofyld
+Adgangskoder og autofyld
Åbn Indstillinger
Vil du logge ud af Chrome?
Sortér efter seneste
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/android/strings/translations/android_chrome_strings_de.xtb chromium-143.0.7499.169/chrome/browser/ui/android/strings/translations/android_chrome_strings_de.xtb
--- chromium-143.0.7499.109/chrome/browser/ui/android/strings/translations/android_chrome_strings_de.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/android/strings/translations/android_chrome_strings_de.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -552,7 +552,7 @@
Seite mit KI zusammenfassen
Um deine Daten zu schützen, füllt Chrome dieses Feld nicht automatisch mit deinem Passwort aus.
Bei der Erfolgsmessung bei Anzeigen werden nur manche Datentypen zwischen Websites geteilt, um die Leistung ihrer Werbeanzeigen zu messen, etwa ob du nach dem Besuch einer Website etwas gekauft hast
-Als „“ fortfahren
+Als fortfahren
Du kannst deine Suchmaschine auswählen
Tastatur, Spracheingabe, Inkognitomodus oder Kamera zum Suchen verwenden
Die exportierte Datei ist möglicherweise für andere Nutzer und Apps zugänglich. Nach dem Export werden deine Passwörter aus Chrome gelöscht.
@@ -848,7 +848,7 @@
Chrome-Daten gelöscht
Markierung entfernen
Neuen Tab öffnen
-Angemeldet als . . Fehler bei Google-Konto. Die Einstellungen werden geöffnet.
+Angemeldet als . . Fehler bei Google-Konto. Öffne die Einstellungen.
Nur Bild teilen
Downloads
Video
@@ -1320,7 +1320,7 @@
Wird heruntergeladen...
Mono
Kontodaten prüfen
-Wenn du auf allen deinen Geräten auf deine Passwörter und andere Daten zugreifen möchtest, melde dich als an
+Wenn du auf allen deinen Geräten auf deine Passwörter und andere Daten zugreifen möchtest, melde dich als an.
Öffnet schnell einen neuen Tab. Zum Ändern Schaltfläche gedrückt halten.
Wenn du ein neues Fenster wiederherstellen möchtest, reduziere die Gesamtzahl der aktiven und inaktiven Fenster auf maximal . Inaktive Fenster werden nach 6 Monaten gelöscht.
Neue Suche starten
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/android/strings/translations/android_chrome_strings_es.xtb chromium-143.0.7499.169/chrome/browser/ui/android/strings/translations/android_chrome_strings_es.xtb
--- chromium-143.0.7499.109/chrome/browser/ui/android/strings/translations/android_chrome_strings_es.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/android/strings/translations/android_chrome_strings_es.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -544,7 +544,7 @@
¿Tienes demasiadas ventanas? Puedes gestionarlas desde aquí.
Para seguir teniendo acceso a tus contraseñas, expórtalas ahora, actualiza Servicios de Google Play y, a continuación, vuelve a importarlas en el Gestor de contraseñas de Google. Consulta las instrucciones completas.
Seguridad
-Añadir pestaña al nuevo grupo
+Añadir pestaña a un grupo nuevo
Para acceder a tus contraseñas y más en todos tus dispositivos, inicia sesión en Chrome
Aquí verás tus pestañas recientes
Vuelve a cargar la página actual
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/android/strings/translations/android_chrome_strings_it.xtb chromium-143.0.7499.169/chrome/browser/ui/android/strings/translations/android_chrome_strings_it.xtb
--- chromium-143.0.7499.109/chrome/browser/ui/android/strings/translations/android_chrome_strings_it.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/android/strings/translations/android_chrome_strings_it.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -1800,7 +1800,7 @@
Apri il menu Chrome > Impostazioni
Nascosto su schermi stretti
Mantenere il gruppo di schede?
-Attiva la sincronizzazione per trovare le tue schede degli altri dispositivi.
+Attiva la sincronizzazione per recuperare le tue schede dagli altri dispositivi.
Accedi a
Nome file già esistente
Registrati a con
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/android/strings/translations/android_chrome_strings_iw.xtb chromium-143.0.7499.169/chrome/browser/ui/android/strings/translations/android_chrome_strings_iw.xtb
--- chromium-143.0.7499.109/chrome/browser/ui/android/strings/translations/android_chrome_strings_iw.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/android/strings/translations/android_chrome_strings_iw.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -34,7 +34,7 @@
ניהול החשבונות במכשיר הזה
'מצב פרטי' מאפשר לך לגלוש באופן פרטי שלא יהיה גלוי למשתמשים אחרים במכשיר
קבלת התראות כשיש הנחות באתרים באינטרנט
-אם הקבוצה תימחק, כולם יאבדו באופן מיידי את הגישה לקבוצת הכרטיסיות '', והיא תימחק מכל המכשירים.
+אם הקבוצה תימחק, כולם יאבדו באופן מיידי את הגישה לקבוצת הכרטיסיות "", והיא תימחק מכל המכשירים.
אין להציג את ההצעה לתרגם את האתרים האלה
אפשר לסגור חלון או לנהל חלונות
האפליקציה תיפתח ב-Chrome. המשך הפעולה מבטא הסכמה לתנאים ולהגבלות של Google ולתנאים ולהגבלות הנוספים של Google Chrome ו-ChromeOS.
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/android/strings/translations/android_chrome_strings_ru.xtb chromium-143.0.7499.169/chrome/browser/ui/android/strings/translations/android_chrome_strings_ru.xtb
--- chromium-143.0.7499.109/chrome/browser/ui/android/strings/translations/android_chrome_strings_ru.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/android/strings/translations/android_chrome_strings_ru.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -1213,7 +1213,7 @@
Веб-приложения (тихий режим)
Удалить и продолжить
Устаревшая версия Android
-Блокировать доступ к окнам в режиме инкогнито при закрытии Chrome
+Блокировать доступ к окнам инкогнито, когда вы не используете Chrome
Изменить ярлык
Невозможно создать ссылку на выделенный текст.
Отправить с помощью
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/android/strings/translations/android_chrome_strings_zh-CN.xtb chromium-143.0.7499.169/chrome/browser/ui/android/strings/translations/android_chrome_strings_zh-CN.xtb
--- chromium-143.0.7499.109/chrome/browser/ui/android/strings/translations/android_chrome_strings_zh-CN.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/android/strings/translations/android_chrome_strings_zh-CN.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -438,7 +438,7 @@
要与之分享标签页的设备的列表已全屏打开。
有未读内容
Google 通知平台
-需要使用解锁凭据才能查看打开的无痕式标签页
+需要使用解锁凭证才能查看打开的无痕式标签页
前往“设置”
,已设为静音的标签页
名称无效
@@ -474,7 +474,7 @@
,已选择的标签页,正在共享内容
获取帮助
正在跟踪价格
-显示让用户登录 Chrome 的提示
+显示 Chrome 登录提示
查看所有网站
{BOOKMARKS_COUNT,plural, =1{ 个书签}other{ 个书签}}
Chrome 可提供您感兴趣的报道
@@ -1138,7 +1138,7 @@
管理网站用于衡量广告效果的信息
跳转到下一个标签页
自动
-展开
+更多
出现未知错误,未能下载 。
YY
在此处控制您的报道和活动
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/android/strings/translations/android_chrome_strings_zh-TW.xtb chromium-143.0.7499.169/chrome/browser/ui/android/strings/translations/android_chrome_strings_zh-TW.xtb
--- chromium-143.0.7499.109/chrome/browser/ui/android/strings/translations/android_chrome_strings_zh-TW.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/android/strings/translations/android_chrome_strings_zh-TW.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -706,7 +706,7 @@
服務無法使用,請稍後再試。
取得所有書籤
廣告主題
-僅在這部裝置上
+僅儲存到這部裝置
語言
按 Z 到 A 排序
在新分頁中開啟
@@ -1314,7 +1314,7 @@
返回
「」計時器已結束計時,將於明天重新開始。
鎖定螢幕
-在你的 Google 帳戶中
+儲存到你的 Google 帳戶
系統會顯示造訪過的網頁,你也可以從歷史記錄中刪除這些網頁
,固定的無痕分頁,正在錄製媒體
下載中…
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/ash/editor_menu/editor_menu_controller_impl.cc chromium-143.0.7499.169/chrome/browser/ui/ash/editor_menu/editor_menu_controller_impl.cc
--- chromium-143.0.7499.109/chrome/browser/ui/ash/editor_menu/editor_menu_controller_impl.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/ash/editor_menu/editor_menu_controller_impl.cc 2025-12-17 23:05:18.000000000 +0000
@@ -209,7 +209,9 @@
OnEditorCardHidden();
}
-void EditorMenuControllerImpl::OnEditorMenuVisibilityChanged(bool visible) {
+void EditorMenuControllerImpl::OnEditorMenuVisibilityChanged(
+ bool visible,
+ bool destroy_session) {
if (!card_session_ || card_session_->editor_manager() == nullptr) {
return;
}
@@ -217,7 +219,7 @@
card_session_->editor_manager()->OnEditorMenuVisibilityChanged(visible);
if (!visible) {
- OnEditorCardHidden();
+ OnEditorCardHidden(destroy_session);
}
}
@@ -367,10 +369,10 @@
}
}
-void EditorMenuControllerImpl::OnEditorCardHidden() {
+void EditorMenuControllerImpl::OnEditorCardHidden(bool destroy_session) {
// The currently visible card is closing and being removed from the user's
// view, the EditorCardSession has ended.
- if (card_session_) {
+ if (destroy_session && card_session_) {
card_session_.reset();
}
}
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/ash/editor_menu/editor_menu_controller_impl.h chromium-143.0.7499.169/chrome/browser/ui/ash/editor_menu/editor_menu_controller_impl.h
--- chromium-143.0.7499.109/chrome/browser/ui/ash/editor_menu/editor_menu_controller_impl.h 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/ash/editor_menu/editor_menu_controller_impl.h 2025-12-17 23:05:18.000000000 +0000
@@ -58,7 +58,8 @@
void OnTextfieldArrowButtonPressed(std::u16string_view text) override;
void OnPromoCardWidgetClosed(
views::Widget::ClosedReason closed_reason) override;
- void OnEditorMenuVisibilityChanged(bool visible) override;
+ void OnEditorMenuVisibilityChanged(bool visible,
+ bool destroy_session) override;
bool SetBrowserContext(content::BrowserContext* context);
void LogEditorMode(const EditorMode& editor_mode);
@@ -136,7 +137,7 @@
// This method is fired whenever the EditorPromoCard, or EditorMenu cards are
// hidden from the user's view.
- void OnEditorCardHidden();
+ void OnEditorCardHidden(bool destroy_session = true);
// Disables the editor menu. We do this when we don't want the editor menu
// buttons or textfield to receive keyboard or mouse input.
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/ash/editor_menu/editor_menu_view.cc chromium-143.0.7499.169/chrome/browser/ui/ash/editor_menu/editor_menu_view.cc
--- chromium-143.0.7499.109/chrome/browser/ui/ash/editor_menu/editor_menu_view.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/ash/editor_menu/editor_menu_view.cc 2025-12-17 23:05:18.000000000 +0000
@@ -132,7 +132,7 @@
EditorMenuView::~EditorMenuView() {
CHECK(delegate_);
- delegate_->OnEditorMenuVisibilityChanged(false);
+ delegate_->OnEditorMenuVisibilityChanged(false, /*destroy_session=*/false);
}
// static
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/ash/editor_menu/editor_menu_view_delegate.h chromium-143.0.7499.169/chrome/browser/ui/ash/editor_menu/editor_menu_view_delegate.h
--- chromium-143.0.7499.109/chrome/browser/ui/ash/editor_menu/editor_menu_view_delegate.h 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/ash/editor_menu/editor_menu_view_delegate.h 2025-12-17 23:05:18.000000000 +0000
@@ -26,7 +26,8 @@
virtual void OnPromoCardWidgetClosed(
views::Widget::ClosedReason closed_reason) = 0;
- virtual void OnEditorMenuVisibilityChanged(bool visible) = 0;
+ virtual void OnEditorMenuVisibilityChanged(bool visible,
+ bool destroy_session = true) = 0;
};
} // namespace chromeos::editor_menu
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/ash/editor_menu/editor_menu_view_unittest.cc chromium-143.0.7499.169/chrome/browser/ui/ash/editor_menu/editor_menu_view_unittest.cc
--- chromium-143.0.7499.109/chrome/browser/ui/ash/editor_menu/editor_menu_view_unittest.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/ash/editor_menu/editor_menu_view_unittest.cc 2025-12-17 23:05:18.000000000 +0000
@@ -61,7 +61,10 @@
OnPromoCardWidgetClosed,
(views::Widget::ClosedReason closed_reason),
(override));
- MOCK_METHOD(void, OnEditorMenuVisibilityChanged, (bool visible), (override));
+ MOCK_METHOD(void,
+ OnEditorMenuVisibilityChanged,
+ (bool visible, bool destroy_session),
+ (override));
MOCK_METHOD(void, OnTabSelected, (int index), (override));
};
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/lens/lens_search_feature_flag_utils_browsertest.cc chromium-143.0.7499.169/chrome/browser/ui/lens/lens_search_feature_flag_utils_browsertest.cc
--- chromium-143.0.7499.109/chrome/browser/ui/lens/lens_search_feature_flag_utils_browsertest.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/lens/lens_search_feature_flag_utils_browsertest.cc 2025-12-17 23:05:18.000000000 +0000
@@ -39,7 +39,8 @@
: ChromeAimEligibilityService(pref_service,
template_url_service,
/*url_loader_factory=*/nullptr,
- /*identity_manager=*/nullptr),
+ /*identity_manager=*/nullptr,
+ /*is_off_the_record=*/false),
is_locally_eligible_(is_locally_eligible),
is_server_eligible_(is_server_eligible),
server_eligibility_enabled_(server_eligibility_enabled) {}
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/omnibox/ai_mode_page_action_controller_interactive_uitest.cc chromium-143.0.7499.169/chrome/browser/ui/omnibox/ai_mode_page_action_controller_interactive_uitest.cc
--- chromium-143.0.7499.109/chrome/browser/ui/omnibox/ai_mode_page_action_controller_interactive_uitest.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/omnibox/ai_mode_page_action_controller_interactive_uitest.cc 2025-12-17 23:05:18.000000000 +0000
@@ -36,7 +36,8 @@
std::unique_ptr mock_aim_eligibility_service =
std::make_unique(
CHECK_DEREF(profile->GetPrefs()), /*template_url_service=*/nullptr,
- /*url_loader_factory=*/nullptr, /*identity_manager=*/nullptr);
+ /*url_loader_factory=*/nullptr, /*identity_manager=*/nullptr,
+ /*is_off_the_record=*/false);
EXPECT_CALL(*mock_aim_eligibility_service, IsServerEligibilityEnabled())
.WillRepeatedly(testing::Return(true));
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/omnibox/omnibox_edit_model.cc chromium-143.0.7499.169/chrome/browser/ui/omnibox/omnibox_edit_model.cc
--- chromium-143.0.7499.109/chrome/browser/ui/omnibox/omnibox_edit_model.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/omnibox/omnibox_edit_model.cc 2025-12-17 23:05:18.000000000 +0000
@@ -2879,12 +2879,7 @@
}
void OmniboxEditModel::SetIsKeywordHint(bool is_keyword_hint) {
- const bool old_keyword_selected = is_keyword_selected();
is_keyword_hint_ = is_keyword_hint;
- const bool new_keyword_selected = is_keyword_selected();
- if (old_keyword_selected != new_keyword_selected) {
- observers_.Notify(&Observer::OnKeywordStateChanged, new_keyword_selected);
- }
}
void OmniboxEditModel::RecordAiModeMetrics(const std::u16string& query_text,
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/omnibox/omnibox_edit_model_unittest.cc chromium-143.0.7499.169/chrome/browser/ui/omnibox/omnibox_edit_model_unittest.cc
--- chromium-143.0.7499.109/chrome/browser/ui/omnibox/omnibox_edit_model_unittest.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/omnibox/omnibox_edit_model_unittest.cc 2025-12-17 23:05:18.000000000 +0000
@@ -1669,20 +1669,15 @@
model()->SetIsKeywordHint(false);
testing::Mock::VerifyAndClearExpectations(&observer);
- // Leaving keyword mode should notify observers.
- EXPECT_CALL(observer, OnKeywordStateChanged(false));
- model()->SetKeyword(u"");
+ // Switching to another keyword should not notify observers.
+ EXPECT_CALL(observer, OnKeywordStateChanged(_)).Times(0);
+ model()->SetKeyword(u"keyword2");
+ model()->SetIsKeywordHint(false);
testing::Mock::VerifyAndClearExpectations(&observer);
- // Setting hint state should notify if it changes keyword selected state.
- model()->SetKeyword(u"keyword");
+ // Leaving keyword mode should notify observers.
EXPECT_CALL(observer, OnKeywordStateChanged(false));
- model()->SetIsKeywordHint(true);
- testing::Mock::VerifyAndClearExpectations(&observer);
-
- // Setting hint state should not notify if it doesn't change selected state.
- EXPECT_CALL(observer, OnKeywordStateChanged(testing::_)).Times(0);
- model()->SetIsKeywordHint(true);
+ model()->SetKeyword(u"");
testing::Mock::VerifyAndClearExpectations(&observer);
model()->RemoveObserver(&observer);
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/omnibox/omnibox_next_features_unittest.cc chromium-143.0.7499.169/chrome/browser/ui/omnibox/omnibox_next_features_unittest.cc
--- chromium-143.0.7499.109/chrome/browser/ui/omnibox/omnibox_next_features_unittest.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/omnibox/omnibox_next_features_unittest.cc 2025-12-17 23:05:18.000000000 +0000
@@ -245,7 +245,8 @@
: ChromeAimEligibilityService(*profile->GetPrefs(),
/*template_url_service=*/nullptr,
/*url_loader_factory=*/nullptr,
- /*identity_manager=*/nullptr),
+ /*identity_manager=*/nullptr,
+ /*is_off_the_record=*/false),
is_aim_eligible_(is_aim_eligible) {}
bool IsAimEligible() const override { return is_aim_eligible_; }
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/views/location_bar/location_bar_view.cc chromium-143.0.7499.169/chrome/browser/ui/views/location_bar/location_bar_view.cc
--- chromium-143.0.7499.109/chrome/browser/ui/views/location_bar/location_bar_view.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/views/location_bar/location_bar_view.cc 2025-12-17 23:05:18.000000000 +0000
@@ -1987,13 +1987,15 @@
GetOmniboxController()->edit_model()->ShouldShowAddContextButton()) {
if (!omnibox_popup_aim_presenter_ ||
!omnibox_popup_aim_presenter_->GetWebUIContent() ||
- !omnibox_popup_aim_presenter_->GetWebUIContent()->GetWebContents()) {
+ !omnibox_popup_aim_presenter_->GetWebUIContent()
+ ->GetWrappedWebContents()) {
return;
}
omnibox_context_menu_ = std::make_unique(
GetWidget(), omnibox_popup_file_selector_.get(),
- omnibox_popup_aim_presenter_->GetWebUIContent()->GetWebContents());
+ omnibox_popup_aim_presenter_->GetWebUIContent()
+ ->GetWrappedWebContents());
gfx::Point point(0, location_icon_view_->height());
views::View::ConvertPointToScreen(location_icon_view_, &point);
run_omnibox_context_menu_callback_.Run(omnibox_context_menu_.get(), point);
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/views/omnibox/omnibox_aim_popup_webui_content.cc chromium-143.0.7499.169/chrome/browser/ui/views/omnibox/omnibox_aim_popup_webui_content.cc
--- chromium-143.0.7499.109/chrome/browser/ui/views/omnibox/omnibox_aim_popup_webui_content.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/views/omnibox/omnibox_aim_popup_webui_content.cc 2025-12-17 23:05:18.000000000 +0000
@@ -15,6 +15,7 @@
#include "chrome/browser/ui/views/location_bar/location_bar_view.h"
#include "chrome/browser/ui/views/omnibox/omnibox_context_menu.h"
#include "chrome/browser/ui/views/omnibox/omnibox_popup_presenter.h"
+#include "chrome/browser/ui/views/omnibox/omnibox_popup_webui_base_content.h"
#include "chrome/browser/ui/views/omnibox/rounded_omnibox_results_frame.h"
#include "chrome/browser/ui/webui/omnibox_popup/omnibox_popup_aim_handler.h"
#include "chrome/browser/ui/webui/omnibox_popup/omnibox_popup_ui.h"
@@ -38,6 +39,7 @@
OmniboxAimPopupWebUIContent::~OmniboxAimPopupWebUIContent() = default;
void OmniboxAimPopupWebUIContent::OnWidgetClosed() {
+ OmniboxPopupWebUIBaseContent::OnWidgetClosed();
auto* handler = popup_aim_handler();
if (handler) {
handler->OnClose();
@@ -81,11 +83,7 @@
OmniboxPopupAimHandler* OmniboxAimPopupWebUIContent::popup_aim_handler() {
auto* webui_controller = contents_wrapper()->GetWebUIController();
- if (!webui_controller) {
- return nullptr;
- }
- auto* omnibox_popup_ui = webui_controller->GetAs();
- return omnibox_popup_ui ? omnibox_popup_ui->popup_aim_handler() : nullptr;
+ return webui_controller ? webui_controller->popup_aim_handler() : nullptr;
}
BEGIN_METADATA(OmniboxAimPopupWebUIContent)
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/views/omnibox/omnibox_aim_popup_webui_content.h chromium-143.0.7499.169/chrome/browser/ui/views/omnibox/omnibox_aim_popup_webui_content.h
--- chromium-143.0.7499.109/chrome/browser/ui/views/omnibox/omnibox_aim_popup_webui_content.h 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/views/omnibox/omnibox_aim_popup_webui_content.h 2025-12-17 23:05:18.000000000 +0000
@@ -44,7 +44,7 @@
void CloseUI() override;
void ShowUI() override;
- // Can return null.
+ // Returns the WebUI Handler. Can return null.
OmniboxPopupAimHandler* popup_aim_handler();
};
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/views/omnibox/omnibox_popup_presenter.cc chromium-143.0.7499.169/chrome/browser/ui/views/omnibox/omnibox_popup_presenter.cc
--- chromium-143.0.7499.109/chrome/browser/ui/views/omnibox/omnibox_popup_presenter.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/views/omnibox/omnibox_popup_presenter.cc 2025-12-17 23:05:18.000000000 +0000
@@ -28,6 +28,11 @@
OmniboxPopupPresenter::~OmniboxPopupPresenter() = default;
+void OmniboxPopupPresenter::Hide() {
+ OmniboxPopupPresenterBase::Hide();
+ content_height_ = 1;
+}
+
void OmniboxPopupPresenter::WidgetDestroyed() {
// Update the popup state manager if widget was destroyed externally, e.g., by
// the OS. This ensures the popup state manager stays in sync.
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/views/omnibox/omnibox_popup_presenter.h chromium-143.0.7499.169/chrome/browser/ui/views/omnibox/omnibox_popup_presenter.h
--- chromium-143.0.7499.109/chrome/browser/ui/views/omnibox/omnibox_popup_presenter.h 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/views/omnibox/omnibox_popup_presenter.h 2025-12-17 23:05:18.000000000 +0000
@@ -23,6 +23,8 @@
OmniboxPopupPresenter& operator=(const OmniboxPopupPresenter&) = delete;
~OmniboxPopupPresenter() override;
+ void Hide() override;
+
protected:
// OmniboxPopupPresenterBase overrides:
void WidgetDestroyed() override;
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/views/omnibox/omnibox_popup_presenter_base.cc chromium-143.0.7499.169/chrome/browser/ui/views/omnibox/omnibox_popup_presenter_base.cc
--- chromium-143.0.7499.109/chrome/browser/ui/views/omnibox/omnibox_popup_presenter_base.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/views/omnibox/omnibox_popup_presenter_base.cc 2025-12-17 23:05:18.000000000 +0000
@@ -37,20 +37,23 @@
}
void OmniboxPopupPresenterBase::Show() {
- EnsureWidgetCreated();
+ if (IsShown()) {
+ return;
+ }
- widget_->ShowInactive();
+ EnsureWidgetCreated();
if (auto* content = GetWebUIContent()) {
- content->GetWebContents()->UpdateWebContentsVisibility(
- content::Visibility::VISIBLE);
+ content->ShowUI();
+
+ widget_->ShowInactive();
+
content->GetWebContents()->WasShown();
if (ShouldReceiveFocus()) {
widget_->Activate();
content->RequestFocus();
content->GetWebContents()->Focus();
}
- content->ShowUI();
}
}
@@ -102,7 +105,6 @@
std::unique_ptr webui_content) {
omnibox_popup_webui_content_ =
GetUIContainer()->AddChildView(std::move(webui_content));
- Observe(omnibox_popup_webui_content_->GetWebContents());
EnsureWidgetCreated();
}
@@ -173,15 +175,3 @@
return views::AsViewClass(
widget_->GetContentsView());
}
-
-void OmniboxPopupPresenterBase::OnVisibilityChanged(
- content::Visibility visibility) {
- // Keep the WebContents visible at all times, even when the widget is no
- // longer visible. This ensures the renderer continues to paint the contents
- // as the autocomplete results update asynchronously and independently of the
- // widget visibility.
- if (visibility != content::Visibility::VISIBLE) {
- GetWebUIContent()->GetWebContents()->UpdateWebContentsVisibility(
- content::Visibility::VISIBLE);
- }
-}
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/views/omnibox/omnibox_popup_presenter_base.h chromium-143.0.7499.169/chrome/browser/ui/views/omnibox/omnibox_popup_presenter_base.h
--- chromium-143.0.7499.109/chrome/browser/ui/views/omnibox/omnibox_popup_presenter_base.h 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/views/omnibox/omnibox_popup_presenter_base.h 2025-12-17 23:05:18.000000000 +0000
@@ -31,14 +31,14 @@
// this class is presentation only, i.e. Views and Widgets. For omnibox logic
// concerns and communication between native omnibox code and the WebUI code,
// work with OmniboxPopupViewWebUI directly.
-class OmniboxPopupPresenterBase : public content::WebContentsObserver {
+class OmniboxPopupPresenterBase {
public:
DECLARE_CLASS_ELEMENT_IDENTIFIER_VALUE(kRoundedResultsFrame);
explicit OmniboxPopupPresenterBase(LocationBarView* location_bar_view);
OmniboxPopupPresenterBase(const OmniboxPopupPresenterBase&) = delete;
OmniboxPopupPresenterBase& operator=(const OmniboxPopupPresenterBase&) =
delete;
- ~OmniboxPopupPresenterBase() override;
+ virtual ~OmniboxPopupPresenterBase();
// Show or hide the popup widget with web view.
virtual void Show();
@@ -78,6 +78,9 @@
views::Widget* GetWidget() const { return widget_.get(); }
+ // The height of the popup content. Can be 0 if not specified.
+ int content_height_ = 0;
+
private:
friend class OmniboxPopupViewWebUITest;
friend class OmniboxWebUiInteractiveTest;
@@ -91,9 +94,6 @@
// created
RoundedOmniboxResultsFrame* GetResultsFrame() const;
- // WebContentsObserver overrides:
- void OnVisibilityChanged(content::Visibility visibility) override;
-
// The location bar view that owns `this`.
const raw_ptr location_bar_view_;
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/views/omnibox/omnibox_popup_webui_base_content.cc chromium-143.0.7499.169/chrome/browser/ui/views/omnibox/omnibox_popup_webui_base_content.cc
--- chromium-143.0.7499.109/chrome/browser/ui/views/omnibox/omnibox_popup_webui_base_content.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/views/omnibox/omnibox_popup_webui_base_content.cc 2025-12-17 23:05:18.000000000 +0000
@@ -24,6 +24,7 @@
#include "components/input/native_web_keyboard_event.h"
#include "components/zoom/zoom_controller.h"
#include "content/public/browser/render_widget_host_view.h"
+#include "content/public/browser/web_contents.h"
#include "third_party/blink/public/common/input/web_gesture_event.h"
#include "third_party/blink/public/common/input/web_input_event.h"
#include "ui/base/metadata/metadata_impl_macros.h"
@@ -70,7 +71,7 @@
gfx::Size min_size(width, 1);
gfx::Size max_size(width, INT_MAX);
if (auto* render_widget_host_view =
- GetWebContents()->GetRenderWidgetHostView()) {
+ GetWrappedWebContents()->GetRenderWidgetHostView()) {
render_widget_host_view->EnableAutoResize(min_size, max_size);
}
}
@@ -93,9 +94,11 @@
// This is a signal from the WebUIContentsWrapper::Host. We use this signal to
// check if the renderer crashes. If the renderer process has crashed, reset
// the content URL and create a new renderer.
- if (GetWebContents() && GetWebContents()->IsCrashed()) {
+ if (contents_wrapper_->web_contents() &&
+ contents_wrapper_->web_contents()->IsCrashed()) {
LoadContent();
}
+ SetWebContents(contents_wrapper_->web_contents());
is_shown_ = true;
}
@@ -108,7 +111,7 @@
GetWidget(), location_bar_view_->GetOmniboxPopupFileSelector(),
location_bar_view_->GetOmniboxPopupAimPresenter()
->GetWebUIContent()
- ->GetWebContents(),
+ ->GetWrappedWebContents(),
base::BindRepeating(&OmniboxPopupWebUIBaseContent::OnMenuClosed,
base::Unretained(this)));
context_menu_->RunMenuAt(point, ui::mojom::MenuSourceType::kMouse);
@@ -184,6 +187,23 @@
return false;
}
+void OmniboxPopupWebUIBaseContent::OnWidgetClosed() {
+ // This removes the content from being considered for rendering by the
+ // compositor while the popup is closed. The content is re-inserted right
+ // before the view is displayed. This has the effect of tossing out old,
+ // stale content in order to eliminiate it from being briefly displayed
+ // while the new content is rendered. This improves visual performance
+ // by eliminating that jank and stutter.
+ // Under the hood, this forces the contents to clear the SurfaceId to keep
+ // the GPU from embedding the content. By not deleting the contents we keep
+ // the renderer alive, so when it is re-displayed it is much faster.
+ SetWebContents(nullptr);
+}
+
+content::WebContents* OmniboxPopupWebUIBaseContent::GetWrappedWebContents() {
+ return contents_wrapper_->web_contents();
+}
+
void OmniboxPopupWebUIBaseContent::OnMenuClosed() {
std::move(context_menu_).reset();
}
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/views/omnibox/omnibox_popup_webui_base_content.h chromium-143.0.7499.169/chrome/browser/ui/views/omnibox/omnibox_popup_webui_base_content.h
--- chromium-143.0.7499.109/chrome/browser/ui/views/omnibox/omnibox_popup_webui_base_content.h 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/views/omnibox/omnibox_popup_webui_base_content.h 2025-12-17 23:05:18.000000000 +0000
@@ -21,6 +21,10 @@
class OmniboxPopupPresenterBase;
class OmniboxPopupUI;
+namespace content {
+class WebContents;
+} // namespace content
+
namespace ui {
class MenuModel;
} // namespace ui
@@ -66,7 +70,11 @@
const blink::WebGestureEvent& event) override;
// Notifies the page the widget was closed.
- virtual void OnWidgetClosed() {}
+ virtual void OnWidgetClosed();
+
+ // Returns the WebContents from within the wrapper. Don't use GetWebContents()
+ // since that may be nullptr if the popup isn't visible.
+ content::WebContents* GetWrappedWebContents();
protected:
// Callback for cleaning up the `context_menu_` field.
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/views/omnibox/omnibox_popup_webui_content.cc chromium-143.0.7499.169/chrome/browser/ui/views/omnibox/omnibox_popup_webui_content.cc
--- chromium-143.0.7499.109/chrome/browser/ui/views/omnibox/omnibox_popup_webui_content.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/views/omnibox/omnibox_popup_webui_content.cc 2025-12-17 23:05:18.000000000 +0000
@@ -50,15 +50,16 @@
OmniboxPopupWebUIContent::~OmniboxPopupWebUIContent() = default;
void OmniboxPopupWebUIContent::ShowUI() {
- auto* webui_controller = contents_wrapper()->GetWebUIController();
- if (webui_controller) {
- auto* omnibox_popup_ui = webui_controller->GetAs();
- if (omnibox_popup_ui && omnibox_popup_ui->handler()) {
- omnibox_popup_ui->handler()->OnShow();
- }
+ OmniboxPopupWebUIBaseContent::ShowUI();
+
+ if (auto* handler = omnibox_handler()) {
+ handler->OnShow();
}
+}
- OmniboxPopupWebUIBaseContent::ShowUI();
+WebuiOmniboxHandler* OmniboxPopupWebUIContent::omnibox_handler() {
+ auto* webui_controller = contents_wrapper()->GetWebUIController();
+ return webui_controller ? webui_controller->handler() : nullptr;
}
BEGIN_METADATA(OmniboxPopupWebUIContent)
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/views/omnibox/omnibox_popup_webui_content.h chromium-143.0.7499.169/chrome/browser/ui/views/omnibox/omnibox_popup_webui_content.h
--- chromium-143.0.7499.109/chrome/browser/ui/views/omnibox/omnibox_popup_webui_content.h 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/views/omnibox/omnibox_popup_webui_content.h 2025-12-17 23:05:18.000000000 +0000
@@ -46,6 +46,9 @@
bool wants_focus() const { return wants_focus_; }
private:
+ // Returns the WebUI Omnibox Handler. Can return null.
+ WebuiOmniboxHandler* omnibox_handler();
+
// Indicate whether this WebUI content wants to receive activation and focus.
bool wants_focus_ = false;
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/views/omnibox/omnibox_view_views_browsertest.cc chromium-143.0.7499.169/chrome/browser/ui/views/omnibox/omnibox_view_views_browsertest.cc
--- chromium-143.0.7499.109/chrome/browser/ui/views/omnibox/omnibox_view_views_browsertest.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/views/omnibox/omnibox_view_views_browsertest.cc 2025-12-17 23:05:18.000000000 +0000
@@ -1528,7 +1528,8 @@
*profile->GetPrefs(),
TemplateURLServiceFactory::GetForProfile(profile),
/*url_loader_factory=*/nullptr,
- /*identity_manager=*/nullptr);
+ /*identity_manager=*/nullptr,
+ /*is_off_the_record=*/false);
ON_CALL(*mock_service, IsAimLocallyEligible())
.WillByDefault(Return(is_locally_eligible));
ON_CALL(*mock_service, IsServerEligibilityEnabled())
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/views/omnibox/rounded_omnibox_results_frame.cc chromium-143.0.7499.169/chrome/browser/ui/views/omnibox/rounded_omnibox_results_frame.cc
--- chromium-143.0.7499.109/chrome/browser/ui/views/omnibox/rounded_omnibox_results_frame.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/views/omnibox/rounded_omnibox_results_frame.cc 2025-12-17 23:05:18.000000000 +0000
@@ -17,7 +17,6 @@
#include "chrome/browser/ui/views/frame/browser_view.h"
#include "chrome/browser/ui/views/location_bar/location_bar_view.h"
#include "chrome/browser/ui/views/omnibox/omnibox_aim_popup_webui_content.h"
-#include "components/omnibox/common/omnibox_features.h"
#include "ui/base/cursor/cursor.h"
#include "ui/base/metadata/metadata_header_macros.h"
#include "ui/base/metadata/metadata_impl_macros.h"
@@ -353,24 +352,16 @@
contents_->SetBoundsRect(results_bounds);
}
-void RoundedOmniboxResultsFrame::VisibilityChanged(View* starting_from,
- bool is_visible) {
- views::View::VisibilityChanged(starting_from, is_visible);
+void RoundedOmniboxResultsFrame::AddedToWidget() {
#if defined(USE_AURA)
if (!forward_mouse_events_) {
return;
}
-
- if (is_visible) {
- // Use a ui::EventTargeter that allows mouse and touch events in the top
- // portion of the Widget to pass through to the omnibox beneath it.
- auto results_targeter = std::make_unique();
- results_targeter->SetInsets(GetContentInsets());
- GetWidget()->GetNativeWindow()->SetEventTargeter(
- std::move(results_targeter));
- } else {
- GetWidget()->GetNativeWindow()->SetEventTargeter(nullptr);
- }
+ // Use a ui::EventTargeter that allows mouse and touch events in the top
+ // portion of the Widget to pass through to the omnibox beneath it.
+ auto results_targeter = std::make_unique();
+ results_targeter->SetInsets(GetContentInsets());
+ GetWidget()->GetNativeWindow()->SetEventTargeter(std::move(results_targeter));
#endif // USE_AURA
}
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/views/omnibox/rounded_omnibox_results_frame.h chromium-143.0.7499.169/chrome/browser/ui/views/omnibox/rounded_omnibox_results_frame.h
--- chromium-143.0.7499.109/chrome/browser/ui/views/omnibox/rounded_omnibox_results_frame.h 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/views/omnibox/rounded_omnibox_results_frame.h 2025-12-17 23:05:18.000000000 +0000
@@ -51,7 +51,7 @@
// views::View:
void Layout(PassKey) override;
- void VisibilityChanged(View* starting_from, bool is_visible) override;
+ void AddedToWidget() override;
#if !defined(USE_AURA)
void OnMouseMoved(const ui::MouseEvent& event) override;
void OnMouseEvent(ui::MouseEvent* event) override;
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/views/web_apps/web_app_detailed_install_dialog.cc chromium-143.0.7499.169/chrome/browser/ui/views/web_apps/web_app_detailed_install_dialog.cc
--- chromium-143.0.7499.109/chrome/browser/ui/views/web_apps/web_app_detailed_install_dialog.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/views/web_apps/web_app_detailed_install_dialog.cc 2025-12-17 23:05:18.000000000 +0000
@@ -270,6 +270,12 @@
SkBitmap bitmap,
std::optional label) {
CHECK(index < static_cast(image_inner_container_->children().size()));
+ // If the bitmap being downloaded is empty, do not attempt to draw it in a
+ // loading area.
+ if (bitmap.drawsNothing()) {
+ return;
+ }
+
float current_scale =
display::Screen::Get()
->GetPreferredScaleFactorForView(GetWidget()->GetNativeView())
@@ -361,6 +367,7 @@
// of the throbber container, or the maximum w/h ratio of screenshots.
int GetScaledWidthBasedOnThrobberHeight(const gfx::Size& size) {
const int throbber_height = GetFullThrobberHeight();
+ CHECK_GE(size.height(), 0) << "screenshot cannot have an empty height";
int height_limited_width = base::checked_cast(
size.width() *
(base::checked_cast(throbber_height) / size.height()));
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/webui/browser_command/browser_command_handler.cc chromium-143.0.7499.169/chrome/browser/ui/webui/browser_command/browser_command_handler.cc
--- chromium-143.0.7499.109/chrome/browser/ui/webui/browser_command/browser_command_handler.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/webui/browser_command/browser_command_handler.cc 2025-12-17 23:05:18.000000000 +0000
@@ -373,10 +373,9 @@
auto* browser_window = webui::GetBrowserWindowInterface(web_contents_);
- glic_service->window_controller().Toggle(
- browser_window, /*prevent_close=*/false,
- glic::mojom::InvocationSource::kWhatsNew,
- /*prompt_suggestion=*/std::nullopt);
+ glic_service->ToggleUI(browser_window, /*prevent_close=*/false,
+ glic::mojom::InvocationSource::kWhatsNew,
+ /*prompt_suggestion=*/std::nullopt);
#endif // BUILDFLAG(ENABLE_GLIC)
}
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/webui/new_tab_page/composebox/variations/aim_entrypoint_fieldtrial_browsertest.cc chromium-143.0.7499.169/chrome/browser/ui/webui/new_tab_page/composebox/variations/aim_entrypoint_fieldtrial_browsertest.cc
--- chromium-143.0.7499.109/chrome/browser/ui/webui/new_tab_page/composebox/variations/aim_entrypoint_fieldtrial_browsertest.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/webui/new_tab_page/composebox/variations/aim_entrypoint_fieldtrial_browsertest.cc 2025-12-17 23:05:18.000000000 +0000
@@ -35,7 +35,8 @@
: ChromeAimEligibilityService(pref_service,
template_url_service,
/*url_loader_factory=*/nullptr,
- /*identity_manager=*/nullptr),
+ /*identity_manager=*/nullptr,
+ /*is_off_the_record=*/false),
is_locally_eligible_(is_locally_eligible),
is_server_eligible_(is_server_eligible),
server_eligibility_enabled_(server_eligibility_enabled) {}
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/webui/new_tab_page/composebox/variations/composebox_fieldtrial.cc chromium-143.0.7499.169/chrome/browser/ui/webui/new_tab_page/composebox/variations/composebox_fieldtrial.cc
--- chromium-143.0.7499.109/chrome/browser/ui/webui/new_tab_page/composebox/variations/composebox_fieldtrial.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/webui/new_tab_page/composebox/variations/composebox_fieldtrial.cc 2025-12-17 23:05:18.000000000 +0000
@@ -130,10 +130,14 @@
return false;
}
+ AimEligibilityService* aim_eligibility_service =
+ AimEligibilityServiceFactory::GetForProfile(profile);
+ if (!aim_eligibility_service) {
+ return false;
+ }
+
return base::FeatureList::IsEnabled(kNtpComposebox) &&
- AimEligibilityService::GenericKillSwitchFeatureCheck(
- AimEligibilityServiceFactory::GetForProfile(profile),
- kNtpComposebox);
+ aim_eligibility_service->IsAimEligible();
}
bool IsDeepSearchEnabled(Profile* profile) {
@@ -329,10 +333,14 @@
return false;
}
+ AimEligibilityService* aim_eligibility_service =
+ AimEligibilityServiceFactory::GetForProfile(profile);
+ if (!aim_eligibility_service) {
+ return false;
+ }
+
return base::FeatureList::IsEnabled(kNtpRealboxNext) &&
- AimEligibilityService::GenericKillSwitchFeatureCheck(
- AimEligibilityServiceFactory::GetForProfile(profile),
- kNtpRealboxNext);
+ aim_eligibility_service->IsAimEligible();
}
BASE_FEATURE(kNtpRealboxNext, base::FEATURE_DISABLED_BY_DEFAULT);
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/webui/new_tab_page/composebox/variations/composebox_fieldtrial_browsertest.cc chromium-143.0.7499.169/chrome/browser/ui/webui/new_tab_page/composebox/variations/composebox_fieldtrial_browsertest.cc
--- chromium-143.0.7499.109/chrome/browser/ui/webui/new_tab_page/composebox/variations/composebox_fieldtrial_browsertest.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/webui/new_tab_page/composebox/variations/composebox_fieldtrial_browsertest.cc 2025-12-17 23:05:18.000000000 +0000
@@ -37,7 +37,8 @@
: ChromeAimEligibilityService(pref_service,
template_url_service,
/*url_loader_factory=*/nullptr,
- /*identity_manager=*/nullptr),
+ /*identity_manager=*/nullptr,
+ /*is_off_the_record=*/false),
is_locally_eligible_(is_locally_eligible),
is_server_eligible_(is_server_eligible),
server_eligibility_enabled_(server_eligibility_enabled) {}
@@ -130,19 +131,19 @@
return false;
}
- // If the generic feature is overridden, it takes precedence.
- if (override_feature) {
- return feature;
- }
-
// If the server eligibility is enabled, return overall eligibility alone.
// The service will control locale rollout so there's no need to check
// locale or the state of kMyFeature below.
- if (service->IsServerEligibilityEnabled()) {
- expected_enabled = service->IsAimEligible();
- } else {
- // Otherwise, check the generic entrypoint feature default value.
- expected_enabled = IsFeatureEnabledByDefault();
+ if (service->IsServerEligibilityEnabled() && !service->IsAimEligible()) {
+ return false;
+ }
+
+ // Otherwise, check the generic entrypoint feature default value.
+ expected_enabled = IsFeatureEnabledByDefault();
+
+ // If the generic feature is overridden, it takes precedence.
+ if (override_feature) {
+ return feature;
}
return expected_enabled;
@@ -268,7 +269,8 @@
// Values for the generic realbox next feature.
::testing::Values(true, false)));
-IN_PROC_BROWSER_TEST_P(NtpRealboxNextFieldTrialBrowserTest, Test) {
+// TODO(crbug.com/467751950): Update and re-enable test.
+IN_PROC_BROWSER_TEST_P(NtpRealboxNextFieldTrialBrowserTest, DISABLED_Test) {
bool expected = GetExpectedEnabled();
if (!base::FeatureList::IsEnabled(ntp_realbox::kNtpRealboxNext)) {
expected = false;
diff -Nru chromium-143.0.7499.109/chrome/browser/ui/webui/searchbox/webui_omnibox_handler.cc chromium-143.0.7499.169/chrome/browser/ui/webui/searchbox/webui_omnibox_handler.cc
--- chromium-143.0.7499.109/chrome/browser/ui/webui/searchbox/webui_omnibox_handler.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/ui/webui/searchbox/webui_omnibox_handler.cc 2025-12-17 23:05:18.000000000 +0000
@@ -116,6 +116,11 @@
}
void WebuiOmniboxHandler::OnKeywordStateChanged(bool is_keyword_selected) {
+ // Ignore the call until the page remote is bound and ready to receive calls.
+ if (!IsRemoteBound()) {
+ return;
+ }
+
page_->SetKeywordSelected(is_keyword_selected);
}
@@ -178,6 +183,10 @@
}
void WebuiOmniboxHandler::OnShow() {
+ // Ignore the call until the page remote is bound and ready to receive calls.
+ if (!IsRemoteBound()) {
+ return;
+ }
page_->OnShow();
}
diff -Nru chromium-143.0.7499.109/chrome/browser/web_applications/commands/fetch_manifest_and_install_command.cc chromium-143.0.7499.169/chrome/browser/web_applications/commands/fetch_manifest_and_install_command.cc
--- chromium-143.0.7499.109/chrome/browser/web_applications/commands/fetch_manifest_and_install_command.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/browser/web_applications/commands/fetch_manifest_and_install_command.cc 2025-12-17 23:05:18.000000000 +0000
@@ -141,9 +141,12 @@
return g_bypass_visibility_checking;
}
+// Fallback to using `kMinimumScreenshotSizeInPx` if there are no sizes
+// specified in the manifest for the screenshots, or if the size has been set to
+// `any`, which gets parsed as (0, 0).
int ComputeIdealScreenshotSize(
const blink::mojom::ManifestScreenshotPtr& screenshot) {
- return screenshot->image.sizes.empty()
+ return screenshot->image.sizes.empty() || screenshot->image.sizes[0].IsEmpty()
? webapps::kMinimumScreenshotSizeInPx
: std::max(screenshot->image.sizes[0].width(),
screenshot->image.sizes[0].height());
@@ -796,7 +799,8 @@
}
// Since narrow screenshots are filtered out, this is guaranteed to return
- // either the minimum screen shot size, or the width.
+ // either the minimum screen shot size, or the width of the screenshot,
+ // provided the manifest has it declared extensively.
int ideal_size = ComputeIdealScreenshotSize(screenshot);
gfx::Size size_to_use = (ideal_size == webapps::kMinimumScreenshotSizeInPx)
? gfx::Size(ideal_size, ideal_size)
diff -Nru chromium-143.0.7499.109/chrome/chrome_repack_locales.gni chromium-143.0.7499.169/chrome/chrome_repack_locales.gni
--- chromium-143.0.7499.109/chrome/chrome_repack_locales.gni 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/chrome_repack_locales.gni 2025-12-17 23:05:18.000000000 +0000
@@ -87,7 +87,7 @@
"//remoting/resources",
"//ui/chromeos/strings",
]
- if (is_internal_chrome_branded) {
+ if (is_chrome_branded) {
source_patterns += [
"${root_gen_dir}/chrome/app/theme/google_chrome/chromeos/strings/chromeos_chrome_internal_strings_",
"${root_gen_dir}/chromeos/ash/resources/internal/strings/ash_internal_strings_",
@@ -112,7 +112,7 @@
}
# src-internal strings only available on Chrome branded builds.
- if (is_internal_chrome_branded) {
+ if (is_chrome_branded) {
source_patterns += [ "${root_gen_dir}/chrome/browser/nearby_sharing/internal/resources/nearby_share_internal_strings_" ]
deps += [ "//chrome/browser/nearby_sharing/internal/resources:nearby_share_internal_strings" ]
}
diff -Nru chromium-143.0.7499.109/chrome/common/features.gni chromium-143.0.7499.169/chrome/common/features.gni
--- chromium-143.0.7499.109/chrome/common/features.gni 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/common/features.gni 2025-12-17 23:05:18.000000000 +0000
@@ -50,7 +50,7 @@
# Hangout services is an extension that adds extra features to Hangouts.
# It is enableable separately to facilitate testing.
- enable_hangout_services_extension = enable_src_internal
+ enable_hangout_services_extension = is_chrome_branded
# TODO(crbug.com/429684535): Document this argument. It's not immediately
# clear what it controls.
diff -Nru chromium-143.0.7499.109/chrome/test/BUILD.gn chromium-143.0.7499.169/chrome/test/BUILD.gn
--- chromium-143.0.7499.109/chrome/test/BUILD.gn 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/test/BUILD.gn 2025-12-17 23:05:18.000000000 +0000
@@ -7650,7 +7650,7 @@
}
}
- if (is_internal_chrome_branded) {
+ if (is_chrome_branded) {
deps += [ "//chrome/browser/nearby_sharing/internal/icons:vector_icons" ]
}
diff -Nru chromium-143.0.7499.109/chrome/test/data/webui/BUILD.gn chromium-143.0.7499.169/chrome/test/data/webui/BUILD.gn
--- chromium-143.0.7499.109/chrome/test/data/webui/BUILD.gn 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chrome/test/data/webui/BUILD.gn 2025-12-17 23:05:18.000000000 +0000
@@ -355,6 +355,7 @@
if (!is_android) {
deps += [
+ "//chrome/browser/autocomplete:aim_eligibility_service",
"//chrome/browser/ui:ui_features",
"//components/history_clusters/core",
"//components/password_manager/content/common",
diff -Nru chromium-143.0.7499.109/chromeos/CHROMEOS_LKGM chromium-143.0.7499.169/chromeos/CHROMEOS_LKGM
--- chromium-143.0.7499.109/chromeos/CHROMEOS_LKGM 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chromeos/CHROMEOS_LKGM 2025-12-17 23:05:18.000000000 +0000
@@ -1 +1 @@
-16463.43.0
\ No newline at end of file
+16463.52.0
\ No newline at end of file
diff -Nru chromium-143.0.7499.109/chromeos/profiles/arm.afdo.newest.txt chromium-143.0.7499.169/chromeos/profiles/arm.afdo.newest.txt
--- chromium-143.0.7499.109/chromeos/profiles/arm.afdo.newest.txt 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chromeos/profiles/arm.afdo.newest.txt 2025-12-17 23:05:18.000000000 +0000
@@ -1 +1 @@
-chromeos-chrome-arm-none-143-7499.28-1763955066-benchmark-143.0.7499.89-r1-redacted.afdo.xz
+chromeos-chrome-arm-none-143-7499.114-1765768454-benchmark-143.0.7499.153-r1-redacted.afdo.xz
diff -Nru chromium-143.0.7499.109/chromeos/profiles/atom.afdo.newest.txt chromium-143.0.7499.169/chromeos/profiles/atom.afdo.newest.txt
--- chromium-143.0.7499.109/chromeos/profiles/atom.afdo.newest.txt 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chromeos/profiles/atom.afdo.newest.txt 2025-12-17 23:05:18.000000000 +0000
@@ -1 +1 @@
-chromeos-chrome-amd64-atom-143-7499.46-1764561092-benchmark-143.0.7499.102-r1-redacted.afdo.xz
+chromeos-chrome-amd64-atom-143-7499.114-1765769005-benchmark-143.0.7499.150-r1-redacted.afdo.xz
diff -Nru chromium-143.0.7499.109/chromeos/profiles/bigcore.afdo.newest.txt chromium-143.0.7499.169/chromeos/profiles/bigcore.afdo.newest.txt
--- chromium-143.0.7499.109/chromeos/profiles/bigcore.afdo.newest.txt 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chromeos/profiles/bigcore.afdo.newest.txt 2025-12-17 23:05:18.000000000 +0000
@@ -1 +1 @@
-chromeos-chrome-amd64-bigcore-143-7499.46-1764557473-benchmark-143.0.7499.102-r1-redacted.afdo.xz
+chromeos-chrome-amd64-bigcore-143-7499.114-1765767778-benchmark-143.0.7499.150-r1-redacted.afdo.xz
diff -Nru chromium-143.0.7499.109/chromeos/strings/chromeos_strings_ta.xtb chromium-143.0.7499.169/chromeos/strings/chromeos_strings_ta.xtb
--- chromium-143.0.7499.109/chromeos/strings/chromeos_strings_ta.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chromeos/strings/chromeos_strings_ta.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -780,7 +780,7 @@
தற்போதைய தோற்றப் படம்
உங்கள் நிர்வாகி சில ஆப்ஸைத் தானாகவே தொடங்கும் வகையில் அமைத்துள்ளார். அந்த ஆப்ஸில் சிலவற்றை மூட முடியாமல் போகலாம்.
கீழ்நோக்கிய அம்புக்குறி ஐகான்
-எனது இயக்ககம்
+எனது Drive
முடக்கப்பட்டுள்ளது
பேச்சாளர்
Kerberos டிக்கெட் விரைவில் காலாவதியாகும்
diff -Nru chromium-143.0.7499.109/chromeos/strings/chromeos_strings_vi.xtb chromium-143.0.7499.169/chromeos/strings/chromeos_strings_vi.xtb
--- chromium-143.0.7499.109/chromeos/strings/chromeos_strings_vi.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/chromeos/strings/chromeos_strings_vi.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -934,7 +934,7 @@
tối tân
quay lại
Tên máy chủ
-Tỉnh
+Tỉnh/Bang
IPsec (IKEv2)
Rút cáp USB của ra rồi cắm lại để tiếp tục quá trình cập nhật
lên
diff -Nru chromium-143.0.7499.109/components/autofill/core/browser/BUILD.gn chromium-143.0.7499.169/components/autofill/core/browser/BUILD.gn
--- chromium-143.0.7499.109/components/autofill/core/browser/BUILD.gn 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/autofill/core/browser/BUILD.gn 2025-12-17 23:05:18.000000000 +0000
@@ -43,7 +43,7 @@
#
# Setting the variable 'use_internal_autofill_patterns' in args.gn overrides
# this default.
- use_internal_autofill_patterns = enable_src_internal
+ use_internal_autofill_patterns = is_chrome_branded
}
buildflag_header("buildflags") {
diff -Nru chromium-143.0.7499.109/components/browser_ui/strings/android/translations/browser_ui_strings_da.xtb chromium-143.0.7499.169/components/browser_ui/strings/android/translations/browser_ui_strings_da.xtb
--- chromium-143.0.7499.109/components/browser_ui/strings/android/translations/browser_ui_strings_da.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/browser_ui/strings/android/translations/browser_ui_strings_da.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -331,7 +331,7 @@
Webadressen er udvidet
Aktivér også din mikrofon i Android-indstillingerne for at give adgang til mikrofonen.
Slå mikrofon fra
-Info
+Oplysninger
Kom i gang
Tillader, at du logger ind på websites med den konto, du har hos en identitetstjeneste
Tillad ikke, at websites anvender NFC-enheder
diff -Nru chromium-143.0.7499.109/components/browser_ui/strings/android/translations/browser_ui_strings_de.xtb chromium-143.0.7499.169/components/browser_ui/strings/android/translations/browser_ui_strings_de.xtb
--- chromium-143.0.7499.109/components/browser_ui/strings/android/translations/browser_ui_strings_de.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/browser_ui/strings/android/translations/browser_ui_strings_de.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -250,7 +250,7 @@
Ansicht mit Karten auf der Seite „Neuer Tab“ am unteren Rand ist vollständig geöffnet
Wenn dieser Schalter aktiviert ist, können Websites anfragen, ob sie USB-Geräte verwenden dürfen. Wenn er deaktiviert ist, können Websites keine USB-Geräte verwenden.
Feed verwalten
-Von dir besuchte Websites können eine kleine Datenmenge in Chrome speichern, die hauptsächlich dazu dienen, zu belegen, dass du kein Bot bist
+Von dir besuchte Websites können eine kleine Menge von Daten in Chrome speichern, die hauptsächlich dazu dienen, zu belegen, dass du kein Bot bist.
Geschlossene Websites dürfen den Datenversand oder -empfang nicht abschließen
Dateizugriff der Website entfernt
Schließen und nächste verfügbare Aktion anzeigen
@@ -706,11 +706,11 @@
Hier kannst du Websites angeben, für die JavaScript blockiert werden soll.
V8 ist die JavaScript- und WebAssembly-Engine von Chrome, mit der die Websiteleistung verbessert wird
Wenn aktiviert
-Das Surfen ist so schneller, da es weniger wahrscheinlich ist, dass eine Website dich darum bittet, deine Identität als echte Person zu bestätigen
+So wird das Surfen schneller, weil es weniger wahrscheinlich ist, dass eine Website dich darum bittet, deine Identität als echte Person zu bestätigen.
Zugriff auf Sensoren für Websites blockieren
USB
Versuche, Drittanbieter-Cookies vorübergehend zuzulassen. Das bedeutet zwar weniger Schutz beim Surfen, aber dadurch erhöht sich die Wahrscheinlichkeit, dass Websites wie erwartet funktionieren.
-Wenn du weitersurfst, können Websites diese Daten von Chrome abrufen und über eine zuvor von dir besuchte Website bestätigen, dass du wahrscheinlich eine echte Person bist
+Wenn du weitersurfst, können Websites diese Daten von Chrome abrufen und über eine zuvor von dir besuchte Website bestätigen, dass du wahrscheinlich eine echte Person bist.
Aufdringliche Anzeigen
Vergrößern
/
@@ -739,7 +739,7 @@
Erlaube Chrome, deine zuletzt geöffneten Tabs in der App-Liste und in den Suchergebnissen deines Geräts anzuzeigen. Diese Funktion lässt sich jederzeit in den Chrome-Einstellungen deaktivieren.
Diese Seite ist gefährlich
Websites dürfen keine geschützten Inhalte wiedergeben
-Websites, die du besuchst, können bestätigen, dass du eine echte Person und kein Bot bist
+Websites, die du besuchst, können bestätigen, dass du eine echte Person und kein Bot bist.
Besser organisiert
Berechtigung zur Standortermittlung einmal gewährt
Gespeicherte Daten
diff -Nru chromium-143.0.7499.109/components/browser_ui/strings/android/translations/browser_ui_strings_hi.xtb chromium-143.0.7499.169/components/browser_ui/strings/android/translations/browser_ui_strings_hi.xtb
--- chromium-143.0.7499.109/components/browser_ui/strings/android/translations/browser_ui_strings_hi.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/browser_ui/strings/android/translations/browser_ui_strings_hi.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -480,7 +480,7 @@
तीसरे पक्ष की कुकी ब्लॉक करें
विज्ञापन से जुड़ी निजता सेटिंग
डेटा मिटाएं और अनुमतियां रीसेट करें
-क्या आपको '' अनइंस्टॉल करना है?
+क्या आपको ‘' अनइंस्टॉल करना है?
ब्राउज़र ऐप्लिकेशन > Chrome पर टैप करें
'नया टैब' पेज पर दिखने वाली थीम के कलेक्शन की बॉटम शीट, आधी स्क्रीन पर खुली है
आपके आखिरी टैब के आधार पर
diff -Nru chromium-143.0.7499.109/components/browser_ui/strings/android/translations/browser_ui_strings_zh-CN.xtb chromium-143.0.7499.169/components/browser_ui/strings/android/translations/browser_ui_strings_zh-CN.xtb
--- chromium-143.0.7499.109/components/browser_ui/strings/android/translations/browser_ui_strings_zh-CN.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/browser_ui/strings/android/translations/browser_ui_strings_zh-CN.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -463,7 +463,7 @@
固定的快捷方式
控制此网站对您的设备的访问权限
关闭
-展开
+更多
下载已完成
您可能已从此网站上退出账号
要撤消文件修改权限吗?
diff -Nru chromium-143.0.7499.109/components/certificate_transparency/data/log_list.json chromium-143.0.7499.169/components/certificate_transparency/data/log_list.json
--- chromium-143.0.7499.109/components/certificate_transparency/data/log_list.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/certificate_transparency/data/log_list.json 2025-12-17 23:05:18.000000000 +0000
@@ -1,6 +1,6 @@
{
- "version": "77.7",
- "log_list_timestamp": "2025-12-08T12:53:03Z",
+ "version": "79.1",
+ "log_list_timestamp": "2025-12-17T12:53:23Z",
"operators": [
{
"name": "Google",
@@ -699,8 +699,12 @@
"url": "https://oak.ct.letsencrypt.org/2025h2/",
"mmd": 86400,
"state": {
- "usable": {
- "timestamp": "2023-11-26T12:00:00Z"
+ "readonly": {
+ "timestamp": "2025-12-12T22:30:00Z",
+ "final_tree_head": {
+ "sha256_root_hash": "fn06m+bnTrDRl01hT1F1TdZPYfxciFZZn7NAayeGOVQ=",
+ "tree_size": 1958525022
+ }
}
},
"temporal_interval": {
@@ -715,8 +719,12 @@
"url": "https://oak.ct.letsencrypt.org/2026h1/",
"mmd": 86400,
"state": {
- "usable": {
- "timestamp": "2024-11-04T00:00:00Z"
+ "readonly": {
+ "timestamp": "2025-12-12T22:30:00Z",
+ "final_tree_head": {
+ "sha256_root_hash": "deSRNfTNPgd9wfzoXIznvi+QUTxuK0R+daC6JGKGK3Q=",
+ "tree_size": 598614696
+ }
}
},
"temporal_interval": {
@@ -731,8 +739,12 @@
"url": "https://oak.ct.letsencrypt.org/2026h2/",
"mmd": 86400,
"state": {
- "usable": {
- "timestamp": "2024-11-04T00:00:00Z"
+ "readonly": {
+ "timestamp": "2025-12-12T22:30:00Z",
+ "final_tree_head": {
+ "sha256_root_hash": "uTgg1k3DUbSFFdXewyyxbsQuCc9RupplMphTwtXqvf4=",
+ "tree_size": 130815692
+ }
}
},
"temporal_interval": {
@@ -1164,8 +1176,8 @@
"monitoring_url": "https://halloumi2025h2.mon.ct.ipng.ch/",
"mmd": 60,
"state": {
- "qualified": {
- "timestamp": "2025-10-07T18:30:00Z"
+ "usable": {
+ "timestamp": "2025-12-17T18:30:00Z"
}
},
"temporal_interval": {
@@ -1181,8 +1193,8 @@
"monitoring_url": "https://halloumi2026h1.mon.ct.ipng.ch/",
"mmd": 60,
"state": {
- "qualified": {
- "timestamp": "2025-10-07T18:30:00Z"
+ "usable": {
+ "timestamp": "2025-12-17T18:30:00Z"
}
},
"temporal_interval": {
@@ -1215,8 +1227,8 @@
"monitoring_url": "https://halloumi2027h1.mon.ct.ipng.ch/",
"mmd": 60,
"state": {
- "qualified": {
- "timestamp": "2025-10-07T18:30:00Z"
+ "usable": {
+ "timestamp": "2025-12-17T18:30:00Z"
}
},
"temporal_interval": {
@@ -1232,8 +1244,8 @@
"monitoring_url": "https://halloumi2027h2.mon.ct.ipng.ch/",
"mmd": 60,
"state": {
- "qualified": {
- "timestamp": "2025-10-07T18:30:00Z"
+ "usable": {
+ "timestamp": "2025-12-17T18:30:00Z"
}
},
"temporal_interval": {
diff -Nru chromium-143.0.7499.109/components/contextual_tasks/internal/contextual_tasks_service_impl_unittest.cc chromium-143.0.7499.169/components/contextual_tasks/internal/contextual_tasks_service_impl_unittest.cc
--- chromium-143.0.7499.109/components/contextual_tasks/internal/contextual_tasks_service_impl_unittest.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/contextual_tasks/internal/contextual_tasks_service_impl_unittest.cc 2025-12-17 23:05:18.000000000 +0000
@@ -41,7 +41,8 @@
class MockAimEligibilityService : public AimEligibilityService {
public:
explicit MockAimEligibilityService(PrefService* pref_service)
- : AimEligibilityService(*pref_service, nullptr, nullptr, nullptr) {}
+ : AimEligibilityService(*pref_service, nullptr, nullptr, nullptr, false) {
+ }
MOCK_METHOD(bool, IsAimEligible, (), (const, override));
// The following methods are marked as pure virtual in AimEligibilityService,
diff -Nru chromium-143.0.7499.109/components/metrics/BUILD.gn chromium-143.0.7499.169/components/metrics/BUILD.gn
--- chromium-143.0.7499.109/components/metrics/BUILD.gn 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/metrics/BUILD.gn 2025-12-17 23:05:18.000000000 +0000
@@ -736,7 +736,7 @@
}
grit("server_urls_grd") {
- if (enable_src_internal) {
+ if (is_chrome_branded) {
source = "internal/server_urls.grd"
} else {
source = "server_urls.grd"
diff -Nru chromium-143.0.7499.109/components/omnibox/browser/aim_eligibility_service.cc chromium-143.0.7499.169/components/omnibox/browser/aim_eligibility_service.cc
--- chromium-143.0.7499.109/components/omnibox/browser/aim_eligibility_service.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/omnibox/browser/aim_eligibility_service.cc 2025-12-17 23:05:18.000000000 +0000
@@ -235,11 +235,13 @@
PrefService& pref_service,
TemplateURLService* template_url_service,
scoped_refptr url_loader_factory,
- signin::IdentityManager* identity_manager)
+ signin::IdentityManager* identity_manager,
+ bool is_off_the_record)
: pref_service_(pref_service),
template_url_service_(template_url_service),
url_loader_factory_(url_loader_factory),
- identity_manager_(identity_manager) {
+ identity_manager_(identity_manager),
+ is_off_the_record_(is_off_the_record) {
if (base::FeatureList::IsEnabled(omnibox::kAimEnabled)) {
Initialize();
}
@@ -329,6 +331,10 @@
}
bool AimEligibilityService::IsCreateImagesEligible() const {
+ if (is_off_the_record_) {
+ return false;
+ }
+
if (!IsAimEligible()) {
return false;
}
diff -Nru chromium-143.0.7499.109/components/omnibox/browser/aim_eligibility_service.h chromium-143.0.7499.169/components/omnibox/browser/aim_eligibility_service.h
--- chromium-143.0.7499.109/components/omnibox/browser/aim_eligibility_service.h 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/omnibox/browser/aim_eligibility_service.h 2025-12-17 23:05:18.000000000 +0000
@@ -62,7 +62,8 @@
PrefService& pref_service,
TemplateURLService* template_url_service,
scoped_refptr url_loader_factory,
- signin::IdentityManager* identity_manager);
+ signin::IdentityManager* identity_manager,
+ bool is_off_the_record);
~AimEligibilityService() override;
// Checks if the application country matches the given country.
@@ -93,7 +94,8 @@
// Checks if user is eligible for Deep Search in AIM features.
virtual bool IsDeepSearchEligible() const;
- // Checks if user is eligible for Create Images in AIM features.
+ // Checks if user is eligible for Create Images in AIM features. Always
+ // returns false for off-the-record profiles.
virtual bool IsCreateImagesEligible() const;
protected:
@@ -218,6 +220,7 @@
const scoped_refptr url_loader_factory_;
// Outlives `this` due to BCKSF dependency. Can be nullptr in tests.
const raw_ptr identity_manager_;
+ const bool is_off_the_record_;
PrefChangeRegistrar pref_change_registrar_;
base::CallbackListSubscription template_url_service_subscription_;
diff -Nru chromium-143.0.7499.109/components/omnibox/browser/fake_autocomplete_provider_client.cc chromium-143.0.7499.169/components/omnibox/browser/fake_autocomplete_provider_client.cc
--- chromium-143.0.7499.109/components/omnibox/browser/fake_autocomplete_provider_client.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/omnibox/browser/fake_autocomplete_provider_client.cc 2025-12-17 23:05:18.000000000 +0000
@@ -40,7 +40,8 @@
search_engines_test_enviroment_.pref_service(),
search_engines_test_enviroment_.template_url_service(),
/*url_loader_factory=*/nullptr,
- /*identity_manager=*/nullptr);
+ /*identity_manager=*/nullptr,
+ /*is_off_the_record=*/false);
}
FakeAutocompleteProviderClient::~FakeAutocompleteProviderClient() {
diff -Nru chromium-143.0.7499.109/components/omnibox/browser/mock_aim_eligibility_service.cc chromium-143.0.7499.169/components/omnibox/browser/mock_aim_eligibility_service.cc
--- chromium-143.0.7499.109/components/omnibox/browser/mock_aim_eligibility_service.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/omnibox/browser/mock_aim_eligibility_service.cc 2025-12-17 23:05:18.000000000 +0000
@@ -10,10 +10,12 @@
PrefService& pref_service,
TemplateURLService* template_url_service,
scoped_refptr url_loader_factory,
- signin::IdentityManager* identity_manager)
+ signin::IdentityManager* identity_manager,
+ bool is_off_the_record)
: AimEligibilityService(pref_service,
template_url_service,
url_loader_factory,
- identity_manager) {}
+ identity_manager,
+ is_off_the_record) {}
MockAimEligibilityService::~MockAimEligibilityService() = default;
diff -Nru chromium-143.0.7499.109/components/omnibox/browser/mock_aim_eligibility_service.h chromium-143.0.7499.169/components/omnibox/browser/mock_aim_eligibility_service.h
--- chromium-143.0.7499.109/components/omnibox/browser/mock_aim_eligibility_service.h 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/omnibox/browser/mock_aim_eligibility_service.h 2025-12-17 23:05:18.000000000 +0000
@@ -14,7 +14,8 @@
PrefService& pref_service,
TemplateURLService* template_url_service,
scoped_refptr url_loader_factory,
- signin::IdentityManager* identity_manager);
+ signin::IdentityManager* identity_manager,
+ bool is_off_the_record = false);
~MockAimEligibilityService() override;
MOCK_METHOD(bool, IsServerEligibilityEnabled, (), (const, override));
diff -Nru chromium-143.0.7499.109/components/omnibox/resources/translations/omnibox_pedal_synonyms_am.xtb chromium-143.0.7499.169/components/omnibox/resources/translations/omnibox_pedal_synonyms_am.xtb
--- chromium-143.0.7499.109/components/omnibox/resources/translations/omnibox_pedal_synonyms_am.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/omnibox/resources/translations/omnibox_pedal_synonyms_am.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -26,7 +26,7 @@
google ሉህ መፍጠር፣ የመሥሪያ ቦታ የተመን ሉህን መፍጠር፣ አዲስ google ሉህ፣ አዲስ google ሉህን መጀመር
አድራሻን ማከል፣ የሚላክበት አድራሻን መለወጥ፣ አድራሻዎችን ማርትዕ፣ አድራሻዎችን ማስተዳደር
የደህንነት ቅንብሮችን ማስተዳደር
-የgmail የይለፍ ቃልን መለወጥ፣ የእኔን የGmail የይለፍ ቃል መለወጥ፣ የgoogle የይለፍ ቃል ለውጥ፣ የGmail መለያ የይለፍ ቃልን ዳግም ማስጀመር
+የgmail የይለፍ ቃልን መለወጥ፣ የእኔን የGmail የይለፍ ቃል መለወጥ፣ የgoogle የይለፍ ቃል መለወጥ፣ የGmail መለያ የይለፍ ቃልን ዳግም ማስጀመር
የአሳሸ መሸጎጫን ማጽዳት, ታሪክን መሰረዝ, ኩኪዎችን መሰረዝ, የአሰሳ ታሪክን መደምሰስ, የአሳሸ መሸጎጫን ማጥፋት, ታሪክን ማጥፋት, የአሳሽ መሸጎጫን ማጽዳት, የአሰሳ ታሪክን ማጽዳት, ኩኪዎችን ማጽዳት
የchromeos ተደራሽነትን ያብጁ፣ የተደራሽነት ቅንብሮችን ያቀናብሩ
የchrome ታሪክን ይመልከቱ፣ የአሰሳ ታሪክን ይመልከቱ
diff -Nru chromium-143.0.7499.109/components/plus_addresses/core/browser/resources/strings/BUILD.gn chromium-143.0.7499.169/components/plus_addresses/core/browser/resources/strings/BUILD.gn
--- chromium-143.0.7499.109/components/plus_addresses/core/browser/resources/strings/BUILD.gn 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/plus_addresses/core/browser/resources/strings/BUILD.gn 2025-12-17 23:05:18.000000000 +0000
@@ -11,7 +11,7 @@
}
grit_strings("strings") {
- if (is_internal_chrome_branded) {
+ if (is_chrome_branded) {
source = "../internal/strings/plus_addresses_internal_strings.grd"
} else {
source = "plus_addresses_strings.grd"
diff -Nru chromium-143.0.7499.109/components/policy/resources/policy_templates_zh-CN.xtb chromium-143.0.7499.169/components/policy/resources/policy_templates_zh-CN.xtb
--- chromium-143.0.7499.109/components/policy/resources/policy_templates_zh-CN.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/policy/resources/policy_templates_zh-CN.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -248,7 +248,7 @@
LTC 渠道
允许用户在其设备上开启或关闭 网站建议采用的广告设置。
在这些网站上允许图片
-可对哪些身份验证方案采用政策凭据。可设为下列值之一:
+可对哪些身份验证方案采用政策凭证。可设为下列值之一:
* basic
* digest
* ntlm
@@ -1214,7 +1214,7 @@
如果此政策已停用或未设置,远程协助主机会在用户的环境中运行,而且远程用户将无法与本地用户的桌面设备上需有较高权限才能使用的窗口交互。
禁止使用密码管理工具保存通行密钥
-在设备级别保存有效的 Wi-Fi 凭据
+在设备级别保存有效的 Wi-Fi 凭证
页面的高度(以微米为单位)
Kerberos 票据的预填充配置
允许自助服务终端 Web 应用在设备离线的情况下启动时显示网络提示
@@ -1562,7 +1562,7 @@
请求用户许可运行需要授权的插件
启用关于使用情况和崩溃相关数据的报告
不在任务栏中显示“退出”按钮
-添加预先填充的 Kerberos 账号。如果 Kerberos 凭据与登录凭据相匹配,则可以将账号配置为重复使用登录凭据,方法是分别为主账号和密码指定“”和“”;这样一来,除非配置了双重身份验证,否则系统便可以自动检索 Kerberos 票据。用户无法修改通过此政策添加的账号。
+添加预先填充的 Kerberos 账号。如果 Kerberos 凭证与登录凭证相匹配,则可以将账号配置为重复使用登录凭证,方法是分别为主账号和密码指定“”和“”;这样一来,除非配置了双重身份验证,否则系统便可以自动检索 Kerberos 票据。用户无法修改通过此政策添加的账号。
如果已启用此政策,系统会将此政策定义的账号列表添加到 Kerberos 账号设置。
@@ -1751,7 +1751,7 @@
如果已停用此政策,用户将无法使用此功能。
- 如果您设置了此政策,用户便无法在 中更改它。如果未设置此政策,系统会允许执行凭据泄露检查,但用户可关闭该功能。
+ 如果您设置了此政策,用户便无法在 中更改它。如果未设置此政策,系统会允许执行凭证泄露检查,但用户可关闭该功能。
在使用 POST 的搜索网址中所需的参数
默认情况下,chrome://history/grouped 中会以网页分组的方式显示“Chrome 历史记录”页面。
不允许使用生成式 AI 照片编辑功能。
@@ -1837,7 +1837,7 @@
如果此政策已停用或未设置,用户便可在使用移动网络连接时将文件传输到 Google 云端硬盘。
在登录期间允许显示同步同意声明
-允许共享用户凭据
+允许共享用户凭证
为本地信任锚启用 TLS 1.3 安全功能。
允许用户选择要加载的桌面布局模板
不允许使用无障碍性能过滤机制。
@@ -2079,7 +2079,7 @@
将 设为唯一可用的浏览器(尚未实施)
使用缓存加密。
不允许任何网站通过 WebHID API 请求对 HID 设备的访问权限
-允许关闭针对所输入凭据的密码泄露警示
+允许关闭针对所输入凭证的密码泄露警示
允许使用该功能并改进 AI 模型
播放音频时不将用户视为空闲
如果此政策设为 true,则会启用静默打印,即在打开打印预览窗口后立即将其关闭,并在默认打印机上使用默认选项打印。如果默认打印机是“另存为 PDF”,文件将保存到“下载内容”文件夹中。
@@ -2377,11 +2377,11 @@
允许启用 Phone Hub 通知
在 macOS 13.5 或更高版本上, 可将通行密钥/WebAuthn 创建请求直接定向到 iCloud 钥匙串。如果 iCloud 钥匙串同步功能尚未启用,系统会提示用户通过 iCloud 登录,或者可能会提示用户启用 iCloud 钥匙串同步功能。
-如果此政策设为 false,系统默认不会使用 iCloud 钥匙串,而会改为采取之前的行为(即在 个人资料中创建凭据)。用户仍能选择将 iCloud 钥匙串作为一个选项,并且登录时或许仍会看到 iCloud 钥匙串凭据。
+如果此政策设为 false,系统默认不会使用 iCloud 钥匙串,而会改为采取之前的行为(即在 个人资料中创建凭证)。用户仍能选择将 iCloud 钥匙串作为一个选项,并且登录时或许仍会看到 iCloud 钥匙串凭证。
-如果此政策设为“true”,每当 WebAuthn 请求与所选的选项兼容时,系统默认便会在 iCloud 钥匙串中创建凭据。
+如果此政策设为“true”,每当 WebAuthn 请求与所选的选项兼容时,系统默认便会在 iCloud 钥匙串中创建凭证。
-如果未设置此政策,默认设置将取决于多种因素,例如是否启用了 iCloud 云盘,以及用户近期是否使用过其 个人资料中的凭据或在其中创建了凭据。
+如果未设置此政策,默认设置将取决于多种因素,例如是否启用了 iCloud 云盘,以及用户近期是否使用过其 个人资料中的凭证或在其中创建了凭证。
通过设置此政策,您可以控制要在备用浏览器中打开的网站列表。每项内容都会被视为一条规则,用于确定要在备用浏览器中打开的网站。 会使用这些规则来确定是否应在备用浏览器中打开某个网址。如果 插件已开启,当规则无匹配项时, 会切换回 。如果规则之间相互冲突, 会使用最具体的规则。
如果您不设置此政策,系统不会将任何网站加入列表。
@@ -2619,7 +2619,7 @@
允许应用捕获和覆盖默认系统快捷键。
启用高反差模式
设定日间高级电池充电模式配置
-允许与其他用户共享用户凭据
+允许与其他用户共享用户凭证
允许使用 Google 个人资料图片或本地图片自定义用户头像图片。
配置扩展程序安装许可名单
停用快速切换功能
@@ -5442,7 +5442,7 @@
停用设备自助服务终端会话报告功能
当闲置延迟时间已过且使用电池供电时应执行的操作
在用户登录期间显示人体存在传感器界面
-自助服务终端 Wi-Fi 凭据存储在自助服务终端级别
+自助服务终端 Wi-Fi 凭证存储在自助服务终端级别
默认的本地字体权限设置
显示完整网址
用户和设备报告
@@ -5715,7 +5715,7 @@
闲置延迟时间已过时执行的操作
控制是否显示企业标记
不允许端口转发到 Linux 虚拟机
-登录凭据不会被用于网络身份验证。
+登录凭证不会被用于网络身份验证。
允许进行 产品分析
启用终端系统应用中的 SSH
网站遥测数据报告
@@ -6905,7 +6905,7 @@
停用后台模式
设置屏幕截取内容的存储位置
报告 CRD 会话
-禁止共享用户凭据
+禁止共享用户凭证
停用资料分离
配置所允许的“快速解锁”模式
启用 Android 应用至 Web 应用分享功能。
@@ -7095,7 +7095,7 @@
如果此政策设为 false 或未设置,系统将不允许 收集数据。
如果此政策设为 true, 可能会收集 使用情况数据,然后整合并全面分析该数据以提升 使用体验。
-将 Google 凭据绑定到设备
+将 Google 凭证绑定到设备
允许网页出于播放受保护内容的目的使用标识符
此政策旨在配置允许使用的最低 版本的要求。
@@ -8115,8 +8115,8 @@
要在设备闲置时锁定屏幕,您最好采用以下方式:让系统在进入暂停状态时锁定屏幕,并指示 在闲置延迟时间过后进入暂停状态。只有在以下情况下才应使用此政策:屏幕锁定时间应显著早于系统进入暂停状态的时间,或者完全不需要在设备闲置时暂停系统。
指定的政策值应以毫秒为单位,且必须小于闲置延迟时间。
-如果此政策设为启用, 会自动在设备级别保存有效的自助服务终端 Wi-Fi 凭据:设备上的任何其他自助服务终端应用或用户都可以使用该有效 Wi-Fi。
-如果此政策未设置或设为停用,自助服务终端的有效 Wi-Fi 凭据将存储在自助服务终端级别:在自助服务终端应用中配置的 Wi-Fi 只能在该自助服务终端应用中使用。
+如果此政策设为启用, 会自动在设备级别保存有效的自助服务终端 Wi-Fi 凭证:设备上的任何其他自助服务终端应用或用户都可以使用该有效 Wi-Fi。
+如果此政策未设置或设为停用,自助服务终端的有效 Wi-Fi 凭证将存储在自助服务终端级别:在自助服务终端应用中配置的 Wi-Fi 只能在该自助服务终端应用中使用。
除非没有其他可用选项(例如 OpenNetworkConfiguration 政策),否则不建议使用此政策。
使用内置证书验证程序
覆盖 Related Website Set。
@@ -8371,7 +8371,7 @@
如果此政策已停用或未设置,打印命令将触发打印预览屏幕。
磁盘映像的十六进制编码 SHA-256 哈希。
-如果此政策已启用,HTTP 身份验证机制会遵循 KDC 政策的审批结果。换言之,如果 KDC 政策在服务工单上设置了 , 便会向正在访问的服务委派用户凭据。请参阅 RFC 5896 ( https://tools.ietf.org/html/rfc5896.html )。 也应允许使用该服务。
+如果此政策已启用,HTTP 身份验证机制会遵循 KDC 政策的审批结果。换言之,如果 KDC 政策在服务工单上设置了 , 便会向正在访问的服务委派用户凭证。请参阅 RFC 5896 ( https://tools.ietf.org/html/rfc5896.html )。 也应允许使用该服务。
如果此政策已停用或未设置,那么在支持的平台上,只会遵循 政策,KDC 政策会被忽略。
@@ -8894,7 +8894,7 @@
“”偏好设置
一个布尔值标记,用于表明是否应将该协议处理程序设为默认处理程序。
选择 浏览器二进制文件
-将每个自助服务终端应用的有效 Wi-Fi 凭据公开到设备级别
+将每个自助服务终端应用的有效 Wi-Fi 凭证公开到设备级别
启用 DNS 拦截检查功能
禁止在用户输入内容时显示表情符号建议
针对远程访问主机启用无 PIN 码身份验证
@@ -9452,7 +9452,7 @@
如果此政策已停用或未设置,则意味着已注册的设备既不会记录也不会报告 TPM 安全状态。
例外情况:对于 M95 及更低版本,TPM 信息由 控制。
-允许将 登录凭据重用于网络身份验证
+允许将 登录凭证重用于网络身份验证
阻止独立式应用连接智能卡
默认在 Chrome 浏览器中打开链接
阻止浏览器进程创建动态代码
@@ -10263,7 +10263,7 @@
配置“”的网络限制
本机打印
允许启用 Phone Hub 任务延续功能。
-登录凭据会被用于向受管理的代理进行网络身份验证。
+登录凭证会被用于向受管理的代理进行网络身份验证。
受管理的账号必须是主账号,无任何辅助账号,而且允许用户在创建个人资料时导入现有浏览数据
远程访问客户端获取身份验证令牌的网址
启用设备背光信息报告功能
diff -Nru chromium-143.0.7499.109/components/safe_browsing/buildflags.gni chromium-143.0.7499.169/components/safe_browsing/buildflags.gni
--- chromium-143.0.7499.109/components/safe_browsing/buildflags.gni 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/safe_browsing/buildflags.gni 2025-12-17 23:05:18.000000000 +0000
@@ -26,5 +26,5 @@
# Variable used to control whether to use the internal notifications global cache for gating notification protections.
safe_browsing_use_internal_notifications_global_cache_origins =
- enable_src_internal
+ is_chrome_branded
}
diff -Nru chromium-143.0.7499.109/components/safe_browsing/content/browser/triggers/trigger_manager.cc chromium-143.0.7499.169/components/safe_browsing/content/browser/triggers/trigger_manager.cc
--- chromium-143.0.7499.109/components/safe_browsing/content/browser/triggers/trigger_manager.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/safe_browsing/content/browser/triggers/trigger_manager.cc 2025-12-17 23:05:18.000000000 +0000
@@ -129,7 +129,7 @@
return DataCollectionPermissions(
IsExtendedReportingOptInAllowed(pref_service),
web_contents->GetBrowserContext()->IsOffTheRecord(),
- IsExtendedReportingEnabledBypassDeprecationFlag(pref_service));
+ IsExtendedReportingEnabled(pref_service));
}
bool TriggerManager::CanStartDataCollection(
diff -Nru chromium-143.0.7499.109/components/safe_browsing/content/browser/triggers/trigger_manager_unittest.cc chromium-143.0.7499.169/components/safe_browsing/content/browser/triggers/trigger_manager_unittest.cc
--- chromium-143.0.7499.109/components/safe_browsing/content/browser/triggers/trigger_manager_unittest.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/safe_browsing/content/browser/triggers/trigger_manager_unittest.cc 2025-12-17 23:05:18.000000000 +0000
@@ -505,11 +505,10 @@
StartCollectingThreatDetails(TriggerType::AD_SAMPLE, web_contents));
}
-TEST_F(TriggerManagerTest,
- CollectionWhenExtendedReportingDeprecationEnabledAllowOptinEnabled) {
- SetPref(prefs::kSafeBrowsingExtendedReportingOptInAllowed, true);
+TEST_F(TriggerManagerTest, ReportSentWhenEsbIsEnabled) {
scoped_feature_list_.InitAndEnableFeature(
kExtendedReportingRemovePrefDependency);
+ SetPref(prefs::kSafeBrowsingEnhanced, true);
content::WebContents* web_contents = CreateWebContents();
EXPECT_TRUE(StartCollectingThreatDetails(TriggerType::SECURITY_INTERSTITIAL,
@@ -518,17 +517,16 @@
web_contents, true));
}
-TEST_F(TriggerManagerTest,
- CollectionWhenExtendedReportingDeprecationEnabledAllowOptinDisabled) {
- SetPref(prefs::kSafeBrowsingExtendedReportingOptInAllowed, false);
+TEST_F(TriggerManagerTest, ReportNotSentWhenEsbIsDisabled) {
scoped_feature_list_.InitAndEnableFeature(
kExtendedReportingRemovePrefDependency);
+ SetPref(prefs::kSafeBrowsingEnhanced, false);
content::WebContents* web_contents = CreateWebContents();
EXPECT_TRUE(StartCollectingThreatDetails(TriggerType::SECURITY_INTERSTITIAL,
web_contents));
- EXPECT_TRUE(FinishCollectingThreatDetails(TriggerType::SECURITY_INTERSTITIAL,
- web_contents, true));
+ EXPECT_FALSE(FinishCollectingThreatDetails(TriggerType::SECURITY_INTERSTITIAL,
+ web_contents, false));
}
TEST_F(TriggerManagerTest,
diff -Nru chromium-143.0.7499.109/components/safe_browsing/core/common/safe_browsing_prefs.cc chromium-143.0.7499.169/components/safe_browsing/core/common/safe_browsing_prefs.cc
--- chromium-143.0.7499.109/components/safe_browsing/core/common/safe_browsing_prefs.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/safe_browsing/core/common/safe_browsing_prefs.cc 2025-12-17 23:05:18.000000000 +0000
@@ -171,12 +171,6 @@
IsEnhancedProtectionEnabled(prefs);
}
-bool IsExtendedReportingEnabledBypassDeprecationFlag(const PrefService& prefs) {
- return (IsSafeBrowsingEnabled(prefs) &&
- prefs.GetBoolean(prefs::kSafeBrowsingScoutReportingEnabled)) ||
- IsEnhancedProtectionEnabled(prefs);
-}
-
bool IsExtendedReportingPolicyManaged(const PrefService& prefs) {
if (IsExtendedReportingDeprecated()) {
return false;
diff -Nru chromium-143.0.7499.109/components/safe_browsing/core/common/safe_browsing_prefs.h chromium-143.0.7499.169/components/safe_browsing/core/common/safe_browsing_prefs.h
--- chromium-143.0.7499.109/components/safe_browsing/core/common/safe_browsing_prefs.h 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/safe_browsing/core/common/safe_browsing_prefs.h 2025-12-17 23:05:18.000000000 +0000
@@ -411,13 +411,6 @@
// regardless of which specific one is set.
bool IsExtendedReportingEnabled(const PrefService& prefs);
-// Returns whether Safe Browsing Extended Reporting is currently enabled.
-// This function does not check the Safe Browsing Extended Reporting deprecation
-// flag, kExtendedReportingRemovePrefDependency, so that the ping manager will
-// keep sending CSBRR pings.
-// TODO(crbug.com/336547987): Remove this temporary function when the mitigation
-// is implemented and the deprecation flag is removed.
-bool IsExtendedReportingEnabledBypassDeprecationFlag(const PrefService& prefs);
// Returns whether the active Extended Reporting pref is currently managed by
// enterprise policy, meaning the user can't change it.
diff -Nru chromium-143.0.7499.109/components/safe_browsing/core/common/safe_browsing_prefs_unittest.cc chromium-143.0.7499.169/components/safe_browsing/core/common/safe_browsing_prefs_unittest.cc
--- chromium-143.0.7499.109/components/safe_browsing/core/common/safe_browsing_prefs_unittest.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/safe_browsing/core/common/safe_browsing_prefs_unittest.cc 2025-12-17 23:05:18.000000000 +0000
@@ -206,16 +206,7 @@
}
TEST_F(SafeBrowsingPrefsTest, IsExtendedReportingPolicyManaged) {
- // This test checks that manipulating SBEROptInAllowed and the management
- // state of SBER behaves as expected. Below, we describe what should happen
- // to the results of IsExtendedReportingPolicyManaged and
- // IsExtendedReportingOptInAllowed.
-
- // Confirm default state, SBER should be disabled, SBER with deprecation flag
- // bypassed should be disabled, OptInAllowed should be enabled, and SBER is
- // not managed.
EXPECT_FALSE(IsExtendedReportingEnabled(prefs_));
- EXPECT_FALSE(IsExtendedReportingEnabledBypassDeprecationFlag(prefs_));
EXPECT_TRUE(IsExtendedReportingOptInAllowed(prefs_));
EXPECT_FALSE(IsExtendedReportingPolicyManaged(prefs_));
@@ -238,8 +229,6 @@
prefs_.IsManagedPreference(prefs::kSafeBrowsingScoutReportingEnabled));
// The value of the pref comes from the policy.
EXPECT_TRUE(IsExtendedReportingEnabled(prefs_));
- // The value of the pref comes from the policy and should be enabled.
- EXPECT_TRUE(IsExtendedReportingEnabledBypassDeprecationFlag(prefs_));
// SBER being managed doesn't change the SBEROptInAllowed pref.
EXPECT_TRUE(IsExtendedReportingOptInAllowed(prefs_));
}
diff -Nru chromium-143.0.7499.109/components/site_isolation/site_isolation.gni chromium-143.0.7499.169/components/site_isolation/site_isolation.gni
--- chromium-143.0.7499.109/components/site_isolation/site_isolation.gni 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/site_isolation/site_isolation.gni 2025-12-17 23:05:18.000000000 +0000
@@ -14,5 +14,5 @@
# Google-internal list of isolated origins even in a developer build. Setting
# this variable explicitly to true will cause your build to fail if the
# internal file is missing.
- use_internal_isolated_origins = enable_src_internal && is_android
+ use_internal_isolated_origins = is_chrome_branded && is_android
}
diff -Nru chromium-143.0.7499.109/components/strings/components_strings_am.xtb chromium-143.0.7499.169/components/strings/components_strings_am.xtb
--- chromium-143.0.7499.109/components/strings/components_strings_am.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/strings/components_strings_am.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -4019,7 +4019,7 @@
የ መለያዎን መዳረሻ ሊያጡ ወይም የማንነት ስርቆት ሊያጋጥመዎት ይችላሉ። Chrome የይለፍ ቃልዎን አሁን እንዲቀይሩ ይመክራል።
ሸሚዞች እና ከላይ የሚለበሱ
ይህ አገልጋይ መሆኑን ሊያረጋግጥ አልቻለም፤ የደህንነት እውቅና ማረጋገጫው በተጭበረበረ ሁኔታ ተሰጥቶ ሊሆን ይችላል። ይሄ በተሳሳተ አወቃቀር ወይም አንድ አጥቂ ግንኙነትዎን በመጥለፉ የተከሰተ ሊሆን ይችላል።
-Google Chrome ላይ የይለፍ ቃልዎን ለመሙላት እየሞከረ ነው።
+Google Chrome ላይ የይለፍ ቃልህን ለመሙላት እየሞከረ ነው።
{COUNT,plural, =0{ምንም}=1{በዚህ መሣሪያ ላይ 1 ትር}one{በዚህ መሣሪያ ላይ # ትር}other{በዚህ መሣሪያ ላይ # ትሮች}}
ጎልፍ
ክሬዲት ካርድ ከChrome ይወገድ?
diff -Nru chromium-143.0.7499.109/components/strings/components_strings_ca.xtb chromium-143.0.7499.169/components/strings/components_strings_ca.xtb
--- chromium-143.0.7499.109/components/strings/components_strings_ca.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/strings/components_strings_ca.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -3167,7 +3167,7 @@
Electrònica de consum
Bloqueja les galetes de tercers
89 x 89 mm
-Etiquetes completament tallades
+Pestanyes de tall complet
Comprovació de la connexió a Internet
Privadesa d'anuncis
US Fanfold
diff -Nru chromium-143.0.7499.109/components/strings/components_strings_da.xtb chromium-143.0.7499.169/components/strings/components_strings_da.xtb
--- chromium-143.0.7499.109/components/strings/components_strings_da.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/strings/components_strings_da.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -2222,7 +2222,7 @@
Penge tilbage er tilknyttet
Tilmelding via virtuelt kort
Sender data til Administrationskonsol
-Oplysninger
+Info
Vis resultater fra de seneste 7 dage
Opdater Chrome for at deltage i denne fanegruppe
Søgefunktioner
@@ -2742,7 +2742,7 @@
Tilbyd hjælp til at skrive
Tilføj gyldig adresse
Så er du klar
-Typografier
+Stile
Ekstra tyk
Maskine i skyen
Installationer af webapps
@@ -4505,7 +4505,7 @@
Overvåg pris
Ukendt eller ikke-understøttet enhed ()
Google Play-tjenester
-Få en ny kode
+Hent en ny kode
Vis listen over enheder til casting
Tilpassede rodcertifikater
Varierer
diff -Nru chromium-143.0.7499.109/components/strings/components_strings_fa.xtb chromium-143.0.7499.169/components/strings/components_strings_fa.xtb
--- chromium-143.0.7499.109/components/strings/components_strings_fa.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/strings/components_strings_fa.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -865,7 +865,7 @@
Chrome را از تنظیمات Chrome بهروزرسانی کنید
گواهی سرور باطل شده است.
آمادهسازی و برنامهریزی مالیاتی
-با جزئیات
+بسط دادن
تبدیلپذیر
نمایش خطمشیها با مقدار تنظیم نشده
این روش ارسال در دسترس نیست. روش دیگری را امتحان کنید.
diff -Nru chromium-143.0.7499.109/components/strings/components_strings_fr.xtb chromium-143.0.7499.169/components/strings/components_strings_fr.xtb
--- chromium-143.0.7499.109/components/strings/components_strings_fr.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/strings/components_strings_fr.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -789,7 +789,7 @@
Voir les détails de la connexion
souhaite suivre vos mains
Examen requis avant le téléchargement
-Enregistrer et renseigner les adresses
+Enregistrer et saisir automatiquement les adresses
Page "" supprimée
Voyages
34 x 44 pouces
@@ -1233,7 +1233,7 @@
Image SVG
Ces flags empêchent ou annulent une modification destructive et ne sont disponibles que pendant une durée limitée.
Enregistrer le véhicule ?
-L'adresse de votre domicile peut vous aider à accomplir des tâches dans les services Google, par exemple pour obtenir des résultats de recherche et des itinéraires plus pertinents dans Google Maps. Vous pouvez modifier ou supprimer votre adresse dans votre compte Google .
+L'adresse de votre domicile peut vous être utile dans les services Google, par exemple pour obtenir des itinéraires dans Google Maps et des résultats de recherche plus pertinents. Vous pouvez modifier ou supprimer votre adresse dans votre compte Google .
Défilement et zoom autorisés
Produits ménagers de nettoyage
Suivi du prix activé
@@ -4842,7 +4842,7 @@
Enregistrer la carte
Un problème est survenu
Le certificat du serveur a expiré.
-Y compris des informations comme les numéros de téléphone, les adresses e-mail et les adresses de livraison
+Inclut des infos comme les numéros de téléphone, les adresses e-mail et les adresses de livraison
Noms des fichiers que vous imprimez
Chargement du PDF terminé
Vous pouvez désormais redimensionner l'appli
diff -Nru chromium-143.0.7499.109/components/strings/components_strings_hi.xtb chromium-143.0.7499.169/components/strings/components_strings_hi.xtb
--- chromium-143.0.7499.109/components/strings/components_strings_hi.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/strings/components_strings_hi.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -2664,7 +2664,7 @@
लेबल (इंकजेट)
बिल्डिंग मटीरियल और उनकी सप्लाई
हेज फ़ंड
-आप इस समय पर नहीं जा सकते हैं क्योंकि उसका प्रमाणपत्र रद्द कर दिया गया है. नेटवर्क की गड़बड़ी और हमले आमतौर पर कुछ देर के लिए होते हैं, इसलिए मुमकिन है कि यह पेज बाद में काम करे.
+आप इस समय पर नहीं जा सकते हैं क्योंकि उसका प्रमाणपत्र रद्द कर दिया गया है. नेटवर्क की गड़बड़ी और हमले आम तौर पर कुछ देर के लिए होते हैं, इसलिए मुमकिन है कि यह पेज बाद में काम करे.
लैंप और लाइटिंग
नीति सेटिंग संग्रहित करने में विफल
Salesforce
diff -Nru chromium-143.0.7499.109/components/strings/components_strings_hr.xtb chromium-143.0.7499.169/components/strings/components_strings_hr.xtb
--- chromium-143.0.7499.109/components/strings/components_strings_hr.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/strings/components_strings_hr.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -579,7 +579,7 @@
Spajanje pri vrhu desno
Blokiranjem teme blokirat će se i sve povezane teme, čak i ako je ta tema aktivna
A3x3
-Dodavanje načina plaćanja
+Dodajte način plaćanja
Pronađite, zaštitite ili izbrišite uređaj
Komedija uživo
Vaš najbolji rezultat je .
diff -Nru chromium-143.0.7499.109/components/strings/components_strings_is.xtb chromium-143.0.7499.169/components/strings/components_strings_is.xtb
--- chromium-143.0.7499.109/components/strings/components_strings_is.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/strings/components_strings_is.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -361,7 +361,7 @@
CVC
Rennur ekki út
Eitthvað fór úrskeiðis við að birta þessa vefsíðu.
-Hvort auglýsing sem birtist þér þegar þú skoðar vefsvæði er sérsniðin eða ekki veltur á þessari stillingu, auglýsingatillögum vefsvæða, fótsporastillingum og hvort að vefsvæðið sem þú ert að skoða sérsníði auglýsingar
+Hvort auglýsing sem birtist þér þegar þú skoðar vefsvæði er sérsniðin eða ekki veltur á þessari stillingu, auglýsingatillögum vefsvæða, fótsporastillingum og hvort vefsvæðið sem þú ert að skoða sérsníðir auglýsingar
Hvaða viðbætur þú hefur sett upp
Venjuleg
Endurnefna töflu
diff -Nru chromium-143.0.7499.109/components/strings/components_strings_kk.xtb chromium-143.0.7499.169/components/strings/components_strings_kk.xtb
--- chromium-143.0.7499.109/components/strings/components_strings_kk.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/strings/components_strings_kk.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -2799,7 +2799,7 @@
Кондиционерлер
Бұл сайт бөгелді, себебі құрамында ересектерге арналған контент болуы мүмкін.
Мекенжайды жою
-Тақырыптар тізімдемесі
+Құжат құрылымы
Локацияны пайдалану үшін бөлімінде Chrome-ға рұқсат беріңіз.
Инкогнито қойындысын ашу
Белсенді
diff -Nru chromium-143.0.7499.109/components/strings/components_strings_lv.xtb chromium-143.0.7499.169/components/strings/components_strings_lv.xtb
--- chromium-143.0.7499.109/components/strings/components_strings_lv.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/strings/components_strings_lv.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -2145,7 +2145,7 @@
MP4 video
Picērijas
Aploksne Kaku 4
-Verificējiet identitāti, lai automātiski aizpildītu maksājuma veidus
+Verificēt identitāti, lai automātiski aizpildītu maksājuma veidus
A7
Šifrēt sinhronizētās paroles, izmantojot jūsu Google konta datus
Nederīgs URL. Vietrādim URL ir jābūt ar standarta shēmu, piemēram, “http://example.com” vai “https://example.com”.
diff -Nru chromium-143.0.7499.109/components/strings/components_strings_pt-BR.xtb chromium-143.0.7499.169/components/strings/components_strings_pt-BR.xtb
--- chromium-143.0.7499.109/components/strings/components_strings_pt-BR.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/strings/components_strings_pt-BR.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -1301,7 +1301,7 @@
Abrir mesmo assim
Mudar para esta guia.
Nenhuma decisão de consentimento
-As políticas de teste foram aplicadas e podem ser revisadas ou redefinidas em chrome://policy/test. As políticas de administrador não serão aplicadas.
+As políticas de teste foram aplicadas e podem ser revisadas ou redefinidas em chrome://policy/test. As políticas de admin não serão aplicadas.
Falha ao decodificar resposta
Viagens de baixo custo e de última hora
Erro temporário do servidor
diff -Nru chromium-143.0.7499.109/components/strings/components_strings_ru.xtb chromium-143.0.7499.169/components/strings/components_strings_ru.xtb
--- chromium-143.0.7499.109/components/strings/components_strings_ru.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/strings/components_strings_ru.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -657,7 +657,7 @@
Добавить текст
За дополнительной информацией обратитесь к провайдеру.
Звук
-Введите запрос в или укажите URL
+Запрос в или URL
Google Chrome пытается отключить Windows Hello, чтобы не использовать этот сервис для подстановки паролей.
Несоответствие домена
Информация о версии
diff -Nru chromium-143.0.7499.109/components/strings/components_strings_sk.xtb chromium-143.0.7499.169/components/strings/components_strings_sk.xtb
--- chromium-143.0.7499.109/components/strings/components_strings_sk.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/strings/components_strings_sk.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -431,7 +431,7 @@
ROC 16K
Letter
Plaťte na splátky pomocou služby Affirm alebo Zip
-Úrovne priblíženia
+Úrovne lupy
Prístupový kľúč •
{1,plural, =1{Tomuto serveru sa nepodarilo dokázať, že ide o doménu ; jej certifikát by mal začať platiť od zajtra. Môže to byť následok nesprávnej konfigurácie alebo napadnutia vášho pripojenia útočníkom.}few{Tomuto serveru sa nepodarilo dokázať, že ide o doménu ; jej certifikát by mal začať platiť o # dni. Môže to byť následok nesprávnej konfigurácie alebo napadnutia vášho pripojenia útočníkom.}many{Tomuto serveru sa nepodarilo dokázať, že ide o doménu ; jej certifikát by mal začať platiť o # dňa. Môže to byť následok nesprávnej konfigurácie alebo napadnutia vášho pripojenia útočníkom.}other{Tomuto serveru sa nepodarilo dokázať, že ide o doménu ; jej certifikát by mal začať platiť o # dní. Môže to byť následok nesprávnej konfigurácie alebo napadnutia vášho pripojenia útočníkom.}}
OS
diff -Nru chromium-143.0.7499.109/components/strings/components_strings_uk.xtb chromium-143.0.7499.169/components/strings/components_strings_uk.xtb
--- chromium-143.0.7499.109/components/strings/components_strings_uk.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/strings/components_strings_uk.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -3450,7 +3450,7 @@
Керує:
Використовувати Windows Hello
перевірить, чи відповідаєте ви вимогам (це не вплине на ваш кредитний рейтинг). Якщо так, запропонує вам платіжні плани, щоб ви могли завершити купівлю.
-Описати у формальнішому стилі
+Формальний стиль
Скло (текстуроване)
Пароль
Це низька ціна
diff -Nru chromium-143.0.7499.109/components/strings/components_strings_vi.xtb chromium-143.0.7499.169/components/strings/components_strings_vi.xtb
--- chromium-143.0.7499.109/components/strings/components_strings_vi.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/strings/components_strings_vi.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -2502,7 +2502,7 @@
Chứng chỉ của máy chủ không hợp lệ tại thời điểm này.
Thêm thẻ
Thông báo gửi đến trình vận hành
-Tỉnh
+Tỉnh/Bang
Thêm các thẻ có sản phẩm tương tự để dễ dàng so sánh những thông tin bạn quan tâm
Gấp kiểu chữ Z
Bạn gặp sự cố khi đăng nhập? Thử cách khác
diff -Nru chromium-143.0.7499.109/components/strings/components_strings_zh-CN.xtb chromium-143.0.7499.169/components/strings/components_strings_zh-CN.xtb
--- chromium-143.0.7499.109/components/strings/components_strings_zh-CN.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/strings/components_strings_zh-CN.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -239,7 +239,7 @@
包芯折
浅蓝色
您的管理员允许使用的 USB 设备
-安全付款凭据身份验证表单
+安全付款凭证身份验证表单
注释
访问该网站时允许
详细了解此警告
@@ -495,7 +495,7 @@
已允许锁定鼠标
可以询问能否使用您的麦克风
关联账号即可快速启用 Pix
-此应用请求您授权安装 Wi-Fi 凭据。设置完毕后,您的将会自动连接到参与的 Wi-Fi 网络。如需移除这些凭据,请卸载该应用。
+此应用请求您授权安装 Wi-Fi 凭证。设置完毕后,您的将会自动连接到参与的 Wi-Fi 网络。如需移除这些凭证,请卸载该应用。
浅色调
起始工作表
(64-bit emulated)
@@ -1149,7 +1149,7 @@
机器学习与人工智能
工作账号用户 ID
烧烤架和烤肉架
- 通常会使用加密技术来保护您的信息。Chrome 此次尝试连接到 时,该网站发回了异常的错误凭据。这可能是因为有攻击者在试图冒充 ,或者 Wi-Fi 登录屏幕中断了此次连接。请放心,您的信息仍然是安全的,因为 Chrome 尚未进行任何数据交换便停止了连接。
+ 通常会使用加密技术来保护您的信息。Chrome 此次尝试连接到 时,该网站发回了异常的错误凭证。这可能是因为有攻击者在试图冒充 ,或者 Wi-Fi 登录屏幕中断了此次连接。请放心,您的信息仍然是安全的,因为 Chrome 尚未进行任何数据交换便停止了连接。
崩溃时间:
绘画
关闭其他程序
@@ -1366,7 +1366,7 @@
凭卡可享的福利
在无痕式窗口中打开链接
,依次按 Tab 键和 Enter 键即可自定义您的浏览器外观
-“无匹配的安全付款凭据”表单已打开
+“无匹配的安全付款凭证”表单已打开
“”链接已被禁用
绘制
不在此网站上显示
@@ -1531,7 +1531,7 @@
音乐与音频
服务器的证书不受信任。
{COUNT,plural, =0{在已同步的设备上至少有 1 项内容}=1{1 项内容(在已同步的设备上还有更多内容)}other{# 项内容(在已同步的设备上还有更多内容)}}
-使用屏幕锁定解锁凭据
+使用屏幕锁定解锁凭证
工作表
想使用您的麦克风
信箱 5
@@ -2533,7 +2533,7 @@
波兰语
管理地址…
请输入正确的验证码
-此应用请求您授权安装 Wi-Fi 凭据。设置完毕后,您的将会自动连接到参与的 Wi-Fi 网络。如需移除这些凭据,请卸载该应用。
+此应用请求您授权安装 Wi-Fi 凭证。设置完毕后,您的将会自动连接到参与的 Wi-Fi 网络。如需移除这些凭证,请卸载该应用。
暂时无法使用虚拟卡,请联系您的发卡行
收起
您已允许此网站使用
@@ -3064,7 +3064,7 @@
价格分析
自动
室内温度
-展开
+更多
已完成!
拼版模板
输入 即可在“”中搜索或提问
@@ -3078,7 +3078,7 @@
正在填充 IBAN
您可在各种 Google 产品中使用已保存的地址。此地址已保存到您的 Google 账号 ()。
如需详细了解 Google 如何保护您的数据,请参阅我们的隐私权政策。
-“无匹配的安全付款凭据”表单
+“无匹配的安全付款凭证”表单
信封(存档用)
在线视频
土木工程
@@ -3287,7 +3287,7 @@
Z 型对折
恢复
多部分表单
-“无匹配的安全付款凭据”表单已关闭
+“无匹配的安全付款凭证”表单已关闭
纸(牛皮纸)
建议一个安全系数高的密码
商家不支持
@@ -3577,7 +3577,7 @@
高价选项
快速创建一个新的 Google 文档
如果某个网站无法正常运行,您可尝试向其授予对第三方 Cookie 的临时使用权限。了解详情
-安全付款凭据身份验证表单已关闭
+安全付款凭证身份验证表单已关闭
工作地址
ZIP 归档文件
@@ -4726,7 +4726,7 @@
此网站使用的安全性配置已过时,这可能会导致您的信息(例如密码、消息或信用卡卡号)在发送至此网站的过程中遭到泄露。
USB 设备
关闭当前打开的所有无痕式窗口
-安全付款凭据身份验证表单已打开
+安全付款凭证身份验证表单已打开
关闭帮助气泡
{COUNT,plural, =1{1 种支付方式}other{# 种支付方式}}
“创建演示文稿”按钮,激活它即可在幻灯片中快速创建新的 Google 演示文稿
diff -Nru chromium-143.0.7499.109/components/strings/components_strings_zh-TW.xtb chromium-143.0.7499.169/components/strings/components_strings_zh-TW.xtb
--- chromium-143.0.7499.109/components/strings/components_strings_zh-TW.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/components/strings/components_strings_zh-TW.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -4653,7 +4653,7 @@
取得折扣
54 x 86 公釐
Chrome 內建安全性功能,可在你瀏覽網站時提供保護,Google 安全瀏覽功能就是其中之一。這項功能最近曾在你嘗試造訪的網站上發現網路釣魚內容。網路釣魚網站會偽裝成其他網站來欺騙你。即使是平常可以安心造訪的網站,有時也會遭到攻擊者入侵。如果你認為我們的判斷有誤,而且這個網站沒有危險,請告訴我們。
-如要分享分頁及多人協作,必須能夠登入 Chrome
+必須能夠登入 Chrome,才能共用分頁、與他人協作
信封 (證券紙)
Envelope Kaku 3
關閉群組會限制可加入的對象
diff -Nru chromium-143.0.7499.109/content/browser/devtools/protocol/page_handler.cc chromium-143.0.7499.169/content/browser/devtools/protocol/page_handler.cc
--- chromium-143.0.7499.109/content/browser/devtools/protocol/page_handler.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/content/browser/devtools/protocol/page_handler.cc 2025-12-17 23:05:18.000000000 +0000
@@ -885,7 +885,9 @@
// chrome-untrusted:// WebUIs might perform high-priviledged actions on
// navigation, disallow navigation to them unless the client is trusted.
- if (gurl.SchemeIs(kChromeUIUntrustedScheme) && !is_trusted_) {
+ if ((gurl.SchemeIs(kChromeUIUntrustedScheme) ||
+ gurl.SchemeIs(kChromeDevToolsScheme)) &&
+ !is_trusted_) {
callback->sendFailure(Response::ServerError(
"Navigating to a URL with a privileged scheme is not allowed"));
return;
diff -Nru chromium-143.0.7499.109/content/public/common/content_features.cc chromium-143.0.7499.169/content/public/common/content_features.cc
--- chromium-143.0.7499.109/content/public/common/content_features.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/content/public/common/content_features.cc 2025-12-17 23:05:18.000000000 +0000
@@ -886,7 +886,7 @@
// it doesn't require a developer opt-in.
//
// crbug.com/1472634 for more details.
-BASE_FEATURE(kServiceWorkerAutoPreload, base::FEATURE_ENABLED_BY_DEFAULT);
+BASE_FEATURE(kServiceWorkerAutoPreload, base::FEATURE_DISABLED_BY_DEFAULT);
// crbug.com/374606637: When this is enabled, race-network-and-fetch-hander will
// prioritize the response processing for the network request over the
diff -Nru chromium-143.0.7499.109/debian/changelog chromium-143.0.7499.169/debian/changelog
--- chromium-143.0.7499.109/debian/changelog 2025-12-11 03:14:03.000000000 +0000
+++ chromium-143.0.7499.169/debian/changelog 2025-12-20 02:44:43.000000000 +0000
@@ -1,3 +1,18 @@
+chromium (143.0.7499.169-1~deb12u1) bookworm-security; urgency=high
+
+ [ Andres Salomon ]
+ * New upstream security release.
+ - CVE-2025-14765: Use after free in WebGPU. Reported by Anonymous.
+ - CVE-2025-14766: Out of bounds read and write in V8.
+ Reported by Shaheen Fazim.
+ * d/rules: change (google-specific) upstream tarball url.
+
+ [ Daniel Richard G. ]
+ * d/patches/debianization/cross-build.patch: Update changes to the protoc
+ wrapper to cover additional cases of non-emulated Python execution.
+
+ -- Andres Salomon Fri, 19 Dec 2025 21:44:43 -0500
+
chromium (143.0.7499.109-1~deb12u1) bookworm-security; urgency=high
[ Andres Salomon ]
diff -Nru chromium-143.0.7499.109/debian/patches/debianization/cross-build.patch chromium-143.0.7499.169/debian/patches/debianization/cross-build.patch
--- chromium-143.0.7499.109/debian/patches/debianization/cross-build.patch 2025-11-30 21:50:52.000000000 +0000
+++ chromium-143.0.7499.169/debian/patches/debianization/cross-build.patch 2025-12-20 02:44:43.000000000 +0000
@@ -228,7 +228,7 @@
import subprocess
import sys
import tempfile
-@@ -227,6 +227,14 @@ def main(argv):
+@@ -227,6 +227,16 @@ def main(argv):
if not options.exclude_imports:
protoc_cmd += ["--include_imports"]
@@ -236,9 +236,11 @@
+ wrapper_env = os.environ.get('HOST_EXEC_WRAPPER')
+ if wrapper_env:
+ protoc_cmd[0:0] = wrapper_env.split()
-+ if options.plugin and options.plugin.endswith('.py'):
-+ # Don't invoke a Python script via the wrapper
-+ del os.environ['HOST_EXEC_WRAPPER']
++ for arg in options.plugin, options.protoc_gen_js, options.protoc_gen_ts:
++ if arg and arg.endswith('.py'):
++ # Don't invoke a Python script via the wrapper
++ del os.environ['HOST_EXEC_WRAPPER']
++ break
+
dependency_file_data = None
if options.descriptor_set_out and options.descriptor_set_dependency_file:
diff -Nru chromium-143.0.7499.109/debian/rules chromium-143.0.7499.169/debian/rules
--- chromium-143.0.7499.109/debian/rules 2025-12-03 11:22:22.000000000 +0000
+++ chromium-143.0.7499.169/debian/rules 2025-12-20 02:44:43.000000000 +0000
@@ -248,7 +248,7 @@
ifdef FROM_GOOGLE
# official distribution server
-url=https://gsdview.appspot.com/chromium-browser-official
+url=https://commondatastorage.googleapis.com/chromium-browser-official
tarfile=$(extract)-lite.tar
else
url=https://github.com/chromium-linux-tarballs/chromium-tarballs/releases/download/$(version)
diff -Nru chromium-143.0.7499.109/extensions/strings/extensions_strings_da.xtb chromium-143.0.7499.169/extensions/strings/extensions_strings_da.xtb
--- chromium-143.0.7499.109/extensions/strings/extensions_strings_da.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/extensions/strings/extensions_strings_da.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -48,7 +48,7 @@
Manifestfilen er ugyldig
Administratoren af denne computer kræver, at skal installeres. Den kan ikke fjernes eller ændres.
Den indtastede værdi for den private nøgle skal være et gyldigt format (PEM-kodet RSA-nøgle i PKCS#8-format).
-Filen "" til indholdsscript kunne ikke indlæses. Indholdsscripts med typografiark kan kun indlæses fra understøttede typografiarkfiler, f.eks. .css-filer.
+Filen "" til indholdsscript kunne ikke indlæses. Indholdsscripts med stylesheets kan kun indlæses fra understøttede stylesheetfiler, f.eks. .css-filer.
Udvidelsen kunne ikke indlæses korrekt. Den kan muligvis ikke opfange netværksanmodninger.
Valgmuligheder:
Frontkamera
diff -Nru chromium-143.0.7499.109/extensions/strings/extensions_strings_hi.xtb chromium-143.0.7499.169/extensions/strings/extensions_strings_hi.xtb
--- chromium-143.0.7499.109/extensions/strings/extensions_strings_hi.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/extensions/strings/extensions_strings_hi.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -31,7 +31,7 @@
पैक करने के लिए निर्देशिका का पूरा पाथ नहीं ढूंढा जा सकता.
स्क्रिप्ट के लिए JavaScript '' को लोड नहीं किया जा सका.
ऐप्स दृश्य:
-एक्सटेंशन में कुंजी फ़ाइल '' शामिल है. संभवतः आप ऐसा नहीं करना चाहते हैं.
+एक्सटेंशन में कुंजी फ़ाइल ‘' शामिल है. संभवतः आप ऐसा नहीं करना चाहते हैं.
निजी कुंजी के लिए इनपुट मान मौजूद होना चाहिए.
इस मशीन के व्यवस्थापक के लिए आवश्यक है कि इंस्टॉल किया जाए. उसे अनइंस्टॉल नहीं किया जा सकता.
(क्रमांक ) की ओर से अज्ञात प्रॉडक्ट
diff -Nru chromium-143.0.7499.109/google_apis/BUILD.gn chromium-143.0.7499.169/google_apis/BUILD.gn
--- chromium-143.0.7499.109/google_apis/BUILD.gn 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/google_apis/BUILD.gn 2025-12-17 23:05:18.000000000 +0000
@@ -33,7 +33,7 @@
if (use_official_google_api_keys == "") {
# No override set. Determine the default behavior.
- if (is_internal_chrome_branded) {
+ if (is_chrome_branded) {
# Chrome-branded builds default to behaving as if
#`use_official_google_api_keys` was explicitly set to true and will fail to
# build if the file is missing.
@@ -52,8 +52,8 @@
# Official API keys should always be used for Chrome-branded builds except on
# iOS (see https://crbug.com/1183709) and Fuchsia (see the description of
# https://crbug.com/1171510 for background).
-assert(use_official_google_api_keys || !is_internal_chrome_branded || is_ios ||
- is_fuchsia)
+assert(
+ use_official_google_api_keys || !is_chrome_branded || is_ios || is_fuchsia)
declare_args() {
# Whether the SetAPIKey() method is defined.
diff -Nru chromium-143.0.7499.109/gpu/config/gpu_lists_version.h chromium-143.0.7499.169/gpu/config/gpu_lists_version.h
--- chromium-143.0.7499.109/gpu/config/gpu_lists_version.h 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/gpu/config/gpu_lists_version.h 2025-12-17 23:05:18.000000000 +0000
@@ -3,6 +3,6 @@
#ifndef GPU_CONFIG_GPU_LISTS_VERSION_H_
#define GPU_CONFIG_GPU_LISTS_VERSION_H_
-#define GPU_LISTS_VERSION "71a0dbd6672e2ccb6d1008376cbb7acd315cb8d6"
+#define GPU_LISTS_VERSION "164b20aab62509dad21fd46383951aeec084ad1e"
#endif // GPU_CONFIG_GPU_LISTS_VERSION_H_
diff -Nru chromium-143.0.7499.109/gpu/webgpu/DAWN_VERSION chromium-143.0.7499.169/gpu/webgpu/DAWN_VERSION
--- chromium-143.0.7499.109/gpu/webgpu/DAWN_VERSION 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/gpu/webgpu/DAWN_VERSION 2025-12-17 23:05:18.000000000 +0000
@@ -1 +1 @@
-e1ce227ebf75378c5f60a9d531579982bcdd93ee
\ No newline at end of file
+479f62d2194fd6e44c37d07654ca6e41c42bd332
\ No newline at end of file
diff -Nru chromium-143.0.7499.109/gpu/webgpu/dawn_commit_hash.h chromium-143.0.7499.169/gpu/webgpu/dawn_commit_hash.h
--- chromium-143.0.7499.109/gpu/webgpu/dawn_commit_hash.h 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/gpu/webgpu/dawn_commit_hash.h 2025-12-17 23:05:18.000000000 +0000
@@ -3,6 +3,6 @@
#ifndef GPU_WEBGPU_DAWN_COMMIT_HASH_H_
#define GPU_WEBGPU_DAWN_COMMIT_HASH_H_
-#define DAWN_COMMIT_HASH "e1ce227ebf75378c5f60a9d531579982bcdd93ee"
+#define DAWN_COMMIT_HASH "479f62d2194fd6e44c37d07654ca6e41c42bd332"
#endif // GPU_WEBGPU_DAWN_COMMIT_HASH_H_
diff -Nru chromium-143.0.7499.109/infra/config/dev.star chromium-143.0.7499.169/infra/config/dev.star
--- chromium-143.0.7499.109/infra/config/dev.star 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/dev.star 2025-12-17 23:05:18.000000000 +0000
@@ -65,6 +65,9 @@
name = settings.project,
is_main = settings.is_main,
platforms = settings.platforms,
+ experiments = [
+ "builder_config.targets_spec_directory_relative_to_source_dir",
+ ],
)
chromium_luci.configure_per_builder_outputs(
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Android FYI Release (Pixel 6)/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Android FYI Release (Pixel 6)/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Android FYI Release (Pixel 6)/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Android FYI Release (Pixel 6)/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -86,7 +86,8 @@
"group": "tryserver.chromium.android"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Android FYI Release (Pixel 6)/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Android FYI Release (Pixel 6)/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$recipe_engine/resultdb/test_presentation": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Android Release (Pixel 2)/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Android Release (Pixel 2)/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Android Release (Pixel 2)/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Android Release (Pixel 2)/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -52,7 +52,8 @@
"group": "tryserver.chromium.android"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Android Release (Pixel 2)/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Android Release (Pixel 2)/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Android arm Builder (dbg)/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Android arm Builder (dbg)/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Android arm Builder (dbg)/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Android arm Builder (dbg)/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -54,7 +54,8 @@
],
"retry_failed_shards": true,
"retry_invalid_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Android arm Builder (dbg)/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Android arm Builder (dbg)/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Android arm64 Builder (dbg)/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Android arm64 Builder (dbg)/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Android arm64 Builder (dbg)/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Android arm64 Builder (dbg)/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -54,7 +54,8 @@
],
"retry_failed_shards": true,
"retry_invalid_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Android arm64 Builder (dbg)/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Android arm64 Builder (dbg)/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Android arm64 Builder All Targets (dbg)/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Android arm64 Builder All Targets (dbg)/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Android arm64 Builder All Targets (dbg)/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Android arm64 Builder All Targets (dbg)/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -54,7 +54,8 @@
],
"retry_failed_shards": true,
"retry_invalid_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Android arm64 Builder All Targets (dbg)/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Android arm64 Builder All Targets (dbg)/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Android x64 Builder All Targets (dbg)/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Android x64 Builder All Targets (dbg)/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Android x64 Builder All Targets (dbg)/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Android x64 Builder All Targets (dbg)/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -53,7 +53,8 @@
],
"retry_failed_shards": true,
"retry_invalid_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Android x64 Builder All Targets (dbg)/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Android x64 Builder All Targets (dbg)/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Android x86 Builder (dbg)/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Android x86 Builder (dbg)/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Android x86 Builder (dbg)/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Android x86 Builder (dbg)/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -53,7 +53,8 @@
],
"retry_failed_shards": true,
"retry_invalid_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Android x86 Builder (dbg)/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Android x86 Builder (dbg)/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Dawn Chromium Presubmit/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Dawn Chromium Presubmit/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Dawn Chromium Presubmit/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Dawn Chromium Presubmit/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -47,7 +47,8 @@
"group": "tryserver.chromium.dawn"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Dawn Chromium Presubmit/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Dawn Chromium Presubmit/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Dawn Linux x64 DEPS Builder/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Dawn Linux x64 DEPS Builder/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Dawn Linux x64 DEPS Builder/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Dawn Linux x64 DEPS Builder/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -115,7 +115,8 @@
"group": "tryserver.chromium.dawn"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Dawn Linux x64 DEPS Builder/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Dawn Linux x64 DEPS Builder/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Dawn Linux x64 DEPS Release (Intel UHD 630)/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Dawn Linux x64 DEPS Release (Intel UHD 630)/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Dawn Linux x64 DEPS Release (Intel UHD 630)/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Dawn Linux x64 DEPS Release (Intel UHD 630)/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -71,7 +71,8 @@
"group": "tryserver.chromium.dawn"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Dawn Linux x64 DEPS Release (Intel UHD 630)/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Dawn Linux x64 DEPS Release (Intel UHD 630)/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$recipe_engine/resultdb/test_presentation": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Dawn Linux x64 DEPS Release (NVIDIA)/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Dawn Linux x64 DEPS Release (NVIDIA)/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Dawn Linux x64 DEPS Release (NVIDIA)/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Dawn Linux x64 DEPS Release (NVIDIA)/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -71,7 +71,8 @@
"group": "tryserver.chromium.dawn"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Dawn Linux x64 DEPS Release (NVIDIA)/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Dawn Linux x64 DEPS Release (NVIDIA)/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$recipe_engine/resultdb/test_presentation": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Dawn Mac arm64 DEPS Builder/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Dawn Mac arm64 DEPS Builder/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Dawn Mac arm64 DEPS Builder/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Dawn Mac arm64 DEPS Builder/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -82,7 +82,8 @@
"group": "tryserver.chromium.dawn"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Dawn Mac arm64 DEPS Builder/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Dawn Mac arm64 DEPS Builder/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Dawn Mac arm64 DEPS Release (Apple M2)/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Dawn Mac arm64 DEPS Release (Apple M2)/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Dawn Mac arm64 DEPS Release (Apple M2)/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Dawn Mac arm64 DEPS Release (Apple M2)/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -72,7 +72,8 @@
"group": "tryserver.chromium.dawn"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Dawn Mac arm64 DEPS Release (Apple M2)/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Dawn Mac arm64 DEPS Release (Apple M2)/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$recipe_engine/resultdb/test_presentation": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Dawn Mac x64 DEPS Builder/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Dawn Mac x64 DEPS Builder/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Dawn Mac x64 DEPS Builder/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Dawn Mac x64 DEPS Builder/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -118,7 +118,8 @@
"group": "tryserver.chromium.dawn"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Dawn Mac x64 DEPS Builder/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Dawn Mac x64 DEPS Builder/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Dawn Mac x64 DEPS Release (AMD)/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Dawn Mac x64 DEPS Release (AMD)/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Dawn Mac x64 DEPS Release (AMD)/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Dawn Mac x64 DEPS Release (AMD)/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -73,7 +73,8 @@
"group": "tryserver.chromium.dawn"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Dawn Mac x64 DEPS Release (AMD)/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Dawn Mac x64 DEPS Release (AMD)/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$recipe_engine/resultdb/test_presentation": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Dawn Mac x64 DEPS Release (Intel)/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Dawn Mac x64 DEPS Release (Intel)/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Dawn Mac x64 DEPS Release (Intel)/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Dawn Mac x64 DEPS Release (Intel)/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -73,7 +73,8 @@
"group": "tryserver.chromium.dawn"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Dawn Mac x64 DEPS Release (Intel)/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Dawn Mac x64 DEPS Release (Intel)/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$recipe_engine/resultdb/test_presentation": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Dawn Win10 x64 DEPS Builder/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Dawn Win10 x64 DEPS Builder/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Dawn Win10 x64 DEPS Builder/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Dawn Win10 x64 DEPS Builder/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -115,7 +115,8 @@
"group": "tryserver.chromium.dawn"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Dawn Win10 x64 DEPS Builder/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Dawn Win10 x64 DEPS Builder/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Dawn Win10 x64 DEPS Release (Intel)/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Dawn Win10 x64 DEPS Release (Intel)/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Dawn Win10 x64 DEPS Release (Intel)/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Dawn Win10 x64 DEPS Release (Intel)/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -71,7 +71,8 @@
"group": "tryserver.chromium.dawn"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Dawn Win10 x64 DEPS Release (Intel)/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Dawn Win10 x64 DEPS Release (Intel)/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$recipe_engine/resultdb/test_presentation": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Dawn Win10 x64 DEPS Release (NVIDIA)/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Dawn Win10 x64 DEPS Release (NVIDIA)/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Dawn Win10 x64 DEPS Release (NVIDIA)/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Dawn Win10 x64 DEPS Release (NVIDIA)/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -71,7 +71,8 @@
"group": "tryserver.chromium.dawn"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Dawn Win10 x64 DEPS Release (NVIDIA)/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Dawn Win10 x64 DEPS Release (NVIDIA)/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$recipe_engine/resultdb/test_presentation": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Dawn Win10 x86 DEPS Builder/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Dawn Win10 x86 DEPS Builder/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Dawn Win10 x86 DEPS Builder/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Dawn Win10 x86 DEPS Builder/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -115,7 +115,8 @@
"group": "tryserver.chromium.dawn"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Dawn Win10 x86 DEPS Builder/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Dawn Win10 x86 DEPS Builder/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Dawn Win10 x86 DEPS Release (Intel)/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Dawn Win10 x86 DEPS Release (Intel)/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Dawn Win10 x86 DEPS Release (Intel)/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Dawn Win10 x86 DEPS Release (Intel)/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -71,7 +71,8 @@
"group": "tryserver.chromium.dawn"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Dawn Win10 x86 DEPS Release (Intel)/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Dawn Win10 x86 DEPS Release (Intel)/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$recipe_engine/resultdb/test_presentation": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Dawn Win10 x86 DEPS Release (NVIDIA)/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Dawn Win10 x86 DEPS Release (NVIDIA)/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Dawn Win10 x86 DEPS Release (NVIDIA)/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Dawn Win10 x86 DEPS Release (NVIDIA)/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -71,7 +71,8 @@
"group": "tryserver.chromium.dawn"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Dawn Win10 x86 DEPS Release (NVIDIA)/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Dawn Win10 x86 DEPS Release (NVIDIA)/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$recipe_engine/resultdb/test_presentation": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Dawn Win11 arm64 DEPS Builder/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Dawn Win11 arm64 DEPS Builder/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Dawn Win11 arm64 DEPS Builder/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Dawn Win11 arm64 DEPS Builder/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -45,7 +45,8 @@
"group": "tryserver.chromium.dawn"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Dawn Win11 arm64 DEPS Builder/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Dawn Win11 arm64 DEPS Builder/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/GPU FYI Android arm64 Builder/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/GPU FYI Android arm64 Builder/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/GPU FYI Android arm64 Builder/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/GPU FYI Android arm64 Builder/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -96,7 +96,8 @@
"group": "tryserver.chromium.android"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/ci/GPU FYI Android arm64 Builder/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/GPU FYI Android arm64 Builder/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/GPU Linux Builder/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/GPU Linux Builder/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/GPU Linux Builder/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/GPU Linux Builder/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -86,7 +86,8 @@
"group": "tryserver.chromium.linux"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/ci/GPU Linux Builder/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/GPU Linux Builder/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/GPU Mac Builder/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/GPU Mac Builder/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/GPU Mac Builder/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/GPU Mac Builder/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -117,7 +117,8 @@
"group": "tryserver.chromium.mac"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/ci/GPU Mac Builder/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/GPU Mac Builder/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/GPU Win x64 Builder/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/GPU Win x64 Builder/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/GPU Win x64 Builder/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/GPU Win x64 Builder/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -86,7 +86,8 @@
"group": "tryserver.chromium.win"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/ci/GPU Win x64 Builder/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/GPU Win x64 Builder/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Linux ASan LSan Builder/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Linux ASan LSan Builder/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Linux ASan LSan Builder/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Linux ASan LSan Builder/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -82,7 +82,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Linux ASan LSan Builder/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Linux ASan LSan Builder/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Linux ASan LSan Tests (1)/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Linux ASan LSan Tests (1)/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Linux ASan LSan Tests (1)/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Linux ASan LSan Tests (1)/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -73,7 +73,8 @@
],
"retry_failed_shards": true,
"retry_invalid_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Linux ASan LSan Tests (1)/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Linux ASan LSan Tests (1)/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$recipe_engine/resultdb/test_presentation": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Linux Builder/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Linux Builder/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Linux Builder/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Linux Builder/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -87,7 +87,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Linux Builder/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Linux Builder/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Linux Builder (Wayland)/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Linux Builder (Wayland)/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Linux Builder (Wayland)/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Linux Builder (Wayland)/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -127,7 +127,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Linux Builder (Wayland)/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Linux Builder (Wayland)/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Linux Builder (dbg)/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Linux Builder (dbg)/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Linux Builder (dbg)/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Linux Builder (dbg)/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -87,7 +87,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Linux Builder (dbg)/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Linux Builder (dbg)/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Linux Release (NVIDIA)/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Linux Release (NVIDIA)/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Linux Release (NVIDIA)/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Linux Release (NVIDIA)/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -76,7 +76,8 @@
"group": "tryserver.chromium.linux"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Linux Release (NVIDIA)/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Linux Release (NVIDIA)/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$recipe_engine/resultdb/test_presentation": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Linux TSan Builder/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Linux TSan Builder/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Linux TSan Builder/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Linux TSan Builder/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -80,7 +80,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Linux TSan Builder/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Linux TSan Builder/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Linux TSan Tests/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Linux TSan Tests/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Linux TSan Tests/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Linux TSan Tests/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -70,7 +70,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Linux TSan Tests/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Linux TSan Tests/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Linux Tests/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Linux Tests/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Linux Tests/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Linux Tests/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -77,7 +77,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Linux Tests/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Linux Tests/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$recipe_engine/resultdb/test_presentation": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Linux Tests (dbg)(1)/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Linux Tests (dbg)(1)/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Linux Tests (dbg)(1)/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Linux Tests (dbg)(1)/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -77,7 +77,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Linux Tests (dbg)(1)/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Linux Tests (dbg)(1)/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$recipe_engine/resultdb/test_presentation": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Mac Builder/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Mac Builder/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Mac Builder/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Mac Builder/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -200,7 +200,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Mac Builder/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Mac Builder/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Mac Builder (dbg)/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Mac Builder (dbg)/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Mac Builder (dbg)/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Mac Builder (dbg)/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -46,7 +46,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Mac Builder (dbg)/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Mac Builder (dbg)/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Mac Release (Intel)/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Mac Release (Intel)/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Mac Release (Intel)/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Mac Release (Intel)/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -74,7 +74,8 @@
"group": "tryserver.chromium.mac"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Mac Release (Intel)/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Mac Release (Intel)/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$recipe_engine/resultdb/test_presentation": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Mac Retina Release (AMD)/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Mac Retina Release (AMD)/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Mac Retina Release (AMD)/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Mac Retina Release (AMD)/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -74,7 +74,8 @@
"group": "tryserver.chromium.mac"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Mac Retina Release (AMD)/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Mac Retina Release (AMD)/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$recipe_engine/resultdb/test_presentation": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Mac12 Tests/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Mac12 Tests/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Mac12 Tests/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Mac12 Tests/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -75,7 +75,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Mac12 Tests/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Mac12 Tests/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$recipe_engine/resultdb/test_presentation": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Mac13 Tests/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Mac13 Tests/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Mac13 Tests/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Mac13 Tests/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -75,7 +75,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Mac13 Tests/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Mac13 Tests/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$recipe_engine/resultdb/test_presentation": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Win Builder/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Win Builder/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Win Builder/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Win Builder/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -45,7 +45,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Win Builder/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Win Builder/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Win Builder (dbg)/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Win Builder (dbg)/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Win Builder (dbg)/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Win Builder (dbg)/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -45,7 +45,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Win Builder (dbg)/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Win Builder (dbg)/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Win x64 Builder/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Win x64 Builder/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Win x64 Builder/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Win x64 Builder/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -87,7 +87,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Win x64 Builder/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Win x64 Builder/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Win10 Tests x64/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Win10 Tests x64/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Win10 Tests x64/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Win10 Tests x64/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -77,7 +77,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Win10 Tests x64/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Win10 Tests x64/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Win10 x64 Release (NVIDIA)/properties.json" "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Win10 x64 Release (NVIDIA)/properties.json"
--- "/srv/release.debian.org/tmp/fIPgARdaT8/chromium-143.0.7499.109/infra/config/generated/builders/ci/Win10 x64 Release (NVIDIA)/properties.json" 2025-12-08 20:35:33.000000000 +0000
+++ "/srv/release.debian.org/tmp/pyE0CqKS58/chromium-143.0.7499.169/infra/config/generated/builders/ci/Win10 x64 Release (NVIDIA)/properties.json" 2025-12-17 23:05:18.000000000 +0000
@@ -76,7 +76,8 @@
"group": "tryserver.chromium.win"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/ci/Win10 x64 Release (NVIDIA)/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/Win10 x64 Release (NVIDIA)/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$recipe_engine/resultdb/test_presentation": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/android-10-arm64-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/android-10-arm64-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/android-10-arm64-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/android-10-arm64-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -55,7 +55,8 @@
],
"retry_failed_shards": true,
"retry_invalid_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/android-10-arm64-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/android-10-arm64-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/android-10-x86-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/android-10-x86-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/android-10-x86-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/android-10-x86-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -55,7 +55,8 @@
],
"retry_failed_shards": true,
"retry_invalid_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/android-10-x86-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/android-10-x86-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/android-12-x64-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/android-12-x64-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/android-12-x64-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/android-12-x64-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -53,7 +53,8 @@
],
"retry_failed_shards": true,
"retry_invalid_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/android-12-x64-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/android-12-x64-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/android-12l-x64-rel-cq/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/android-12l-x64-rel-cq/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/android-12l-x64-rel-cq/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/android-12l-x64-rel-cq/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -57,7 +57,8 @@
],
"retry_failed_shards": true,
"retry_invalid_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/android-12l-x64-rel-cq/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/android-12l-x64-rel-cq/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/android-13-x64-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/android-13-x64-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/android-13-x64-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/android-13-x64-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -53,7 +53,8 @@
],
"retry_failed_shards": true,
"retry_invalid_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/android-13-x64-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/android-13-x64-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/android-14-arm64-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/android-14-arm64-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/android-14-arm64-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/android-14-arm64-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -58,7 +58,8 @@
],
"retry_failed_shards": true,
"retry_invalid_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/android-14-arm64-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/android-14-arm64-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/android-14-tablet-landscape-arm64-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/android-14-tablet-landscape-arm64-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/android-14-tablet-landscape-arm64-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/android-14-tablet-landscape-arm64-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -53,7 +53,8 @@
],
"retry_failed_shards": true,
"retry_invalid_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/android-14-tablet-landscape-arm64-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/android-14-tablet-landscape-arm64-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/android-15-x64-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/android-15-x64-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/android-15-x64-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/android-15-x64-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -57,7 +57,8 @@
],
"retry_failed_shards": true,
"retry_invalid_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/android-15-x64-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/android-15-x64-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/android-16-x64-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/android-16-x64-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/android-16-x64-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/android-16-x64-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -53,7 +53,8 @@
],
"retry_failed_shards": true,
"retry_invalid_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/android-16-x64-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/android-16-x64-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/android-cast-arm-dbg/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/android-cast-arm-dbg/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/android-cast-arm-dbg/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/android-cast-arm-dbg/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -53,7 +53,8 @@
],
"retry_failed_shards": true,
"retry_invalid_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/android-cast-arm-dbg/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/android-cast-arm-dbg/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/android-cast-arm-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/android-cast-arm-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/android-cast-arm-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/android-cast-arm-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -53,7 +53,8 @@
],
"retry_failed_shards": true,
"retry_invalid_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/android-cast-arm-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/android-cast-arm-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/android-cast-arm64-dbg/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/android-cast-arm64-dbg/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/android-cast-arm64-dbg/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/android-cast-arm64-dbg/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -53,7 +53,8 @@
],
"retry_failed_shards": true,
"retry_invalid_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/android-cast-arm64-dbg/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/android-cast-arm64-dbg/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/android-cast-arm64-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/android-cast-arm64-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/android-cast-arm64-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/android-cast-arm64-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -53,7 +53,8 @@
],
"retry_failed_shards": true,
"retry_invalid_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/android-cast-arm64-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/android-cast-arm64-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/android-cronet-arm-dbg/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/android-cronet-arm-dbg/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/android-cronet-arm-dbg/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/android-cronet-arm-dbg/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -54,7 +54,8 @@
],
"retry_failed_shards": true,
"retry_invalid_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/android-cronet-arm-dbg/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/android-cronet-arm-dbg/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/android-cronet-arm-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/android-cronet-arm-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/android-cronet-arm-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/android-cronet-arm-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -54,7 +54,8 @@
],
"retry_failed_shards": true,
"retry_invalid_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/android-cronet-arm-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/android-cronet-arm-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/android-cronet-x64-dbg/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/android-cronet-x64-dbg/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/android-cronet-x64-dbg/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/android-cronet-x64-dbg/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -54,7 +54,8 @@
],
"retry_failed_shards": true,
"retry_invalid_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/android-cronet-x64-dbg/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/android-cronet-x64-dbg/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/android-cronet-x86-dbg/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/android-cronet-x86-dbg/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/android-cronet-x86-dbg/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/android-cronet-x86-dbg/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -97,7 +97,8 @@
],
"retry_failed_shards": true,
"retry_invalid_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/android-cronet-x86-dbg/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/android-cronet-x86-dbg/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/android-cronet-x86-dbg-10-tests/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/android-cronet-x86-dbg-10-tests/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/android-cronet-x86-dbg-10-tests/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/android-cronet-x86-dbg-10-tests/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -87,7 +87,8 @@
],
"retry_failed_shards": true,
"retry_invalid_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/android-cronet-x86-dbg-10-tests/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/android-cronet-x86-dbg-10-tests/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$recipe_engine/resultdb/test_presentation": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/android-official/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/android-official/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/android-official/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/android-official/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -52,7 +52,8 @@
"group": "tryserver.chromium"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/ci/android-official/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/android-official/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/android-webview-13-x64-hostside-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/android-webview-13-x64-hostside-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/android-webview-13-x64-hostside-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/android-webview-13-x64-hostside-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -53,7 +53,8 @@
],
"retry_failed_shards": true,
"retry_invalid_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/android-webview-13-x64-hostside-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/android-webview-13-x64-hostside-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/chromeos-amd64-generic-dbg/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/chromeos-amd64-generic-dbg/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/chromeos-amd64-generic-dbg/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/chromeos-amd64-generic-dbg/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -53,7 +53,8 @@
],
"retry_failed_shards": true,
"retry_invalid_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/chromeos-amd64-generic-dbg/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/chromeos-amd64-generic-dbg/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/chromeos-amd64-generic-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/chromeos-amd64-generic-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/chromeos-amd64-generic-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/chromeos-amd64-generic-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -154,7 +154,8 @@
],
"retry_failed_shards": true,
"retry_invalid_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/chromeos-amd64-generic-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/chromeos-amd64-generic-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/chromeos-amd64-generic-rel-gtest/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/chromeos-amd64-generic-rel-gtest/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/chromeos-amd64-generic-rel-gtest/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/chromeos-amd64-generic-rel-gtest/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -97,7 +97,8 @@
],
"retry_failed_shards": true,
"retry_invalid_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/chromeos-amd64-generic-rel-gtest/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/chromeos-amd64-generic-rel-gtest/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$recipe_engine/resultdb/test_presentation": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/chromeos-amd64-generic-rel-tast/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/chromeos-amd64-generic-rel-tast/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/chromeos-amd64-generic-rel-tast/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/chromeos-amd64-generic-rel-tast/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -93,7 +93,8 @@
],
"retry_failed_shards": true,
"retry_invalid_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/chromeos-amd64-generic-rel-tast/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/chromeos-amd64-generic-rel-tast/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$recipe_engine/resultdb/test_presentation": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/chromeos-arm-generic-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/chromeos-arm-generic-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/chromeos-arm-generic-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/chromeos-arm-generic-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -53,7 +53,8 @@
],
"retry_failed_shards": true,
"retry_invalid_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/chromeos-arm-generic-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/chromeos-arm-generic-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/chromeos-arm64-generic-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/chromeos-arm64-generic-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/chromeos-arm64-generic-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/chromeos-arm64-generic-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -53,7 +53,8 @@
],
"retry_failed_shards": true,
"retry_invalid_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/chromeos-arm64-generic-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/chromeos-arm64-generic-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/chromeos-jacuzzi-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/chromeos-jacuzzi-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/chromeos-jacuzzi-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/chromeos-jacuzzi-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -56,7 +56,8 @@
}
],
"retry_failed_shards": false,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/chromeos-jacuzzi-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/chromeos-jacuzzi-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/chromeos-octopus-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/chromeos-octopus-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/chromeos-octopus-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/chromeos-octopus-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -56,7 +56,8 @@
}
],
"retry_failed_shards": false,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/chromeos-octopus-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/chromeos-octopus-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/fuchsia-arm64-cast-receiver-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/fuchsia-arm64-cast-receiver-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/fuchsia-arm64-cast-receiver-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/fuchsia-arm64-cast-receiver-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -50,7 +50,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/fuchsia-arm64-cast-receiver-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/fuchsia-arm64-cast-receiver-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/fuchsia-x64-cast-receiver-dbg/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/fuchsia-x64-cast-receiver-dbg/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/fuchsia-x64-cast-receiver-dbg/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/fuchsia-x64-cast-receiver-dbg/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -48,7 +48,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/fuchsia-x64-cast-receiver-dbg/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/fuchsia-x64-cast-receiver-dbg/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/fuchsia-x64-cast-receiver-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/fuchsia-x64-cast-receiver-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/fuchsia-x64-cast-receiver-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/fuchsia-x64-cast-receiver-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -48,7 +48,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/fuchsia-x64-cast-receiver-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/fuchsia-x64-cast-receiver-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/ios-simulator/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/ios-simulator/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/ios-simulator/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/ios-simulator/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -49,7 +49,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/ios-simulator/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/ios-simulator/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/ios-simulator-full-configs/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/ios-simulator-full-configs/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/ios-simulator-full-configs/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/ios-simulator-full-configs/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -49,7 +49,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/ios-simulator-full-configs/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/ios-simulator-full-configs/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/linux-cast-arm-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/linux-cast-arm-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/linux-cast-arm-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/linux-cast-arm-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -49,7 +49,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/linux-cast-arm-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/linux-cast-arm-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/linux-cast-arm64-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/linux-cast-arm64-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/linux-cast-arm64-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/linux-cast-arm64-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -49,7 +49,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/linux-cast-arm64-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/linux-cast-arm64-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/linux-cast-x64-dbg/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/linux-cast-x64-dbg/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/linux-cast-x64-dbg/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/linux-cast-x64-dbg/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -45,7 +45,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/linux-cast-x64-dbg/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/linux-cast-x64-dbg/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/linux-cast-x64-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/linux-cast-x64-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/linux-cast-x64-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/linux-cast-x64-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -45,7 +45,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/linux-cast-x64-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/linux-cast-x64-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/linux-chromeos-dbg/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/linux-chromeos-dbg/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/linux-chromeos-dbg/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/linux-chromeos-dbg/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -54,7 +54,8 @@
],
"retry_failed_shards": true,
"retry_invalid_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/linux-chromeos-dbg/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/linux-chromeos-dbg/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/linux-chromeos-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/linux-chromeos-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/linux-chromeos-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/linux-chromeos-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -51,7 +51,8 @@
],
"retry_failed_shards": true,
"retry_invalid_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/linux-chromeos-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/linux-chromeos-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/linux-official/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/linux-official/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/linux-official/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/linux-official/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -46,7 +46,8 @@
"group": "tryserver.chromium"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/ci/linux-official/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/linux-official/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/linux-wayland-mutter-rel-tests/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/linux-wayland-mutter-rel-tests/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/linux-wayland-mutter-rel-tests/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/linux-wayland-mutter-rel-tests/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -77,7 +77,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/linux-wayland-mutter-rel-tests/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/linux-wayland-mutter-rel-tests/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$recipe_engine/resultdb/test_presentation": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/linux-wayland-weston-rel-tests/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/linux-wayland-weston-rel-tests/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/linux-wayland-weston-rel-tests/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/linux-wayland-weston-rel-tests/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -77,7 +77,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/linux-wayland-weston-rel-tests/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/linux-wayland-weston-rel-tests/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$recipe_engine/resultdb/test_presentation": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/mac-arm64-dbg/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/mac-arm64-dbg/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/mac-arm64-dbg/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/mac-arm64-dbg/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -82,7 +82,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/mac-arm64-dbg/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/mac-arm64-dbg/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/mac-arm64-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/mac-arm64-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/mac-arm64-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/mac-arm64-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -199,7 +199,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/mac-arm64-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/mac-arm64-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/mac-official/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/mac-official/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/mac-official/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/mac-official/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -46,7 +46,8 @@
"group": "tryserver.chromium"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/ci/mac-official/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/mac-official/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/mac12-arm64-rel-tests/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/mac12-arm64-rel-tests/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/mac12-arm64-rel-tests/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/mac12-arm64-rel-tests/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -75,7 +75,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/mac12-arm64-rel-tests/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/mac12-arm64-rel-tests/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$recipe_engine/resultdb/test_presentation": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/mac13-arm64-rel-tests/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/mac13-arm64-rel-tests/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/mac13-arm64-rel-tests/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/mac13-arm64-rel-tests/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -75,7 +75,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/mac13-arm64-rel-tests/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/mac13-arm64-rel-tests/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$recipe_engine/resultdb/test_presentation": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/mac14-arm64-rel-tests/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/mac14-arm64-rel-tests/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/mac14-arm64-rel-tests/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/mac14-arm64-rel-tests/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -75,7 +75,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/mac14-arm64-rel-tests/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/mac14-arm64-rel-tests/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$recipe_engine/resultdb/test_presentation": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/mac14-tests/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/mac14-tests/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/mac14-tests/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/mac14-tests/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -75,7 +75,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/mac14-tests/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/mac14-tests/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$recipe_engine/resultdb/test_presentation": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/mac15-arm64-rel-tests/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/mac15-arm64-rel-tests/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/mac15-arm64-rel-tests/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/mac15-arm64-rel-tests/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -75,7 +75,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/mac15-arm64-rel-tests/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/mac15-arm64-rel-tests/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$recipe_engine/resultdb/test_presentation": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/mac15-tests-dbg/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/mac15-tests-dbg/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/mac15-tests-dbg/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/mac15-tests-dbg/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -72,7 +72,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/mac15-tests-dbg/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/mac15-tests-dbg/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$recipe_engine/resultdb/test_presentation": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/mac15-x64-rel-tests/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/mac15-x64-rel-tests/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/mac15-x64-rel-tests/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/mac15-x64-rel-tests/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -79,7 +79,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/mac15-x64-rel-tests/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/mac15-x64-rel-tests/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$recipe_engine/resultdb/test_presentation": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/win-arm64-dbg/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/win-arm64-dbg/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/win-arm64-dbg/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/win-arm64-dbg/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -46,7 +46,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/win-arm64-dbg/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/win-arm64-dbg/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/win-arm64-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/win-arm64-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/win-arm64-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/win-arm64-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -89,7 +89,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/win-arm64-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/win-arm64-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/win-official/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/win-official/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/win-official/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/win-official/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -46,7 +46,8 @@
"group": "tryserver.chromium"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/ci/win-official/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/win-official/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/win11-arm64-rel-tests/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/win11-arm64-rel-tests/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/win11-arm64-rel-tests/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/win11-arm64-rel-tests/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -80,7 +80,8 @@
],
"retry_failed_shards": true,
"retry_invalid_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/ci/win11-arm64-rel-tests/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/win11-arm64-rel-tests/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$recipe_engine/resultdb/test_presentation": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/ci/win32-official/properties.json chromium-143.0.7499.169/infra/config/generated/builders/ci/win32-official/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/ci/win32-official/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/ci/win32-official/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -47,7 +47,8 @@
"group": "tryserver.chromium"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/ci/win32-official/targets"
+ "targets_spec_directory": "infra/config/generated/builders/ci/win32-official/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/android-10-arm64-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/android-10-arm64-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/android-10-arm64-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/android-10-arm64-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -47,7 +47,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/android-10-arm64-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/android-10-arm64-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/flakiness": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/android-12-x64-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/android-12-x64-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/android-12-x64-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/android-12-x64-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -45,7 +45,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/android-12-x64-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/android-12-x64-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/android-12l-x64-rel-cq/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/android-12l-x64-rel-cq/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/android-12l-x64-rel-cq/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/android-12l-x64-rel-cq/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -45,7 +45,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/android-12l-x64-rel-cq/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/android-12l-x64-rel-cq/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/android-13-x64-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/android-13-x64-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/android-13-x64-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/android-13-x64-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -45,7 +45,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/android-13-x64-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/android-13-x64-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/android-14-arm64-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/android-14-arm64-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/android-14-arm64-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/android-14-arm64-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -46,7 +46,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/android-14-arm64-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/android-14-arm64-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/code_coverage": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/android-14-tablet-landscape-arm64-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/android-14-tablet-landscape-arm64-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/android-14-tablet-landscape-arm64-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/android-14-tablet-landscape-arm64-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -45,7 +45,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/android-14-tablet-landscape-arm64-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/android-14-tablet-landscape-arm64-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/android-15-x64-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/android-15-x64-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/android-15-x64-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/android-15-x64-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -45,7 +45,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/android-15-x64-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/android-15-x64-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/android-16-x64-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/android-16-x64-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/android-16-x64-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/android-16-x64-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -45,7 +45,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/android-16-x64-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/android-16-x64-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/android-arm-compile-dbg/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/android-arm-compile-dbg/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/android-arm-compile-dbg/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/android-arm-compile-dbg/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -46,7 +46,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/android-arm-compile-dbg/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/android-arm-compile-dbg/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/android-arm64-compile-dbg/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/android-arm64-compile-dbg/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/android-arm64-compile-dbg/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/android-arm64-compile-dbg/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -47,7 +47,8 @@
}
],
"is_compile_only": true,
- "targets_spec_directory": "src/infra/config/generated/builders/try/android-arm64-compile-dbg/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/android-arm64-compile-dbg/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/android-arm64-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/android-arm64-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/android-arm64-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/android-arm64-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -86,7 +86,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/android-arm64-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/android-arm64-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/code_coverage": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/android-cast-arm-dbg/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/android-cast-arm-dbg/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/android-cast-arm-dbg/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/android-cast-arm-dbg/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -45,7 +45,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/android-cast-arm-dbg/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/android-cast-arm-dbg/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/flakiness": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/android-cast-arm-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/android-cast-arm-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/android-cast-arm-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/android-cast-arm-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -45,7 +45,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/android-cast-arm-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/android-cast-arm-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/flakiness": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/android-cast-arm64-dbg/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/android-cast-arm64-dbg/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/android-cast-arm64-dbg/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/android-cast-arm64-dbg/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -45,7 +45,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/android-cast-arm64-dbg/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/android-cast-arm64-dbg/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/flakiness": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/android-cast-arm64-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/android-cast-arm64-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/android-cast-arm64-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/android-cast-arm64-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -45,7 +45,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/android-cast-arm64-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/android-cast-arm64-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/flakiness": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/android-cronet-arm-dbg/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/android-cronet-arm-dbg/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/android-cronet-arm-dbg/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/android-cronet-arm-dbg/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -46,7 +46,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/android-cronet-arm-dbg/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/android-cronet-arm-dbg/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/flakiness": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/android-cronet-arm-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/android-cronet-arm-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/android-cronet-arm-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/android-cronet-arm-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -47,7 +47,8 @@
}
],
"is_compile_only": true,
- "targets_spec_directory": "src/infra/config/generated/builders/try/android-cronet-arm-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/android-cronet-arm-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/flakiness": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/android-cronet-x64-dbg/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/android-cronet-x64-dbg/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/android-cronet-x64-dbg/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/android-cronet-x64-dbg/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -46,7 +46,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/android-cronet-x64-dbg/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/android-cronet-x64-dbg/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/android-cronet-x86-dbg-10-tests/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/android-cronet-x86-dbg-10-tests/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/android-cronet-x86-dbg-10-tests/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/android-cronet-x86-dbg-10-tests/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -89,7 +89,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/android-cronet-x86-dbg-10-tests/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/android-cronet-x86-dbg-10-tests/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/android-official/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/android-official/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/android-official/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/android-official/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -46,7 +46,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/android-official/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/android-official/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/android-x64-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/android-x64-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/android-x64-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/android-x64-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -119,7 +119,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/android-x64-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/android-x64-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/code_coverage": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/android-x86-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/android-x86-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/android-x86-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/android-x86-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -51,7 +51,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/android-x86-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/android-x86-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/code_coverage": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/android_compile_dbg/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/android_compile_dbg/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/android_compile_dbg/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/android_compile_dbg/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -47,7 +47,8 @@
}
],
"is_compile_only": true,
- "targets_spec_directory": "src/infra/config/generated/builders/try/android_compile_dbg/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/android_compile_dbg/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/flakiness": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/android_compile_x64_dbg/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/android_compile_x64_dbg/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/android_compile_x64_dbg/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/android_compile_x64_dbg/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -46,7 +46,8 @@
}
],
"is_compile_only": true,
- "targets_spec_directory": "src/infra/config/generated/builders/try/android_compile_x64_dbg/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/android_compile_x64_dbg/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/flakiness": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/android_compile_x86_dbg/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/android_compile_x86_dbg/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/android_compile_x86_dbg/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/android_compile_x86_dbg/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -46,7 +46,8 @@
}
],
"is_compile_only": true,
- "targets_spec_directory": "src/infra/config/generated/builders/try/android_compile_x86_dbg/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/android_compile_x86_dbg/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/flakiness": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/android_optional_gpu_tests_rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/android_optional_gpu_tests_rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/android_optional_gpu_tests_rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/android_optional_gpu_tests_rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -43,7 +43,8 @@
}
],
"retry_failed_shards": false,
- "targets_spec_directory": "src/infra/config/generated/builders/try/android_optional_gpu_tests_rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/android_optional_gpu_tests_rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/flakiness": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/chromeos-amd64-generic-dbg/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/chromeos-amd64-generic-dbg/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/chromeos-amd64-generic-dbg/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/chromeos-amd64-generic-dbg/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -45,7 +45,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/chromeos-amd64-generic-dbg/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/chromeos-amd64-generic-dbg/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/flakiness": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/chromeos-amd64-generic-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/chromeos-amd64-generic-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/chromeos-amd64-generic-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/chromeos-amd64-generic-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -50,7 +50,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/chromeos-amd64-generic-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/chromeos-amd64-generic-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/chromeos-amd64-generic-rel-gtest/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/chromeos-amd64-generic-rel-gtest/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/chromeos-amd64-generic-rel-gtest/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/chromeos-amd64-generic-rel-gtest/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -99,7 +99,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/chromeos-amd64-generic-rel-gtest/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/chromeos-amd64-generic-rel-gtest/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/flakiness": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/chromeos-amd64-generic-rel-gtest-and-tast/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/chromeos-amd64-generic-rel-gtest-and-tast/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/chromeos-amd64-generic-rel-gtest-and-tast/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/chromeos-amd64-generic-rel-gtest-and-tast/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -142,7 +142,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/chromeos-amd64-generic-rel-gtest-and-tast/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/chromeos-amd64-generic-rel-gtest-and-tast/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/flakiness": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/chromeos-arm-generic-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/chromeos-arm-generic-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/chromeos-arm-generic-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/chromeos-arm-generic-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -45,7 +45,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/chromeos-arm-generic-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/chromeos-arm-generic-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/chromeos-arm64-generic-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/chromeos-arm64-generic-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/chromeos-arm64-generic-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/chromeos-arm64-generic-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -45,7 +45,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/chromeos-arm64-generic-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/chromeos-arm64-generic-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/flakiness": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/chromeos-jacuzzi-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/chromeos-jacuzzi-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/chromeos-jacuzzi-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/chromeos-jacuzzi-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -50,7 +50,8 @@
}
],
"retry_failed_shards": false,
- "targets_spec_directory": "src/infra/config/generated/builders/try/chromeos-jacuzzi-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/chromeos-jacuzzi-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/chromeos-octopus-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/chromeos-octopus-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/chromeos-octopus-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/chromeos-octopus-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -50,7 +50,8 @@
}
],
"retry_failed_shards": false,
- "targets_spec_directory": "src/infra/config/generated/builders/try/chromeos-octopus-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/chromeos-octopus-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/dawn-chromium-presubmit/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/dawn-chromium-presubmit/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/dawn-chromium-presubmit/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/dawn-chromium-presubmit/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -46,7 +46,8 @@
],
"retry_failed_shards": false,
"retry_without_patch": false,
- "targets_spec_directory": "src/infra/config/generated/builders/try/dawn-chromium-presubmit/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/dawn-chromium-presubmit/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/dawn-linux-x64-deps-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/dawn-linux-x64-deps-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/dawn-linux-x64-deps-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/dawn-linux-x64-deps-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -109,7 +109,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/dawn-linux-x64-deps-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/dawn-linux-x64-deps-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/dawn-mac-arm64-deps-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/dawn-mac-arm64-deps-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/dawn-mac-arm64-deps-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/dawn-mac-arm64-deps-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -76,7 +76,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/dawn-mac-arm64-deps-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/dawn-mac-arm64-deps-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/dawn-mac-x64-deps-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/dawn-mac-x64-deps-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/dawn-mac-x64-deps-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/dawn-mac-x64-deps-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -112,7 +112,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/dawn-mac-x64-deps-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/dawn-mac-x64-deps-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/dawn-win10-x64-deps-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/dawn-win10-x64-deps-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/dawn-win10-x64-deps-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/dawn-win10-x64-deps-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -109,7 +109,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/dawn-win10-x64-deps-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/dawn-win10-x64-deps-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/dawn-win10-x86-deps-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/dawn-win10-x86-deps-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/dawn-win10-x86-deps-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/dawn-win10-x86-deps-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -109,7 +109,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/dawn-win10-x86-deps-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/dawn-win10-x86-deps-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/dawn-win11-arm64-deps-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/dawn-win11-arm64-deps-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/dawn-win11-arm64-deps-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/dawn-win11-arm64-deps-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -39,7 +39,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/dawn-win11-arm64-deps-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/dawn-win11-arm64-deps-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/fuchsia-arm64-cast-receiver-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/fuchsia-arm64-cast-receiver-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/fuchsia-arm64-cast-receiver-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/fuchsia-arm64-cast-receiver-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -43,7 +43,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/fuchsia-arm64-cast-receiver-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/fuchsia-arm64-cast-receiver-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/flakiness": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/fuchsia-x64-cast-receiver-dbg/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/fuchsia-x64-cast-receiver-dbg/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/fuchsia-x64-cast-receiver-dbg/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/fuchsia-x64-cast-receiver-dbg/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -41,7 +41,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/fuchsia-x64-cast-receiver-dbg/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/fuchsia-x64-cast-receiver-dbg/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/flakiness": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/fuchsia-x64-cast-receiver-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/fuchsia-x64-cast-receiver-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/fuchsia-x64-cast-receiver-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/fuchsia-x64-cast-receiver-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -46,7 +46,8 @@
}
],
"retry_without_patch": false,
- "targets_spec_directory": "src/infra/config/generated/builders/try/fuchsia-x64-cast-receiver-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/fuchsia-x64-cast-receiver-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/code_coverage": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/gpu-fyi-cq-android-arm64/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/gpu-fyi-cq-android-arm64/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/gpu-fyi-cq-android-arm64/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/gpu-fyi-cq-android-arm64/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -91,7 +91,8 @@
}
],
"retry_failed_shards": false,
- "targets_spec_directory": "src/infra/config/generated/builders/try/gpu-fyi-cq-android-arm64/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/gpu-fyi-cq-android-arm64/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/flakiness": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/ios-simulator/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/ios-simulator/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/ios-simulator/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/ios-simulator/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -46,7 +46,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/ios-simulator/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/ios-simulator/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/code_coverage": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/ios-simulator-full-configs/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/ios-simulator-full-configs/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/ios-simulator-full-configs/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/ios-simulator-full-configs/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -42,7 +42,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/ios-simulator-full-configs/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/ios-simulator-full-configs/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/code_coverage": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/linux-blink-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/linux-blink-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/linux-blink-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/linux-blink-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -39,7 +39,8 @@
}
],
"retry_failed_shards": false,
- "targets_spec_directory": "src/infra/config/generated/builders/try/linux-blink-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/linux-blink-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/linux-cast-arm-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/linux-cast-arm-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/linux-cast-arm-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/linux-cast-arm-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -42,7 +42,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/linux-cast-arm-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/linux-cast-arm-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/flakiness": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/linux-cast-arm64-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/linux-cast-arm64-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/linux-cast-arm64-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/linux-cast-arm64-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -42,7 +42,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/linux-cast-arm64-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/linux-cast-arm64-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/flakiness": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/linux-cast-x64-dbg/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/linux-cast-x64-dbg/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/linux-cast-x64-dbg/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/linux-cast-x64-dbg/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -38,7 +38,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/linux-cast-x64-dbg/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/linux-cast-x64-dbg/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/flakiness": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/linux-cast-x64-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/linux-cast-x64-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/linux-cast-x64-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/linux-cast-x64-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -38,7 +38,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/linux-cast-x64-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/linux-cast-x64-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/flakiness": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/linux-chromeos-compile-dbg/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/linux-chromeos-compile-dbg/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/linux-chromeos-compile-dbg/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/linux-chromeos-compile-dbg/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -43,7 +43,8 @@
}
],
"is_compile_only": true,
- "targets_spec_directory": "src/infra/config/generated/builders/try/linux-chromeos-compile-dbg/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/linux-chromeos-compile-dbg/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/flakiness": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/linux-chromeos-dbg/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/linux-chromeos-dbg/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/linux-chromeos-dbg/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/linux-chromeos-dbg/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -42,7 +42,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/linux-chromeos-dbg/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/linux-chromeos-dbg/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/linux-chromeos-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/linux-chromeos-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/linux-chromeos-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/linux-chromeos-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -47,7 +47,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/linux-chromeos-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/linux-chromeos-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/code_coverage": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/linux-official/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/linux-official/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/linux-official/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/linux-official/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -40,7 +40,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/linux-official/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/linux-official/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/linux-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/linux-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/linux-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/linux-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -152,7 +152,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/linux-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/linux-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/code_coverage": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/linux-wayland-mutter-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/linux-wayland-mutter-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/linux-wayland-mutter-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/linux-wayland-mutter-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -80,7 +80,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/linux-wayland-mutter-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/linux-wayland-mutter-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/code_coverage": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/linux-wayland-weston-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/linux-wayland-weston-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/linux-wayland-weston-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/linux-wayland-weston-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -80,7 +80,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/linux-wayland-weston-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/linux-wayland-weston-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/code_coverage": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/linux_chromium_asan_rel_ng/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/linux_chromium_asan_rel_ng/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/linux_chromium_asan_rel_ng/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/linux_chromium_asan_rel_ng/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -79,7 +79,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/linux_chromium_asan_rel_ng/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/linux_chromium_asan_rel_ng/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/flakiness": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/linux_chromium_compile_dbg_ng/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/linux_chromium_compile_dbg_ng/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/linux_chromium_compile_dbg_ng/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/linux_chromium_compile_dbg_ng/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -77,7 +77,8 @@
}
],
"is_compile_only": true,
- "targets_spec_directory": "src/infra/config/generated/builders/try/linux_chromium_compile_dbg_ng/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/linux_chromium_compile_dbg_ng/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/flakiness": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/linux_chromium_dbg_ng/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/linux_chromium_dbg_ng/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/linux_chromium_dbg_ng/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/linux_chromium_dbg_ng/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -76,7 +76,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/linux_chromium_dbg_ng/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/linux_chromium_dbg_ng/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/flakiness": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/linux_chromium_tsan_rel_ng/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/linux_chromium_tsan_rel_ng/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/linux_chromium_tsan_rel_ng/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/linux_chromium_tsan_rel_ng/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -77,7 +77,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/linux_chromium_tsan_rel_ng/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/linux_chromium_tsan_rel_ng/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/linux_optional_gpu_tests_rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/linux_optional_gpu_tests_rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/linux_optional_gpu_tests_rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/linux_optional_gpu_tests_rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -39,7 +39,8 @@
}
],
"retry_failed_shards": false,
- "targets_spec_directory": "src/infra/config/generated/builders/try/linux_optional_gpu_tests_rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/linux_optional_gpu_tests_rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/flakiness": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/mac-official/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/mac-official/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/mac-official/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/mac-official/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -40,7 +40,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/mac-official/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/mac-official/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/flakiness": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/mac-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/mac-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/mac-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/mac-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -181,7 +181,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/mac-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/mac-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/code_coverage": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/mac-x64-compile-dbg/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/mac-x64-compile-dbg/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/mac-x64-compile-dbg/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/mac-x64-compile-dbg/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -40,7 +40,8 @@
}
],
"is_compile_only": true,
- "targets_spec_directory": "src/infra/config/generated/builders/try/mac-x64-compile-dbg/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/mac-x64-compile-dbg/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/mac12-arm64-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/mac12-arm64-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/mac12-arm64-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/mac12-arm64-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -78,7 +78,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/mac12-arm64-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/mac12-arm64-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/mac12-tests/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/mac12-tests/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/mac12-tests/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/mac12-tests/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -78,7 +78,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/mac12-tests/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/mac12-tests/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/mac12.0-blink-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/mac12.0-blink-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/mac12.0-blink-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/mac12.0-blink-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -39,7 +39,8 @@
}
],
"retry_failed_shards": false,
- "targets_spec_directory": "src/infra/config/generated/builders/try/mac12.0-blink-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/mac12.0-blink-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/mac12.0.arm64-blink-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/mac12.0.arm64-blink-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/mac12.0.arm64-blink-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/mac12.0.arm64-blink-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -39,7 +39,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/try/mac12.0.arm64-blink-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/mac12.0.arm64-blink-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/mac13-arm64-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/mac13-arm64-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/mac13-arm64-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/mac13-arm64-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -78,7 +78,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/mac13-arm64-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/mac13-arm64-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/mac13-blink-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/mac13-blink-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/mac13-blink-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/mac13-blink-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -39,7 +39,8 @@
}
],
"retry_failed_shards": false,
- "targets_spec_directory": "src/infra/config/generated/builders/try/mac13-blink-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/mac13-blink-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/mac13-tests/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/mac13-tests/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/mac13-tests/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/mac13-tests/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -78,7 +78,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/mac13-tests/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/mac13-tests/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/mac13.arm64-blink-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/mac13.arm64-blink-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/mac13.arm64-blink-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/mac13.arm64-blink-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -39,7 +39,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/try/mac13.arm64-blink-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/mac13.arm64-blink-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/mac14-arm64-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/mac14-arm64-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/mac14-arm64-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/mac14-arm64-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -78,7 +78,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/mac14-arm64-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/mac14-arm64-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/mac14-blink-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/mac14-blink-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/mac14-blink-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/mac14-blink-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -39,7 +39,8 @@
}
],
"retry_failed_shards": false,
- "targets_spec_directory": "src/infra/config/generated/builders/try/mac14-blink-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/mac14-blink-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/mac14-tests/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/mac14-tests/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/mac14-tests/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/mac14-tests/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -78,7 +78,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/mac14-tests/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/mac14-tests/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/mac14.arm64-blink-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/mac14.arm64-blink-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/mac14.arm64-blink-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/mac14.arm64-blink-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -39,7 +39,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/try/mac14.arm64-blink-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/mac14.arm64-blink-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/mac15-arm64-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/mac15-arm64-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/mac15-arm64-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/mac15-arm64-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -82,7 +82,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/mac15-arm64-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/mac15-arm64-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/flakiness": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/mac15-blink-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/mac15-blink-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/mac15-blink-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/mac15-blink-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -39,7 +39,8 @@
}
],
"retry_failed_shards": false,
- "targets_spec_directory": "src/infra/config/generated/builders/try/mac15-blink-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/mac15-blink-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/mac15-x64-rel-tests/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/mac15-x64-rel-tests/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/mac15-x64-rel-tests/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/mac15-x64-rel-tests/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -78,7 +78,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/mac15-x64-rel-tests/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/mac15-x64-rel-tests/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/mac15.arm64-blink-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/mac15.arm64-blink-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/mac15.arm64-blink-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/mac15.arm64-blink-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -39,7 +39,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/try/mac15.arm64-blink-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/mac15.arm64-blink-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/mac_chromium_compile_dbg_ng/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/mac_chromium_compile_dbg_ng/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/mac_chromium_compile_dbg_ng/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/mac_chromium_compile_dbg_ng/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -76,7 +76,8 @@
}
],
"is_compile_only": true,
- "targets_spec_directory": "src/infra/config/generated/builders/try/mac_chromium_compile_dbg_ng/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/mac_chromium_compile_dbg_ng/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/flakiness": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/mac_optional_gpu_tests_rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/mac_optional_gpu_tests_rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/mac_optional_gpu_tests_rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/mac_optional_gpu_tests_rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -39,7 +39,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/mac_optional_gpu_tests_rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/mac_optional_gpu_tests_rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/flakiness": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/win-arm64-compile-dbg/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/win-arm64-compile-dbg/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/win-arm64-compile-dbg/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/win-arm64-compile-dbg/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -40,7 +40,8 @@
}
],
"is_compile_only": true,
- "targets_spec_directory": "src/infra/config/generated/builders/try/win-arm64-compile-dbg/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/win-arm64-compile-dbg/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/flakiness": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/win-arm64-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/win-arm64-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/win-arm64-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/win-arm64-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -82,7 +82,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/win-arm64-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/win-arm64-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/code_coverage": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/win-official/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/win-official/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/win-official/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/win-official/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -40,7 +40,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/win-official/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/win-official/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/win-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/win-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/win-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/win-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -152,7 +152,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/win-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/win-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/code_coverage": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/win10.20h2-blink-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/win10.20h2-blink-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/win10.20h2-blink-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/win10.20h2-blink-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -39,7 +39,8 @@
}
],
"retry_failed_shards": false,
- "targets_spec_directory": "src/infra/config/generated/builders/try/win10.20h2-blink-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/win10.20h2-blink-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/win11-arm64-blink-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/win11-arm64-blink-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/win11-arm64-blink-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/win11-arm64-blink-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -39,7 +39,8 @@
}
],
"retry_failed_shards": false,
- "targets_spec_directory": "src/infra/config/generated/builders/try/win11-arm64-blink-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/win11-arm64-blink-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/win11-blink-rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/win11-blink-rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/win11-blink-rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/win11-blink-rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -39,7 +39,8 @@
}
],
"retry_failed_shards": true,
- "targets_spec_directory": "src/infra/config/generated/builders/try/win11-blink-rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/win11-blink-rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/win32-official/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/win32-official/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/win32-official/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/win32-official/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -41,7 +41,8 @@
"project": "chromium-m143"
}
],
- "targets_spec_directory": "src/infra/config/generated/builders/try/win32-official/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/win32-official/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/win_chromium_compile_dbg_ng/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/win_chromium_compile_dbg_ng/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/win_chromium_compile_dbg_ng/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/win_chromium_compile_dbg_ng/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -39,7 +39,8 @@
}
],
"is_compile_only": true,
- "targets_spec_directory": "src/infra/config/generated/builders/try/win_chromium_compile_dbg_ng/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/win_chromium_compile_dbg_ng/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/flakiness": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/win_chromium_compile_rel_ng/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/win_chromium_compile_rel_ng/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/win_chromium_compile_rel_ng/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/win_chromium_compile_rel_ng/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -39,7 +39,8 @@
}
],
"is_compile_only": true,
- "targets_spec_directory": "src/infra/config/generated/builders/try/win_chromium_compile_rel_ng/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/win_chromium_compile_rel_ng/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/siso": {
diff -Nru chromium-143.0.7499.109/infra/config/generated/builders/try/win_optional_gpu_tests_rel/properties.json chromium-143.0.7499.169/infra/config/generated/builders/try/win_optional_gpu_tests_rel/properties.json
--- chromium-143.0.7499.109/infra/config/generated/builders/try/win_optional_gpu_tests_rel/properties.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/generated/builders/try/win_optional_gpu_tests_rel/properties.json 2025-12-17 23:05:18.000000000 +0000
@@ -39,7 +39,8 @@
}
],
"retry_failed_shards": false,
- "targets_spec_directory": "src/infra/config/generated/builders/try/win_optional_gpu_tests_rel/targets"
+ "targets_spec_directory": "infra/config/generated/builders/try/win_optional_gpu_tests_rel/targets",
+ "targets_spec_directory_relative_to_source_dir": true
}
},
"$build/flakiness": {
diff -Nru chromium-143.0.7499.109/infra/config/main.star chromium-143.0.7499.169/infra/config/main.star
--- chromium-143.0.7499.109/infra/config/main.star 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/infra/config/main.star 2025-12-17 23:05:18.000000000 +0000
@@ -164,6 +164,7 @@
is_main = settings.is_main,
platforms = settings.platforms,
experiments = [
+ "builder_config.targets_spec_directory_relative_to_source_dir",
"targets.module_name_without_slash",
"targets.module_scheme_junit_tests",
"targets.module_scheme_regex",
diff -Nru chromium-143.0.7499.109/net/data/ssl/chrome_root_store/root_store.certs chromium-143.0.7499.169/net/data/ssl/chrome_root_store/root_store.certs
--- chromium-143.0.7499.109/net/data/ssl/chrome_root_store/root_store.certs 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/net/data/ssl/chrome_root_store/root_store.certs 2025-12-17 23:05:18.000000000 +0000
@@ -3012,317 +3012,6 @@
+JbNR6iC8hZVdyR+EhCVBCyj
-----END CERTIFICATE-----
-# 02ed0eb28c14da45165c566791700d6451d7fb56f0b2ab1d3b8eb070e56edff5
-Certificate:
- Data:
- Version: 3 (0x2)
- Serial Number:
- a6:8b:79:29:00:00:00:00:50:d0:91:f9
- Signature Algorithm: ecdsa-with-SHA384
- Issuer: C = US, O = "Entrust, Inc.", OU = See www.entrust.net/legal-terms, OU = "(c) 2012 Entrust, Inc. - for authorized use only", CN = Entrust Root Certification Authority - EC1
- Validity
- Not Before: Dec 18 15:25:36 2012 GMT
- Not After : Dec 18 15:55:36 2037 GMT
- Subject: C = US, O = "Entrust, Inc.", OU = See www.entrust.net/legal-terms, OU = "(c) 2012 Entrust, Inc. - for authorized use only", CN = Entrust Root Certification Authority - EC1
- Subject Public Key Info:
- Public Key Algorithm: id-ecPublicKey
- Public-Key: (384 bit)
- pub:
- 04:84:13:c9:d0:ba:6d:41:7b:e2:6c:d0:eb:55:5f:
- 66:02:1a:24:f4:5b:89:69:47:e3:b8:c2:7d:f1:f2:
- 02:c5:9f:a0:f6:5b:d5:8b:06:19:86:4f:53:10:6d:
- 07:24:27:a1:a0:f8:d5:47:19:61:4c:7d:ca:93:27:
- ea:74:0c:ef:6f:96:09:fe:63:ec:70:5d:36:ad:67:
- 77:ae:c9:9d:7c:55:44:3a:a2:63:51:1f:f5:e3:62:
- d4:a9:47:07:3e:cc:20
- ASN1 OID: secp384r1
- NIST CURVE: P-384
- X509v3 extensions:
- X509v3 Key Usage: critical
- Certificate Sign, CRL Sign
- X509v3 Basic Constraints: critical
- CA:TRUE
- X509v3 Subject Key Identifier:
- B7:63:E7:1A:DD:8D:E9:08:A6:55:83:A4:E0:6A:50:41:65:11:42:49
- Signature Algorithm: ecdsa-with-SHA384
- 30:64:02:30:61:79:d8:e5:42:47:df:1c:ae:53:99:17:b6:6f:
- 1c:7d:e1:bf:11:94:d1:03:88:75:e4:8d:89:a4:8a:77:46:de:
- 6d:61:ef:02:f5:fb:b5:df:cc:fe:4e:ff:fe:a9:e6:a7:02:30:
- 5b:99:d7:85:37:06:b5:7b:08:fd:eb:27:8b:4a:94:f9:e1:fa:
- a7:8e:26:08:e8:7c:92:68:6d:73:d8:6f:26:ac:21:02:b8:99:
- b7:26:41:5b:25:60:ae:d0:48:1a:ee:06
------BEGIN CERTIFICATE-----
-MIIC+TCCAoCgAwIBAgINAKaLeSkAAAAAUNCR+TAKBggqhkjOPQQDAzCBvzELMAkG
-A1UEBhMCVVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3
-d3cuZW50cnVzdC5uZXQvbGVnYWwtdGVybXMxOTA3BgNVBAsTMChjKSAyMDEyIEVu
-dHJ1c3QsIEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ugb25seTEzMDEGA1UEAxMq
-RW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRUMxMB4XDTEy
-MTIxODE1MjUzNloXDTM3MTIxODE1NTUzNlowgb8xCzAJBgNVBAYTAlVTMRYwFAYD
-VQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1c3QubmV0
-L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxMiBFbnRydXN0LCBJbmMuIC0g
-Zm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxMzAxBgNVBAMTKkVudHJ1c3QgUm9vdCBD
-ZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEVDMTB2MBAGByqGSM49AgEGBSuBBAAi
-A2IABIQTydC6bUF74mzQ61VfZgIaJPRbiWlH47jCffHyAsWfoPZb1YsGGYZPUxBt
-ByQnoaD41UcZYUx9ypMn6nQM72+WCf5j7HBdNq1nd67JnXxVRDqiY1Ef9eNi1KlH
-Bz7MIKNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0O
-BBYEFLdj5xrdjekIplWDpOBqUEFlEUJJMAoGCCqGSM49BAMDA2cAMGQCMGF52OVC
-R98crlOZF7ZvHH3hvxGU0QOIdeSNiaSKd0bebWHvAvX7td/M/k7//qnmpwIwW5nX
-hTcGtXsI/esni0qU+eH6p44mCOh8kmhtc9hvJqwhAriZtyZBWyVgrtBIGu4G
------END CERTIFICATE-----
-
-# 0376ab1d54c5f9803ce4b2e201a0ee7eef7b57b636e8a93c9b8d4860c96f5fa7
-Certificate:
- Data:
- Version: 3 (0x2)
- Serial Number: 8608355977964138876 (0x7777062726a9b17c)
- Signature Algorithm: sha256WithRSAEncryption
- Issuer: C = US, O = AffirmTrust, CN = AffirmTrust Commercial
- Validity
- Not Before: Jan 29 14:06:06 2010 GMT
- Not After : Dec 31 14:06:06 2030 GMT
- Subject: C = US, O = AffirmTrust, CN = AffirmTrust Commercial
- Subject Public Key Info:
- Public Key Algorithm: rsaEncryption
- RSA Public-Key: (2048 bit)
- Modulus:
- 00:f6:1b:4f:67:07:2b:a1:15:f5:06:22:cb:1f:01:
- b2:e3:73:45:06:44:49:2c:bb:49:25:14:d6:ce:c3:
- b7:ab:2c:4f:c6:41:32:94:57:fa:12:a7:5b:0e:e2:
- 8f:1f:1e:86:19:a7:aa:b5:2d:b9:5f:0d:8a:c2:af:
- 85:35:79:32:2d:bb:1c:62:37:f2:b1:5b:4a:3d:ca:
- cd:71:5f:e9:42:be:94:e8:c8:de:f9:22:48:64:c6:
- e5:ab:c6:2b:6d:ad:05:f0:fa:d5:0b:cf:9a:e5:f0:
- 50:a4:8b:3b:47:a5:23:5b:7a:7a:f8:33:3f:b8:ef:
- 99:97:e3:20:c1:d6:28:89:cf:94:fb:b9:45:ed:e3:
- 40:17:11:d4:74:f0:0b:31:e2:2b:26:6a:9b:4c:57:
- ae:ac:20:3e:ba:45:7a:05:f3:bd:9b:69:15:ae:7d:
- 4e:20:63:c4:35:76:3a:07:02:c9:37:fd:c7:47:ee:
- e8:f1:76:1d:73:15:f2:97:a4:b5:c8:7a:79:d9:42:
- aa:2b:7f:5c:fe:ce:26:4f:a3:66:81:35:af:44:ba:
- 54:1e:1c:30:32:65:9d:e6:3c:93:5e:50:4e:7a:e3:
- 3a:d4:6e:cc:1a:fb:f9:d2:37:ae:24:2a:ab:57:03:
- 22:28:0d:49:75:7f:b7:28:da:75:bf:8e:e3:dc:0e:
- 79:31
- Exponent: 65537 (0x10001)
- X509v3 extensions:
- X509v3 Subject Key Identifier:
- 9D:93:C6:53:8B:5E:CA:AF:3F:9F:1E:0F:E5:99:95:BC:24:F6:94:8F
- X509v3 Basic Constraints: critical
- CA:TRUE
- X509v3 Key Usage: critical
- Certificate Sign, CRL Sign
- Signature Algorithm: sha256WithRSAEncryption
- 58:ac:f4:04:0e:cd:c0:0d:ff:0a:fd:d4:ba:16:5f:29:bd:7b:
- 68:99:58:49:d2:b4:1d:37:4d:7f:27:7d:46:06:5d:43:c6:86:
- 2e:3e:73:b2:26:7d:4f:93:a9:b6:c4:2a:9a:ab:21:97:14:b1:
- de:8c:d3:ab:89:15:d8:6b:24:d4:f1:16:ae:d8:a4:5c:d4:7f:
- 51:8e:ed:18:01:b1:93:63:bd:bc:f8:61:80:9a:9e:b1:ce:42:
- 70:e2:a9:7d:06:25:7d:27:a1:fe:6f:ec:b3:1e:24:da:e3:4b:
- 55:1a:00:3b:35:b4:3b:d9:d7:5d:30:fd:81:13:89:f2:c2:06:
- 2b:ed:67:c4:8e:c9:43:b2:5c:6b:15:89:02:bc:62:fc:4e:f2:
- b5:33:aa:b2:6f:d3:0a:a2:50:e3:f6:3b:e8:2e:44:c2:db:66:
- 38:a9:33:56:48:f1:6d:1b:33:8d:0d:8c:3f:60:37:9d:d3:ca:
- 6d:7e:34:7e:0d:9f:72:76:8b:1b:9f:72:fd:52:35:41:45:02:
- 96:2f:1c:b2:9a:73:49:21:b1:49:47:45:47:b4:ef:6a:34:11:
- c9:4d:9a:cc:59:b7:d6:02:9e:5a:4e:65:b5:94:ae:1b:df:29:
- b0:16:f1:bf:00:9e:07:3a:17:64:b5:04:b5:23:21:99:0a:95:
- 3b:97:7c:ef
------BEGIN CERTIFICATE-----
-MIIDTDCCAjSgAwIBAgIId3cGJyapsXwwDQYJKoZIhvcNAQELBQAwRDELMAkGA1UE
-BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVz
-dCBDb21tZXJjaWFsMB4XDTEwMDEyOTE0MDYwNloXDTMwMTIzMTE0MDYwNlowRDEL
-MAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZp
-cm1UcnVzdCBDb21tZXJjaWFsMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC
-AQEA9htPZwcroRX1BiLLHwGy43NFBkRJLLtJJRTWzsO3qyxPxkEylFf6EqdbDuKP
-Hx6GGaeqtS25Xw2Kwq+FNXkyLbscYjfysVtKPcrNcV/pQr6U6Mje+SJIZMblq8Yr
-ba0F8PrVC8+a5fBQpIs7R6UjW3p6+DM/uO+Zl+MgwdYoic+U+7lF7eNAFxHUdPAL
-MeIrJmqbTFeurCA+ukV6BfO9m2kVrn1OIGPENXY6BwLJN/3HR+7o8XYdcxXyl6S1
-yHp52UKqK39c/s4mT6NmgTWvRLpUHhwwMmWd5jyTXlBOeuM61G7MGvv50jeuJCqr
-VwMiKA1JdX+3KNp1v47j3A55MQIDAQABo0IwQDAdBgNVHQ4EFgQUnZPGU4teyq8/
-nx4P5ZmVvCT2lI8wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwDQYJ
-KoZIhvcNAQELBQADggEBAFis9AQOzcAN/wr91LoWXym9e2iZWEnStB03TX8nfUYG
-XUPGhi4+c7ImfU+TqbbEKpqrIZcUsd6M06uJFdhrJNTxFq7YpFzUf1GO7RgBsZNj
-vbz4YYCanrHOQnDiqX0GJX0nof5v7LMeJNrjS1UaADs1tDvZ110w/YETifLCBivt
-Z8SOyUOyXGsViQK8YvxO8rUzqrJv0wqiUOP2O+guRMLbZjipM1ZI8W0bM40NjD9g
-N53Tym1+NH4Nn3J2ixufcv1SNUFFApYvHLKac0khsUlHRUe072o0EclNmsxZt9YC
-nlpOZbWUrhvfKbAW8b8Angc6F2S1BLUjIZkKlTuXfO8=
------END CERTIFICATE-----
-
-# 43df5774b03e7fef5fe40d931a7bedf1bb2e6b42738c4e6d3841103d3aa7f339
-Certificate:
- Data:
- Version: 3 (0x2)
- Serial Number: 1246989352 (0x4a538c28)
- Signature Algorithm: sha256WithRSAEncryption
- Issuer: C = US, O = "Entrust, Inc.", OU = See www.entrust.net/legal-terms, OU = "(c) 2009 Entrust, Inc. - for authorized use only", CN = Entrust Root Certification Authority - G2
- Validity
- Not Before: Jul 7 17:25:54 2009 GMT
- Not After : Dec 7 17:55:54 2030 GMT
- Subject: C = US, O = "Entrust, Inc.", OU = See www.entrust.net/legal-terms, OU = "(c) 2009 Entrust, Inc. - for authorized use only", CN = Entrust Root Certification Authority - G2
- Subject Public Key Info:
- Public Key Algorithm: rsaEncryption
- RSA Public-Key: (2048 bit)
- Modulus:
- 00:ba:84:b6:72:db:9e:0c:6b:e2:99:e9:30:01:a7:
- 76:ea:32:b8:95:41:1a:c9:da:61:4e:58:72:cf:fe:
- f6:82:79:bf:73:61:06:0a:a5:27:d8:b3:5f:d3:45:
- 4e:1c:72:d6:4e:32:f2:72:8a:0f:f7:83:19:d0:6a:
- 80:80:00:45:1e:b0:c7:e7:9a:bf:12:57:27:1c:a3:
- 68:2f:0a:87:bd:6a:6b:0e:5e:65:f3:1c:77:d5:d4:
- 85:8d:70:21:b4:b3:32:e7:8b:a2:d5:86:39:02:b1:
- b8:d2:47:ce:e4:c9:49:c4:3b:a7:de:fb:54:7d:57:
- be:f0:e8:6e:c2:79:b2:3a:0b:55:e2:50:98:16:32:
- 13:5c:2f:78:56:c1:c2:94:b3:f2:5a:e4:27:9a:9f:
- 24:d7:c6:ec:d0:9b:25:82:e3:cc:c2:c4:45:c5:8c:
- 97:7a:06:6b:2a:11:9f:a9:0a:6e:48:3b:6f:db:d4:
- 11:19:42:f7:8f:07:bf:f5:53:5f:9c:3e:f4:17:2c:
- e6:69:ac:4e:32:4c:62:77:ea:b7:e8:e5:bb:34:bc:
- 19:8b:ae:9c:51:e7:b7:7e:b5:53:b1:33:22:e5:6d:
- cf:70:3c:1a:fa:e2:9b:67:b6:83:f4:8d:a5:af:62:
- 4c:4d:e0:58:ac:64:34:12:03:f8:b6:8d:94:63:24:
- a4:71
- Exponent: 65537 (0x10001)
- X509v3 extensions:
- X509v3 Key Usage: critical
- Certificate Sign, CRL Sign
- X509v3 Basic Constraints: critical
- CA:TRUE
- X509v3 Subject Key Identifier:
- 6A:72:26:7A:D0:1E:EF:7D:E7:3B:69:51:D4:6C:8D:9F:90:12:66:AB
- Signature Algorithm: sha256WithRSAEncryption
- 79:9f:1d:96:c6:b6:79:3f:22:8d:87:d3:87:03:04:60:6a:6b:
- 9a:2e:59:89:73:11:ac:43:d1:f5:13:ff:8d:39:2b:c0:f2:bd:
- 4f:70:8c:a9:2f:ea:17:c4:0b:54:9e:d4:1b:96:98:33:3c:a8:
- ad:62:a2:00:76:ab:59:69:6e:06:1d:7e:c4:b9:44:8d:98:af:
- 12:d4:61:db:0a:19:46:47:f3:eb:f7:63:c1:40:05:40:a5:d2:
- b7:f4:b5:9a:36:bf:a9:88:76:88:04:55:04:2b:9c:87:7f:1a:
- 37:3c:7e:2d:a5:1a:d8:d4:89:5e:ca:bd:ac:3d:6c:d8:6d:af:
- d5:f3:76:0f:cd:3b:88:38:22:9d:6c:93:9a:c4:3d:bf:82:1b:
- 65:3f:a6:0f:5d:aa:fc:e5:b2:15:ca:b5:ad:c6:bc:3d:d0:84:
- e8:ea:06:72:b0:4d:39:32:78:bf:3e:11:9c:0b:a4:9d:9a:21:
- f3:f0:9b:0b:30:78:db:c1:dc:87:43:fe:bc:63:9a:ca:c5:c2:
- 1c:c9:c7:8d:ff:3b:12:58:08:e6:b6:3d:ec:7a:2c:4e:fb:83:
- 96:ce:0c:3c:69:87:54:73:a4:73:c2:93:ff:51:10:ac:15:54:
- 01:d8:fc:05:b1:89:a1:7f:74:83:9a:49:d7:dc:4e:7b:8a:48:
- 6f:8b:45:f6
------BEGIN CERTIFICATE-----
-MIIEPjCCAyagAwIBAgIESlOMKDANBgkqhkiG9w0BAQsFADCBvjELMAkGA1UEBhMC
-VVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50
-cnVzdC5uZXQvbGVnYWwtdGVybXMxOTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3Qs
-IEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ugb25seTEyMDAGA1UEAxMpRW50cnVz
-dCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzIwHhcNMDkwNzA3MTcy
-NTU0WhcNMzAxMjA3MTc1NTU0WjCBvjELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUVu
-dHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50cnVzdC5uZXQvbGVnYWwt
-dGVybXMxOTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3QsIEluYy4gLSBmb3IgYXV0
-aG9yaXplZCB1c2Ugb25seTEyMDAGA1UEAxMpRW50cnVzdCBSb290IENlcnRpZmlj
-YXRpb24gQXV0aG9yaXR5IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEK
-AoIBAQC6hLZy254Ma+KZ6TABp3bqMriVQRrJ2mFOWHLP/vaCeb9zYQYKpSfYs1/T
-RU4cctZOMvJyig/3gxnQaoCAAEUesMfnmr8SVycco2gvCoe9amsOXmXzHHfV1IWN
-cCG0szLni6LVhjkCsbjSR87kyUnEO6fe+1R9V77w6G7CebI6C1XiUJgWMhNcL3hW
-wcKUs/Ja5CeanyTXxuzQmyWC48zCxEXFjJd6BmsqEZ+pCm5IO2/b1BEZQvePB7/1
-U1+cPvQXLOZprE4yTGJ36rfo5bs0vBmLrpxR57d+tVOxMyLlbc9wPBr64ptntoP0
-jaWvYkxN4FisZDQSA/i2jZRjJKRxAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAP
-BgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqciZ60B7vfec7aVHUbI2fkBJmqzAN
-BgkqhkiG9w0BAQsFAAOCAQEAeZ8dlsa2eT8ijYfThwMEYGprmi5ZiXMRrEPR9RP/
-jTkrwPK9T3CMqS/qF8QLVJ7UG5aYMzyorWKiAHarWWluBh1+xLlEjZivEtRh2woZ
-Rkfz6/djwUAFQKXSt/S1mja/qYh2iARVBCuch38aNzx+LaUa2NSJXsq9rD1s2G2v
-1fN2D807iDginWyTmsQ9v4IbZT+mD12q/OWyFcq1rca8PdCE6OoGcrBNOTJ4vz4R
-nAuknZoh8/CbCzB428Hch0P+vGOaysXCHMnHjf87ElgI5rY97HosTvuDls4MPGmH
-VHOkc8KT/1EQrBVUAdj8BbGJoX90g5pJ19xOe4pIb4tF9g==
------END CERTIFICATE-----
-
-# 73c176434f1bc6d5adf45b0e76e727287c8de57616c1e6e6141a2b2cbc7d8e4c
-Certificate:
- Data:
- Version: 3 (0x2)
- Serial Number: 1164660820 (0x456b5054)
- Signature Algorithm: sha1WithRSAEncryption
- Issuer: C = US, O = "Entrust, Inc.", OU = www.entrust.net/CPS is incorporated by reference, OU = "(c) 2006 Entrust, Inc.", CN = Entrust Root Certification Authority
- Validity
- Not Before: Nov 27 20:23:42 2006 GMT
- Not After : Nov 27 20:53:42 2026 GMT
- Subject: C = US, O = "Entrust, Inc.", OU = www.entrust.net/CPS is incorporated by reference, OU = "(c) 2006 Entrust, Inc.", CN = Entrust Root Certification Authority
- Subject Public Key Info:
- Public Key Algorithm: rsaEncryption
- RSA Public-Key: (2048 bit)
- Modulus:
- 00:b6:95:b6:43:42:fa:c6:6d:2a:6f:48:df:94:4c:
- 39:57:05:ee:c3:79:11:41:68:36:ed:ec:fe:9a:01:
- 8f:a1:38:28:fc:f7:10:46:66:2e:4d:1e:1a:b1:1a:
- 4e:c6:d1:c0:95:88:b0:c9:ff:31:8b:33:03:db:b7:
- 83:7b:3e:20:84:5e:ed:b2:56:28:a7:f8:e0:b9:40:
- 71:37:c5:cb:47:0e:97:2a:68:c0:22:95:62:15:db:
- 47:d9:f5:d0:2b:ff:82:4b:c9:ad:3e:de:4c:db:90:
- 80:50:3f:09:8a:84:00:ec:30:0a:3d:18:cd:fb:fd:
- 2a:59:9a:23:95:17:2c:45:9e:1f:6e:43:79:6d:0c:
- 5c:98:fe:48:a7:c5:23:47:5c:5e:fd:6e:e7:1e:b4:
- f6:68:45:d1:86:83:5b:a2:8a:8d:b1:e3:29:80:fe:
- 25:71:88:ad:be:bc:8f:ac:52:96:4b:aa:51:8d:e4:
- 13:31:19:e8:4e:4d:9f:db:ac:b3:6a:d5:bc:39:54:
- 71:ca:7a:7a:7f:90:dd:7d:1d:80:d9:81:bb:59:26:
- c2:11:fe:e6:93:e2:f7:80:e4:65:fb:34:37:0e:29:
- 80:70:4d:af:38:86:2e:9e:7f:57:af:9e:17:ae:eb:
- 1c:cb:28:21:5f:b6:1c:d8:e7:a2:04:22:f9:d3:da:
- d8:cb
- Exponent: 65537 (0x10001)
- X509v3 extensions:
- X509v3 Key Usage: critical
- Certificate Sign, CRL Sign
- X509v3 Basic Constraints: critical
- CA:TRUE
- X509v3 Private Key Usage Period:
- Not Before: Nov 27 20:23:42 2006 GMT, Not After: Nov 27 20:53:42 2026 GMT
- X509v3 Authority Key Identifier:
- keyid:68:90:E4:67:A4:A6:53:80:C7:86:66:A4:F1:F7:4B:43:FB:84:BD:6D
-
- X509v3 Subject Key Identifier:
- 68:90:E4:67:A4:A6:53:80:C7:86:66:A4:F1:F7:4B:43:FB:84:BD:6D
- 1.2.840.113533.7.65.0:
- 0...V7.1:4.0....
- Signature Algorithm: sha1WithRSAEncryption
- 93:d4:30:b0:d7:03:20:2a:d0:f9:63:e8:91:0c:05:20:a9:5f:
- 19:ca:7b:72:4e:d4:b1:db:d0:96:fb:54:5a:19:2c:0c:08:f7:
- b2:bc:85:a8:9d:7f:6d:3b:52:b3:2a:db:e7:d4:84:8c:63:f6:
- 0f:cb:26:01:91:50:6c:f4:5f:14:e2:93:74:c0:13:9e:30:3a:
- 50:e3:b4:60:c5:1c:f0:22:44:8d:71:47:ac:c8:1a:c9:e9:9b:
- 9a:00:60:13:ff:70:7e:5f:11:4d:49:1b:b3:15:52:7b:c9:54:
- da:bf:9d:95:af:6b:9a:d8:9e:e9:f1:e4:43:8d:e2:11:44:3a:
- bf:af:bd:83:42:73:52:8b:aa:bb:a7:29:cf:f5:64:1c:0a:4d:
- d1:bc:aa:ac:9f:2a:d0:ff:7f:7f:da:7d:ea:b1:ed:30:25:c1:
- 84:da:34:d2:5b:78:83:56:ec:9c:36:c3:26:e2:11:f6:67:49:
- 1d:92:ab:8c:fb:eb:ff:7a:ee:85:4a:a7:50:80:f0:a7:5c:4a:
- 94:2e:5f:05:99:3c:52:41:e0:cd:b4:63:cf:01:43:ba:9c:83:
- dc:8f:60:3b:f3:5a:b4:b4:7b:ae:da:0b:90:38:75:ef:81:1d:
- 66:d2:f7:57:70:36:b3:bf:fc:28:af:71:25:85:5b:13:fe:1e:
- 7f:5a:b4:3c
------BEGIN CERTIFICATE-----
-MIIEkTCCA3mgAwIBAgIERWtQVDANBgkqhkiG9w0BAQUFADCBsDELMAkGA1UEBhMC
-VVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xOTA3BgNVBAsTMHd3dy5lbnRydXN0
-Lm5ldC9DUFMgaXMgaW5jb3Jwb3JhdGVkIGJ5IHJlZmVyZW5jZTEfMB0GA1UECxMW
-KGMpIDIwMDYgRW50cnVzdCwgSW5jLjEtMCsGA1UEAxMkRW50cnVzdCBSb290IENl
-cnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA2MTEyNzIwMjM0MloXDTI2MTEyNzIw
-NTM0MlowgbAxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMTkw
-NwYDVQQLEzB3d3cuZW50cnVzdC5uZXQvQ1BTIGlzIGluY29ycG9yYXRlZCBieSBy
-ZWZlcmVuY2UxHzAdBgNVBAsTFihjKSAyMDA2IEVudHJ1c3QsIEluYy4xLTArBgNV
-BAMTJEVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASIwDQYJ
-KoZIhvcNAQEBBQADggEPADCCAQoCggEBALaVtkNC+sZtKm9I35RMOVcF7sN5EUFo
-Nu3s/poBj6E4KPz3EEZmLk0eGrEaTsbRwJWIsMn/MYszA9u3g3s+IIRe7bJWKKf4
-4LlAcTfFy0cOlypowCKVYhXbR9n10Cv/gkvJrT7eTNuQgFA/CYqEAOwwCj0Yzfv9
-KlmaI5UXLEWeH25DeW0MXJj+SKfFI0dcXv1u5x609mhF0YaDW6KKjbHjKYD+JXGI
-rb68j6xSlkuqUY3kEzEZ6E5Nn9uss2rVvDlUccp6en+Q3X0dgNmBu1kmwhH+5pPi
-94DkZfs0Nw4pgHBNrziGLp5/V6+eF67rHMsoIV+2HNjnogQi+dPa2MsCAwEAAaOB
-sDCBrTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zArBgNVHRAEJDAi
-gA8yMDA2MTEyNzIwMjM0MlqBDzIwMjYxMTI3MjA1MzQyWjAfBgNVHSMEGDAWgBRo
-kORnpKZTgMeGZqTx90tD+4S9bTAdBgNVHQ4EFgQUaJDkZ6SmU4DHhmak8fdLQ/uE
-vW0wHQYJKoZIhvZ9B0EABBAwDhsIVjcuMTo0LjADAgSQMA0GCSqGSIb3DQEBBQUA
-A4IBAQCT1DCw1wMgKtD5Y+iRDAUgqV8ZyntyTtSx29CW+1RaGSwMCPeyvIWonX9t
-O1KzKtvn1ISMY/YPyyYBkVBs9F8U4pN0wBOeMDpQ47RgxRzwIkSNcUesyBrJ6Zua
-AGAT/3B+XxFNSRuzFVJ7yVTav52Vr2ua2J7p8eRDjeIRRDq/r72DQnNSi6q7pynP
-9WQcCk3RvKqsnyrQ/39/2n3qse0wJcGE2jTSW3iDVuycNsMm4hH2Z0kdkquM++v/
-eu6FSqdQgPCnXEqULl8FmTxSQeDNtGPPAUO6nIPcj2A781q0tHuu2guQOHXvgR1m
-0vdXcDazv/wor3ElhVsT/h5/WrQ8
------END CERTIFICATE-----
-
# bfff8fd04433487d6a8aa60c1a29767a9fc2bbb05e420f713a13b992891d3893
Certificate:
Data:
@@ -10752,3 +10441,128 @@
ly4wBOeY99sLAZDBHwo/+ML+TvrbmnNzFrwFuHnYWa8G5z9nODmxfKuU4CkUpijy
323imttUQ/hHWKNddBWcwauwxzQ=
-----END CERTIFICATE-----
+
+# 193144f431e0fddb740717d4de926a571133884b4360d30e272913cbe660ce41
+Certificate:
+ Data:
+ Version: 3 (0x2)
+ Serial Number:
+ 43:fa:0c:5f:4e:1b:80:18:44:ef:d1:b4:4f:35:1f:44:f4:80:ed:cb
+ Signature Algorithm: sha256WithRSAEncryption
+ Issuer: C=CH, O=SwissSign AG, CN=SwissSign RSA TLS Root CA 2022 - 1
+ Validity
+ Not Before: Jun 8 11:08:22 2022 GMT
+ Not After : Jun 8 11:08:22 2047 GMT
+ Subject: C=CH, O=SwissSign AG, CN=SwissSign RSA TLS Root CA 2022 - 1
+ Subject Public Key Info:
+ Public Key Algorithm: rsaEncryption
+ Public-Key: (4096 bit)
+ Modulus:
+ 00:cb:2a:68:e2:0b:c3:57:bc:35:63:bc:70:a5:3b:
+ f3:8c:3c:4e:57:96:6e:c3:4e:36:a4:f6:02:ca:1e:
+ aa:ae:b8:de:a8:af:1d:76:da:ba:35:d0:91:70:07:
+ df:b3:06:f2:8a:f2:2e:55:51:7b:bb:2c:24:cb:7f:
+ 92:26:80:a3:b4:94:f6:82:a1:a4:e8:fa:75:1d:59:
+ f3:07:6a:61:64:e2:c6:8c:95:af:a3:bb:8e:6f:56:
+ cf:71:cc:5e:81:61:0d:6d:f2:ab:02:2e:a4:97:e5:
+ 71:fc:8a:b0:91:20:5b:9c:74:52:6d:ae:15:27:59:
+ 78:f2:09:ca:65:0e:7f:cb:f4:eb:e7:dc:a9:4c:77:
+ f6:2b:16:04:95:ae:9c:71:a5:3f:2a:da:41:42:e7:
+ 3c:84:10:f4:e1:3d:8c:6b:e2:2b:91:47:55:4f:b8:
+ 56:be:45:de:22:51:4d:4e:28:d9:5f:19:41:06:8f:
+ 0e:4d:06:e0:70:40:23:01:6a:e4:cb:13:9b:73:ac:
+ 4d:14:48:92:2d:fe:6d:a7:f8:87:6b:79:75:e1:be:
+ 10:b1:aa:88:40:59:54:d7:cf:c4:d0:9b:44:b3:38:
+ 69:64:8c:81:d1:23:7e:aa:39:3c:3b:0f:9f:4a:7b:
+ 82:ca:6b:6f:ca:22:3e:31:d0:b0:d0:2a:1c:92:8a:
+ 8f:d8:19:9c:47:e4:3e:0c:b9:c2:cd:be:41:0c:f8:
+ a4:47:05:db:c1:17:30:38:3a:69:dc:cd:c3:69:23:
+ fd:9a:0f:02:ce:10:6a:ce:ca:f8:b9:29:a3:36:89:
+ 86:ae:0b:c0:4f:63:b9:06:59:49:5e:0e:c1:69:b3:
+ 0a:f3:77:7e:2e:9d:8c:b3:27:98:d2:99:8d:25:a7:
+ 1f:86:b3:a6:54:70:38:fc:7d:5d:e8:4f:83:0c:d1:
+ 93:e5:12:e4:54:da:3e:f2:ad:3a:de:3e:3c:45:f0:
+ 28:0f:06:b9:e1:db:97:7b:99:45:9e:dd:fe:95:59:
+ 04:2f:75:3f:d3:ae:89:99:86:ac:14:b4:a8:84:fa:
+ c8:5d:3b:1b:58:93:c1:17:94:55:c8:0b:e3:82:79:
+ 84:9f:f3:00:84:34:ee:dc:31:d5:8f:f2:fa:4f:96:
+ 4c:06:aa:78:fb:de:64:a2:23:cd:1f:3e:c5:8c:bc:
+ 37:54:0e:bb:5a:72:55:ef:c8:5b:b5:72:f8:78:df:
+ 37:20:4c:57:91:73:92:73:ac:18:77:43:82:20:69:
+ ec:e9:ac:29:46:e5:0b:4e:f8:37:73:89:96:8a:1c:
+ 6d:bd:ef:be:d8:b6:f4:ca:c0:fd:47:f0:ae:0b:58:
+ 20:c5:c8:1d:36:ae:97:8d:50:83:26:24:29:f7:9d:
+ 3b:0f:05
+ Exponent: 65537 (0x10001)
+ X509v3 extensions:
+ X509v3 Basic Constraints: critical
+ CA:TRUE
+ X509v3 Key Usage: critical
+ Certificate Sign, CRL Sign
+ X509v3 Authority Key Identifier:
+ 6F:8E:62:8B:93:43:B0:E1:40:F6:A7:C3:FD:F1:0F:B8:0F:15:38:A5
+ X509v3 Subject Key Identifier:
+ 6F:8E:62:8B:93:43:B0:E1:40:F6:A7:C3:FD:F1:0F:B8:0F:15:38:A5
+ Signature Algorithm: sha256WithRSAEncryption
+ Signature Value:
+ ac:2c:29:41:7d:fa:5c:f5:1a:95:18:bf:2c:a9:8a:a9:24:54:
+ 75:f5:b8:40:ab:cb:a8:24:51:2b:18:3f:63:a9:ae:98:56:2b:
+ 05:43:22:a3:b7:d7:46:9e:c0:2a:12:3d:8e:96:96:40:df:0c:
+ 33:8b:6b:37:91:3a:95:bb:39:29:6d:c0:02:6c:8a:94:0b:07:
+ 02:4d:18:3e:fb:fb:7b:f5:76:3d:9b:f6:5e:30:06:58:33:1e:
+ aa:78:d5:e6:54:04:3a:b2:82:09:8d:ce:16:33:59:45:28:f1:
+ a5:a3:97:0e:43:23:fd:0b:20:80:90:ff:e3:26:cf:b8:64:91:
+ e5:05:8f:13:a0:76:0d:d7:37:0c:10:88:96:f4:3e:be:95:bd:
+ f1:c3:7d:f0:a3:c3:79:47:0b:5c:92:15:63:ed:52:75:8a:e7:
+ 46:69:cb:51:55:0b:2a:4c:f5:f2:64:4f:a9:5c:ff:67:32:8e:
+ 55:2d:32:82:1c:80:2f:6a:91:f8:cb:bc:7e:18:a2:26:a8:2e:
+ a3:53:28:87:ed:57:e5:65:7a:4e:00:4a:5b:4e:53:c9:62:36:
+ bd:c2:8e:5b:eb:cc:6e:27:81:18:59:8b:44:63:9f:d5:0c:65:
+ f4:29:65:7f:91:2c:e5:7f:7e:e8:89:cf:8f:20:cb:6d:07:42:
+ 11:51:26:32:8a:2e:3a:47:13:b8:8d:bd:47:0d:09:f0:16:a4:
+ ed:96:86:2e:19:d8:be:8c:3a:e8:45:2e:11:ba:ae:5a:e7:b9:
+ bf:b1:cc:8f:e0:a0:ff:b8:b3:d1:85:7b:79:66:a3:39:b5:3b:
+ 66:d8:40:be:cf:b7:67:8b:48:c9:19:25:55:fc:bd:8d:cf:5e:
+ da:4e:a6:f2:69:ce:fd:7f:4c:77:d0:c1:46:35:98:5c:23:9b:
+ 02:45:43:94:5a:dd:bc:47:ad:22:fe:ba:5e:2f:91:29:29:86:
+ 7b:21:de:6e:64:b7:cb:0d:8f:37:5b:a3:08:6a:eb:f4:dd:02:
+ 8f:50:03:02:b1:b8:37:68:96:50:eb:b8:5f:d4:28:8a:a5:22:
+ 0c:8a:84:f0:59:2e:d5:37:d1:61:e5:42:73:58:2a:81:f7:76:
+ db:e2:e2:4d:0d:5f:f6:b7:be:05:b4:ae:4e:0d:de:16:3d:03:
+ 81:b3:26:5e:4b:b8:4b:00:cf:ff:8c:17:ba:6c:60:2d:27:87:
+ 37:24:e6:7a:60:2f:b5:d3:83:04:aa:4f:43:75:a2:c1:83:b2:
+ 27:98:2b:b1:0e:80:ba:c0:85:5e:42:b9:df:b1:60:91:d3:eb:
+ 18:7e:70:78:ae:76:83:be:71:5a:d0:90:e3:ca:c1:16:25:67:
+ 4a:f0:b6:7b:ba:e1:9c:d9
+-----BEGIN CERTIFICATE-----
+MIIFkzCCA3ugAwIBAgIUQ/oMX04bgBhE79G0TzUfRPSA7cswDQYJKoZIhvcNAQEL
+BQAwUTELMAkGA1UEBhMCQ0gxFTATBgNVBAoTDFN3aXNzU2lnbiBBRzErMCkGA1UE
+AxMiU3dpc3NTaWduIFJTQSBUTFMgUm9vdCBDQSAyMDIyIC0gMTAeFw0yMjA2MDgx
+MTA4MjJaFw00NzA2MDgxMTA4MjJaMFExCzAJBgNVBAYTAkNIMRUwEwYDVQQKEwxT
+d2lzc1NpZ24gQUcxKzApBgNVBAMTIlN3aXNzU2lnbiBSU0EgVExTIFJvb3QgQ0Eg
+MjAyMiAtIDEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDLKmjiC8NX
+vDVjvHClO/OMPE5Xlm7DTjak9gLKHqquuN6orx122ro10JFwB9+zBvKK8i5VUXu7
+LCTLf5ImgKO0lPaCoaTo+nUdWfMHamFk4saMla+ju45vVs9xzF6BYQ1t8qsCLqSX
+5XH8irCRIFucdFJtrhUnWXjyCcplDn/L9Ovn3KlMd/YrFgSVrpxxpT8q2kFC5zyE
+EPThPYxr4iuRR1VPuFa+Rd4iUU1OKNlfGUEGjw5NBuBwQCMBauTLE5tzrE0USJIt
+/m2n+IdreXXhvhCxqohAWVTXz8TQm0SzOGlkjIHRI36qOTw7D59Ke4LKa2/KIj4x
+0LDQKhySio/YGZxH5D4MucLNvkEM+KRHBdvBFzA4OmnczcNpI/2aDwLOEGrOyvi5
+KaM2iYauC8BPY7kGWUleDsFpswrzd34unYyzJ5jSmY0lpx+Gs6ZUcDj8fV3oT4MM
+0ZPlEuRU2j7yrTrePjxF8CgPBrnh25d7mUWe3f6VWQQvdT/TromZhqwUtKiE+shd
+OxtYk8EXlFXIC+OCeYSf8wCENO7cMdWP8vpPlkwGqnj73mSiI80fPsWMvDdUDrta
+clXvyFu1cvh43zcgTFeRc5JzrBh3Q4IgaezprClG5QtO+DdziZaKHG29777YtvTK
+wP1H8K4LWCDFyB02rpeNUIMmJCn3nTsPBQIDAQABo2MwYTAPBgNVHRMBAf8EBTAD
+AQH/MA4GA1UdDwEB/wQEAwIBBjAfBgNVHSMEGDAWgBRvjmKLk0Ow4UD2p8P98Q+4
+DxU4pTAdBgNVHQ4EFgQUb45ii5NDsOFA9qfD/fEPuA8VOKUwDQYJKoZIhvcNAQEL
+BQADggIBAKwsKUF9+lz1GpUYvyypiqkkVHX1uECry6gkUSsYP2OprphWKwVDIqO3
+10aewCoSPY6WlkDfDDOLazeROpW7OSltwAJsipQLBwJNGD77+3v1dj2b9l4wBlgz
+Hqp41eZUBDqyggmNzhYzWUUo8aWjlw5DI/0LIICQ/+Mmz7hkkeUFjxOgdg3XNwwQ
+iJb0Pr6VvfHDffCjw3lHC1ySFWPtUnWK50Zpy1FVCypM9fJkT6lc/2cyjlUtMoIc
+gC9qkfjLvH4YoiaoLqNTKIftV+Vlek4ASltOU8liNr3CjlvrzG4ngRhZi0Rjn9UM
+ZfQpZX+RLOV/fuiJz48gy20HQhFRJjKKLjpHE7iNvUcNCfAWpO2Whi4Z2L6MOuhF
+LhG6rlrnub+xzI/goP+4s9GFe3lmozm1O2bYQL7Pt2eLSMkZJVX8vY3PXtpOpvJp
+zv1/THfQwUY1mFwjmwJFQ5Ra3bxHrSL+ul4vkSkphnsh3m5kt8sNjzdbowhq6/Td
+Ao9QAwKxuDdollDruF/UKIqlIgyKhPBZLtU30WHlQnNYKoH3dtvi4k0NX/a3vgW0
+rk4N3hY9A4GzJl5LuEsAz/+MF7psYC0nhzck5npgL7XTgwSqT0N1osGDsieYK7EO
+gLrAhV5Cud+xYJHT6xh+cHiudoO+cVrQkOPKwRYlZ0rwtnu64ZzZ
+-----END CERTIFICATE-----
\ No newline at end of file
diff -Nru chromium-143.0.7499.109/net/data/ssl/chrome_root_store/root_store.md chromium-143.0.7499.169/net/data/ssl/chrome_root_store/root_store.md
--- chromium-143.0.7499.109/net/data/ssl/chrome_root_store/root_store.md 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/net/data/ssl/chrome_root_store/root_store.md 2025-12-17 23:05:18.000000000 +0000
@@ -1,7 +1,7 @@
# Chrome Root Store
-Version: 26
+Version: 27
[TOC]
@@ -122,9 +122,6 @@
9a114025197c5bb95d94e63d55cd43790847b646b23cdf11ada4a00eff15fb48 | CN=Buypass Class 2 Root CA,O=Buypass AS-983163327,C=NO | 2010-10-26 | 2040-10-26
edf7ebbca27a2a384d387b7d4010c666e2edb4843e4c29b4ae1d5b9332e6b24d | CN=Buypass Class 3 Root CA,O=Buypass AS-983163327,C=NO | 2010-10-26 | 2040-10-26
c0a6f4dc63a24bfdcf54ef2a6a082a0a72de35803e2ff5ff527ae5d87206dfd5 | OU=ePKI Root Certification Authority,O=Chunghwa Telecom Co.\, Ltd.,C=TW | 2004-12-20 | 2034-12-20
-02ed0eb28c14da45165c566791700d6451d7fb56f0b2ab1d3b8eb070e56edff5 | CN=Entrust Root Certification Authority - EC1,OU=See www.entrust.net/legal-terms+OU=(c) 2012 Entrust\, Inc. - for authorized use only,O=Entrust\, Inc.,C=US | 2012-12-18 | 2037-12-18
-0376ab1d54c5f9803ce4b2e201a0ee7eef7b57b636e8a93c9b8d4860c96f5fa7 | CN=AffirmTrust Commercial,O=AffirmTrust,C=US | 2010-01-29 | 2030-12-31
-43df5774b03e7fef5fe40d931a7bedf1bb2e6b42738c4e6d3841103d3aa7f339 | CN=Entrust Root Certification Authority - G2,OU=See www.entrust.net/legal-terms+OU=(c) 2009 Entrust\, Inc. - for authorized use only,O=Entrust\, Inc.,C=US | 2009-07-07 | 2030-12-07
-73c176434f1bc6d5adf45b0e76e727287c8de57616c1e6e6141a2b2cbc7d8e4c | CN=Entrust Root Certification Authority,OU=www.entrust.net/CPS is incorporated by reference+OU=(c) 2006 Entrust\, Inc.,O=Entrust\, Inc.,C=US | 2006-11-27 | 2026-11-27
6c61dac3a2def031506be036d2a6fe401994fbd13df9c8d466599274c446ec98 | CN=NetLock Arany (Class Gold) Főtanúsítvány,OU=Tanúsítványkiadók (Certification Services),O=NetLock Kft.,L=Budapest,C=HU | 2008-12-11 | 2028-12-06
f015ce3cc239bfef064be9f1d2c417e1a0264a0a94be1f0c8d121864eb6949cc | CN=HiPKI Root CA - G1,O=Chunghwa Telecom Co.\, Ltd.,C=TW | 2019-02-22 | 2037-12-31
+193144f431e0fddb740717d4de926a571133884b4360d30e272913cbe660ce41 | CN=SwissSign RSA TLS Root CA 2022 - 1,O=SwissSign AG,C=CH | 2022-06-08 | 2047-06-08
diff -Nru chromium-143.0.7499.109/net/data/ssl/chrome_root_store/root_store.textproto chromium-143.0.7499.169/net/data/ssl/chrome_root_store/root_store.textproto
--- chromium-143.0.7499.109/net/data/ssl/chrome_root_store/root_store.textproto 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/net/data/ssl/chrome_root_store/root_store.textproto 2025-12-17 23:05:18.000000000 +0000
@@ -8,7 +8,7 @@
# Version # should always be incremented up whenever this (or any pem file that
# it references) is changed.
-version_major: 26
+version_major: 27
# CN=Actalis Authentication Root CA, O=Actalis S.p.A./03358520967, L=Milan, C=IT
# https://ssltest-a.actalis.it:8443
@@ -227,66 +227,6 @@
sha256_hex: "86a1ecba089c4a8d3bbe2734c612ba341d813e043cf9e8a862cd5c57a36bbe6b"
}
-# CN=Entrust Root Certification Authority - EC1, OU=(c) 2012 Entrust, Inc. - for authorized use only, OU=See www.entrust.net/legal-terms, O=Entrust, Inc., C=US
-# https://validec.entrust.net
-# Constraint date: Mon Nov 11, 2024 23:59:59 GMT+0000
-trust_anchors {
- sha256_hex: "02ed0eb28c14da45165c566791700d6451d7fb56f0b2ab1d3b8eb070e56edff5"
- ev_policy_oids: "2.23.140.1.1"
- constraints: {
- sct_not_after_sec: 1731369599
- min_version: "131"
- }
- constraints: {
- max_version_exclusive: "131"
- }
-}
-
-# CN=AffirmTrust Commercial, O=AffirmTrust, C=US
-# https://commercial.affirmtrust.com/
-# Constraint date: Mon Nov 11, 2024 23:59:59 GMT+0000
-trust_anchors {
- sha256_hex: "0376ab1d54c5f9803ce4b2e201a0ee7eef7b57b636e8a93c9b8d4860c96f5fa7"
- ev_policy_oids: "2.23.140.1.1"
- constraints: {
- sct_not_after_sec: 1731369599
- min_version: "131"
- }
- constraints: {
- max_version_exclusive: "131"
- }
-}
-
-# CN=Entrust Root Certification Authority - G2, OU=(c) 2009 Entrust, Inc. - for authorized use only, OU=See www.entrust.net/legal-terms, O=Entrust, Inc., C=US
-# https://validg2.entrust.net
-# Constraint date: Mon Nov 11, 2024 23:59:59 GMT+0000
-trust_anchors {
- sha256_hex: "43df5774b03e7fef5fe40d931a7bedf1bb2e6b42738c4e6d3841103d3aa7f339"
- ev_policy_oids: "2.23.140.1.1"
- constraints: {
- sct_not_after_sec: 1731369599
- min_version: "131"
- }
- constraints: {
- max_version_exclusive: "131"
- }
-}
-
-# CN=Entrust Root Certification Authority, OU=(c) 2006 Entrust, Inc., OU=www.entrust.net/CPS is incorporated by reference, O=Entrust, Inc., C=US
-# https://www.entrust.net/
-# Constraint date: Mon Nov 11, 2024 23:59:59 GMT+0000
-trust_anchors {
- sha256_hex: "73c176434f1bc6d5adf45b0e76e727287c8de57616c1e6e6141a2b2cbc7d8e4c"
- ev_policy_oids: "2.23.140.1.1"
- constraints: {
- sct_not_after_sec: 1731369599
- min_version: "131"
- }
- constraints: {
- max_version_exclusive: "131"
- }
-}
-
# CN=GDCA TrustAUTH R5 ROOT, O=GUANG DONG CERTIFICATE AUTHORITY CO.,LTD., C=CN
trust_anchors {
sha256_hex: "bfff8fd04433487d6a8aa60c1a29767a9fc2bbb05e420f713a13b992891d3893"
@@ -787,6 +727,17 @@
ev_policy_oids: "2.23.140.1.1"
}
+# CN=SwissSign RSA TLS Root CA 2022 - 1, O=SwissSign AG, C=CH
+# https://ev-rsa-tls-2022-1-valid-cert-demo.swisssign.com/
+# Constraint date: Mon Jun 14, 2027 23:59:59 GMT+0000
+trust_anchors {
+ sha256_hex: "193144f431e0fddb740717d4de926a571133884b4360d30e272913cbe660ce41"
+ ev_policy_oids: "2.23.140.1.1"
+ constraints: {
+ sct_not_after_sec: 1813017599
+ }
+}
+
# BEGIN additional certs:
# "CN=Qualified e-Szigno TLS CA 2018,O=Microsec Ltd.,L=Budapest,C=HU,2.5.4.97=#130e56415448552d3233353834343937"
diff -Nru chromium-143.0.7499.109/net/http/transport_security_state_static.pins chromium-143.0.7499.169/net/http/transport_security_state_static.pins
--- chromium-143.0.7499.109/net/http/transport_security_state_static.pins 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/net/http/transport_security_state_static.pins 2025-12-17 23:05:18.000000000 +0000
@@ -43,9 +43,9 @@
# hash function for preloaded entries again (we have already done so once).
#
-# Last updated: 2025-12-06 12:56 UTC
+# Last updated: 2025-12-17 12:53 UTC
PinsListTimestamp
-1765025792
+1765976003
TestSPKI
sha256/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=
diff -Nru chromium-143.0.7499.109/net/http/transport_security_state_static_pins.json chromium-143.0.7499.169/net/http/transport_security_state_static_pins.json
--- chromium-143.0.7499.109/net/http/transport_security_state_static_pins.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/net/http/transport_security_state_static_pins.json 2025-12-17 23:05:18.000000000 +0000
@@ -31,7 +31,7 @@
// the 'static_spki_hashes' and 'bad_static_spki_hashes' fields in 'pinsets'
// refer to, and the timestamp at which the pins list was last updated.
//
-// Last updated: 2025-12-06 12:56 UTC
+// Last updated: 2025-12-17 12:53 UTC
//
{
"pinsets": [
diff -Nru chromium-143.0.7499.109/remoting/build/config/remoting_build.gni chromium-143.0.7499.169/remoting/build/config/remoting_build.gni
--- chromium-143.0.7499.109/remoting/build/config/remoting_build.gni 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/remoting/build/config/remoting_build.gni 2025-12-17 23:05:18.000000000 +0000
@@ -2,7 +2,7 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-import("//build/config/chrome_build.gni")
+import("//build/config/gclient_args.gni")
import("//build/config/ui.gni")
import("//chrome/version.gni")
import("//remoting/remoting_enable.gni")
@@ -28,7 +28,7 @@
# internal sources and implementations in a developer build. Setting this
# variable explicitly to true will cause your build to fail if the
# //remoting/internal directory is not present in your checkout.
- remoting_internal = enable_src_internal
+ remoting_internal = checkout_src_internal
# Set to true to enable using Crashpad instead of Breakpad.
# Currently, this is only implemented for linux.
diff -Nru chromium-143.0.7499.109/remoting/resources/remoting_strings_hi.xtb chromium-143.0.7499.169/remoting/resources/remoting_strings_hi.xtb
--- chromium-143.0.7499.109/remoting/resources/remoting_strings_hi.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/remoting/resources/remoting_strings_hi.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -20,9 +20,9 @@
ट्रैकपैड मोड
इस्तेमाल करने के लिए आपको 'स्क्रीन रिकॉर्डिंग' की अनुमति देनी होगी, ताकि इस Mac की स्क्रीन पर मौजूद सामग्री को कहीं और मौजूद मशीन पर भेजा जा सके.
-यह अनुमति देने के लिए, नीचे दिए गए '' पर क्लिक करें, ताकि 'स्क्रीन रिकॉर्डिंग' की प्राथमिकताओं वाले पैनल को खोला जा सके. इसके बाद '' के आगे बने बॉक्स को चुनें.
+यह अनुमति देने के लिए, नीचे दिए गए ‘' पर क्लिक करें, ताकि 'स्क्रीन रिकॉर्डिंग' की प्राथमिकताओं वाले पैनल को खोला जा सके. इसके बाद ‘' के आगे बने बॉक्स को चुनें.
-अगर '' पहले से चुना है, तो सही का निशान हटाकर दोबारा लगाएं.
+अगर ‘' पहले से चुना है, तो सही का निशान हटाकर दोबारा लगाएं.
आपका स्वागत है
कीबोर्ड छिपाएं
क्लाइंट के डिवाइस पर नहीं खोला जा सका.
diff -Nru chromium-143.0.7499.109/remoting/resources/remoting_strings_iw.xtb chromium-143.0.7499.169/remoting/resources/remoting_strings_iw.xtb
--- chromium-143.0.7499.109/remoting/resources/remoting_strings_iw.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/remoting/resources/remoting_strings_iw.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -20,9 +20,9 @@
מצב משטח מגע
על מנת להשתמש ב-, יש להעניק את ההרשאה 'הקלטת מסך' כדי שניתן יהיה לשלוח את תוכן המסך במחשב ה-Mac הזה אל המחשב המרוחק.
-על מנת להעניק את ההרשאה הזו, יש ללחוץ על '' למטה כדי לפתוח את חלונית ההעדפות של 'הקלטת מסך', ולסמן את התיבה לצד ''.
+על מנת להעניק את ההרשאה הזו, יש ללחוץ על ‘' למטה כדי לפתוח את חלונית ההעדפות של 'הקלטת מסך', ולסמן את התיבה לצד ‘'.
-אם האפשרות '' כבר מסומנת, יש להסיר את הסימון ואז לסמן מחדש.
+אם האפשרות ‘' כבר מסומנת, יש להסיר את הסימון ואז לסמן מחדש.
ברוכים הבאים
הסתרת מקלדת
לא ניתן היה לפתוח את במכשיר הלקוח.
@@ -168,9 +168,9 @@
אירעה שגיאת רשת. יש לבדוק שהמכשיר מחובר לרשת ולנסות שוב.
כדי להשתמש ב-, יש להעניק הרשאת 'נגישות' כדי שניתן יהיה לשלוט במחשב ה-Mac הזה באמצעות קלט מהמחשב המרוחק.
-כדי להעניק את ההרשאה הזו, יש ללחוץ על '' למטה. אחרי הלחיצה, תיפתח חלונית לבחירת העדפות. בקטע 'נגישות', יש לסמן את התיבה שלצד ''.
+כדי להעניק את ההרשאה הזו, יש ללחוץ על ‘' למטה. אחרי הלחיצה, תיפתח חלונית לבחירת העדפות. בקטע 'נגישות', יש לסמן את התיבה שלצד ‘'.
-אם האפשרות '' כבר מסומנת, יש לבטל את הסימון ואז לסמן מחדש.
+אם האפשרות ‘' כבר מסומנת, יש לבטל את הסימון ואז לסמן מחדש.
תהליך התקשרות מרחוק לאימות באינטרנט
כדי להשתמש ב-Chromoting, עליך להוסיף חשבון Google למכשיר שלך.
בהגדרת המארח נעשה שימוש בפרטי כניסת OAuth לא חוקיים.
diff -Nru chromium-143.0.7499.109/testing/variations/fieldtrial_testing_config.json chromium-143.0.7499.169/testing/variations/fieldtrial_testing_config.json
--- chromium-143.0.7499.109/testing/variations/fieldtrial_testing_config.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/testing/variations/fieldtrial_testing_config.json 2025-12-17 23:05:18.000000000 +0000
@@ -23404,7 +23404,7 @@
"respect_navigation_preload": "true",
"use_allowlist": "false"
},
- "enable_features": [
+ "disable_features": [
"ServiceWorkerAutoPreload"
]
}
diff -Nru chromium-143.0.7499.109/third_party/blink/renderer/platform/webrtc/webrtc_video_frame_adapter.cc chromium-143.0.7499.169/third_party/blink/renderer/platform/webrtc/webrtc_video_frame_adapter.cc
--- chromium-143.0.7499.109/third_party/blink/renderer/platform/webrtc/webrtc_video_frame_adapter.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/third_party/blink/renderer/platform/webrtc/webrtc_video_frame_adapter.cc 2025-12-17 23:05:18.000000000 +0000
@@ -235,11 +235,13 @@
viz::RasterContextProvider::ScopedRasterContextLock scoped_context(
raster_context_provider.get());
+ // NV12 textures shouldn't be readback via conversion to NV12.
if (!disable_gmb_frames_ &&
CanUseGpuMemoryBufferReadback(
source_frame->format(),
raster_context_provider->SharedImageInterface(),
- raster_context_provider->ContextCapabilities())) {
+ raster_context_provider->ContextCapabilities()) &&
+ source_frame->format() != media::PIXEL_FORMAT_NV12) {
if (!accelerated_frame_pool_) {
accelerated_frame_pool_ =
media::RenderableGpuMemoryBufferVideoFramePool::Create(
diff -Nru chromium-143.0.7499.109/third_party/dawn/src/dawn/native/Toggles.cpp chromium-143.0.7499.169/third_party/dawn/src/dawn/native/Toggles.cpp
--- chromium-143.0.7499.109/third_party/dawn/src/dawn/native/Toggles.cpp 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/third_party/dawn/src/dawn/native/Toggles.cpp 2025-12-17 23:05:18.000000000 +0000
@@ -383,6 +383,13 @@
{"metal_polyfill_unpack_2x16_snorm",
"Polyfill unpack2x16snorm for MSL due to CTS failures on Mac AMD devices.",
"https://crbug.com/407109055", ToggleStage::Device}},
+ {Toggle::VulkanPolyfillF32Negation,
+ {"spirv_polyfill_f32_negation",
+ "Polyfill f32 negation with bit manipulation in SPIR-V writer.",
+ "https://crbug.com/448294721", ToggleStage::Device}},
+ {Toggle::VulkanPolyfillF32Abs,
+ {"spirv_polyfill_f32_abs", "Polyfill f32 abs with bit manipulation in SPIR-V writer.",
+ "https://crbug.com/448294721", ToggleStage::Device}},
{Toggle::MetalFillEmptyOcclusionQueriesWithZero,
{"metal_fill_empty_occlusion_queries_with_zero",
"Apple GPUs leave stale results in the visibility result buffer instead of writing zero if "
diff -Nru chromium-143.0.7499.109/third_party/dawn/src/dawn/native/Toggles.h chromium-143.0.7499.169/third_party/dawn/src/dawn/native/Toggles.h
--- chromium-143.0.7499.109/third_party/dawn/src/dawn/native/Toggles.h 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/third_party/dawn/src/dawn/native/Toggles.h 2025-12-17 23:05:18.000000000 +0000
@@ -103,6 +103,8 @@
MetalUseBothDepthAndStencilAttachmentsForCombinedDepthStencilFormats,
MetalKeepMultisubresourceDepthStencilTexturesInitialized,
MetalPolyfillUnpack2x16snorm,
+ VulkanPolyfillF32Negation,
+ VulkanPolyfillF32Abs,
MetalFillEmptyOcclusionQueriesWithZero,
UseBlitForBufferToDepthTextureCopy,
UseBlitForBufferToStencilTextureCopy,
diff -Nru chromium-143.0.7499.109/third_party/dawn/src/dawn/native/vulkan/PhysicalDeviceVk.cpp chromium-143.0.7499.169/third_party/dawn/src/dawn/native/vulkan/PhysicalDeviceVk.cpp
--- chromium-143.0.7499.109/third_party/dawn/src/dawn/native/vulkan/PhysicalDeviceVk.cpp 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/third_party/dawn/src/dawn/native/vulkan/PhysicalDeviceVk.cpp 2025-12-17 23:05:18.000000000 +0000
@@ -995,6 +995,16 @@
deviceToggles->Default(Toggle::VulkanPolyfillSwitchWithIf, true);
}
+ // AMD mesa front end optimizer bug for unary negation and abs.
+ // Fixed in 25.3 - See crbug.com/448294721
+ if (IsAmdMesa()) {
+ const gpu_info::DriverVersion kGoodMesaDriver = {25, 3, 0, 0};
+ if (CompareIntelMesaDriverVersion(GetDriverVersion(), kGoodMesaDriver) < 0) {
+ deviceToggles->Default(Toggle::VulkanPolyfillF32Abs, true);
+ deviceToggles->Default(Toggle::VulkanPolyfillF32Negation, true);
+ }
+ }
+
if (IsAndroidARM()) {
// dawn:1550: Resolving multiple color targets in a single pass fails on ARM GPUs. To
// work around the issue, passes that resolve to multiple color targets will instead be
@@ -1276,6 +1286,13 @@
}
return false;
}
+
+bool PhysicalDevice::IsAmdMesa() const {
+ if (mDeviceInfo.HasExt(DeviceExt::DriverProperties)) {
+ return mDeviceInfo.driverProperties.driverID == VK_DRIVER_ID_MESA_RADV_KHR;
+ }
+ return false;
+}
bool PhysicalDevice::IsSwiftshader() const {
return gpu_info::IsGoogleSwiftshader(GetVendorId(), GetDeviceId());
diff -Nru chromium-143.0.7499.109/third_party/dawn/src/dawn/native/vulkan/PhysicalDeviceVk.h chromium-143.0.7499.169/third_party/dawn/src/dawn/native/vulkan/PhysicalDeviceVk.h
--- chromium-143.0.7499.109/third_party/dawn/src/dawn/native/vulkan/PhysicalDeviceVk.h 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/third_party/dawn/src/dawn/native/vulkan/PhysicalDeviceVk.h 2025-12-17 23:05:18.000000000 +0000
@@ -67,6 +67,7 @@
bool IsAndroidImgTec() const;
bool IsPixel10() const;
bool IsIntelMesa() const;
+ bool IsAmdMesa() const;
bool IsAndroidHuawei() const;
bool IsSwiftshader() const;
diff -Nru chromium-143.0.7499.109/third_party/dawn/src/dawn/native/vulkan/ShaderModuleVk.cpp chromium-143.0.7499.169/third_party/dawn/src/dawn/native/vulkan/ShaderModuleVk.cpp
--- chromium-143.0.7499.109/third_party/dawn/src/dawn/native/vulkan/ShaderModuleVk.cpp 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/third_party/dawn/src/dawn/native/vulkan/ShaderModuleVk.cpp 2025-12-17 23:05:18.000000000 +0000
@@ -240,6 +240,9 @@
GetDevice()->IsToggleEnabled(Toggle::VulkanPolyfillSwitchWithIf);
req.tintOptions.polyfill_subgroup_broadcast_f16 =
GetDevice()->IsToggleEnabled(Toggle::EnableSubgroupsIntelGen9);
+ req.tintOptions.polyfill_unary_f32_negation =
+ GetDevice()->IsToggleEnabled(Toggle::VulkanPolyfillF32Negation);
+ req.tintOptions.polyfill_f32_abs = GetDevice()->IsToggleEnabled(Toggle::VulkanPolyfillF32Abs);
req.tintOptions.disable_polyfill_integer_div_mod =
GetDevice()->IsToggleEnabled(Toggle::DisablePolyfillsOnIntegerDivisonAndModulo);
req.tintOptions.scalarize_max_min_clamp =
diff -Nru chromium-143.0.7499.109/third_party/dawn/src/tint/lang/spirv/writer/common/options.h chromium-143.0.7499.169/third_party/dawn/src/tint/lang/spirv/writer/common/options.h
--- chromium-143.0.7499.109/third_party/dawn/src/tint/lang/spirv/writer/common/options.h 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/third_party/dawn/src/tint/lang/spirv/writer/common/options.h 2025-12-17 23:05:18.000000000 +0000
@@ -142,6 +142,12 @@
/// Set to `true` to decompose uniform buffers into array.
bool decompose_uniform_buffers = true;
+ /// Set to 'true' to polyfill unary negation.
+ bool polyfill_unary_f32_negation = false;
+
+ /// Set to 'true' to polyfill unary abs.
+ bool polyfill_f32_abs = false;
+
/// Offsets of the minDepth and maxDepth push constants.
std::optional depth_range_offsets = std::nullopt;
@@ -177,6 +183,8 @@
use_vulkan_memory_model,
dva_transform_handle,
decompose_uniform_buffers,
+ polyfill_unary_f32_negation,
+ polyfill_f32_abs,
depth_range_offsets,
spirv_version,
resource_binding);
diff -Nru chromium-143.0.7499.109/third_party/dawn/src/tint/lang/spirv/writer/raise/BUILD.bazel chromium-143.0.7499.169/third_party/dawn/src/tint/lang/spirv/writer/raise/BUILD.bazel
--- chromium-143.0.7499.109/third_party/dawn/src/tint/lang/spirv/writer/raise/BUILD.bazel 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/third_party/dawn/src/tint/lang/spirv/writer/raise/BUILD.bazel 2025-12-17 23:05:18.000000000 +0000
@@ -51,6 +51,7 @@
"remove_unreachable_in_loop_continuing.cc",
"resource_binding.cc",
"shader_io.cc",
+ "unary_polyfill.cc",
"var_for_dynamic_index.cc",
],
hdrs = [
@@ -66,6 +67,7 @@
"remove_unreachable_in_loop_continuing.h",
"resource_binding.h",
"shader_io.h",
+ "unary_polyfill.h",
"var_for_dynamic_index.h",
],
deps = [
@@ -120,6 +122,7 @@
"pass_matrix_by_pointer_test.cc",
"remove_unreachable_in_loop_continuing_test.cc",
"shader_io_test.cc",
+ "unary_polyfill_test.cc",
"var_for_dynamic_index_test.cc",
],
deps = [
diff -Nru chromium-143.0.7499.109/third_party/dawn/src/tint/lang/spirv/writer/raise/BUILD.cmake chromium-143.0.7499.169/third_party/dawn/src/tint/lang/spirv/writer/raise/BUILD.cmake
--- chromium-143.0.7499.109/third_party/dawn/src/tint/lang/spirv/writer/raise/BUILD.cmake 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/third_party/dawn/src/tint/lang/spirv/writer/raise/BUILD.cmake 2025-12-17 23:05:18.000000000 +0000
@@ -65,6 +65,8 @@
lang/spirv/writer/raise/resource_binding.h
lang/spirv/writer/raise/shader_io.cc
lang/spirv/writer/raise/shader_io.h
+ lang/spirv/writer/raise/unary_polyfill.cc
+ lang/spirv/writer/raise/unary_polyfill.h
lang/spirv/writer/raise/var_for_dynamic_index.cc
lang/spirv/writer/raise/var_for_dynamic_index.h
)
@@ -128,6 +130,7 @@
lang/spirv/writer/raise/pass_matrix_by_pointer_test.cc
lang/spirv/writer/raise/remove_unreachable_in_loop_continuing_test.cc
lang/spirv/writer/raise/shader_io_test.cc
+ lang/spirv/writer/raise/unary_polyfill_test.cc
lang/spirv/writer/raise/var_for_dynamic_index_test.cc
)
diff -Nru chromium-143.0.7499.109/third_party/dawn/src/tint/lang/spirv/writer/raise/BUILD.gn chromium-143.0.7499.169/third_party/dawn/src/tint/lang/spirv/writer/raise/BUILD.gn
--- chromium-143.0.7499.109/third_party/dawn/src/tint/lang/spirv/writer/raise/BUILD.gn 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/third_party/dawn/src/tint/lang/spirv/writer/raise/BUILD.gn 2025-12-17 23:05:18.000000000 +0000
@@ -69,6 +69,8 @@
"resource_binding.h",
"shader_io.cc",
"shader_io.h",
+ "unary_polyfill.cc",
+ "unary_polyfill.h",
"var_for_dynamic_index.cc",
"var_for_dynamic_index.h",
]
@@ -121,6 +123,7 @@
"pass_matrix_by_pointer_test.cc",
"remove_unreachable_in_loop_continuing_test.cc",
"shader_io_test.cc",
+ "unary_polyfill_test.cc",
"var_for_dynamic_index_test.cc",
]
deps = [
diff -Nru chromium-143.0.7499.109/third_party/dawn/src/tint/lang/spirv/writer/raise/raise.cc chromium-143.0.7499.169/third_party/dawn/src/tint/lang/spirv/writer/raise/raise.cc
--- chromium-143.0.7499.109/third_party/dawn/src/tint/lang/spirv/writer/raise/raise.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/third_party/dawn/src/tint/lang/spirv/writer/raise/raise.cc 2025-12-17 23:05:18.000000000 +0000
@@ -64,6 +64,7 @@
#include "src/tint/lang/spirv/writer/raise/remove_unreachable_in_loop_continuing.h"
#include "src/tint/lang/spirv/writer/raise/resource_binding.h"
#include "src/tint/lang/spirv/writer/raise/shader_io.h"
+#include "src/tint/lang/spirv/writer/raise/unary_polyfill.h"
#include "src/tint/lang/spirv/writer/raise/var_for_dynamic_index.h"
namespace tint::spirv::writer {
@@ -217,6 +218,14 @@
.signed_negation = true, .signed_arithmetic = true, .signed_shiftleft = true};
RUN_TRANSFORM(core::ir::transform::SignedIntegerPolyfill, module, signed_integer_cfg);
+ // AMD mesa front end optimizer bug for unary negation and abs.
+ // Fixed in 25.3 - See crbug.com/448294721
+ raise::UnaryPolyfillConfig unary_polyfill_cfg = {
+ .polyfill_f32_negation = options.polyfill_unary_f32_negation,
+ .polyfill_f32_abs = options.polyfill_f32_abs};
+
+ RUN_TRANSFORM(raise::UnaryPolyfill, module, unary_polyfill_cfg);
+
// kAllowAnyInputAttachmentIndexType required after ExpandImplicitSplats
RUN_TRANSFORM(raise::HandleMatrixArithmetic, module);
RUN_TRANSFORM(raise::MergeReturn, module);
diff -Nru chromium-143.0.7499.109/third_party/dawn/src/tint/lang/spirv/writer/raise/unary_polyfill.cc chromium-143.0.7499.169/third_party/dawn/src/tint/lang/spirv/writer/raise/unary_polyfill.cc
--- chromium-143.0.7499.109/third_party/dawn/src/tint/lang/spirv/writer/raise/unary_polyfill.cc 1970-01-01 00:00:00.000000000 +0000
+++ chromium-143.0.7499.169/third_party/dawn/src/tint/lang/spirv/writer/raise/unary_polyfill.cc 2025-12-17 23:05:18.000000000 +0000
@@ -0,0 +1,124 @@
+// Copyright 2025 The Dawn & Tint Authors
+//
+// Redistribution and use in source and binary forms, with or without
+// modification, are permitted provided that the following conditions are met:
+//
+// 1. Redistributions of source code must retain the above copyright notice, this
+// list of conditions and the following disclaimer.
+//
+// 2. Redistributions in binary form must reproduce the above copyright notice,
+// this list of conditions and the following disclaimer in the documentation
+// and/or other materials provided with the distribution.
+//
+// 3. Neither the name of the copyright holder nor the names of its
+// contributors may be used to endorse or promote products derived from
+// this software without specific prior written permission.
+//
+// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+#include "src/tint/lang/spirv/writer/raise/unary_polyfill.h"
+
+#include "src/tint/lang/core/ir/builder.h"
+#include "src/tint/lang/core/ir/module.h"
+#include "src/tint/lang/core/ir/validator.h"
+#include "src/tint/utils/result.h"
+
+using namespace tint::core::fluent_types; // NOLINT
+using namespace tint::core::number_suffixes; // NOLINT
+
+namespace tint::spirv::writer::raise {
+
+namespace {
+
+struct State {
+ core::ir::Module& ir;
+ UnaryPolyfillConfig config;
+ core::ir::Builder b{ir};
+ core::type::Manager& ty{ir.Types()};
+
+ void Process() {
+ Vector unary_worklist;
+ Vector builtin_worklist;
+ for (auto* inst : ir.Instructions()) {
+ if (auto* unary = inst->As()) {
+ if (config.polyfill_f32_negation && unary->Op() == core::UnaryOp::kNegation &&
+ unary->Result()->Type()->DeepestElement()->Is()) {
+ unary_worklist.Push(unary);
+ }
+ } else if (auto* builtin = inst->As()) {
+ if (config.polyfill_f32_abs && builtin->Func() == core::BuiltinFn::kAbs &&
+ builtin->Result()->Type()->DeepestElement()->Is()) {
+ builtin_worklist.Push(builtin);
+ }
+ }
+ }
+
+ for (auto* unary : unary_worklist) {
+ PolyfillF32Negation(unary);
+ }
+ for (auto* builtin : builtin_worklist) {
+ PolyfillF32Abs(builtin);
+ }
+ }
+
+ void PolyfillF32Negation(core::ir::Unary* unary) {
+ auto* val = unary->Val();
+ auto* type = val->Type();
+
+ // AMD mesa front end optimizer bug for unary negation and abs.
+ // Fixed in 25.3 - See crbug.com/448294721
+ // Note we use bitcast as a hammer to avoid the optimizer seeing through other possible
+ // workarounds.
+ b.InsertBefore(unary, [&] {
+ auto* uint_ty = ty.MatchWidth(ty.u32(), type);
+ auto* u32_val = b.Bitcast(uint_ty, val);
+ auto* mask = b.MatchWidth(0x80000000_u, uint_ty);
+ auto* xor_res = b.Xor(uint_ty, u32_val, mask);
+ b.BitcastWithResult(unary->DetachResult(), xor_res->Result());
+ });
+ unary->Destroy();
+ }
+
+ void PolyfillF32Abs(core::ir::CoreBuiltinCall* builtin) {
+ auto* val = builtin->Args()[0];
+ auto* type = val->Type();
+
+ // AMD mesa front end optimizer bug for unary negation and abs.
+ // Fixed in 25.3 - See crbug.com/448294721
+ // Note we use bitcast as a hammer to avoid the optimizer seeing through other possible
+ // workarounds.
+ b.InsertBefore(builtin, [&] {
+ auto* uint_ty = ty.MatchWidth(ty.u32(), type);
+ auto* u32_val = b.Bitcast(uint_ty, val);
+ auto* mask = b.MatchWidth(0x7FFFFFFF_u, uint_ty);
+ auto* and_res = b.And(uint_ty, u32_val, mask);
+ b.BitcastWithResult(builtin->DetachResult(), and_res->Result());
+ });
+ builtin->Destroy();
+ }
+};
+
+} // namespace
+
+Result UnaryPolyfill(core::ir::Module& module, const UnaryPolyfillConfig& config) {
+ auto result =
+ ValidateAndDumpIfNeeded(module, "spirv.UnaryPolyfill", kPolyfillUnaryCapabilities);
+ if (result != Success) {
+ return result.Failure();
+ }
+
+ State{module, config}.Process();
+
+ return Success;
+}
+
+} // namespace tint::spirv::writer::raise
diff -Nru chromium-143.0.7499.109/third_party/dawn/src/tint/lang/spirv/writer/raise/unary_polyfill.h chromium-143.0.7499.169/third_party/dawn/src/tint/lang/spirv/writer/raise/unary_polyfill.h
--- chromium-143.0.7499.109/third_party/dawn/src/tint/lang/spirv/writer/raise/unary_polyfill.h 1970-01-01 00:00:00.000000000 +0000
+++ chromium-143.0.7499.169/third_party/dawn/src/tint/lang/spirv/writer/raise/unary_polyfill.h 2025-12-17 23:05:18.000000000 +0000
@@ -0,0 +1,65 @@
+// Copyright 2025 The Dawn & Tint Authors
+//
+// Redistribution and use in source and binary forms, with or without
+// modification, are permitted provided that the following conditions are met:
+//
+// 1. Redistributions of source code must retain the above copyright notice, this
+// list of conditions and the following disclaimer.
+//
+// 2. Redistributions in binary form must reproduce the above copyright notice,
+// this list of conditions and the following disclaimer in the documentation
+// and/or other materials provided with the distribution.
+//
+// 3. Neither the name of the copyright holder nor the names of its
+// contributors may be used to endorse or promote products derived from
+// this software without specific prior written permission.
+//
+// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+#ifndef SRC_TINT_LANG_SPIRV_WRITER_RAISE_UNARY_POLYFILL_H_
+#define SRC_TINT_LANG_SPIRV_WRITER_RAISE_UNARY_POLYFILL_H_
+
+#include "src/tint/lang/core/ir/validator.h"
+#include "src/tint/utils/result.h"
+
+// Forward declarations.
+namespace tint::core::ir {
+class Module;
+} // namespace tint::core::ir
+
+namespace tint::spirv::writer::raise {
+
+// The capabilities that the transform can support.
+const core::ir::Capabilities kPolyfillUnaryCapabilities{
+ core::ir::Capability::kAllowDuplicateBindings,
+ core::ir::Capability::kAllowAnyInputAttachmentIndexType,
+ core::ir::Capability::kAllowNonCoreTypes,
+ core::ir::Capability::kAllow8BitIntegers,
+};
+
+/// Configuration for the UnaryPolyfill transform.
+struct UnaryPolyfillConfig {
+ /// If true, polyfill f32 negation with bit manipulation.
+ bool polyfill_f32_negation = false;
+ /// If true, polyfill f32 abs with sign() * x.
+ bool polyfill_f32_abs = false;
+};
+
+/// UnaryPolyfill is a transform that replaces unary instructions with polyfills.
+/// @param module the module to transform
+/// @param config the configuration used in the polyfill function
+/// @returns success or failure
+Result UnaryPolyfill(core::ir::Module& module, const UnaryPolyfillConfig& config);
+
+} // namespace tint::spirv::writer::raise
+
+#endif // SRC_TINT_LANG_SPIRV_WRITER_RAISE_UNARY_POLYFILL_H_
diff -Nru chromium-143.0.7499.109/third_party/dawn/src/tint/lang/spirv/writer/raise/unary_polyfill_test.cc chromium-143.0.7499.169/third_party/dawn/src/tint/lang/spirv/writer/raise/unary_polyfill_test.cc
--- chromium-143.0.7499.109/third_party/dawn/src/tint/lang/spirv/writer/raise/unary_polyfill_test.cc 1970-01-01 00:00:00.000000000 +0000
+++ chromium-143.0.7499.169/third_party/dawn/src/tint/lang/spirv/writer/raise/unary_polyfill_test.cc 2025-12-17 23:05:18.000000000 +0000
@@ -0,0 +1,247 @@
+// Copyright 2025 The Dawn & Tint Authors
+//
+// Redistribution and use in source and binary forms, with or without
+// modification, are permitted provided that the following conditions are met:
+//
+// 1. Redistributions of source code must retain the above copyright notice, this
+// list of conditions and the following disclaimer.
+//
+// 2. Redistributions in binary form must reproduce the above copyright notice,
+// this list of conditions and the following disclaimer in the documentation
+// and/or other materials provided with the distribution.
+//
+// 3. Neither the name of the copyright holder nor the names of its
+// contributors may be used to endorse or promote products derived from
+// this software without specific prior written permission.
+//
+// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+#include "src/tint/lang/spirv/writer/raise/unary_polyfill.h"
+
+#include "src/tint/lang/core/ir/transform/helper_test.h"
+
+namespace tint::spirv::writer::raise {
+namespace {
+
+using namespace tint::core::fluent_types; // NOLINT
+using namespace tint::core::number_suffixes; // NOLINT
+
+using SpirvWriter_UnaryPolyfillTest = core::ir::transform::TransformTest;
+
+TEST_F(SpirvWriter_UnaryPolyfillTest, Negation_Scalar) {
+ auto* arg = b.FunctionParam("arg", ty.f32());
+ auto* func = b.Function("foo", ty.f32());
+ func->SetParams({arg});
+
+ b.Append(func->Block(), [&] {
+ auto* result = b.Negation(ty.f32(), arg);
+ b.Return(func, result);
+ });
+
+ auto* src = R"(
+%foo = func(%arg:f32):f32 {
+ $B1: {
+ %3:f32 = negation %arg
+ ret %3
+ }
+}
+)";
+ EXPECT_EQ(src, str());
+
+ auto* expect = R"(
+%foo = func(%arg:f32):f32 {
+ $B1: {
+ %3:u32 = bitcast %arg
+ %4:u32 = xor %3, 2147483648u
+ %5:f32 = bitcast %4
+ ret %5
+ }
+}
+)";
+
+ UnaryPolyfillConfig config;
+ config.polyfill_f32_negation = true;
+ Run(UnaryPolyfill, config);
+
+ EXPECT_EQ(expect, str());
+}
+
+TEST_F(SpirvWriter_UnaryPolyfillTest, Negation_Vector) {
+ auto* arg = b.FunctionParam("arg", ty.vec4());
+ auto* func = b.Function("foo", ty.vec4());
+ func->SetParams({arg});
+
+ b.Append(func->Block(), [&] {
+ auto* result = b.Negation(ty.vec4(), arg);
+ b.Return(func, result);
+ });
+
+ auto* src = R"(
+%foo = func(%arg:vec4):vec4 {
+ $B1: {
+ %3:vec4 = negation %arg
+ ret %3
+ }
+}
+)";
+ EXPECT_EQ(src, str());
+
+ auto* expect = R"(
+%foo = func(%arg:vec4):vec4 {
+ $B1: {
+ %3:vec4 = bitcast %arg
+ %4:vec4 = xor %3, vec4(2147483648u)
+ %5:vec4 = bitcast %4
+ ret %5
+ }
+}
+)";
+
+ UnaryPolyfillConfig config;
+ config.polyfill_f32_negation = true;
+ Run(UnaryPolyfill, config);
+
+ EXPECT_EQ(expect, str());
+}
+
+TEST_F(SpirvWriter_UnaryPolyfillTest, Abs_Scalar) {
+ auto* arg = b.FunctionParam("arg", ty.f32());
+ auto* func = b.Function("foo", ty.f32());
+ func->SetParams({arg});
+
+ b.Append(func->Block(), [&] {
+ auto* result = b.Call(ty.f32(), core::BuiltinFn::kAbs, arg);
+ b.Return(func, result);
+ });
+
+ auto* src = R"(
+%foo = func(%arg:f32):f32 {
+ $B1: {
+ %3:f32 = abs %arg
+ ret %3
+ }
+}
+)";
+ EXPECT_EQ(src, str());
+
+ auto* expect = R"(
+%foo = func(%arg:f32):f32 {
+ $B1: {
+ %3:u32 = bitcast %arg
+ %4:u32 = and %3, 2147483647u
+ %5:f32 = bitcast %4
+ ret %5
+ }
+}
+)";
+
+ UnaryPolyfillConfig config;
+ config.polyfill_f32_abs = true;
+ Run(UnaryPolyfill, config);
+
+ EXPECT_EQ(expect, str());
+}
+
+TEST_F(SpirvWriter_UnaryPolyfillTest, Abs_Vector) {
+ auto* arg = b.FunctionParam("arg", ty.vec4());
+ auto* func = b.Function("foo", ty.vec4());
+ func->SetParams({arg});
+
+ b.Append(func->Block(), [&] {
+ auto* result = b.Call(ty.vec4(), core::BuiltinFn::kAbs, arg);
+ b.Return(func, result);
+ });
+
+ auto* src = R"(
+%foo = func(%arg:vec4):vec4 {
+ $B1: {
+ %3:vec4 = abs %arg
+ ret %3
+ }
+}
+)";
+ EXPECT_EQ(src, str());
+
+ auto* expect = R"(
+%foo = func(%arg:vec4):vec4 {
+ $B1: {
+ %3:vec4 = bitcast %arg
+ %4:vec4 = and %3, vec4(2147483647u)
+ %5:vec4 = bitcast %4
+ ret %5
+ }
+}
+)";
+
+ UnaryPolyfillConfig config;
+ config.polyfill_f32_abs = true;
+ Run(UnaryPolyfill, config);
+
+ EXPECT_EQ(expect, str());
+}
+
+TEST_F(SpirvWriter_UnaryPolyfillTest, Negation_NoPolyfill) {
+ auto* arg = b.FunctionParam("arg", ty.f32());
+ auto* func = b.Function("foo", ty.f32());
+ func->SetParams({arg});
+
+ b.Append(func->Block(), [&] {
+ auto* result = b.Negation(ty.f32(), arg);
+ b.Return(func, result);
+ });
+
+ auto* src = R"(
+%foo = func(%arg:f32):f32 {
+ $B1: {
+ %3:f32 = negation %arg
+ ret %3
+ }
+}
+)";
+ EXPECT_EQ(src, str());
+
+ UnaryPolyfillConfig config;
+ config.polyfill_f32_negation = false;
+ Run(UnaryPolyfill, config);
+
+ EXPECT_EQ(src, str());
+}
+
+TEST_F(SpirvWriter_UnaryPolyfillTest, Abs_NoPolyfill) {
+ auto* arg = b.FunctionParam("arg", ty.f32());
+ auto* func = b.Function("foo", ty.f32());
+ func->SetParams({arg});
+
+ b.Append(func->Block(), [&] {
+ auto* result = b.Call(ty.f32(), core::BuiltinFn::kAbs, arg);
+ b.Return(func, result);
+ });
+
+ auto* src = R"(
+%foo = func(%arg:f32):f32 {
+ $B1: {
+ %3:f32 = abs %arg
+ ret %3
+ }
+}
+)";
+ EXPECT_EQ(src, str());
+
+ UnaryPolyfillConfig config;
+ config.polyfill_f32_abs = false;
+ Run(UnaryPolyfill, config);
+
+ EXPECT_EQ(src, str());
+}
+
+} // namespace
+} // namespace tint::spirv::writer::raise
diff -Nru chromium-143.0.7499.109/third_party/libaddressinput/chromium/resources/address_input_strings_pt-BR.xtb chromium-143.0.7499.169/third_party/libaddressinput/chromium/resources/address_input_strings_pt-BR.xtb
--- chromium-143.0.7499.109/third_party/libaddressinput/chromium/resources/address_input_strings_pt-BR.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/third_party/libaddressinput/chromium/resources/address_input_strings_pt-BR.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -2,7 +2,7 @@
É preciso que você forneça um CEP, por exemplo . Não sabe seu CEP? Encontre-o aqui.
-CEP
+Código postal
Departamento
Bairro
É preciso que você forneça um CEP, por exemplo .
@@ -32,7 +32,7 @@
Distrito
Condado
Emirado
-Endereço de correspondência
+Endereço
Este CEP parece não corresponder ao restante do endereço.
Este CEP parece não corresponder ao resto do endereço. Não sabe seu CEP? Encontre-o aqui.
Município
diff -Nru chromium-143.0.7499.109/third_party/libaddressinput/chromium/resources/address_input_strings_vi.xtb chromium-143.0.7499.169/third_party/libaddressinput/chromium/resources/address_input_strings_vi.xtb
--- chromium-143.0.7499.109/third_party/libaddressinput/chromium/resources/address_input_strings_vi.xtb 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/third_party/libaddressinput/chromium/resources/address_input_strings_vi.xtb 2025-12-17 23:05:18.000000000 +0000
@@ -13,7 +13,7 @@
Bạn không được để trống trường này.
Định dạng mã bưu chính này không được nhận dạng.
Bạn phải cung cấp mã ZIP, ví dụ: . Bạn không biết mã ZIP của mình? Hãy tìm tại đây.
-Tỉnh
+Tỉnh/Bang
Tỉnh
Tên
Oblast
diff -Nru chromium-143.0.7499.109/third_party/webrtc/pc/rtp_transceiver.cc chromium-143.0.7499.169/third_party/webrtc/pc/rtp_transceiver.cc
--- chromium-143.0.7499.109/third_party/webrtc/pc/rtp_transceiver.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/third_party/webrtc/pc/rtp_transceiver.cc 2025-12-17 23:05:18.000000000 +0000
@@ -869,19 +869,19 @@
RTC_DCHECK(content);
if (sdp_type == SdpType::kAnswer || sdp_type == SdpType::kPrAnswer) {
negotiated_header_extensions_ = content->rtp_header_extensions();
- if (!env_.field_trials().IsDisabled(
+ if (env_.field_trials().IsEnabled(
"WebRTC-HeaderExtensionNegotiateMemory")) {
header_extensions_to_negotiate_ = GetNegotiatedHeaderExtensions();
}
} else if (sdp_type == SdpType::kOffer) {
- if (!env_.field_trials().IsDisabled(
+ if (env_.field_trials().IsEnabled(
"WebRTC-HeaderExtensionNegotiateMemory")) {
header_extensions_for_rollback_ = header_extensions_to_negotiate_;
header_extensions_to_negotiate_ =
GetOfferedAndImplementedHeaderExtensions(content);
}
} else if (sdp_type == SdpType::kRollback) {
- if (!env_.field_trials().IsDisabled(
+ if (env_.field_trials().IsEnabled(
"WebRTC-HeaderExtensionNegotiateMemory")) {
RTC_CHECK(!header_extensions_for_rollback_.empty());
header_extensions_to_negotiate_ = header_extensions_for_rollback_;
diff -Nru chromium-143.0.7499.109/third_party/webrtc/pc/rtp_transmission_manager.cc chromium-143.0.7499.169/third_party/webrtc/pc/rtp_transmission_manager.cc
--- chromium-143.0.7499.109/third_party/webrtc/pc/rtp_transmission_manager.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/third_party/webrtc/pc/rtp_transmission_manager.cc 2025-12-17 23:05:18.000000000 +0000
@@ -323,8 +323,7 @@
// could be invalid, but should not cause a crash).
RTC_DCHECK(!FindSenderById(sender->id()));
std::vector header_extensions;
- if (!env_.field_trials().IsDisabled(
- "WebRTC-HeaderExtensionNegotiateMemory")) {
+ if (env_.field_trials().IsEnabled("WebRTC-HeaderExtensionNegotiateMemory")) {
// If we have already negotiated header extensions for this type,
// reuse the negotiated state for new transceivers of the same type.
for (const auto& transceiver : transceivers()->List()) {
diff -Nru chromium-143.0.7499.109/ui/webui/resources/cr_components/composebox/composebox.css chromium-143.0.7499.169/ui/webui/resources/cr_components/composebox/composebox.css
--- chromium-143.0.7499.109/ui/webui/resources/cr_components/composebox/composebox.css 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/ui/webui/resources/cr_components/composebox/composebox.css 2025-12-17 23:05:18.000000000 +0000
@@ -241,7 +241,6 @@
}
#input {
- animation: color-change 5s infinite;
background-color: inherit;
border: none;
caret-color: var(--google-blue-500);
@@ -254,6 +253,10 @@
resize: none;
}
+#input:focus {
+ animation: color-change 5s infinite;
+}
+
#input::placeholder {
color: var(--color-composebox-type-ahead);
}
diff -Nru chromium-143.0.7499.109/ui/webui/resources/cr_components/composebox/context_menu_entrypoint.css chromium-143.0.7499.169/ui/webui/resources/cr_components/composebox/context_menu_entrypoint.css
--- chromium-143.0.7499.109/ui/webui/resources/cr_components/composebox/context_menu_entrypoint.css 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/ui/webui/resources/cr_components/composebox/context_menu_entrypoint.css 2025-12-17 23:05:18.000000000 +0000
@@ -27,7 +27,7 @@
--input-background: #fff;
--input-foreground: #0a0a0a;
--standard-curve: cubic-bezier(0.4, 0, 0.2, 1);
- --text-animation-curve: cubic-bezier(0.38, 0.72, 0.00, 1.00);
+ --text-animation-curve: cubic-bezier(0.38, 0.72, 0, 1);
}
.glow-container {
@@ -54,7 +54,11 @@
}
}
-:host([ntp-next-features-enabled]) #description {
+:host([glif-animation-state="spinner-only"]) #description {
+ opacity: 0;
+}
+
+:host([glif-animation-state="started"]) #description {
animation: slide-in 1000ms 820ms var(--text-animation-curve) forwards,
fade-in 850ms 970ms var(--text-animation-curve) forwards;
opacity: 0;
@@ -66,6 +70,14 @@
z-index: 5;
}
+/*
+ The current animation consists of three states:
+
+ 1. ineligible state: The state where the animation is not enabled.
+ 2. spinner-only state: The state where the spinner endlessly rotates.
+ 3. started state: The state where the transition to the fourth state starts.
+ 4. finished state: This is the end state, and no further animation is played.
+ */
.aim-c {
border-radius: 100%;
inset: 0;
@@ -85,7 +97,7 @@
.aim-gradient-solid:before {
background: var(--glif-gradient);
bottom: 0;
- content: '';
+ content: "";
height: 200%;
left: 0;
opacity: 0;
@@ -93,7 +105,6 @@
right: 0;
scale: 2 2;
top: -50%;
- transform: rotate(var(--rotation, 0deg));
}
.aim-gradient-outer-blur {
@@ -107,36 +118,76 @@
opacity: 0.7;
}
-:host([ntp-next-features-enabled]) .play .aim-gradient-outer-blur:before,
-:host([ntp-next-features-enabled]) .play .aim-gradient-solid:before {
- animation: opacity-fade var(--duration) linear backwards,
- rotate-gradient var(--duration) var(--standard-curve) backwards;
-}
+@keyframes rotate-gradient {
+ from {
+ transform: rotate(0deg);
+ }
-@keyframes opacity-fade {
- 00% {
- opacity: 0;
+ to {
+ transform: rotate(360deg);
}
- 30% {
+}
+
+.aim-gradient-outer-blur,
+.aim-gradient-solid {
+ animation: rotate-gradient calc(var(--duration) / 1.5) var(--standard-curve)
+ infinite;
+}
+
+:host([glif-animation-state="finished"]) .aim-gradient-outer-blur,
+:host([glif-animation-state="ineligible"]) .aim-gradient-outer-blur,
+:host([glif-animation-state="finished"]) .aim-gradient-solid,
+:host([glif-animation-state="ineligible"]) .aim-gradient-solid {
+ animation-play-state: paused;
+ opacity: 0;
+}
+
+@keyframes fade-out-only {
+ 0% {
opacity: 1;
}
+
50% {
opacity: 1;
}
+
100% {
opacity: 0;
}
}
-@keyframes rotate-gradient {
+:host([glif-animation-state="started"]) .aim-gradient-outer-blur:before,
+:host([glif-animation-state="started"]) .aim-gradient-solid:before {
+ /* Start fully opaque before fading. */
+ opacity: 1;
+ animation: fade-out-only var(--duration) linear forwards;
+}
+
+@keyframes opacity-fade-in-and-stay {
from {
- transform: rotate(0deg);
+ opacity: 0;
}
+
to {
- transform: rotate(540deg);
+ opacity: 1;
}
}
+:host([glif-animation-state="spinner-only"]) .aim-gradient-outer-blur:before,
+:host([glif-animation-state="spinner-only"]) .aim-gradient-solid:before {
+ animation: opacity-fade-in-and-stay 300ms linear forwards;
+}
+
+:host([glif-animation-state="finished"]) .aim-gradient-outer-blur:before,
+:host([glif-animation-state="finished"]) .aim-gradient-solid:before {
+ opacity: 0;
+}
+
+:host([glif-animation-state="spinner-only"]) .aim-background {
+ animation: opacity-fade-in-and-stay 300ms linear forwards;
+ background-color: var(--fulfillment-background);
+}
+
.aim-background {
background-color: var(--input-background);
clip-path: inset(0 0 0 0 round calc(var(--button-height) * 2));
@@ -145,20 +196,23 @@
position: absolute;
}
-:host([ntp-next-features-enabled]) body .play .aim-background {
- animation: background-fade var(--duration) linear backwards;
+:host([glif-animation-state="started"]) .aim-background {
+ animation: background-fade var(--duration) linear forwards;
+}
+
+:host([glif-animation-state="finished"]) .aim-background {
+ opacity: 0;
}
@keyframes background-fade {
0% {
- background: var(--input-background);
- }
- 30% {
background: var(--fulfillment-background);
}
+
50% {
background: var(--fulfillment-background);
}
+
100% {
background: var(--input-background);
}
@@ -172,31 +226,37 @@
@keyframes hover-background-delay {
to {
- --cr-hover-background-color:
- var(--color-composebox-context-entrypoint-hover-background);
+ --cr-hover-background-color: var(
+ --color-composebox-context-entrypoint-hover-background
+ );
}
}
#entrypoint {
- --cr-button-disabled-text-color:
- var(--color-composebox-context-entrypoint-text-disabled);
+ --cr-button-disabled-text-color: var(
+ --color-composebox-context-entrypoint-text-disabled
+ );
--cr-button-text-color: var(--color-composebox-file-chip-text);
- --cr-hover-background-color:
- var(--color-composebox-context-entrypoint-hover-background);
+ --cr-hover-background-color: var(
+ --color-composebox-context-entrypoint-hover-background
+ );
--cr-icon-button-margin-start: 6px;
--icon-block-padding-small: 10px;
border: initial;
gap: 4px;
}
-:host([ntp-next-features-enabled]) #entrypoint {
+:host(:not([glif-animation-state="ineligible"])) #entrypoint {
--cr-hover-background-color: transparent;
animation: hover-background-delay 0ms 1850ms linear forwards;
--icon-block-padding-small: 8px;
}
#entrypoint:not([disabled]) {
- --cr-icon-button-fill-color: var(--composebox-context-menu-entrypoint-button-color, --cr-button-text-color);
+ --cr-icon-button-fill-color: var(
+ --composebox-context-menu-entrypoint-button-color,
+ --cr-button-text-color
+ );
}
#description {
@@ -205,14 +265,14 @@
}
#menu {
- --color-sys-divider:
- var(--color-composebox-file-carousel-divider);
+ --color-sys-divider: var(--color-composebox-file-carousel-divider);
--cr-action-menu-overflow: visible;
--cr-menu-background-color: var(--color-composebox-background);
--cr-menu-border-radius: 16px;
--cr-primary-text-color: var(--color-composebox-file-chip-text);
- --cr-hover-background-color:
- var(--color-composebox-context-entrypoint-hover-background);
+ --cr-hover-background-color: var(
+ --color-composebox-context-entrypoint-hover-background
+ );
}
.suggestion-container {
diff -Nru chromium-143.0.7499.109/ui/webui/resources/cr_components/composebox/context_menu_entrypoint.html.ts chromium-143.0.7499.169/ui/webui/resources/cr_components/composebox/context_menu_entrypoint.html.ts
--- chromium-143.0.7499.109/ui/webui/resources/cr_components/composebox/context_menu_entrypoint.html.ts 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/ui/webui/resources/cr_components/composebox/context_menu_entrypoint.html.ts 2025-12-17 23:05:18.000000000 +0000
@@ -2,9 +2,9 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-import {html} from '//resources/lit/v3_0/lit.rollup.js';
+import {html, nothing} from '//resources/lit/v3_0/lit.rollup.js';
-import type {ContextMenuEntrypointElement} from './context_menu_entrypoint.js';
+import {type ContextMenuEntrypointElement, GlifAnimationState} from './context_menu_entrypoint.js';
export function getHtml(this: ContextMenuEntrypointElement) {
// clang-format off
@@ -15,7 +15,12 @@
?disabled="${this.inputsDisabled}"
title="${this.i18n('addContextTitle')}">
- ${this.i18n('addContext')}
+ {
+ this.onAnimationEnd_(e, 'slide-in');
+ }}">
+ ${this.i18n('addContext')}
+
` : html`
`;
return html`
- ${this.ntpNextFeaturesEnabled ? html`
+ ${this.glifAnimationState !== GlifAnimationState.INELIGIBLE ? html`
${entrypointButton}
-
+
{
+ this.onAnimationEnd_(e, 'background-fade');
+ }
+ }">
` : entrypointButton}
diff -Nru chromium-143.0.7499.109/ui/webui/resources/cr_components/composebox/context_menu_entrypoint.ts chromium-143.0.7499.169/ui/webui/resources/cr_components/composebox/context_menu_entrypoint.ts
--- chromium-143.0.7499.109/ui/webui/resources/cr_components/composebox/context_menu_entrypoint.ts 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/ui/webui/resources/cr_components/composebox/context_menu_entrypoint.ts 2025-12-17 23:05:18.000000000 +0000
@@ -26,7 +26,6 @@
const MENU_WIDTH_PX = 190;
/** The string value of the tall bottom context layout mode. */
const TALL_BOTTOM_CONTEXT_LAYOUT_MODE = 'TallBottomContext';
-let glyphAnimationDone = false;
export interface ContextMenuEntrypointElement {
$: {
@@ -34,6 +33,13 @@
};
}
+export enum GlifAnimationState {
+ INELIGIBLE = 'ineligible',
+ SPINNER_ONLY = 'spinner-only',
+ STARTED = 'started',
+ FINISHED = 'finished',
+}
+
const ContextMenuEntrypointElementBase = I18nMixinLit(CrLitElement);
export class ContextMenuEntrypointElement extends
@@ -70,7 +76,7 @@
tabSuggestions: {type: Array},
entrypointName: {type: String},
searchboxLayoutMode: {type: String},
- ntpNextFeaturesEnabled: {type: Boolean, reflect: true},
+ glifAnimationState: {type: String, reflect: true},
// =========================================================================
// Protected properties
@@ -101,7 +107,8 @@
accessor tabSuggestions: TabInfo[] = [];
accessor entrypointName: string = '';
accessor searchboxLayoutMode: string = '';
- accessor ntpNextFeaturesEnabled: boolean = false;
+ accessor glifAnimationState: GlifAnimationState =
+ GlifAnimationState.INELIGIBLE;
protected accessor enableMultiTabSelection_: boolean =
loadTimeData.getBoolean('composeboxContextMenuEnableMultiTabSelection');
@@ -126,16 +133,6 @@
}
}
- override firstUpdated(changedProperties: Map):
- void {
- super.firstUpdated(changedProperties);
- if (!glyphAnimationDone) {
- this.shadowRoot.querySelector('#glowWrapper')
- ?.classList.add('play');
- glyphAnimationDone = true;
- }
- }
-
// Checks if the image upload item in the context menu should be disabled.
protected get imageUploadDisabled_(): boolean {
return this.fileNum >= this.maxFileCount_ ||
@@ -272,6 +269,12 @@
this.$.menu.close();
}
+ protected onAnimationEnd_(e: AnimationEvent, animationName: string) {
+ if (e.animationName === animationName) {
+ this.glifAnimationState = GlifAnimationState.FINISHED;
+ }
+ }
+
private showMenuAtEntrypoint_() {
const entrypoint =
this.shadowRoot.querySelector('#entrypoint');
diff -Nru chromium-143.0.7499.109/ui/webui/resources/cr_components/composebox/contextual_entrypoint_and_carousel.html.ts chromium-143.0.7499.169/ui/webui/resources/cr_components/composebox/contextual_entrypoint_and_carousel.html.ts
--- chromium-143.0.7499.109/ui/webui/resources/cr_components/composebox/contextual_entrypoint_and_carousel.html.ts 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/ui/webui/resources/cr_components/composebox/contextual_entrypoint_and_carousel.html.ts 2025-12-17 23:05:18.000000000 +0000
@@ -70,7 +70,7 @@
.searchboxLayoutMode="${this.searchboxLayoutMode}"
?inputs-disabled="${this.inputsDisabled_}"
?show-context-menu-description="${showDescription}"
- ?ntp-next-features-enabled="${this.ntpNextFeaturesEnabled}">
+ glif-animation-state="${this.contextMenuGlifAnimationState}">
${
this.searchboxLayoutMode === 'Compact' && this.showVoiceSearch ?
diff -Nru chromium-143.0.7499.109/ui/webui/resources/cr_components/composebox/contextual_entrypoint_and_carousel.ts chromium-143.0.7499.169/ui/webui/resources/cr_components/composebox/contextual_entrypoint_and_carousel.ts
--- chromium-143.0.7499.109/ui/webui/resources/cr_components/composebox/contextual_entrypoint_and_carousel.ts 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/ui/webui/resources/cr_components/composebox/contextual_entrypoint_and_carousel.ts 2025-12-17 23:05:18.000000000 +0000
@@ -19,7 +19,7 @@
import type {ComposeboxFile, ContextualUpload} from './common.js';
import {FileUploadErrorType, FileUploadStatus} from './composebox_query.mojom-webui.js';
-import type {ContextMenuEntrypointElement} from './context_menu_entrypoint.js';
+import {type ContextMenuEntrypointElement, GlifAnimationState} from './context_menu_entrypoint.js';
import {getCss} from './contextual_entrypoint_and_carousel.css.js';
import {getHtml} from './contextual_entrypoint_and_carousel.html.js';
import type {ComposeboxFileCarouselElement} from './file_carousel.js';
@@ -105,7 +105,7 @@
reflect: true,
type: Boolean,
},
- ntpNextFeaturesEnabled: {type: Boolean, reflect: true},
+ contextMenuGlifAnimationState: {type: String, reflect: true},
// =========================================================================
// Protected properties
@@ -150,7 +150,8 @@
accessor tabSuggestions: TabInfo[] = [];
accessor carouselOnTop_: boolean = false;
accessor showVoiceSearch: boolean = false;
- accessor ntpNextFeaturesEnabled: boolean = false;
+ accessor contextMenuGlifAnimationState: GlifAnimationState =
+ GlifAnimationState.INELIGIBLE;
protected accessor attachmentFileTypes_: string =
loadTimeData.getString('composeboxAttachmentFileTypes');
@@ -181,8 +182,7 @@
protected get shouldShowRecentTabChip_(): boolean {
return !!this.recentTabForChip_ && this.showDropdown &&
- this.showRecentTabChip_ && this.files_.size === 0 &&
- !this.inToolMode_;
+ this.showRecentTabChip_ && this.files_.size === 0 && !this.inToolMode_;
}
private maxFileCount_: number =
@@ -203,16 +203,15 @@
// don't want to disable the context menu entrypoint because the user
// should still be able to use the tool within the context menu.
const isCreateImageToolAvailableWithImages =
- this.createImageModeEnabled_ &&
- this.hasImageFiles() && this.files_.size === 1;
+ this.createImageModeEnabled_ && this.hasImageFiles() &&
+ this.files_.size === 1;
// `inputsDisabled_` decides whether or not the context menu entrypoint is
// shown to the user. Only set `inputsDisabled_` to true if
// 1. The max number of files is reached, and the create image tool button
// is not available.
// 2. The user has an image uploaded and is in create image mode.
- this.inputsDisabled_ =
- (this.files_.size >= this.maxFileCount_ &&
- !isCreateImageToolAvailableWithImages) ||
+ this.inputsDisabled_ = (this.files_.size >= this.maxFileCount_ &&
+ !isCreateImageToolAvailableWithImages) ||
(this.hasImageFiles() && this.inCreateImageMode_);
this.showFileCarousel_ = this.files_.size > 0;
this.fire('on-context-files-changed', {files: this.files_.size});
@@ -237,7 +236,7 @@
if ('tabId' in file) {
// If the composebox is being initialized with tab context, we want to
// keep the context menu open to allow for multi-tab selection.
- if (this.contextMenuEnabled_ && !file.delayUpload) {
+ if (this.contextMenuEnabled_ && !file.delayUpload) {
this.$.contextEntrypoint.openMenuForMultiSelection();
}
this.addTabContext_(new CustomEvent('addTabContext', {
@@ -271,13 +270,15 @@
let errorMessage = null;
let file = this.files_.get(token);
if (file) {
- if ([FileUploadStatus.kValidationFailed,
- FileUploadStatus.kUploadFailed,
- FileUploadStatus.kUploadExpired].includes(status)) {
+ if ([
+ FileUploadStatus.kValidationFailed,
+ FileUploadStatus.kUploadFailed,
+ FileUploadStatus.kUploadExpired,
+ ].includes(status)) {
this.files_.delete(token);
if (file.tabId) {
this.addedTabsIds_ = new Map([...this.addedTabsIds_.entries()].filter(
- ([id, _]) => id !== file!.tabId));
+ ([id, _]) => id !== file!.tabId));
}
switch (status) {
case FileUploadStatus.kValidationFailed:
@@ -315,9 +316,8 @@
}
this.files_ = new Map(undeletableFiles.map(file => [file.uuid, file]));
- this.addedTabsIds_ = new Map(
- undeletableFiles.filter(file => file.tabId)
- .map(file => [file.tabId!, file.uuid]));
+ this.addedTabsIds_ = new Map(undeletableFiles.filter(file => file.tabId)
+ .map(file => [file.tabId!, file.uuid]));
}
resetModes() {
@@ -417,7 +417,7 @@
const file = this.files_.get(e.detail.uuid);
if (file?.tabId) {
this.addedTabsIds_ = new Map([...this.addedTabsIds_.entries()].filter(
- ([id, _]) => id !== file.tabId));
+ ([id, _]) => id !== file.tabId));
}
this.files_ = new Map([...this.files_.entries()].filter(
@@ -455,11 +455,11 @@
this.recordFileValidationMetric_(metric);
this.fire('on-file-validation-error', {
- errorMessage: this.i18n(errorMessage),
- });
+ errorMessage: this.i18n(errorMessage),
+ });
}
-protected processFiles_(files: FileList|null) {
+ protected processFiles_(files: FileList|null) {
if (!files || files.length === 0) {
return;
}
@@ -478,13 +478,14 @@
errorToDisplay = Math.max(errorToDisplay, sizeError);
continue;
}
- // TODO(crbug.com/460228091): The current frontend check is broader than the
- // backend's validation (e.g. allows SVGs). This can lead to a file
+ // TODO(crbug.com/460228091): The current frontend check is broader than
+ // the backend's validation (e.g. allows SVGs). This can lead to a file
// reserving a slot here, only to be rejected by the backend later
// resulting in fewer files uploaded as expected.
// In the future, only reserve slots when the file upload is successful.
if (!file.type.includes('pdf') && !file.type.includes('image')) {
- errorToDisplay = Math.max(errorToDisplay, ProcessFilesError.INVALID_TYPE);
+ errorToDisplay =
+ Math.max(errorToDisplay, ProcessFilesError.INVALID_TYPE);
continue;
}
@@ -498,7 +499,6 @@
}
this.handleProcessFilesError_(errorToDisplay);
-
}
protected onFileChange_(e: Event) {
@@ -519,7 +519,10 @@
}
protected addTabContext_(e: CustomEvent<{
- id: number, title: string, url: Url, delayUpload: boolean,
+ id: number,
+ title: string,
+ url: Url,
+ delayUpload: boolean,
}>) {
e.stopPropagation();
diff -Nru chromium-143.0.7499.109/ui/webui/resources/cr_components/searchbox/searchbox.css chromium-143.0.7499.169/ui/webui/resources/cr_components/searchbox/searchbox.css
--- chromium-143.0.7499.109/ui/webui/resources/cr_components/searchbox/searchbox.css 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/ui/webui/resources/cr_components/searchbox/searchbox.css 2025-12-17 23:05:18.000000000 +0000
@@ -402,7 +402,7 @@
--cr-icon-button-size: 36px;
}
-:host([ntp-realbox-next-enabled][ntp-next-features-enabled]) contextual-entrypoint-and-carousel::part(context-menu-entrypoint-icon) {
+:host([ntp-realbox-next-enabled]:not([context-menu-glif-animation-state="ineligible"])) contextual-entrypoint-and-carousel::part(context-menu-entrypoint-icon) {
/* Account for the margin of the glow container */
--cr-icon-button-margin-start: 0px;
}
diff -Nru chromium-143.0.7499.109/ui/webui/resources/cr_components/searchbox/searchbox.html.ts chromium-143.0.7499.169/ui/webui/resources/cr_components/searchbox/searchbox.html.ts
--- chromium-143.0.7499.109/ui/webui/resources/cr_components/searchbox/searchbox.html.ts 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/ui/webui/resources/cr_components/searchbox/searchbox.html.ts 2025-12-17 23:05:18.000000000 +0000
@@ -72,7 +72,7 @@
?show-dropdown="${this.dropdownIsVisible}"
?show-voice-search="${this.shouldShowVoiceSearch_}"
searchbox-layout-mode="${this.searchboxLayoutMode}"
- ?ntp-next-features-enabled="${this.ntpNextFeaturesEnabled}">
+ context-menu-glif-animation-state="${this.contextMenuGlifAnimationState}">
0) {
+ if (this.ntpRealboxNextEnabled && e.clipboardData?.files &&
+ e.clipboardData.files.length > 0) {
const files = Array.from(e.clipboardData.files);
if (files.length > 0) {
e.preventDefault();
@@ -903,8 +906,7 @@
this.$.input.focus();
}
} else if (
- this.isThumbnailDeletable_ &&
- this.$.input.selectionStart === 0 &&
+ this.isThumbnailDeletable_ && this.$.input.selectionStart === 0 &&
this.$.input.selectionEnd === 0 &&
this.$.input === this.shadowRoot.activeElement &&
(e.key === 'Backspace' || (e.key === 'Tab' && e.shiftKey))) {
@@ -1064,8 +1066,8 @@
}
protected addFileContext_(e: CustomEvent<{
- files: File[],
- onContextAdded: (files: Map) => void,
+ files: File[],
+ onContextAdded: (files: Map) => void,
}>) {
const uploads: ContextualUpload[] = [];
for (const file of e.detail.files) {
@@ -1078,8 +1080,11 @@
}
protected addTabContext_(e: CustomEvent<{
- id: number, title: string, url: Url, delayUpload: boolean,
- onContextAdded: (file: ComposeboxFile) => void,
+ id: number,
+ title: string,
+ url: Url,
+ delayUpload: boolean,
+ onContextAdded: (file: ComposeboxFile) => void,
}>) {
const attachment: TabUpload = {
tabId: e.detail.id,
diff -Nru chromium-143.0.7499.109/v8/include/v8-version.h chromium-143.0.7499.169/v8/include/v8-version.h
--- chromium-143.0.7499.109/v8/include/v8-version.h 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/v8/include/v8-version.h 2025-12-17 23:05:18.000000000 +0000
@@ -11,7 +11,7 @@
#define V8_MAJOR_VERSION 14
#define V8_MINOR_VERSION 3
#define V8_BUILD_NUMBER 127
-#define V8_PATCH_LEVEL 16
+#define V8_PATCH_LEVEL 17
// Use 1 for candidates and 0 otherwise.
// (Boolean macro values are not supported by all preprocessors.)
diff -Nru chromium-143.0.7499.109/v8/src/maglev/arm64/maglev-ir-arm64.cc chromium-143.0.7499.169/v8/src/maglev/arm64/maglev-ir-arm64.cc
--- chromium-143.0.7499.109/v8/src/maglev/arm64/maglev-ir-arm64.cc 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/v8/src/maglev/arm64/maglev-ir-arm64.cc 2025-12-17 23:05:18.000000000 +0000
@@ -323,7 +323,7 @@
__ Smull(out, left, right);
// Making sure that the 32-bit output is zero-extended.
- __ Move(out.W(), out.W());
+ __ Mov(out.W(), out.W());
}
void Int32MultiplyOverflownBits::SetValueLocationConstraints() {
@@ -468,7 +468,7 @@
// Making sure that the 32-bit output is zero-extended (and moving it to the
// right register if {out_alias_input} is true).
- __ Move(out, res.W());
+ __ Mov(out, res.W());
}
void Int32DivideWithOverflow::SetValueLocationConstraints() {
@@ -536,7 +536,7 @@
__ CompareAndBranch(temp, Immediate(0), ne,
__ GetDeoptLabel(this, DeoptimizeReason::kNotInt32));
- __ Move(out, res);
+ __ Mov(out, res);
}
void Int32ModulusWithOverflow::SetValueLocationConstraints() {
diff -Nru chromium-143.0.7499.109/v8/tools/builtins-pgo/profiles/meta.json chromium-143.0.7499.169/v8/tools/builtins-pgo/profiles/meta.json
--- chromium-143.0.7499.109/v8/tools/builtins-pgo/profiles/meta.json 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/v8/tools/builtins-pgo/profiles/meta.json 2025-12-17 23:05:18.000000000 +0000
@@ -1 +1 @@
-{"build_link": "https://cr-buildbucket.appspot.com/build/8697922206371879745", "profile": ["x86", "x64", "x86-rl", "x64-rl"], "revision": "beee9f5cafde91bbd086077a11db16cb9768e62a", "version": "14.3.127.16"}
\ No newline at end of file
+{"build_link": "https://cr-buildbucket.appspot.com/build/8695677716102827025", "profile": ["x86", "x64", "x86-rl", "x64-rl"], "revision": "326f5f8cad3f0e436c8ea8f82a6894936a32e860", "version": "14.3.127.17"}
\ No newline at end of file
diff -Nru chromium-143.0.7499.109/v8/tools/builtins-pgo/profiles/x64-rl.profile chromium-143.0.7499.169/v8/tools/builtins-pgo/profiles/x64-rl.profile
--- chromium-143.0.7499.109/v8/tools/builtins-pgo/profiles/x64-rl.profile 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/v8/tools/builtins-pgo/profiles/x64-rl.profile 2025-12-17 23:05:18.000000000 +0000
@@ -1,4 +1,3 @@
-block_hint,RecordWriteSaveFP,14,1,0
block_hint,RecordWriteSaveFP,2,3,0
block_hint,RecordWriteSaveFP,5,4,1
block_hint,RecordWriteSaveFP,11,6,0
@@ -747,16 +746,6 @@
block_hint,ElementsTransitionAndStore_InBounds,348,347,1
block_hint,ElementsTransitionAndStore_InBounds,351,350,1
block_hint,ElementsTransitionAndStore_InBounds,353,352,1
-block_hint,ElementsTransitionAndStore_InBounds,609,592,1
-block_hint,ElementsTransitionAndStore_InBounds,612,622,0
-block_hint,ElementsTransitionAndStore_InBounds,615,614,0
-block_hint,ElementsTransitionAndStore_InBounds,618,617,0
-block_hint,ElementsTransitionAndStore_InBounds,621,620,1
-block_hint,ElementsTransitionAndStore_InBounds,626,633,0
-block_hint,ElementsTransitionAndStore_InBounds,630,629,1
-block_hint,ElementsTransitionAndStore_InBounds,632,631,0
-block_hint,ElementsTransitionAndStore_InBounds,636,635,1
-block_hint,ElementsTransitionAndStore_InBounds,639,638,0
block_hint,KeyedHasIC_PolymorphicName,1,2,1
block_hint,KeyedHasIC_PolymorphicName,6,7,1
block_hint,KeyedHasIC_PolymorphicName,54,10,0
@@ -991,7 +980,6 @@
block_hint,ArrayPrototypePop,31,16,0
block_hint,ArrayPrototypePop,30,17,0
block_hint,ArrayPrototypePop,25,18,0
-block_hint,ArrayPrototypePop,24,19,1
block_hint,ArrayPrototypePop,29,28,1
block_hint,ArrayPrototypePush,2,1,1
block_hint,ArrayPrototypePush,4,184,1
@@ -1048,7 +1036,6 @@
block_hint,CloneFastJSArray,7,6,1
block_hint,CloneFastJSArray,12,11,0
block_hint,CloneFastJSArray,22,23,1
-block_hint,CloneFastJSArray,29,30,1
block_hint,CloneFastJSArray,58,39,0
block_hint,CloneFastJSArray,41,40,1
block_hint,CloneFastJSArray,43,42,1
@@ -1072,7 +1059,6 @@
block_hint,ExtractFastJSArray,11,10,1
block_hint,ExtractFastJSArray,16,15,0
block_hint,ExtractFastJSArray,26,27,1
-block_hint,ExtractFastJSArray,29,28,1
block_hint,ExtractFastJSArray,33,34,1
block_hint,ExtractFastJSArray,60,41,0
block_hint,ExtractFastJSArray,43,42,1
@@ -1280,6 +1266,7 @@
block_hint,LoadIC,5,6,0
block_hint,LoadIC,21,8,1
block_hint,LoadIC,23,22,0
+block_hint,LoadIC,26,27,1
block_hint,LoadIC,30,33,1
block_hint,LoadIC,31,32,1
block_hint,LoadIC,37,38,1
@@ -1432,11 +1419,8 @@
block_hint,KeyedLoadIC,339,346,1
block_hint,KeyedLoadIC,383,348,1
block_hint,KeyedLoadIC,359,351,0
-block_hint,KeyedLoadIC,366,365,0
block_hint,KeyedLoadIC,369,368,0
-block_hint,KeyedLoadIC,374,375,1
block_hint,KeyedLoadIC,382,377,1
-block_hint,KeyedLoadIC,380,379,0
block_hint,KeyedLoadIC,393,405,1
block_hint,KeyedLoadIC,395,394,0
block_hint,KeyedLoadIC,404,403,1
@@ -1646,6 +1630,7 @@
block_hint,StoreIC,371,370,0
block_hint,StoreIC_Megamorphic,1,2,1
block_hint,StoreIC_Megamorphic,5,4,0
+block_hint,StoreIC_Megamorphic,8,9,1
block_hint,StoreIC_Megamorphic,12,15,1
block_hint,StoreIC_Megamorphic,13,14,1
block_hint,StoreIC_Megamorphic,17,257,1
@@ -2159,6 +2144,7 @@
block_hint,BitwiseXorSmi_Baseline,12,5,1
block_hint,BitwiseXorSmi_Baseline,14,15,1
block_hint,BitwiseXorSmi_Baseline,35,34,0
+block_hint,ShiftLeft_Baseline,2,1,0
block_hint,ShiftLeft_Baseline,46,45,0
block_hint,ShiftLeftSmi_Baseline,20,3,1
block_hint,ShiftLeftSmi_Baseline,34,33,0
@@ -2229,7 +2215,6 @@
block_hint,Equal_Baseline,130,131,0
block_hint,Equal_Baseline,136,137,0
block_hint,Equal_Baseline,174,152,0
-block_hint,Equal_Baseline,166,155,1
block_hint,Equal_Baseline,157,156,0
block_hint,Equal_Baseline,168,167,1
block_hint,Equal_Baseline,171,172,0
@@ -3683,14 +3668,10 @@
block_hint,ArrayPrototypeSplice,505,490,1
block_hint,ArrayPrototypeSplice,512,513,1
block_hint,ArrayPrototypeSplice,580,514,0
+block_hint,ArrayPrototypeSplice,555,517,0
block_hint,ArrayPrototypeSplice,537,522,1
block_hint,ArrayPrototypeSplice,524,527,0
block_hint,ArrayPrototypeSplice,535,531,1
-block_hint,ArrayPrototypeSplice,543,544,0
-block_hint,ArrayPrototypeSplice,546,545,0
-block_hint,ArrayPrototypeSplice,554,553,0
-block_hint,ArrayPrototypeSplice,556,557,0
-block_hint,ArrayPrototypeSplice,569,558,0
block_hint,ArrayPrototypeSplice,604,603,0
block_hint,ArrayPrototypeSplice,607,610,0
block_hint,ArrayPrototypeSplice,613,612,0
@@ -3806,6 +3787,7 @@
block_hint,StringAddConvertLeft,10,151,0
block_hint,StringAddConvertRight,152,9,0
block_hint,StringAddConvertRight,10,151,0
+block_hint,StringAddConvertRight,173,174,1
block_hint,StringAddConvertRight,176,175,0
block_hint,StringAddConvertRight,192,180,1
block_hint,StringAddConvertRight,203,193,0
@@ -5569,6 +5551,7 @@
block_hint,AddHandler,35,58,1
block_hint,AddHandler,37,36,1
block_hint,AddHandler,46,45,1
+block_hint,AddHandler,48,47,1
block_hint,AddHandler,55,54,1
block_hint,AddHandler,61,60,1
block_hint,AddHandler,70,69,1
@@ -5608,7 +5591,7 @@
block_hint,ModHandler,2,5,0
block_hint,ModHandler,8,16,0
block_hint,ModHandler,26,23,1
-block_hint,BitwiseOrHandler,107,4,1
+block_hint,ModHandler,25,24,0
block_hint,BitwiseOrHandler,105,102,1
block_hint,BitwiseOrHandler,133,112,1
block_hint,BitwiseOrHandler,136,135,1
@@ -5665,6 +5648,7 @@
block_hint,DivSmiHandler,48,45,1
block_hint,ModSmiHandler,4,12,0
block_hint,ModSmiHandler,22,19,1
+block_hint,ModSmiHandler,25,35,1
block_hint,ModSmiHandler,29,26,1
block_hint,ModSmiHandler,33,32,0
block_hint,ModSmiHandler,45,42,1
@@ -5680,7 +5664,6 @@
block_hint,ShiftRightSmiHandler,41,38,1
block_hint,ShiftRightLogicalSmiHandler,24,3,1
block_hint,ShiftRightLogicalSmiHandler,27,26,0
-block_hint,ShiftRightLogicalSmiHandler,41,40,1
block_hint,ShiftRightLogicalSmiHandler,51,48,0
block_hint,IncHandler,2,18,0
block_hint,IncHandler,20,19,0
@@ -5787,7 +5770,6 @@
block_hint,ConstructHandler,55,54,0
block_hint,TestEqualHandler,4,112,1
block_hint,TestEqualHandler,19,9,0
-block_hint,TestEqualHandler,17,16,0
block_hint,TestEqualHandler,91,80,1
block_hint,TestEqualHandler,93,94,0
block_hint,TestEqualHandler,99,98,1
@@ -5909,10 +5891,7 @@
block_hint,CreateRestParameterHandler,29,23,0
block_hint,CreateRestParameterHandler,27,24,0
block_hint,CreateRestParameterHandler,25,26,1
-block_hint,JumpLoopHandler,10,7,1
-block_hint,JumpLoopHandler,13,12,0
-block_hint,JumpLoopHandler,17,23,1
-block_hint,JumpLoopHandler,26,25,1
+block_hint,JumpLoopHandler,35,6,1
block_hint,JumpLoopHandler,36,59,1
block_hint,JumpLoopHandler,37,38,0
block_hint,JumpLoopHandler,62,61,1
@@ -5928,6 +5907,7 @@
block_hint,SwitchOnSmiNoFeedbackHandler,5,2,0
block_hint,SwitchOnSmiNoFeedbackHandler,3,4,0
block_hint,ForInEnumerateHandler,10,3,1
+block_hint,ForInPrepareHandler,4,3,1
block_hint,ForInPrepareHandler,9,8,1
block_hint,ForInNextHandler,2,1,1
block_hint,ForInNextHandler,6,5,1
@@ -5952,12 +5932,13 @@
block_hint,StaCurrentContextSlotNoCellWideHandler,2,1,1
block_hint,GetNamedPropertyWideHandler,264,1,0
block_hint,GetNamedPropertyWideHandler,2,3,1
-block_hint,GetNamedPropertyWideHandler,6,7,0
block_hint,GetNamedPropertyWideHandler,106,18,0
block_hint,GetNamedPropertyWideHandler,23,20,0
block_hint,GetNamedPropertyWideHandler,22,21,0
block_hint,GetNamedPropertyWideHandler,98,104,1
+block_hint,GetNamedPropertyWideHandler,102,99,0
block_hint,GetNamedPropertyWideHandler,101,100,0
+block_hint,GetNamedPropertyWideHandler,206,112,1
block_hint,GetNamedPropertyWideHandler,218,208,0
block_hint,GetNamedPropertyWideHandler,261,260,0
block_hint,AddWideHandler,2,21,0
@@ -6042,16 +6023,16 @@
block_hint,BitwiseAndSmiExtraWideHandler,27,26,0
block_hint,BitwiseAndSmiExtraWideHandler,41,38,1
block_hint,CallUndefinedReceiver1ExtraWideHandler,1,67,0
-builtin_count,RecordWriteSaveFP,1419
-builtin_count,RecordWriteIgnoreFP,36
+builtin_count,RecordWriteSaveFP,1422
+builtin_count,RecordWriteIgnoreFP,25
builtin_count,EphemeronKeyBarrierSaveFP,0
builtin_count,IndirectPointerBarrierIgnoreFP,0
builtin_count,AdaptorWithBuiltinExitFrame0,124
builtin_count,AdaptorWithBuiltinExitFrame1,4
builtin_count,AdaptorWithBuiltinExitFrame2,0
builtin_count,AdaptorWithBuiltinExitFrame3,8
-builtin_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,144
-builtin_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,541
+builtin_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,141
+builtin_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,534
builtin_count,Call_ReceiverIsAny_Baseline_Compact,1
builtin_count,CallProxy,0
builtin_count,CallWithSpread,28
@@ -6064,16 +6045,16 @@
builtin_count,ConstructForwardAllArgs_Baseline,0
builtin_count,ConstructForwardAllArgs_WithFeedback,2
builtin_count,Construct_Baseline,46
-builtin_count,Construct_WithFeedback,94
-builtin_count,FastNewObject,191
-builtin_count,FastNewClosure,270
+builtin_count,Construct_WithFeedback,92
+builtin_count,FastNewObject,195
+builtin_count,FastNewClosure,267
builtin_count,StringEqual,619
builtin_count,StringGreaterThan,0
builtin_count,StringGreaterThanOrEqual,5
builtin_count,StringLessThan,473
-builtin_count,StringLessThanOrEqual,47
+builtin_count,StringLessThanOrEqual,48
builtin_count,StringCompare,3
-builtin_count,StringSubstring,471
+builtin_count,StringSubstring,470
builtin_count,OrderedHashTableHealIndex,0
builtin_count,CompileLazy,1
builtin_count,InstantiateAsmJs,0
@@ -6086,26 +6067,26 @@
builtin_count,AllocateInOldGeneration,1
builtin_count,CopyFastSmiOrObjectElements,17
builtin_count,GrowFastDoubleElements,376
-builtin_count,GrowFastSmiOrObjectElements,345
+builtin_count,GrowFastSmiOrObjectElements,346
builtin_count,ToNumber,0
builtin_count,ToNumber_Baseline,0
-builtin_count,ToNumeric_Baseline,29
+builtin_count,ToNumeric_Baseline,30
builtin_count,ToNumberConvertBigInt,0
builtin_count,Typeof,31
builtin_count,Typeof_Baseline,0
builtin_count,KeyedLoadIC_PolymorphicName,0
-builtin_count,KeyedStoreIC_Megamorphic,411
+builtin_count,KeyedStoreIC_Megamorphic,340
builtin_count,DefineKeyedOwnIC_Megamorphic,2
builtin_count,LoadGlobalIC_NoFeedback,16
builtin_count,LoadIC_FunctionPrototype,202
-builtin_count,LoadIC_StringLength,41
+builtin_count,LoadIC_StringLength,40
builtin_count,LoadIC_StringWrapperLength,0
builtin_count,LoadIC_NoFeedback,45
builtin_count,StoreIC_NoFeedback,6
builtin_count,DefineNamedOwnIC_NoFeedback,4
builtin_count,KeyedLoadIC_SloppyArguments,2
-builtin_count,StoreFastElementIC_InBounds,198
-builtin_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,20
+builtin_count,StoreFastElementIC_InBounds,199
+builtin_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,19
builtin_count,StoreFastElementIC_NoTransitionHandleCOW,0
builtin_count,ElementsTransitionAndStore_InBounds,0
builtin_count,ElementsTransitionAndStore_NoTransitionGrowAndHandleCOW,0
@@ -6131,12 +6112,12 @@
builtin_count,ArraySingleArgumentConstructor_HoleyDouble_DisableAllocationSites,3
builtin_count,ArrayIncludesSmi,0
builtin_count,ArrayIncludesSmiOrObject,17
-builtin_count,ArrayIncludes,4
+builtin_count,ArrayIncludes,5
builtin_count,ArrayIndexOfSmi,0
builtin_count,ArrayIndexOfSmiOrObject,140
builtin_count,ArrayIndexOf,36
builtin_count,ArrayPrototypePop,5
-builtin_count,ArrayPrototypePush,211
+builtin_count,ArrayPrototypePush,210
builtin_count,CloneFastJSArray,192
builtin_count,CloneFastJSArrayFillingHoles,0
builtin_count,ExtractFastJSArray,202
@@ -6147,7 +6128,7 @@
builtin_count,ArrayPrototypeEntries,0
builtin_count,ArrayPrototypeKeys,0
builtin_count,ArrayPrototypeValues,19
-builtin_count,ArrayIteratorPrototypeNext,154
+builtin_count,ArrayIteratorPrototypeNext,155
builtin_count,AsyncFunctionEnter,1
builtin_count,AsyncFunctionResolve,1
builtin_count,AsyncFunctionAwait,4
@@ -6175,44 +6156,44 @@
builtin_count,LoadIC_Megamorphic,10000
builtin_count,LoadIC_Noninlined,3
builtin_count,LoadICTrampoline,274
-builtin_count,LoadICBaseline,1974
-builtin_count,LoadICTrampoline_Megamorphic,5677
-builtin_count,LoadSuperIC,2
+builtin_count,LoadICBaseline,1937
+builtin_count,LoadICTrampoline_Megamorphic,5651
+builtin_count,LoadSuperIC,1
builtin_count,LoadSuperICBaseline,1
builtin_count,KeyedLoadIC,348
builtin_count,EnumeratedKeyedLoadIC,4
-builtin_count,KeyedLoadIC_Megamorphic,2357
+builtin_count,KeyedLoadIC_Megamorphic,2358
builtin_count,KeyedLoadICTrampoline,1
builtin_count,KeyedLoadICBaseline,323
builtin_count,EnumeratedKeyedLoadICBaseline,3
builtin_count,KeyedLoadICTrampoline_Megamorphic,1036
-builtin_count,StoreGlobalIC,614
-builtin_count,StoreGlobalICTrampoline,0
+builtin_count,StoreGlobalIC,893
+builtin_count,StoreGlobalICTrampoline,280
builtin_count,StoreGlobalICBaseline,1
-builtin_count,StoreIC,286
-builtin_count,StoreIC_Megamorphic,1497
+builtin_count,StoreIC,288
+builtin_count,StoreIC_Megamorphic,1506
builtin_count,StoreICTrampoline,12
-builtin_count,StoreICTrampoline_Megamorphic,702
-builtin_count,StoreICBaseline,212
+builtin_count,StoreICTrampoline_Megamorphic,709
+builtin_count,StoreICBaseline,215
builtin_count,DefineNamedOwnIC,37
builtin_count,DefineNamedOwnICBaseline,31
builtin_count,KeyedStoreIC,217
builtin_count,KeyedStoreICTrampoline,0
-builtin_count,KeyedStoreICTrampoline_Megamorphic,299
+builtin_count,KeyedStoreICTrampoline_Megamorphic,230
builtin_count,KeyedStoreICBaseline,201
builtin_count,DefineKeyedOwnIC,2
-builtin_count,StoreInArrayLiteralIC,18
-builtin_count,StoreInArrayLiteralICBaseline,16
-builtin_count,LoadGlobalIC,1511
+builtin_count,StoreInArrayLiteralIC,17
+builtin_count,StoreInArrayLiteralICBaseline,15
+builtin_count,LoadGlobalIC,1332
builtin_count,LoadGlobalICInsideTypeof,0
-builtin_count,LoadGlobalICTrampoline,1058
-builtin_count,LoadGlobalICBaseline,402
+builtin_count,LoadGlobalICTrampoline,875
+builtin_count,LoadGlobalICBaseline,401
builtin_count,LoadGlobalICInsideTypeofBaseline,0
builtin_count,LookupGlobalICBaseline,0
builtin_count,LookupGlobalICInsideTypeofBaseline,0
builtin_count,KeyedHasIC,720
builtin_count,KeyedHasICBaseline,2
-builtin_count,KeyedHasIC_Megamorphic,715
+builtin_count,KeyedHasIC_Megamorphic,716
builtin_count,AddLhsIsStringConstantInternalizeWithVector,706
builtin_count,AddLhsIsStringConstantInternalizeTrampoline,4
builtin_count,AddRhsIsStringConstantInternalizeWithVector,7
@@ -6233,27 +6214,27 @@
builtin_count,MapPrototypeValues,1
builtin_count,MapIteratorPrototypeNext,14
builtin_count,MapIteratorToList,0
-builtin_count,Add_Baseline,196
-builtin_count,AddSmi_Baseline,243
-builtin_count,Subtract_Baseline,48
+builtin_count,Add_Baseline,200
+builtin_count,AddSmi_Baseline,245
+builtin_count,Subtract_Baseline,47
builtin_count,SubtractSmi_Baseline,22
-builtin_count,Multiply_Baseline,52
+builtin_count,Multiply_Baseline,58
builtin_count,MultiplySmi_Baseline,5
-builtin_count,Divide_Baseline,4
+builtin_count,Divide_Baseline,3
builtin_count,DivideSmi_Baseline,1
builtin_count,Modulus_Baseline,0
builtin_count,ModulusSmi_Baseline,0
builtin_count,Exponentiate_Baseline,0
builtin_count,BitwiseAnd_Baseline,8
-builtin_count,BitwiseAndSmi_Baseline,33
+builtin_count,BitwiseAndSmi_Baseline,34
builtin_count,BitwiseOr_Baseline,20
builtin_count,BitwiseOrSmi_Baseline,181
-builtin_count,BitwiseXor_Baseline,8
+builtin_count,BitwiseXor_Baseline,9
builtin_count,BitwiseXorSmi_Baseline,0
builtin_count,ShiftLeft_Baseline,1
-builtin_count,ShiftLeftSmi_Baseline,30
+builtin_count,ShiftLeftSmi_Baseline,31
builtin_count,ShiftRight_Baseline,2
-builtin_count,ShiftRightSmi_Baseline,115
+builtin_count,ShiftRightSmi_Baseline,117
builtin_count,ShiftRightLogical_Baseline,0
builtin_count,ShiftRightLogicalSmi_Baseline,3
builtin_count,Add_WithFeedback,0
@@ -6264,18 +6245,18 @@
builtin_count,Add_LhsIsStringConstant_Internalize_Baseline,0
builtin_count,Add_RhsIsStringConstant_Internalize_Baseline,0
builtin_count,Equal_Baseline,165
-builtin_count,StrictEqual_Baseline,207
-builtin_count,LessThan_Baseline,163
-builtin_count,GreaterThan_Baseline,49
-builtin_count,LessThanOrEqual_Baseline,22
-builtin_count,GreaterThanOrEqual_Baseline,42
+builtin_count,StrictEqual_Baseline,201
+builtin_count,LessThan_Baseline,158
+builtin_count,GreaterThan_Baseline,50
+builtin_count,LessThanOrEqual_Baseline,20
+builtin_count,GreaterThanOrEqual_Baseline,41
builtin_count,Equal_WithFeedback,23
builtin_count,StrictEqual_WithFeedback,44
-builtin_count,LessThan_WithFeedback,4
+builtin_count,LessThan_WithFeedback,5
builtin_count,GreaterThanOrEqual_WithFeedback,0
builtin_count,BitwiseNot_Baseline,1
-builtin_count,Decrement_Baseline,16
-builtin_count,Increment_Baseline,111
+builtin_count,Decrement_Baseline,22
+builtin_count,Increment_Baseline,106
builtin_count,Negate_Baseline,3
builtin_count,ObjectAssign,2
builtin_count,ObjectCreate,8
@@ -6286,7 +6267,7 @@
builtin_count,ObjectKeys,14
builtin_count,ObjectPrototypeHasOwnProperty,241
builtin_count,ObjectToString,62
-builtin_count,OrdinaryHasInstance,169
+builtin_count,OrdinaryHasInstance,167
builtin_count,InstanceOf,8
builtin_count,InstanceOf_WithFeedback,2
builtin_count,InstanceOf_Baseline,37
@@ -6305,7 +6286,7 @@
builtin_count,SetPrototypeValues,11
builtin_count,SetIteratorPrototypeNext,58
builtin_count,SetOrSetIteratorToList,0
-builtin_count,StringFromCharCode,18
+builtin_count,StringFromCharCode,17
builtin_count,StringPrototypeReplace,242
builtin_count,StringPrototypeSplit,53
builtin_count,TypedArrayConstructor,4
@@ -6328,7 +6309,7 @@
builtin_count,AsyncGeneratorAwait,7
builtin_count,AsyncGeneratorAwaitResolveClosure,7
builtin_count,AsyncGeneratorYieldWithAwaitResolveClosure,7
-builtin_count,StringAdd_CheckNone,7777
+builtin_count,StringAdd_CheckNone,7785
builtin_count,SubString,1637
builtin_count,GetProperty,446
builtin_count,GetPropertyWithReceiver,18
@@ -6382,10 +6363,10 @@
builtin_count,StringAddConvertLeft,17
builtin_count,StringAddConvertRight,190
builtin_count,StringCharAt,9
-builtin_count,FastNewClosureBaseline,36
+builtin_count,FastNewClosureBaseline,37
builtin_count,FastNewFunctionContextFunction,51
builtin_count,FastNewFunctionContextFunctionWithCells,11
-builtin_count,CreateRegExpLiteral,12
+builtin_count,CreateRegExpLiteral,11
builtin_count,CreateShallowArrayLiteral,9
builtin_count,CreateEmptyArrayLiteral,13
builtin_count,CreateShallowObjectLiteral,16
@@ -6395,13 +6376,13 @@
builtin_count,StringToNumber,31
builtin_count,NonNumberToNumber,4
builtin_count,NonNumberToNumeric,5
-builtin_count,NumberToString,1205
+builtin_count,NumberToString,1206
builtin_count,ToBoolean,13
-builtin_count,ToBooleanForBaselineJump,442
+builtin_count,ToBooleanForBaselineJump,434
builtin_count,ToLength,2
builtin_count,ToName,47
builtin_count,ToObject,242
-builtin_count,NonPrimitiveToPrimitive_Default,177
+builtin_count,NonPrimitiveToPrimitive_Default,178
builtin_count,NonPrimitiveToPrimitive_Number,14
builtin_count,NonPrimitiveToPrimitive_String,42
builtin_count,OrdinaryToPrimitive_Number,0
@@ -6442,7 +6423,7 @@
builtin_count,NumberIsNaN,0
builtin_count,NumberParseFloat,11
builtin_count,ParseInt,133
-builtin_count,NumberParseInt,26
+builtin_count,NumberParseInt,25
builtin_count,Add,6
builtin_count,Subtract,0
builtin_count,Multiply,0
@@ -6487,8 +6468,8 @@
builtin_count,RegExpSearchFast,1
builtin_count,RegExpPrototypeSourceGetter,0
builtin_count,RegExpSplit,13
-builtin_count,RegExpPrototypeTest,138
-builtin_count,RegExpPrototypeTestFast,399
+builtin_count,RegExpPrototypeTest,137
+builtin_count,RegExpPrototypeTestFast,400
builtin_count,RegExpPrototypeGlobalGetter,0
builtin_count,RegExpPrototypeIgnoreCaseGetter,0
builtin_count,RegExpPrototypeMultilineGetter,0
@@ -6506,7 +6487,7 @@
builtin_count,StringPrototypeMatch,1226
builtin_count,StringPrototypeSearch,1
builtin_count,StringRepeat,0
-builtin_count,StringPrototypeSlice,35
+builtin_count,StringPrototypeSlice,36
builtin_count,StringPrototypeStartsWith,0
builtin_count,StringPrototypeSubstr,3
builtin_count,StringPrototypeSubstring,7
@@ -6518,16 +6499,16 @@
builtin_count,TypedArrayPrototypeSubArray,1
builtin_count,NewSloppyArgumentsElements,41
builtin_count,NewStrictArgumentsElements,8
-builtin_count,NewRestArgumentsElements,18
+builtin_count,NewRestArgumentsElements,17
builtin_count,FastNewSloppyArguments,2
-builtin_count,FastNewStrictArguments,1
+builtin_count,FastNewStrictArguments,2
builtin_count,FastNewRestArguments,1
builtin_count,LoadFromContextCell,8
builtin_count,StoreCurrentContextElementBaseline,1
builtin_count,StoreContextElementBaseline,0
builtin_count,DetachContextCell,0
builtin_count,StringSlowFlatten,0
-builtin_count,StringIndexOf,365
+builtin_count,StringIndexOf,366
builtin_count,Load_FastSmiElements_0,0
builtin_count,Load_FastObjectElements_0,238
builtin_count,Load_FastDoubleElements_0,0
@@ -6549,7 +6530,6 @@
builtin_count,WasmAllocateZeroedFixedArray,0
builtin_count,WasmTriggerTierUp,0
builtin_count,WasmStackGuard,0
-builtin_count,WasmStackGuardLoop,0
builtin_count,CallIndirectIC,2
builtin_count,CanUseSameAccessor_FastDoubleElements_0,0
builtin_count,CanUseSameAccessor_FastSmiElements_0,0
@@ -6557,8 +6537,8 @@
builtin_count,StringPrototypeToLowerCaseIntl,7
builtin_count,StringToLowerCaseIntl,146
builtin_count,WideHandler,62
-builtin_count,ExtraWideHandler,11
-builtin_count,LdarHandler,90
+builtin_count,ExtraWideHandler,10
+builtin_count,LdarHandler,89
builtin_count,LdaZeroHandler,11
builtin_count,LdaSmiHandler,12
builtin_count,LdaUndefinedHandler,8
@@ -6572,8 +6552,8 @@
builtin_count,LdaImmutableContextSlotHandler,7
builtin_count,LdaCurrentContextSlotNoCellHandler,5
builtin_count,LdaCurrentContextSlotHandler,1
-builtin_count,LdaImmutableCurrentContextSlotHandler,20
-builtin_count,StarHandler,20
+builtin_count,LdaImmutableCurrentContextSlotHandler,21
+builtin_count,StarHandler,19
builtin_count,MovHandler,19
builtin_count,PushContextHandler,2
builtin_count,PopContextHandler,0
@@ -6592,7 +6572,7 @@
builtin_count,LdaLookupGlobalSlotHandler,0
builtin_count,LdaLookupGlobalSlotInsideTypeofHandler,0
builtin_count,StaLookupSlotHandler,0
-builtin_count,GetNamedPropertyHandler,75
+builtin_count,GetNamedPropertyHandler,74
builtin_count,GetNamedPropertyFromSuperHandler,0
builtin_count,GetKeyedPropertyHandler,22
builtin_count,GetEnumeratedKeyedPropertyHandler,1
@@ -6608,7 +6588,7 @@
builtin_count,DivHandler,0
builtin_count,ModHandler,0
builtin_count,ExpHandler,0
-builtin_count,BitwiseOrHandler,1
+builtin_count,BitwiseOrHandler,0
builtin_count,BitwiseXorHandler,0
builtin_count,BitwiseAndHandler,0
builtin_count,ShiftLeftHandler,0
@@ -6627,7 +6607,7 @@
builtin_count,ShiftRightSmiHandler,2
builtin_count,ShiftRightLogicalSmiHandler,0
builtin_count,IncHandler,12
-builtin_count,DecHandler,3
+builtin_count,DecHandler,2
builtin_count,NegateHandler,0
builtin_count,BitwiseNotHandler,0
builtin_count,ToBooleanLogicalNotHandler,0
@@ -6638,11 +6618,11 @@
builtin_count,FindNonDefaultConstructorOrConstructHandler,0
builtin_count,CallAnyReceiverHandler,0
builtin_count,CallPropertyHandler,2
-builtin_count,CallProperty0Handler,5
+builtin_count,CallProperty0Handler,4
builtin_count,CallProperty1Handler,13
builtin_count,CallProperty2Handler,4
builtin_count,CallUndefinedReceiverHandler,1
-builtin_count,CallUndefinedReceiver0Handler,3
+builtin_count,CallUndefinedReceiver0Handler,1
builtin_count,CallUndefinedReceiver1Handler,5
builtin_count,CallUndefinedReceiver2Handler,3
builtin_count,CallWithSpreadHandler,0
@@ -6655,10 +6635,10 @@
builtin_count,TestEqualHandler,5
builtin_count,TestEqualStrictHandler,7
builtin_count,TestLessThanHandler,11
-builtin_count,TestGreaterThanHandler,2
+builtin_count,TestGreaterThanHandler,1
builtin_count,TestLessThanOrEqualHandler,0
builtin_count,TestGreaterThanOrEqualHandler,1
-builtin_count,TestInstanceOfHandler,1
+builtin_count,TestInstanceOfHandler,0
builtin_count,TestInHandler,0
builtin_count,ToNameHandler,0
builtin_count,ToNumberHandler,0
@@ -6667,7 +6647,7 @@
builtin_count,ToStringHandler,0
builtin_count,ToBooleanHandler,0
builtin_count,CreateRegExpLiteralHandler,0
-builtin_count,CreateArrayLiteralHandler,0
+builtin_count,CreateArrayLiteralHandler,1
builtin_count,CreateArrayFromIterableHandler,0
builtin_count,CreateEmptyArrayLiteralHandler,0
builtin_count,CreateObjectLiteralHandler,1
@@ -6680,7 +6660,7 @@
builtin_count,CreateMappedArgumentsHandler,0
builtin_count,CreateUnmappedArgumentsHandler,0
builtin_count,CreateRestParameterHandler,0
-builtin_count,JumpLoopHandler,16
+builtin_count,JumpLoopHandler,14
builtin_count,JumpHandler,4
builtin_count,JumpConstantHandler,0
builtin_count,JumpIfUndefinedConstantHandler,0
@@ -6692,9 +6672,9 @@
builtin_count,JumpIfToBooleanTrueConstantHandler,0
builtin_count,JumpIfToBooleanFalseConstantHandler,0
builtin_count,JumpIfToBooleanTrueHandler,6
-builtin_count,JumpIfToBooleanFalseHandler,14
+builtin_count,JumpIfToBooleanFalseHandler,13
builtin_count,JumpIfTrueHandler,6
-builtin_count,JumpIfFalseHandler,24
+builtin_count,JumpIfFalseHandler,23
builtin_count,JumpIfNullHandler,0
builtin_count,JumpIfNotNullHandler,0
builtin_count,JumpIfUndefinedHandler,1
@@ -6710,7 +6690,7 @@
builtin_count,SetPendingMessageHandler,0
builtin_count,ThrowHandler,2
builtin_count,ReThrowHandler,0
-builtin_count,ReturnHandler,20
+builtin_count,ReturnHandler,21
builtin_count,ThrowReferenceErrorIfHoleHandler,1
builtin_count,ThrowSuperNotCalledIfHoleHandler,0
builtin_count,ThrowSuperAlreadyCalledIfNotHoleHandler,0
@@ -6817,24 +6797,24 @@
builtin_count,CallUndefinedReceiverExtraWideHandler,0
builtin_count,CallUndefinedReceiver1ExtraWideHandler,4
builtin_count,CallUndefinedReceiver2ExtraWideHandler,0
-block_count,RecordWriteSaveFP,0,1419
-block_count,RecordWriteSaveFP,1,1387
+block_count,RecordWriteSaveFP,0,1422
+block_count,RecordWriteSaveFP,1,1386
block_count,RecordWriteSaveFP,2,0
-block_count,RecordWriteSaveFP,3,1387
+block_count,RecordWriteSaveFP,3,1386
block_count,RecordWriteSaveFP,4,0
-block_count,RecordWriteSaveFP,5,1387
-block_count,RecordWriteSaveFP,6,1387
+block_count,RecordWriteSaveFP,5,1386
+block_count,RecordWriteSaveFP,6,1386
block_count,RecordWriteSaveFP,7,0
-block_count,RecordWriteSaveFP,8,1387
+block_count,RecordWriteSaveFP,8,1386
block_count,RecordWriteSaveFP,9,1386
block_count,RecordWriteSaveFP,10,0
block_count,RecordWriteSaveFP,11,0
block_count,RecordWriteSaveFP,12,0
-block_count,RecordWriteSaveFP,13,1387
-block_count,RecordWriteSaveFP,14,31
-block_count,RecordWriteSaveFP,15,18
-block_count,RecordWriteSaveFP,16,17
-block_count,RecordWriteSaveFP,17,17
+block_count,RecordWriteSaveFP,13,1386
+block_count,RecordWriteSaveFP,14,35
+block_count,RecordWriteSaveFP,15,19
+block_count,RecordWriteSaveFP,16,18
+block_count,RecordWriteSaveFP,17,18
block_count,RecordWriteSaveFP,18,0
block_count,RecordWriteSaveFP,19,0
block_count,RecordWriteSaveFP,20,0
@@ -6846,9 +6826,9 @@
block_count,RecordWriteSaveFP,26,0
block_count,RecordWriteSaveFP,27,0
block_count,RecordWriteSaveFP,28,0
-block_count,RecordWriteSaveFP,29,12
-block_count,RecordWriteSaveFP,30,31
-block_count,RecordWriteSaveFP,31,31
+block_count,RecordWriteSaveFP,29,16
+block_count,RecordWriteSaveFP,30,35
+block_count,RecordWriteSaveFP,31,35
block_count,RecordWriteSaveFP,32,0
block_count,RecordWriteSaveFP,33,0
block_count,RecordWriteSaveFP,34,0
@@ -6867,12 +6847,12 @@
block_count,RecordWriteSaveFP,47,0
block_count,RecordWriteSaveFP,48,0
block_count,RecordWriteSaveFP,49,0
-block_count,RecordWriteSaveFP,50,31
-block_count,RecordWriteSaveFP,51,31
+block_count,RecordWriteSaveFP,50,35
+block_count,RecordWriteSaveFP,51,35
block_count,RecordWriteSaveFP,52,0
-block_count,RecordWriteSaveFP,53,31
-block_count,RecordWriteSaveFP,54,30
-block_count,RecordWriteSaveFP,55,30
+block_count,RecordWriteSaveFP,53,35
+block_count,RecordWriteSaveFP,54,34
+block_count,RecordWriteSaveFP,55,34
block_count,RecordWriteSaveFP,56,0
block_count,RecordWriteSaveFP,57,0
block_count,RecordWriteSaveFP,58,0
@@ -6885,22 +6865,22 @@
block_count,RecordWriteSaveFP,65,0
block_count,RecordWriteSaveFP,66,0
block_count,RecordWriteSaveFP,67,0
-block_count,RecordWriteSaveFP,68,31
-block_count,RecordWriteIgnoreFP,0,36
-block_count,RecordWriteIgnoreFP,1,32
+block_count,RecordWriteSaveFP,68,35
+block_count,RecordWriteIgnoreFP,0,25
+block_count,RecordWriteIgnoreFP,1,24
block_count,RecordWriteIgnoreFP,2,0
-block_count,RecordWriteIgnoreFP,3,32
+block_count,RecordWriteIgnoreFP,3,24
block_count,RecordWriteIgnoreFP,4,0
-block_count,RecordWriteIgnoreFP,5,32
-block_count,RecordWriteIgnoreFP,6,32
+block_count,RecordWriteIgnoreFP,5,24
+block_count,RecordWriteIgnoreFP,6,24
block_count,RecordWriteIgnoreFP,7,0
-block_count,RecordWriteIgnoreFP,8,32
-block_count,RecordWriteIgnoreFP,9,32
+block_count,RecordWriteIgnoreFP,8,24
+block_count,RecordWriteIgnoreFP,9,24
block_count,RecordWriteIgnoreFP,10,0
block_count,RecordWriteIgnoreFP,11,0
block_count,RecordWriteIgnoreFP,12,0
-block_count,RecordWriteIgnoreFP,13,32
-block_count,RecordWriteIgnoreFP,14,3
+block_count,RecordWriteIgnoreFP,13,24
+block_count,RecordWriteIgnoreFP,14,1
block_count,RecordWriteIgnoreFP,15,0
block_count,RecordWriteIgnoreFP,16,0
block_count,RecordWriteIgnoreFP,17,0
@@ -6915,9 +6895,9 @@
block_count,RecordWriteIgnoreFP,26,0
block_count,RecordWriteIgnoreFP,27,0
block_count,RecordWriteIgnoreFP,28,0
-block_count,RecordWriteIgnoreFP,29,3
-block_count,RecordWriteIgnoreFP,30,3
-block_count,RecordWriteIgnoreFP,31,3
+block_count,RecordWriteIgnoreFP,29,1
+block_count,RecordWriteIgnoreFP,30,1
+block_count,RecordWriteIgnoreFP,31,1
block_count,RecordWriteIgnoreFP,32,0
block_count,RecordWriteIgnoreFP,33,0
block_count,RecordWriteIgnoreFP,34,0
@@ -6936,17 +6916,17 @@
block_count,RecordWriteIgnoreFP,47,0
block_count,RecordWriteIgnoreFP,48,0
block_count,RecordWriteIgnoreFP,49,0
-block_count,RecordWriteIgnoreFP,50,3
-block_count,RecordWriteIgnoreFP,51,3
+block_count,RecordWriteIgnoreFP,50,1
+block_count,RecordWriteIgnoreFP,51,1
block_count,RecordWriteIgnoreFP,52,0
-block_count,RecordWriteIgnoreFP,53,3
-block_count,RecordWriteIgnoreFP,54,2
-block_count,RecordWriteIgnoreFP,55,2
+block_count,RecordWriteIgnoreFP,53,1
+block_count,RecordWriteIgnoreFP,54,0
+block_count,RecordWriteIgnoreFP,55,0
block_count,RecordWriteIgnoreFP,56,0
block_count,RecordWriteIgnoreFP,57,0
block_count,RecordWriteIgnoreFP,58,0
-block_count,RecordWriteIgnoreFP,59,1
-block_count,RecordWriteIgnoreFP,60,1
+block_count,RecordWriteIgnoreFP,59,0
+block_count,RecordWriteIgnoreFP,60,0
block_count,RecordWriteIgnoreFP,61,0
block_count,RecordWriteIgnoreFP,62,0
block_count,RecordWriteIgnoreFP,63,0
@@ -6954,7 +6934,7 @@
block_count,RecordWriteIgnoreFP,65,0
block_count,RecordWriteIgnoreFP,66,0
block_count,RecordWriteIgnoreFP,67,0
-block_count,RecordWriteIgnoreFP,68,3
+block_count,RecordWriteIgnoreFP,68,1
block_count,EphemeronKeyBarrierSaveFP,0,0
block_count,IndirectPointerBarrierIgnoreFP,0,0
block_count,AdaptorWithBuiltinExitFrame0,0,124
@@ -6970,8 +6950,8 @@
block_count,AdaptorWithBuiltinExitFrame3,1,6
block_count,AdaptorWithBuiltinExitFrame3,2,1
block_count,AdaptorWithBuiltinExitFrame3,3,8
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,0,144
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,1,144
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,0,141
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,1,141
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,2,46
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,3,39
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,4,39
@@ -7036,19 +7016,19 @@
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,63,0
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,64,0
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,65,6
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,66,98
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,66,95
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,67,0
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,68,144
-block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,0,541
-block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,1,541
-block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,2,32
-block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,3,13
-block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,4,12
-block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,5,12
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,68,141
+block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,0,534
+block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,1,534
+block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,2,31
+block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,3,12
+block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,4,11
+block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,5,11
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,6,0
-block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,7,12
-block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,8,12
-block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,9,10
+block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,7,11
+block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,8,11
+block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,9,9
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,10,2
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,11,0
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,12,2
@@ -7066,15 +7046,15 @@
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,24,0
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,25,2
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,26,0
-block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,27,10
-block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,28,10
-block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,29,10
+block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,27,9
+block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,28,9
+block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,29,9
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,30,0
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,31,0
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,32,0
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,33,0
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,34,0
-block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,35,10
+block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,35,9
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,36,0
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,37,0
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,38,0
@@ -7105,9 +7085,9 @@
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,63,0
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,64,0
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,65,18
-block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,66,509
+block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,66,503
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,67,0
-block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,68,541
+block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,68,534
block_count,Call_ReceiverIsAny_Baseline_Compact,0,1
block_count,Call_ReceiverIsAny_Baseline_Compact,1,1
block_count,Call_ReceiverIsAny_Baseline_Compact,2,0
@@ -7934,8 +7914,8 @@
block_count,Construct_Baseline,42,1
block_count,Construct_Baseline,43,43
block_count,Construct_Baseline,44,44
-block_count,Construct_WithFeedback,0,94
-block_count,Construct_WithFeedback,1,94
+block_count,Construct_WithFeedback,0,92
+block_count,Construct_WithFeedback,1,92
block_count,Construct_WithFeedback,2,19
block_count,Construct_WithFeedback,3,7
block_count,Construct_WithFeedback,4,7
@@ -7978,16 +7958,16 @@
block_count,Construct_WithFeedback,41,0
block_count,Construct_WithFeedback,42,7
block_count,Construct_WithFeedback,43,11
-block_count,Construct_WithFeedback,44,74
+block_count,Construct_WithFeedback,44,73
block_count,Construct_WithFeedback,45,0
-block_count,Construct_WithFeedback,46,86
-block_count,FastNewObject,0,191
+block_count,Construct_WithFeedback,46,85
+block_count,FastNewObject,0,195
block_count,FastNewObject,1,0
-block_count,FastNewObject,2,191
-block_count,FastNewObject,3,191
-block_count,FastNewObject,4,188
-block_count,FastNewObject,5,188
-block_count,FastNewObject,6,188
+block_count,FastNewObject,2,195
+block_count,FastNewObject,3,195
+block_count,FastNewObject,4,192
+block_count,FastNewObject,5,192
+block_count,FastNewObject,6,192
block_count,FastNewObject,7,0
block_count,FastNewObject,8,0
block_count,FastNewObject,9,0
@@ -8013,25 +7993,25 @@
block_count,FastNewObject,29,0
block_count,FastNewObject,30,0
block_count,FastNewObject,31,0
-block_count,FastNewObject,32,188
-block_count,FastNewObject,33,188
+block_count,FastNewObject,32,192
+block_count,FastNewObject,33,192
block_count,FastNewObject,34,0
-block_count,FastNewObject,35,188
+block_count,FastNewObject,35,192
block_count,FastNewObject,36,0
block_count,FastNewObject,37,0
-block_count,FastNewObject,38,188
-block_count,FastNewObject,39,187
+block_count,FastNewObject,38,192
+block_count,FastNewObject,39,191
block_count,FastNewObject,40,1
-block_count,FastNewObject,41,186
+block_count,FastNewObject,41,190
block_count,FastNewObject,42,48
-block_count,FastNewObject,43,137
-block_count,FastNewObject,44,295
+block_count,FastNewObject,43,141
+block_count,FastNewObject,44,299
block_count,FastNewObject,45,157
-block_count,FastNewObject,46,137
-block_count,FastNewObject,47,186
-block_count,FastNewObject,48,98
-block_count,FastNewObject,49,88
-block_count,FastNewObject,50,187
+block_count,FastNewObject,46,141
+block_count,FastNewObject,47,190
+block_count,FastNewObject,48,101
+block_count,FastNewObject,49,89
+block_count,FastNewObject,50,191
block_count,FastNewObject,51,0
block_count,FastNewObject,52,0
block_count,FastNewObject,53,0
@@ -8061,37 +8041,37 @@
block_count,FastNewObject,77,2
block_count,FastNewObject,78,0
block_count,FastNewObject,79,2
-block_count,FastNewClosure,0,270
-block_count,FastNewClosure,1,266
-block_count,FastNewClosure,2,265
+block_count,FastNewClosure,0,267
+block_count,FastNewClosure,1,262
+block_count,FastNewClosure,2,262
block_count,FastNewClosure,3,0
block_count,FastNewClosure,4,4
-block_count,FastNewClosure,5,270
+block_count,FastNewClosure,5,267
block_count,FastNewClosure,6,0
-block_count,FastNewClosure,7,270
-block_count,FastNewClosure,8,270
+block_count,FastNewClosure,7,267
+block_count,FastNewClosure,8,267
block_count,FastNewClosure,9,0
-block_count,FastNewClosure,10,270
+block_count,FastNewClosure,10,267
block_count,FastNewClosure,11,0
block_count,FastNewClosure,12,0
-block_count,FastNewClosure,13,270
+block_count,FastNewClosure,13,267
block_count,FastNewClosure,14,108
-block_count,FastNewClosure,15,161
-block_count,FastNewClosure,16,161
+block_count,FastNewClosure,15,158
+block_count,FastNewClosure,16,158
block_count,FastNewClosure,17,0
block_count,FastNewClosure,18,0
block_count,FastNewClosure,19,0
block_count,FastNewClosure,20,0
-block_count,FastNewClosure,21,161
+block_count,FastNewClosure,21,158
block_count,FastNewClosure,22,0
-block_count,FastNewClosure,23,161
-block_count,FastNewClosure,24,270
+block_count,FastNewClosure,23,158
+block_count,FastNewClosure,24,267
block_count,FastNewClosure,25,108
-block_count,FastNewClosure,26,161
+block_count,FastNewClosure,26,158
block_count,StringEqual,0,619
block_count,StringEqual,1,622
block_count,StringEqual,2,169
-block_count,StringEqual,3,5
+block_count,StringEqual,3,4
block_count,StringEqual,4,1
block_count,StringEqual,5,0
block_count,StringEqual,6,0
@@ -8460,7 +8440,7 @@
block_count,StringLessThan,68,882
block_count,StringLessThan,69,882
block_count,StringLessThan,70,412
-block_count,StringLessThan,71,469
+block_count,StringLessThan,71,470
block_count,StringLessThan,72,225
block_count,StringLessThan,73,244
block_count,StringLessThan,74,0
@@ -8471,8 +8451,8 @@
block_count,StringLessThan,79,0
block_count,StringLessThan,80,0
block_count,StringLessThan,81,3
-block_count,StringLessThanOrEqual,0,47
-block_count,StringLessThanOrEqual,1,47
+block_count,StringLessThanOrEqual,0,48
+block_count,StringLessThanOrEqual,1,48
block_count,StringLessThanOrEqual,2,43
block_count,StringLessThanOrEqual,3,0
block_count,StringLessThanOrEqual,4,0
@@ -8635,32 +8615,32 @@
block_count,StringCompare,79,0
block_count,StringCompare,80,0
block_count,StringCompare,81,0
-block_count,StringSubstring,0,471
-block_count,StringSubstring,1,471
-block_count,StringSubstring,2,471
+block_count,StringSubstring,0,470
+block_count,StringSubstring,1,470
+block_count,StringSubstring,2,470
block_count,StringSubstring,3,423
-block_count,StringSubstring,4,613
-block_count,StringSubstring,5,189
-block_count,StringSubstring,6,189
+block_count,StringSubstring,4,617
+block_count,StringSubstring,5,194
+block_count,StringSubstring,6,194
block_count,StringSubstring,7,175
block_count,StringSubstring,8,5
-block_count,StringSubstring,9,170
-block_count,StringSubstring,10,13
-block_count,StringSubstring,11,13
+block_count,StringSubstring,9,169
+block_count,StringSubstring,10,19
+block_count,StringSubstring,11,19
block_count,StringSubstring,12,0
-block_count,StringSubstring,13,189
+block_count,StringSubstring,13,194
block_count,StringSubstring,14,0
block_count,StringSubstring,15,423
block_count,StringSubstring,16,423
-block_count,StringSubstring,17,188
+block_count,StringSubstring,17,187
block_count,StringSubstring,18,3
block_count,StringSubstring,19,0
block_count,StringSubstring,20,3
block_count,StringSubstring,21,3
-block_count,StringSubstring,22,185
+block_count,StringSubstring,22,184
block_count,StringSubstring,23,0
-block_count,StringSubstring,24,185
-block_count,StringSubstring,25,185
+block_count,StringSubstring,24,184
+block_count,StringSubstring,25,184
block_count,StringSubstring,26,235
block_count,StringSubstring,27,235
block_count,StringSubstring,28,36
@@ -8827,16 +8807,16 @@
block_count,StringSubstring,189,0
block_count,StringSubstring,190,0
block_count,StringSubstring,191,47
-block_count,StringSubstring,192,52
-block_count,StringSubstring,193,5
-block_count,StringSubstring,194,5
+block_count,StringSubstring,192,53
+block_count,StringSubstring,193,6
+block_count,StringSubstring,194,6
block_count,StringSubstring,195,0
block_count,StringSubstring,196,0
block_count,StringSubstring,197,0
-block_count,StringSubstring,198,4
-block_count,StringSubstring,199,4
+block_count,StringSubstring,198,5
+block_count,StringSubstring,199,5
block_count,StringSubstring,200,0
-block_count,StringSubstring,201,5
+block_count,StringSubstring,201,6
block_count,StringSubstring,202,0
block_count,StringSubstring,203,0
block_count,StringSubstring,204,0
@@ -8988,27 +8968,27 @@
block_count,GrowFastDoubleElements,12,376
block_count,GrowFastDoubleElements,13,0
block_count,GrowFastDoubleElements,14,376
-block_count,GrowFastDoubleElements,15,4291
-block_count,GrowFastDoubleElements,16,3914
+block_count,GrowFastDoubleElements,15,4292
+block_count,GrowFastDoubleElements,16,3916
block_count,GrowFastDoubleElements,17,376
block_count,GrowFastDoubleElements,18,376
block_count,GrowFastDoubleElements,19,100
block_count,GrowFastDoubleElements,20,275
block_count,GrowFastDoubleElements,21,376
block_count,GrowFastDoubleElements,22,161
-block_count,GrowFastDoubleElements,23,4798
-block_count,GrowFastDoubleElements,24,4796
+block_count,GrowFastDoubleElements,23,4799
+block_count,GrowFastDoubleElements,24,4798
block_count,GrowFastDoubleElements,25,1
-block_count,GrowFastDoubleElements,26,4798
-block_count,GrowFastDoubleElements,27,4636
+block_count,GrowFastDoubleElements,26,4799
+block_count,GrowFastDoubleElements,27,4638
block_count,GrowFastDoubleElements,28,161
block_count,GrowFastDoubleElements,29,214
block_count,GrowFastDoubleElements,30,0
block_count,GrowFastDoubleElements,31,0
block_count,GrowFastDoubleElements,32,0
block_count,GrowFastDoubleElements,33,0
-block_count,GrowFastSmiOrObjectElements,0,345
-block_count,GrowFastSmiOrObjectElements,1,345
+block_count,GrowFastSmiOrObjectElements,0,346
+block_count,GrowFastSmiOrObjectElements,1,346
block_count,GrowFastSmiOrObjectElements,2,345
block_count,GrowFastSmiOrObjectElements,3,345
block_count,GrowFastSmiOrObjectElements,4,345
@@ -9021,16 +9001,16 @@
block_count,GrowFastSmiOrObjectElements,11,345
block_count,GrowFastSmiOrObjectElements,12,0
block_count,GrowFastSmiOrObjectElements,13,345
-block_count,GrowFastSmiOrObjectElements,14,4545
-block_count,GrowFastSmiOrObjectElements,15,4200
+block_count,GrowFastSmiOrObjectElements,14,4551
+block_count,GrowFastSmiOrObjectElements,15,4205
block_count,GrowFastSmiOrObjectElements,16,345
block_count,GrowFastSmiOrObjectElements,17,345
block_count,GrowFastSmiOrObjectElements,18,18
block_count,GrowFastSmiOrObjectElements,19,327
block_count,GrowFastSmiOrObjectElements,20,345
block_count,GrowFastSmiOrObjectElements,21,47
-block_count,GrowFastSmiOrObjectElements,22,6969
-block_count,GrowFastSmiOrObjectElements,23,6922
+block_count,GrowFastSmiOrObjectElements,22,6975
+block_count,GrowFastSmiOrObjectElements,23,6927
block_count,GrowFastSmiOrObjectElements,24,47
block_count,GrowFastSmiOrObjectElements,25,298
block_count,GrowFastSmiOrObjectElements,26,0
@@ -9083,7 +9063,7 @@
block_count,ToNumber_Baseline,22,0
block_count,ToNumber_Baseline,23,0
block_count,ToNumber_Baseline,24,0
-block_count,ToNumeric_Baseline,0,29
+block_count,ToNumeric_Baseline,0,30
block_count,ToNumeric_Baseline,1,0
block_count,ToNumeric_Baseline,2,0
block_count,ToNumeric_Baseline,3,0
@@ -9111,10 +9091,10 @@
block_count,ToNumeric_Baseline,25,0
block_count,ToNumeric_Baseline,26,0
block_count,ToNumeric_Baseline,27,0
-block_count,ToNumeric_Baseline,28,29
-block_count,ToNumeric_Baseline,29,29
+block_count,ToNumeric_Baseline,28,30
+block_count,ToNumeric_Baseline,29,30
block_count,ToNumeric_Baseline,30,0
-block_count,ToNumeric_Baseline,31,29
+block_count,ToNumeric_Baseline,31,30
block_count,ToNumberConvertBigInt,0,0
block_count,ToNumberConvertBigInt,1,0
block_count,ToNumberConvertBigInt,2,0
@@ -9468,9 +9448,9 @@
block_count,KeyedLoadIC_PolymorphicName,247,0
block_count,KeyedLoadIC_PolymorphicName,248,0
block_count,KeyedLoadIC_PolymorphicName,249,0
-block_count,KeyedStoreIC_Megamorphic,0,411
-block_count,KeyedStoreIC_Megamorphic,1,411
-block_count,KeyedStoreIC_Megamorphic,2,411
+block_count,KeyedStoreIC_Megamorphic,0,340
+block_count,KeyedStoreIC_Megamorphic,1,340
+block_count,KeyedStoreIC_Megamorphic,2,340
block_count,KeyedStoreIC_Megamorphic,3,299
block_count,KeyedStoreIC_Megamorphic,4,298
block_count,KeyedStoreIC_Megamorphic,5,0
@@ -9536,7 +9516,7 @@
block_count,KeyedStoreIC_Megamorphic,65,0
block_count,KeyedStoreIC_Megamorphic,66,159
block_count,KeyedStoreIC_Megamorphic,67,8
-block_count,KeyedStoreIC_Megamorphic,68,150
+block_count,KeyedStoreIC_Megamorphic,68,151
block_count,KeyedStoreIC_Megamorphic,69,337
block_count,KeyedStoreIC_Megamorphic,70,288
block_count,KeyedStoreIC_Megamorphic,71,238
@@ -9584,7 +9564,7 @@
block_count,KeyedStoreIC_Megamorphic,113,0
block_count,KeyedStoreIC_Megamorphic,114,52
block_count,KeyedStoreIC_Megamorphic,115,0
-block_count,KeyedStoreIC_Megamorphic,116,46
+block_count,KeyedStoreIC_Megamorphic,116,47
block_count,KeyedStoreIC_Megamorphic,117,46
block_count,KeyedStoreIC_Megamorphic,118,46
block_count,KeyedStoreIC_Megamorphic,119,0
@@ -9607,11 +9587,11 @@
block_count,KeyedStoreIC_Megamorphic,136,51
block_count,KeyedStoreIC_Megamorphic,137,51
block_count,KeyedStoreIC_Megamorphic,138,0
-block_count,KeyedStoreIC_Megamorphic,139,46
+block_count,KeyedStoreIC_Megamorphic,139,47
block_count,KeyedStoreIC_Megamorphic,140,46
block_count,KeyedStoreIC_Megamorphic,141,0
-block_count,KeyedStoreIC_Megamorphic,142,46
-block_count,KeyedStoreIC_Megamorphic,143,46
+block_count,KeyedStoreIC_Megamorphic,142,47
+block_count,KeyedStoreIC_Megamorphic,143,47
block_count,KeyedStoreIC_Megamorphic,144,0
block_count,KeyedStoreIC_Megamorphic,145,0
block_count,KeyedStoreIC_Megamorphic,146,0
@@ -9649,13 +9629,13 @@
block_count,KeyedStoreIC_Megamorphic,178,11
block_count,KeyedStoreIC_Megamorphic,179,0
block_count,KeyedStoreIC_Megamorphic,180,11
-block_count,KeyedStoreIC_Megamorphic,181,95
-block_count,KeyedStoreIC_Megamorphic,182,95
+block_count,KeyedStoreIC_Megamorphic,181,96
+block_count,KeyedStoreIC_Megamorphic,182,96
block_count,KeyedStoreIC_Megamorphic,183,0
-block_count,KeyedStoreIC_Megamorphic,184,95
-block_count,KeyedStoreIC_Megamorphic,185,50
-block_count,KeyedStoreIC_Megamorphic,186,45
-block_count,KeyedStoreIC_Megamorphic,187,95
+block_count,KeyedStoreIC_Megamorphic,184,96
+block_count,KeyedStoreIC_Megamorphic,185,49
+block_count,KeyedStoreIC_Megamorphic,186,46
+block_count,KeyedStoreIC_Megamorphic,187,96
block_count,KeyedStoreIC_Megamorphic,188,84
block_count,KeyedStoreIC_Megamorphic,189,11
block_count,KeyedStoreIC_Megamorphic,190,11
@@ -9675,10 +9655,10 @@
block_count,KeyedStoreIC_Megamorphic,204,9
block_count,KeyedStoreIC_Megamorphic,205,0
block_count,KeyedStoreIC_Megamorphic,206,9
-block_count,KeyedStoreIC_Megamorphic,207,35
+block_count,KeyedStoreIC_Megamorphic,207,36
block_count,KeyedStoreIC_Megamorphic,208,31
block_count,KeyedStoreIC_Megamorphic,209,28
-block_count,KeyedStoreIC_Megamorphic,210,26
+block_count,KeyedStoreIC_Megamorphic,210,27
block_count,KeyedStoreIC_Megamorphic,211,1
block_count,KeyedStoreIC_Megamorphic,212,2
block_count,KeyedStoreIC_Megamorphic,213,4
@@ -10164,9 +10144,9 @@
block_count,KeyedStoreIC_Megamorphic,693,0
block_count,KeyedStoreIC_Megamorphic,694,0
block_count,KeyedStoreIC_Megamorphic,695,11
-block_count,KeyedStoreIC_Megamorphic,696,10
+block_count,KeyedStoreIC_Megamorphic,696,11
block_count,KeyedStoreIC_Megamorphic,697,0
-block_count,KeyedStoreIC_Megamorphic,698,10
+block_count,KeyedStoreIC_Megamorphic,698,11
block_count,KeyedStoreIC_Megamorphic,699,0
block_count,KeyedStoreIC_Megamorphic,700,0
block_count,KeyedStoreIC_Megamorphic,701,65
@@ -10217,7 +10197,7 @@
block_count,KeyedStoreIC_Megamorphic,746,52
block_count,KeyedStoreIC_Megamorphic,747,2
block_count,KeyedStoreIC_Megamorphic,748,50
-block_count,KeyedStoreIC_Megamorphic,749,298
+block_count,KeyedStoreIC_Megamorphic,749,299
block_count,KeyedStoreIC_Megamorphic,750,298
block_count,KeyedStoreIC_Megamorphic,751,298
block_count,KeyedStoreIC_Megamorphic,752,248
@@ -10374,9 +10354,9 @@
block_count,KeyedStoreIC_Megamorphic,903,0
block_count,KeyedStoreIC_Megamorphic,904,0
block_count,KeyedStoreIC_Megamorphic,905,0
-block_count,KeyedStoreIC_Megamorphic,906,112
-block_count,KeyedStoreIC_Megamorphic,907,112
-block_count,KeyedStoreIC_Megamorphic,908,163
+block_count,KeyedStoreIC_Megamorphic,906,41
+block_count,KeyedStoreIC_Megamorphic,907,41
+block_count,KeyedStoreIC_Megamorphic,908,92
block_count,KeyedStoreIC_Megamorphic,909,1
block_count,KeyedStoreIC_Megamorphic,910,0
block_count,KeyedStoreIC_Megamorphic,911,0
@@ -10400,13 +10380,13 @@
block_count,KeyedStoreIC_Megamorphic,929,0
block_count,KeyedStoreIC_Megamorphic,930,0
block_count,KeyedStoreIC_Megamorphic,931,0
-block_count,KeyedStoreIC_Megamorphic,932,161
+block_count,KeyedStoreIC_Megamorphic,932,91
block_count,KeyedStoreIC_Megamorphic,933,8
block_count,KeyedStoreIC_Megamorphic,934,1
block_count,KeyedStoreIC_Megamorphic,935,6
-block_count,KeyedStoreIC_Megamorphic,936,153
-block_count,KeyedStoreIC_Megamorphic,937,106
-block_count,KeyedStoreIC_Megamorphic,938,106
+block_count,KeyedStoreIC_Megamorphic,936,82
+block_count,KeyedStoreIC_Megamorphic,937,35
+block_count,KeyedStoreIC_Megamorphic,938,35
block_count,KeyedStoreIC_Megamorphic,939,0
block_count,KeyedStoreIC_Megamorphic,940,0
block_count,KeyedStoreIC_Megamorphic,941,0
@@ -10668,22 +10648,22 @@
block_count,KeyedStoreIC_Megamorphic,1197,0
block_count,KeyedStoreIC_Megamorphic,1198,0
block_count,KeyedStoreIC_Megamorphic,1199,0
-block_count,KeyedStoreIC_Megamorphic,1200,106
-block_count,KeyedStoreIC_Megamorphic,1201,106
-block_count,KeyedStoreIC_Megamorphic,1202,106
-block_count,KeyedStoreIC_Megamorphic,1203,106
-block_count,KeyedStoreIC_Megamorphic,1204,319
-block_count,KeyedStoreIC_Megamorphic,1205,212
-block_count,KeyedStoreIC_Megamorphic,1206,212
+block_count,KeyedStoreIC_Megamorphic,1200,35
+block_count,KeyedStoreIC_Megamorphic,1201,35
+block_count,KeyedStoreIC_Megamorphic,1202,35
+block_count,KeyedStoreIC_Megamorphic,1203,35
+block_count,KeyedStoreIC_Megamorphic,1204,106
+block_count,KeyedStoreIC_Megamorphic,1205,70
+block_count,KeyedStoreIC_Megamorphic,1206,70
block_count,KeyedStoreIC_Megamorphic,1207,0
block_count,KeyedStoreIC_Megamorphic,1208,0
block_count,KeyedStoreIC_Megamorphic,1209,0
-block_count,KeyedStoreIC_Megamorphic,1210,212
-block_count,KeyedStoreIC_Megamorphic,1211,212
+block_count,KeyedStoreIC_Megamorphic,1210,70
+block_count,KeyedStoreIC_Megamorphic,1211,70
block_count,KeyedStoreIC_Megamorphic,1212,0
-block_count,KeyedStoreIC_Megamorphic,1213,106
-block_count,KeyedStoreIC_Megamorphic,1214,106
-block_count,KeyedStoreIC_Megamorphic,1215,106
+block_count,KeyedStoreIC_Megamorphic,1213,35
+block_count,KeyedStoreIC_Megamorphic,1214,35
+block_count,KeyedStoreIC_Megamorphic,1215,35
block_count,KeyedStoreIC_Megamorphic,1216,0
block_count,KeyedStoreIC_Megamorphic,1217,0
block_count,KeyedStoreIC_Megamorphic,1218,0
@@ -11969,7 +11949,7 @@
block_count,LoadGlobalIC_NoFeedback,2,16
block_count,LoadGlobalIC_NoFeedback,3,0
block_count,LoadGlobalIC_NoFeedback,4,16
-block_count,LoadGlobalIC_NoFeedback,5,362
+block_count,LoadGlobalIC_NoFeedback,5,363
block_count,LoadGlobalIC_NoFeedback,6,352
block_count,LoadGlobalIC_NoFeedback,7,352
block_count,LoadGlobalIC_NoFeedback,8,1
@@ -12040,7 +12020,7 @@
block_count,LoadIC_FunctionPrototype,2,1
block_count,LoadIC_FunctionPrototype,3,200
block_count,LoadIC_FunctionPrototype,4,0
-block_count,LoadIC_StringLength,0,41
+block_count,LoadIC_StringLength,0,40
block_count,LoadIC_StringWrapperLength,0,0
block_count,LoadIC_NoFeedback,0,45
block_count,LoadIC_NoFeedback,1,45
@@ -13165,7 +13145,7 @@
block_count,KeyedLoadIC_SloppyArguments,20,0
block_count,KeyedLoadIC_SloppyArguments,21,0
block_count,KeyedLoadIC_SloppyArguments,22,0
-block_count,StoreFastElementIC_InBounds,0,198
+block_count,StoreFastElementIC_InBounds,0,199
block_count,StoreFastElementIC_InBounds,1,0
block_count,StoreFastElementIC_InBounds,2,3
block_count,StoreFastElementIC_InBounds,3,3
@@ -13405,7 +13385,7 @@
block_count,StoreFastElementIC_InBounds,237,4
block_count,StoreFastElementIC_InBounds,238,0
block_count,StoreFastElementIC_InBounds,239,4
-block_count,StoreFastElementIC_InBounds,240,15
+block_count,StoreFastElementIC_InBounds,240,14
block_count,StoreFastElementIC_InBounds,241,0
block_count,StoreFastElementIC_InBounds,242,0
block_count,StoreFastElementIC_InBounds,243,0
@@ -13413,21 +13393,21 @@
block_count,StoreFastElementIC_InBounds,245,0
block_count,StoreFastElementIC_InBounds,246,0
block_count,StoreFastElementIC_InBounds,247,0
-block_count,StoreFastElementIC_InBounds,248,15
-block_count,StoreFastElementIC_InBounds,249,15
-block_count,StoreFastElementIC_InBounds,250,15
+block_count,StoreFastElementIC_InBounds,248,14
+block_count,StoreFastElementIC_InBounds,249,14
+block_count,StoreFastElementIC_InBounds,250,14
block_count,StoreFastElementIC_InBounds,251,0
block_count,StoreFastElementIC_InBounds,252,0
block_count,StoreFastElementIC_InBounds,253,0
block_count,StoreFastElementIC_InBounds,254,0
block_count,StoreFastElementIC_InBounds,255,0
block_count,StoreFastElementIC_InBounds,256,0
-block_count,StoreFastElementIC_InBounds,257,15
-block_count,StoreFastElementIC_InBounds,258,15
-block_count,StoreFastElementIC_InBounds,259,15
-block_count,StoreFastElementIC_InBounds,260,15
+block_count,StoreFastElementIC_InBounds,257,14
+block_count,StoreFastElementIC_InBounds,258,14
+block_count,StoreFastElementIC_InBounds,259,14
+block_count,StoreFastElementIC_InBounds,260,14
block_count,StoreFastElementIC_InBounds,261,0
-block_count,StoreFastElementIC_InBounds,262,15
+block_count,StoreFastElementIC_InBounds,262,14
block_count,StoreFastElementIC_InBounds,263,0
block_count,StoreFastElementIC_InBounds,264,0
block_count,StoreFastElementIC_InBounds,265,0
@@ -13483,7 +13463,7 @@
block_count,StoreFastElementIC_InBounds,315,0
block_count,StoreFastElementIC_InBounds,316,0
block_count,StoreFastElementIC_InBounds,317,0
-block_count,StoreFastElementIC_InBounds,318,13
+block_count,StoreFastElementIC_InBounds,318,14
block_count,StoreFastElementIC_InBounds,319,0
block_count,StoreFastElementIC_InBounds,320,0
block_count,StoreFastElementIC_InBounds,321,0
@@ -13491,21 +13471,21 @@
block_count,StoreFastElementIC_InBounds,323,0
block_count,StoreFastElementIC_InBounds,324,0
block_count,StoreFastElementIC_InBounds,325,0
-block_count,StoreFastElementIC_InBounds,326,13
-block_count,StoreFastElementIC_InBounds,327,13
-block_count,StoreFastElementIC_InBounds,328,13
+block_count,StoreFastElementIC_InBounds,326,14
+block_count,StoreFastElementIC_InBounds,327,14
+block_count,StoreFastElementIC_InBounds,328,14
block_count,StoreFastElementIC_InBounds,329,0
block_count,StoreFastElementIC_InBounds,330,0
block_count,StoreFastElementIC_InBounds,331,0
block_count,StoreFastElementIC_InBounds,332,0
block_count,StoreFastElementIC_InBounds,333,0
block_count,StoreFastElementIC_InBounds,334,0
-block_count,StoreFastElementIC_InBounds,335,13
-block_count,StoreFastElementIC_InBounds,336,13
-block_count,StoreFastElementIC_InBounds,337,13
-block_count,StoreFastElementIC_InBounds,338,13
+block_count,StoreFastElementIC_InBounds,335,14
+block_count,StoreFastElementIC_InBounds,336,14
+block_count,StoreFastElementIC_InBounds,337,14
+block_count,StoreFastElementIC_InBounds,338,14
block_count,StoreFastElementIC_InBounds,339,0
-block_count,StoreFastElementIC_InBounds,340,13
+block_count,StoreFastElementIC_InBounds,340,14
block_count,StoreFastElementIC_InBounds,341,0
block_count,StoreFastElementIC_InBounds,342,0
block_count,StoreFastElementIC_InBounds,343,0
@@ -13558,7 +13538,7 @@
block_count,StoreFastElementIC_InBounds,390,0
block_count,StoreFastElementIC_InBounds,391,0
block_count,StoreFastElementIC_InBounds,392,2
-block_count,StoreFastElementIC_InBounds,393,112
+block_count,StoreFastElementIC_InBounds,393,113
block_count,StoreFastElementIC_InBounds,394,115
block_count,StoreFastElementIC_InBounds,395,115
block_count,StoreFastElementIC_InBounds,396,115
@@ -13625,7 +13605,7 @@
block_count,StoreFastElementIC_InBounds,457,0
block_count,StoreFastElementIC_InBounds,458,0
block_count,StoreFastElementIC_InBounds,459,0
-block_count,StoreFastElementIC_InBounds,460,21
+block_count,StoreFastElementIC_InBounds,460,22
block_count,StoreFastElementIC_InBounds,461,0
block_count,StoreFastElementIC_InBounds,462,0
block_count,StoreFastElementIC_InBounds,463,0
@@ -13633,21 +13613,21 @@
block_count,StoreFastElementIC_InBounds,465,0
block_count,StoreFastElementIC_InBounds,466,0
block_count,StoreFastElementIC_InBounds,467,0
-block_count,StoreFastElementIC_InBounds,468,21
-block_count,StoreFastElementIC_InBounds,469,21
-block_count,StoreFastElementIC_InBounds,470,21
-block_count,StoreFastElementIC_InBounds,471,20
-block_count,StoreFastElementIC_InBounds,472,20
+block_count,StoreFastElementIC_InBounds,468,22
+block_count,StoreFastElementIC_InBounds,469,22
+block_count,StoreFastElementIC_InBounds,470,22
+block_count,StoreFastElementIC_InBounds,471,21
+block_count,StoreFastElementIC_InBounds,472,21
block_count,StoreFastElementIC_InBounds,473,0
block_count,StoreFastElementIC_InBounds,474,0
block_count,StoreFastElementIC_InBounds,475,0
-block_count,StoreFastElementIC_InBounds,476,20
+block_count,StoreFastElementIC_InBounds,476,21
block_count,StoreFastElementIC_InBounds,477,0
-block_count,StoreFastElementIC_InBounds,478,21
-block_count,StoreFastElementIC_InBounds,479,21
-block_count,StoreFastElementIC_InBounds,480,21
+block_count,StoreFastElementIC_InBounds,478,22
+block_count,StoreFastElementIC_InBounds,479,22
+block_count,StoreFastElementIC_InBounds,480,22
block_count,StoreFastElementIC_InBounds,481,0
-block_count,StoreFastElementIC_InBounds,482,21
+block_count,StoreFastElementIC_InBounds,482,22
block_count,StoreFastElementIC_InBounds,483,0
block_count,StoreFastElementIC_InBounds,484,0
block_count,StoreFastElementIC_InBounds,485,0
@@ -14344,7 +14324,7 @@
block_count,StoreFastElementIC_InBounds,1176,0
block_count,StoreFastElementIC_InBounds,1177,0
block_count,StoreFastElementIC_InBounds,1178,0
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,0,20
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,0,19
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,1,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,2,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,3,0
@@ -14380,7 +14360,7 @@
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,33,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,34,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,35,1
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,36,1
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,36,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,37,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,38,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,39,0
@@ -14540,7 +14520,7 @@
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,193,1
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,194,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,195,1
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,196,16
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,196,15
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,197,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,198,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,199,0
@@ -14548,15 +14528,15 @@
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,201,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,202,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,203,0
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,204,16
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,205,16
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,204,15
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,205,15
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,206,0
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,207,16
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,208,16
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,207,15
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,208,15
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,209,1
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,210,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,211,1
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,212,15
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,212,13
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,213,1
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,214,1
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,215,1
@@ -14571,7 +14551,7 @@
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,224,1
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,225,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,226,1
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,227,14
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,227,13
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,228,12
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,229,1
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,230,1
@@ -14579,8 +14559,8 @@
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,232,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,233,1
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,234,0
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,235,14
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,236,13
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,235,13
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,236,12
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,237,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,238,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,239,1
@@ -14598,12 +14578,12 @@
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,251,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,252,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,253,0
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,254,13
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,255,15
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,254,12
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,255,13
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,256,0
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,257,15
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,258,16
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,259,16
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,257,13
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,258,15
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,259,15
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,260,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,261,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,262,0
@@ -14632,9 +14612,9 @@
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,285,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,286,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,287,0
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,288,16
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,288,15
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,289,0
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,290,16
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,290,15
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,291,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,292,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,293,0
@@ -19877,7 +19857,7 @@
block_count,ArrayConstructorImpl,0,11
block_count,ArrayConstructorImpl,1,10
block_count,ArrayConstructorImpl,2,9
-block_count,ArrayConstructorImpl,3,8
+block_count,ArrayConstructorImpl,3,7
block_count,ArrayConstructorImpl,4,3
block_count,ArrayConstructorImpl,5,4
block_count,ArrayConstructorImpl,6,0
@@ -19917,7 +19897,7 @@
block_count,ArrayConstructorImpl,40,0
block_count,ArrayConstructorImpl,41,0
block_count,ArrayConstructorImpl,42,1
-block_count,ArrayConstructorImpl,43,5
+block_count,ArrayConstructorImpl,43,4
block_count,ArrayNoArgumentConstructor_PackedSmi_DontOverride,0,0
block_count,ArrayNoArgumentConstructor_PackedSmi_DontOverride,1,0
block_count,ArrayNoArgumentConstructor_PackedSmi_DontOverride,2,0
@@ -20080,7 +20060,7 @@
block_count,ArraySingleArgumentConstructor_Holey_DisableAllocationSites,31,0
block_count,ArraySingleArgumentConstructor_Holey_DisableAllocationSites,32,0
block_count,ArraySingleArgumentConstructor_Holey_DisableAllocationSites,33,39
-block_count,ArraySingleArgumentConstructor_Holey_DisableAllocationSites,34,39
+block_count,ArraySingleArgumentConstructor_Holey_DisableAllocationSites,34,38
block_count,ArraySingleArgumentConstructor_Holey_DisableAllocationSites,35,0
block_count,ArraySingleArgumentConstructor_Holey_DisableAllocationSites,36,0
block_count,ArraySingleArgumentConstructor_Holey_DisableAllocationSites,37,0
@@ -20502,22 +20482,22 @@
block_count,ArrayIncludesSmiOrObject,159,0
block_count,ArrayIncludesSmiOrObject,160,32
block_count,ArrayIncludesSmiOrObject,161,14
-block_count,ArrayIncludes,0,4
+block_count,ArrayIncludes,0,5
block_count,ArrayIncludes,1,0
-block_count,ArrayIncludes,2,4
-block_count,ArrayIncludes,3,4
-block_count,ArrayIncludes,4,4
+block_count,ArrayIncludes,2,5
+block_count,ArrayIncludes,3,5
+block_count,ArrayIncludes,4,5
block_count,ArrayIncludes,5,0
-block_count,ArrayIncludes,6,4
+block_count,ArrayIncludes,6,5
block_count,ArrayIncludes,7,0
-block_count,ArrayIncludes,8,4
-block_count,ArrayIncludes,9,4
-block_count,ArrayIncludes,10,4
-block_count,ArrayIncludes,11,4
+block_count,ArrayIncludes,8,5
+block_count,ArrayIncludes,9,5
+block_count,ArrayIncludes,10,5
+block_count,ArrayIncludes,11,5
block_count,ArrayIncludes,12,0
-block_count,ArrayIncludes,13,4
-block_count,ArrayIncludes,14,4
-block_count,ArrayIncludes,15,4
+block_count,ArrayIncludes,13,5
+block_count,ArrayIncludes,14,5
+block_count,ArrayIncludes,15,5
block_count,ArrayIncludes,16,0
block_count,ArrayIncludes,17,0
block_count,ArrayIncludes,18,0
@@ -20529,16 +20509,16 @@
block_count,ArrayIncludes,24,0
block_count,ArrayIncludes,25,0
block_count,ArrayIncludes,26,0
-block_count,ArrayIncludes,27,4
-block_count,ArrayIncludes,28,4
-block_count,ArrayIncludes,29,4
-block_count,ArrayIncludes,30,4
+block_count,ArrayIncludes,27,5
+block_count,ArrayIncludes,28,5
+block_count,ArrayIncludes,29,5
+block_count,ArrayIncludes,30,5
block_count,ArrayIncludes,31,0
block_count,ArrayIncludes,32,0
block_count,ArrayIncludes,33,0
block_count,ArrayIncludes,34,0
block_count,ArrayIncludes,35,0
-block_count,ArrayIncludes,36,4
+block_count,ArrayIncludes,36,5
block_count,ArrayIncludes,37,0
block_count,ArrayIndexOfSmi,0,0
block_count,ArrayIndexOfSmi,1,0
@@ -20756,12 +20736,12 @@
block_count,ArrayIndexOfSmiOrObject,26,0
block_count,ArrayIndexOfSmiOrObject,27,114
block_count,ArrayIndexOfSmiOrObject,28,1728
-block_count,ArrayIndexOfSmiOrObject,29,1642
-block_count,ArrayIndexOfSmiOrObject,30,1642
+block_count,ArrayIndexOfSmiOrObject,29,1643
+block_count,ArrayIndexOfSmiOrObject,30,1643
block_count,ArrayIndexOfSmiOrObject,31,1629
block_count,ArrayIndexOfSmiOrObject,32,1629
block_count,ArrayIndexOfSmiOrObject,33,0
-block_count,ArrayIndexOfSmiOrObject,34,1628
+block_count,ArrayIndexOfSmiOrObject,34,1629
block_count,ArrayIndexOfSmiOrObject,35,1357
block_count,ArrayIndexOfSmiOrObject,36,271
block_count,ArrayIndexOfSmiOrObject,37,223
@@ -20882,11 +20862,11 @@
block_count,ArrayIndexOfSmiOrObject,152,0
block_count,ArrayIndexOfSmiOrObject,153,0
block_count,ArrayIndexOfSmiOrObject,154,0
-block_count,ArrayIndexOfSmiOrObject,155,47
+block_count,ArrayIndexOfSmiOrObject,155,48
block_count,ArrayIndexOfSmiOrObject,156,0
block_count,ArrayIndexOfSmiOrObject,157,13
block_count,ArrayIndexOfSmiOrObject,158,0
-block_count,ArrayIndexOfSmiOrObject,159,1613
+block_count,ArrayIndexOfSmiOrObject,159,1614
block_count,ArrayIndexOfSmiOrObject,160,85
block_count,ArrayIndexOfSmiOrObject,161,0
block_count,ArrayIndexOfSmiOrObject,162,0
@@ -20973,17 +20953,17 @@
block_count,ArrayPrototypePop,14,5
block_count,ArrayPrototypePop,15,5
block_count,ArrayPrototypePop,16,5
-block_count,ArrayPrototypePop,17,5
+block_count,ArrayPrototypePop,17,4
block_count,ArrayPrototypePop,18,0
block_count,ArrayPrototypePop,19,0
block_count,ArrayPrototypePop,20,0
block_count,ArrayPrototypePop,21,0
block_count,ArrayPrototypePop,22,0
block_count,ArrayPrototypePop,23,0
-block_count,ArrayPrototypePop,24,5
+block_count,ArrayPrototypePop,24,4
block_count,ArrayPrototypePop,25,0
-block_count,ArrayPrototypePop,26,5
-block_count,ArrayPrototypePop,27,5
+block_count,ArrayPrototypePop,26,4
+block_count,ArrayPrototypePop,27,4
block_count,ArrayPrototypePop,28,0
block_count,ArrayPrototypePop,29,0
block_count,ArrayPrototypePop,30,0
@@ -20996,23 +20976,23 @@
block_count,ArrayPrototypePop,37,0
block_count,ArrayPrototypePop,38,0
block_count,ArrayPrototypePop,39,0
-block_count,ArrayPrototypePush,0,211
+block_count,ArrayPrototypePush,0,210
block_count,ArrayPrototypePush,1,0
-block_count,ArrayPrototypePush,2,211
-block_count,ArrayPrototypePush,3,211
-block_count,ArrayPrototypePush,4,211
-block_count,ArrayPrototypePush,5,211
-block_count,ArrayPrototypePush,6,211
+block_count,ArrayPrototypePush,2,210
+block_count,ArrayPrototypePush,3,210
+block_count,ArrayPrototypePush,4,210
+block_count,ArrayPrototypePush,5,210
+block_count,ArrayPrototypePush,6,210
block_count,ArrayPrototypePush,7,0
-block_count,ArrayPrototypePush,8,211
-block_count,ArrayPrototypePush,9,211
-block_count,ArrayPrototypePush,10,211
+block_count,ArrayPrototypePush,8,210
+block_count,ArrayPrototypePush,9,210
+block_count,ArrayPrototypePush,10,210
block_count,ArrayPrototypePush,11,0
-block_count,ArrayPrototypePush,12,211
-block_count,ArrayPrototypePush,13,211
+block_count,ArrayPrototypePush,12,210
+block_count,ArrayPrototypePush,13,210
block_count,ArrayPrototypePush,14,0
-block_count,ArrayPrototypePush,15,211
-block_count,ArrayPrototypePush,16,211
+block_count,ArrayPrototypePush,15,210
+block_count,ArrayPrototypePush,16,210
block_count,ArrayPrototypePush,17,8
block_count,ArrayPrototypePush,18,8
block_count,ArrayPrototypePush,19,7
@@ -21065,8 +21045,8 @@
block_count,ArrayPrototypePush,66,0
block_count,ArrayPrototypePush,67,0
block_count,ArrayPrototypePush,68,0
-block_count,ArrayPrototypePush,69,202
-block_count,ArrayPrototypePush,70,202
+block_count,ArrayPrototypePush,69,201
+block_count,ArrayPrototypePush,70,201
block_count,ArrayPrototypePush,71,0
block_count,ArrayPrototypePush,72,0
block_count,ArrayPrototypePush,73,0
@@ -21127,46 +21107,46 @@
block_count,ArrayPrototypePush,128,0
block_count,ArrayPrototypePush,129,0
block_count,ArrayPrototypePush,130,0
-block_count,ArrayPrototypePush,131,202
-block_count,ArrayPrototypePush,132,201
+block_count,ArrayPrototypePush,131,201
+block_count,ArrayPrototypePush,132,200
block_count,ArrayPrototypePush,133,178
-block_count,ArrayPrototypePush,134,23
-block_count,ArrayPrototypePush,135,23
-block_count,ArrayPrototypePush,136,23
-block_count,ArrayPrototypePush,137,23
+block_count,ArrayPrototypePush,134,22
+block_count,ArrayPrototypePush,135,22
+block_count,ArrayPrototypePush,136,22
+block_count,ArrayPrototypePush,137,22
block_count,ArrayPrototypePush,138,0
-block_count,ArrayPrototypePush,139,23
+block_count,ArrayPrototypePush,139,22
block_count,ArrayPrototypePush,140,0
block_count,ArrayPrototypePush,141,0
-block_count,ArrayPrototypePush,142,23
+block_count,ArrayPrototypePush,142,22
block_count,ArrayPrototypePush,143,0
-block_count,ArrayPrototypePush,144,23
+block_count,ArrayPrototypePush,144,22
block_count,ArrayPrototypePush,145,0
-block_count,ArrayPrototypePush,146,23
-block_count,ArrayPrototypePush,147,259
-block_count,ArrayPrototypePush,148,235
-block_count,ArrayPrototypePush,149,23
-block_count,ArrayPrototypePush,150,23
+block_count,ArrayPrototypePush,146,22
+block_count,ArrayPrototypePush,147,255
+block_count,ArrayPrototypePush,148,233
+block_count,ArrayPrototypePush,149,22
+block_count,ArrayPrototypePush,150,22
block_count,ArrayPrototypePush,151,0
-block_count,ArrayPrototypePush,152,22
-block_count,ArrayPrototypePush,153,23
+block_count,ArrayPrototypePush,152,21
+block_count,ArrayPrototypePush,153,22
block_count,ArrayPrototypePush,154,1
-block_count,ArrayPrototypePush,155,277
-block_count,ArrayPrototypePush,156,275
+block_count,ArrayPrototypePush,155,276
+block_count,ArrayPrototypePush,156,274
block_count,ArrayPrototypePush,157,1
block_count,ArrayPrototypePush,158,21
-block_count,ArrayPrototypePush,159,23
+block_count,ArrayPrototypePush,159,22
block_count,ArrayPrototypePush,160,0
block_count,ArrayPrototypePush,161,0
-block_count,ArrayPrototypePush,162,201
-block_count,ArrayPrototypePush,163,201
-block_count,ArrayPrototypePush,164,228
-block_count,ArrayPrototypePush,165,228
+block_count,ArrayPrototypePush,162,200
+block_count,ArrayPrototypePush,163,200
+block_count,ArrayPrototypePush,164,227
+block_count,ArrayPrototypePush,165,227
block_count,ArrayPrototypePush,166,26
-block_count,ArrayPrototypePush,167,201
+block_count,ArrayPrototypePush,167,200
block_count,ArrayPrototypePush,168,0
block_count,ArrayPrototypePush,169,0
-block_count,ArrayPrototypePush,170,201
+block_count,ArrayPrototypePush,170,200
block_count,ArrayPrototypePush,171,0
block_count,ArrayPrototypePush,172,0
block_count,ArrayPrototypePush,173,0
@@ -21183,7 +21163,7 @@
block_count,ArrayPrototypePush,184,0
block_count,ArrayPrototypePush,185,0
block_count,CloneFastJSArray,0,192
-block_count,CloneFastJSArray,1,169
+block_count,CloneFastJSArray,1,170
block_count,CloneFastJSArray,2,18
block_count,CloneFastJSArray,3,8
block_count,CloneFastJSArray,4,8
@@ -21472,8 +21452,8 @@
block_count,ExtractFastJSArray,29,0
block_count,ExtractFastJSArray,30,0
block_count,ExtractFastJSArray,31,0
-block_count,ExtractFastJSArray,32,7
-block_count,ExtractFastJSArray,33,7
+block_count,ExtractFastJSArray,32,9
+block_count,ExtractFastJSArray,33,9
block_count,ExtractFastJSArray,34,0
block_count,ExtractFastJSArray,35,0
block_count,ExtractFastJSArray,36,0
@@ -21965,13 +21945,13 @@
block_count,ArrayPrototypeValues,12,0
block_count,ArrayPrototypeValues,13,19
block_count,ArrayPrototypeValues,14,19
-block_count,ArrayIteratorPrototypeNext,0,154
+block_count,ArrayIteratorPrototypeNext,0,155
block_count,ArrayIteratorPrototypeNext,1,0
-block_count,ArrayIteratorPrototypeNext,2,154
-block_count,ArrayIteratorPrototypeNext,3,154
-block_count,ArrayIteratorPrototypeNext,4,154
+block_count,ArrayIteratorPrototypeNext,2,155
+block_count,ArrayIteratorPrototypeNext,3,155
+block_count,ArrayIteratorPrototypeNext,4,155
block_count,ArrayIteratorPrototypeNext,5,0
-block_count,ArrayIteratorPrototypeNext,6,154
+block_count,ArrayIteratorPrototypeNext,6,155
block_count,ArrayIteratorPrototypeNext,7,2
block_count,ArrayIteratorPrototypeNext,8,0
block_count,ArrayIteratorPrototypeNext,9,0
@@ -22226,12 +22206,12 @@
block_count,ArrayIteratorPrototypeNext,258,0
block_count,ArrayIteratorPrototypeNext,259,0
block_count,ArrayIteratorPrototypeNext,260,106
-block_count,ArrayIteratorPrototypeNext,261,154
+block_count,ArrayIteratorPrototypeNext,261,155
block_count,ArrayIteratorPrototypeNext,262,0
-block_count,ArrayIteratorPrototypeNext,263,154
+block_count,ArrayIteratorPrototypeNext,263,155
block_count,ArrayIteratorPrototypeNext,264,0
-block_count,ArrayIteratorPrototypeNext,265,154
-block_count,ArrayIteratorPrototypeNext,266,154
+block_count,ArrayIteratorPrototypeNext,265,155
+block_count,ArrayIteratorPrototypeNext,266,155
block_count,AsyncFunctionEnter,0,1
block_count,AsyncFunctionEnter,1,0
block_count,AsyncFunctionEnter,2,1
@@ -22509,7 +22489,7 @@
block_count,CreateGeneratorObject,26,0
block_count,CreateGeneratorObject,27,0
block_count,CreateGeneratorObject,28,0
-block_count,CreateGeneratorObject,29,1
+block_count,CreateGeneratorObject,29,2
block_count,CreateGeneratorObject,30,1
block_count,CreateGeneratorObject,31,0
block_count,CreateGeneratorObject,32,0
@@ -22527,7 +22507,7 @@
block_count,CreateGeneratorObject,44,0
block_count,CreateGeneratorObject,45,0
block_count,CreateGeneratorObject,46,0
-block_count,CreateGeneratorObject,47,0
+block_count,CreateGeneratorObject,47,1
block_count,CreateGeneratorObject,48,0
block_count,CreateGeneratorObject,49,0
block_count,CreateGeneratorObject,50,0
@@ -22614,15 +22594,15 @@
block_count,SuspendGeneratorBaseline,9,0
block_count,SuspendGeneratorBaseline,10,1
block_count,SuspendGeneratorBaseline,11,1
-block_count,SuspendGeneratorBaseline,12,16
-block_count,SuspendGeneratorBaseline,13,15
+block_count,SuspendGeneratorBaseline,12,17
+block_count,SuspendGeneratorBaseline,13,16
block_count,SuspendGeneratorBaseline,14,1
block_count,ResumeGeneratorBaseline,0,1
block_count,ResumeGeneratorBaseline,1,0
block_count,ResumeGeneratorBaseline,2,1
block_count,ResumeGeneratorBaseline,3,1
-block_count,ResumeGeneratorBaseline,4,16
-block_count,ResumeGeneratorBaseline,5,15
+block_count,ResumeGeneratorBaseline,4,17
+block_count,ResumeGeneratorBaseline,5,16
block_count,ResumeGeneratorBaseline,6,1
block_count,GlobalIsFinite,0,0
block_count,GlobalIsFinite,1,0
@@ -22671,13 +22651,13 @@
block_count,LoadIC,22,26
block_count,LoadIC,23,0
block_count,LoadIC,24,26
-block_count,LoadIC,25,21
-block_count,LoadIC,26,20
+block_count,LoadIC,25,22
+block_count,LoadIC,26,22
block_count,LoadIC,27,0
-block_count,LoadIC,28,5
-block_count,LoadIC,29,5
-block_count,LoadIC,30,5
-block_count,LoadIC,31,5
+block_count,LoadIC,28,4
+block_count,LoadIC,29,4
+block_count,LoadIC,30,4
+block_count,LoadIC,31,4
block_count,LoadIC,32,0
block_count,LoadIC,33,0
block_count,LoadIC,34,301
@@ -22936,13 +22916,13 @@
block_count,LoadIC_Megamorphic,4,10000
block_count,LoadIC_Megamorphic,5,0
block_count,LoadIC_Megamorphic,6,10000
-block_count,LoadIC_Megamorphic,7,8415
-block_count,LoadIC_Megamorphic,8,8380
-block_count,LoadIC_Megamorphic,9,35
-block_count,LoadIC_Megamorphic,10,1584
-block_count,LoadIC_Megamorphic,11,1619
-block_count,LoadIC_Megamorphic,12,1608
-block_count,LoadIC_Megamorphic,13,1607
+block_count,LoadIC_Megamorphic,7,8438
+block_count,LoadIC_Megamorphic,8,8272
+block_count,LoadIC_Megamorphic,9,165
+block_count,LoadIC_Megamorphic,10,1561
+block_count,LoadIC_Megamorphic,11,1727
+block_count,LoadIC_Megamorphic,12,1716
+block_count,LoadIC_Megamorphic,13,1715
block_count,LoadIC_Megamorphic,14,1
block_count,LoadIC_Megamorphic,15,10
block_count,LoadIC_Megamorphic,16,9987
@@ -23037,13 +23017,13 @@
block_count,LoadIC_Megamorphic,105,0
block_count,LoadIC_Megamorphic,106,0
block_count,LoadIC_Megamorphic,107,0
-block_count,LoadIC_Megamorphic,108,6359
+block_count,LoadIC_Megamorphic,108,6358
block_count,LoadIC_Megamorphic,109,9973
-block_count,LoadIC_Megamorphic,110,4304
+block_count,LoadIC_Megamorphic,110,4305
block_count,LoadIC_Megamorphic,111,2260
block_count,LoadIC_Megamorphic,112,1487
block_count,LoadIC_Megamorphic,113,1480
-block_count,LoadIC_Megamorphic,114,685
+block_count,LoadIC_Megamorphic,114,686
block_count,LoadIC_Megamorphic,115,9
block_count,LoadIC_Megamorphic,116,9
block_count,LoadIC_Megamorphic,117,9
@@ -23133,18 +23113,18 @@
block_count,LoadIC_Megamorphic,201,7
block_count,LoadIC_Megamorphic,202,773
block_count,LoadIC_Megamorphic,203,2044
-block_count,LoadIC_Megamorphic,204,5669
-block_count,LoadIC_Megamorphic,205,5669
+block_count,LoadIC_Megamorphic,204,5668
+block_count,LoadIC_Megamorphic,205,5668
block_count,LoadIC_Megamorphic,206,301
-block_count,LoadIC_Megamorphic,207,5367
-block_count,LoadIC_Megamorphic,208,5669
-block_count,LoadIC_Megamorphic,209,5646
-block_count,LoadIC_Megamorphic,210,22
-block_count,LoadIC_Megamorphic,211,22
-block_count,LoadIC_Megamorphic,212,22
+block_count,LoadIC_Megamorphic,207,5366
+block_count,LoadIC_Megamorphic,208,5668
+block_count,LoadIC_Megamorphic,209,5645
+block_count,LoadIC_Megamorphic,210,23
+block_count,LoadIC_Megamorphic,211,23
+block_count,LoadIC_Megamorphic,212,23
block_count,LoadIC_Megamorphic,213,0
-block_count,LoadIC_Megamorphic,214,22
-block_count,LoadIC_Megamorphic,215,22
+block_count,LoadIC_Megamorphic,214,23
+block_count,LoadIC_Megamorphic,215,23
block_count,LoadIC_Megamorphic,216,0
block_count,LoadIC_Megamorphic,217,0
block_count,LoadIC_Megamorphic,218,0
@@ -23463,14 +23443,14 @@
block_count,LoadICTrampoline,1,274
block_count,LoadICTrampoline,2,0
block_count,LoadICTrampoline,3,274
-block_count,LoadICBaseline,0,1974
-block_count,LoadICBaseline,1,1973
+block_count,LoadICBaseline,0,1937
+block_count,LoadICBaseline,1,1936
block_count,LoadICBaseline,2,0
-block_count,LoadICBaseline,3,1974
-block_count,LoadICBaseline,4,480
+block_count,LoadICBaseline,3,1937
+block_count,LoadICBaseline,4,477
block_count,LoadICBaseline,5,0
-block_count,LoadICBaseline,6,480
-block_count,LoadICBaseline,7,129
+block_count,LoadICBaseline,6,477
+block_count,LoadICBaseline,7,128
block_count,LoadICBaseline,8,1
block_count,LoadICBaseline,9,1
block_count,LoadICBaseline,10,0
@@ -23488,31 +23468,31 @@
block_count,LoadICBaseline,22,127
block_count,LoadICBaseline,23,0
block_count,LoadICBaseline,24,127
-block_count,LoadICBaseline,25,109
-block_count,LoadICBaseline,26,108
-block_count,LoadICBaseline,27,0
+block_count,LoadICBaseline,25,108
+block_count,LoadICBaseline,26,106
+block_count,LoadICBaseline,27,1
block_count,LoadICBaseline,28,18
-block_count,LoadICBaseline,29,18
-block_count,LoadICBaseline,30,17
-block_count,LoadICBaseline,31,17
+block_count,LoadICBaseline,29,20
+block_count,LoadICBaseline,30,19
+block_count,LoadICBaseline,31,19
block_count,LoadICBaseline,32,0
block_count,LoadICBaseline,33,1
-block_count,LoadICBaseline,34,350
-block_count,LoadICBaseline,35,629
-block_count,LoadICBaseline,36,279
-block_count,LoadICBaseline,37,278
+block_count,LoadICBaseline,34,348
+block_count,LoadICBaseline,35,621
+block_count,LoadICBaseline,36,273
+block_count,LoadICBaseline,37,273
block_count,LoadICBaseline,38,0
-block_count,LoadICBaseline,39,350
-block_count,LoadICBaseline,40,1493
-block_count,LoadICBaseline,41,1970
-block_count,LoadICBaseline,42,640
-block_count,LoadICBaseline,43,636
-block_count,LoadICBaseline,44,604
-block_count,LoadICBaseline,45,603
-block_count,LoadICBaseline,46,603
+block_count,LoadICBaseline,39,348
+block_count,LoadICBaseline,40,1459
+block_count,LoadICBaseline,41,1933
+block_count,LoadICBaseline,42,609
+block_count,LoadICBaseline,43,604
+block_count,LoadICBaseline,44,573
+block_count,LoadICBaseline,45,573
+block_count,LoadICBaseline,46,573
block_count,LoadICBaseline,47,0
block_count,LoadICBaseline,48,0
-block_count,LoadICBaseline,49,603
+block_count,LoadICBaseline,49,573
block_count,LoadICBaseline,50,51
block_count,LoadICBaseline,51,10
block_count,LoadICBaseline,52,10
@@ -23583,25 +23563,25 @@
block_count,LoadICBaseline,117,0
block_count,LoadICBaseline,118,0
block_count,LoadICBaseline,119,41
-block_count,LoadICBaseline,120,552
-block_count,LoadICBaseline,121,603
-block_count,LoadICBaseline,122,603
-block_count,LoadICBaseline,123,573
-block_count,LoadICBaseline,124,573
+block_count,LoadICBaseline,120,522
+block_count,LoadICBaseline,121,573
+block_count,LoadICBaseline,122,573
+block_count,LoadICBaseline,123,543
+block_count,LoadICBaseline,124,543
block_count,LoadICBaseline,125,0
-block_count,LoadICBaseline,126,30
-block_count,LoadICBaseline,127,603
+block_count,LoadICBaseline,126,29
+block_count,LoadICBaseline,127,573
block_count,LoadICBaseline,128,0
-block_count,LoadICBaseline,129,32
+block_count,LoadICBaseline,129,31
block_count,LoadICBaseline,130,4
block_count,LoadICBaseline,131,4
block_count,LoadICBaseline,132,0
-block_count,LoadICBaseline,133,1329
-block_count,LoadICBaseline,134,1932
-block_count,LoadICBaseline,135,630
-block_count,LoadICBaseline,136,188
-block_count,LoadICBaseline,137,158
-block_count,LoadICBaseline,138,132
+block_count,LoadICBaseline,133,1323
+block_count,LoadICBaseline,134,1897
+block_count,LoadICBaseline,135,600
+block_count,LoadICBaseline,136,163
+block_count,LoadICBaseline,137,133
+block_count,LoadICBaseline,138,107
block_count,LoadICBaseline,139,1
block_count,LoadICBaseline,140,0
block_count,LoadICBaseline,141,0
@@ -23633,23 +23613,23 @@
block_count,LoadICBaseline,167,0
block_count,LoadICBaseline,168,0
block_count,LoadICBaseline,169,0
-block_count,LoadICBaseline,170,131
-block_count,LoadICBaseline,171,25
-block_count,LoadICBaseline,172,25
+block_count,LoadICBaseline,170,106
+block_count,LoadICBaseline,171,26
+block_count,LoadICBaseline,172,26
block_count,LoadICBaseline,173,0
-block_count,LoadICBaseline,174,25
-block_count,LoadICBaseline,175,25
+block_count,LoadICBaseline,174,26
+block_count,LoadICBaseline,175,26
block_count,LoadICBaseline,176,28
block_count,LoadICBaseline,177,28
block_count,LoadICBaseline,178,2
-block_count,LoadICBaseline,179,25
+block_count,LoadICBaseline,179,26
block_count,LoadICBaseline,180,0
block_count,LoadICBaseline,181,0
block_count,LoadICBaseline,182,0
block_count,LoadICBaseline,183,0
-block_count,LoadICBaseline,184,25
+block_count,LoadICBaseline,184,26
block_count,LoadICBaseline,185,0
-block_count,LoadICBaseline,186,25
+block_count,LoadICBaseline,186,26
block_count,LoadICBaseline,187,0
block_count,LoadICBaseline,188,0
block_count,LoadICBaseline,189,0
@@ -23689,15 +23669,15 @@
block_count,LoadICBaseline,223,0
block_count,LoadICBaseline,224,0
block_count,LoadICBaseline,225,0
-block_count,LoadICBaseline,226,25
-block_count,LoadICBaseline,227,30
-block_count,LoadICBaseline,228,441
-block_count,LoadICBaseline,229,1302
-block_count,LoadICBaseline,230,1302
-block_count,LoadICBaseline,231,372
-block_count,LoadICBaseline,232,930
-block_count,LoadICBaseline,233,1302
-block_count,LoadICBaseline,234,1253
+block_count,LoadICBaseline,226,26
+block_count,LoadICBaseline,227,29
+block_count,LoadICBaseline,228,436
+block_count,LoadICBaseline,229,1297
+block_count,LoadICBaseline,230,1297
+block_count,LoadICBaseline,231,368
+block_count,LoadICBaseline,232,928
+block_count,LoadICBaseline,233,1297
+block_count,LoadICBaseline,234,1247
block_count,LoadICBaseline,235,49
block_count,LoadICBaseline,236,49
block_count,LoadICBaseline,237,49
@@ -23746,11 +23726,11 @@
block_count,LoadICBaseline,280,0
block_count,LoadICBaseline,281,0
block_count,LoadICBaseline,282,3
-block_count,LoadICTrampoline_Megamorphic,0,5677
-block_count,LoadICTrampoline_Megamorphic,1,5677
+block_count,LoadICTrampoline_Megamorphic,0,5651
+block_count,LoadICTrampoline_Megamorphic,1,5651
block_count,LoadICTrampoline_Megamorphic,2,0
-block_count,LoadICTrampoline_Megamorphic,3,5677
-block_count,LoadSuperIC,0,2
+block_count,LoadICTrampoline_Megamorphic,3,5651
+block_count,LoadSuperIC,0,1
block_count,LoadSuperIC,1,1
block_count,LoadSuperIC,2,1
block_count,LoadSuperIC,3,0
@@ -24380,14 +24360,14 @@
block_count,KeyedLoadIC,47,0
block_count,KeyedLoadIC,48,0
block_count,KeyedLoadIC,49,20
-block_count,KeyedLoadIC,50,13
+block_count,KeyedLoadIC,50,14
block_count,KeyedLoadIC,51,27
block_count,KeyedLoadIC,52,13
block_count,KeyedLoadIC,53,13
block_count,KeyedLoadIC,54,0
-block_count,KeyedLoadIC,55,13
-block_count,KeyedLoadIC,56,309
-block_count,KeyedLoadIC,57,323
+block_count,KeyedLoadIC,55,14
+block_count,KeyedLoadIC,56,310
+block_count,KeyedLoadIC,57,324
block_count,KeyedLoadIC,58,2
block_count,KeyedLoadIC,59,2
block_count,KeyedLoadIC,60,0
@@ -24479,10 +24459,10 @@
block_count,KeyedLoadIC,146,0
block_count,KeyedLoadIC,147,0
block_count,KeyedLoadIC,148,0
-block_count,KeyedLoadIC,149,321
-block_count,KeyedLoadIC,150,321
-block_count,KeyedLoadIC,151,4
-block_count,KeyedLoadIC,152,3
+block_count,KeyedLoadIC,149,322
+block_count,KeyedLoadIC,150,322
+block_count,KeyedLoadIC,151,2
+block_count,KeyedLoadIC,152,2
block_count,KeyedLoadIC,153,0
block_count,KeyedLoadIC,154,0
block_count,KeyedLoadIC,155,0
@@ -24661,7 +24641,7 @@
block_count,KeyedLoadIC,328,0
block_count,KeyedLoadIC,329,0
block_count,KeyedLoadIC,330,0
-block_count,KeyedLoadIC,331,3
+block_count,KeyedLoadIC,331,2
block_count,KeyedLoadIC,332,0
block_count,KeyedLoadIC,333,0
block_count,KeyedLoadIC,334,0
@@ -24669,19 +24649,19 @@
block_count,KeyedLoadIC,336,0
block_count,KeyedLoadIC,337,0
block_count,KeyedLoadIC,338,0
-block_count,KeyedLoadIC,339,3
-block_count,KeyedLoadIC,340,3
-block_count,KeyedLoadIC,341,3
-block_count,KeyedLoadIC,342,5
-block_count,KeyedLoadIC,343,2
-block_count,KeyedLoadIC,344,2
+block_count,KeyedLoadIC,339,2
+block_count,KeyedLoadIC,340,2
+block_count,KeyedLoadIC,341,2
+block_count,KeyedLoadIC,342,3
+block_count,KeyedLoadIC,343,0
+block_count,KeyedLoadIC,344,0
block_count,KeyedLoadIC,345,0
block_count,KeyedLoadIC,346,0
block_count,KeyedLoadIC,347,0
-block_count,KeyedLoadIC,348,2
-block_count,KeyedLoadIC,349,2
+block_count,KeyedLoadIC,348,0
+block_count,KeyedLoadIC,349,0
block_count,KeyedLoadIC,350,0
-block_count,KeyedLoadIC,351,2
+block_count,KeyedLoadIC,351,0
block_count,KeyedLoadIC,352,0
block_count,KeyedLoadIC,353,0
block_count,KeyedLoadIC,354,0
@@ -24694,16 +24674,16 @@
block_count,KeyedLoadIC,361,0
block_count,KeyedLoadIC,362,0
block_count,KeyedLoadIC,363,0
-block_count,KeyedLoadIC,364,3
-block_count,KeyedLoadIC,365,3
+block_count,KeyedLoadIC,364,2
+block_count,KeyedLoadIC,365,2
block_count,KeyedLoadIC,366,0
-block_count,KeyedLoadIC,367,3
-block_count,KeyedLoadIC,368,3
+block_count,KeyedLoadIC,367,1
+block_count,KeyedLoadIC,368,2
block_count,KeyedLoadIC,369,0
block_count,KeyedLoadIC,370,0
block_count,KeyedLoadIC,371,0
block_count,KeyedLoadIC,372,0
-block_count,KeyedLoadIC,373,3
+block_count,KeyedLoadIC,373,2
block_count,KeyedLoadIC,374,0
block_count,KeyedLoadIC,375,0
block_count,KeyedLoadIC,376,0
@@ -24712,8 +24692,8 @@
block_count,KeyedLoadIC,379,0
block_count,KeyedLoadIC,380,0
block_count,KeyedLoadIC,381,0
-block_count,KeyedLoadIC,382,317
-block_count,KeyedLoadIC,383,318
+block_count,KeyedLoadIC,382,319
+block_count,KeyedLoadIC,383,320
block_count,KeyedLoadIC,384,0
block_count,KeyedLoadIC,385,0
block_count,KeyedLoadIC,386,0
@@ -24726,43 +24706,43 @@
block_count,KeyedLoadIC,393,0
block_count,KeyedLoadIC,394,0
block_count,KeyedLoadIC,395,0
-block_count,KeyedLoadIC,396,317
-block_count,KeyedLoadIC,397,317
-block_count,KeyedLoadIC,398,318
-block_count,KeyedLoadIC,399,184
+block_count,KeyedLoadIC,396,319
+block_count,KeyedLoadIC,397,319
+block_count,KeyedLoadIC,398,320
+block_count,KeyedLoadIC,399,185
block_count,KeyedLoadIC,400,5
-block_count,KeyedLoadIC,401,179
-block_count,KeyedLoadIC,402,184
+block_count,KeyedLoadIC,401,180
+block_count,KeyedLoadIC,402,185
block_count,KeyedLoadIC,403,0
-block_count,KeyedLoadIC,404,184
+block_count,KeyedLoadIC,404,185
block_count,KeyedLoadIC,405,0
-block_count,KeyedLoadIC,406,12
+block_count,KeyedLoadIC,406,11
block_count,KeyedLoadIC,407,102
block_count,KeyedLoadIC,408,0
block_count,KeyedLoadIC,409,0
block_count,KeyedLoadIC,410,0
block_count,KeyedLoadIC,411,0
-block_count,KeyedLoadIC,412,115
-block_count,KeyedLoadIC,413,6
-block_count,KeyedLoadIC,414,38
+block_count,KeyedLoadIC,412,114
+block_count,KeyedLoadIC,413,7
+block_count,KeyedLoadIC,414,39
block_count,KeyedLoadIC,415,0
block_count,KeyedLoadIC,416,0
block_count,KeyedLoadIC,417,0
-block_count,KeyedLoadIC,418,44
+block_count,KeyedLoadIC,418,46
block_count,KeyedLoadIC,419,42
-block_count,KeyedLoadIC,420,2
-block_count,KeyedLoadIC,421,9
+block_count,KeyedLoadIC,420,4
+block_count,KeyedLoadIC,421,10
block_count,KeyedLoadIC,422,0
-block_count,KeyedLoadIC,423,9
-block_count,KeyedLoadIC,424,9
-block_count,KeyedLoadIC,425,14
-block_count,KeyedLoadIC,426,14
+block_count,KeyedLoadIC,423,10
+block_count,KeyedLoadIC,424,10
+block_count,KeyedLoadIC,425,13
+block_count,KeyedLoadIC,426,13
block_count,KeyedLoadIC,427,0
-block_count,KeyedLoadIC,428,14
-block_count,KeyedLoadIC,429,14
+block_count,KeyedLoadIC,428,13
+block_count,KeyedLoadIC,429,13
block_count,KeyedLoadIC,430,0
-block_count,KeyedLoadIC,431,133
-block_count,KeyedLoadIC,432,133
+block_count,KeyedLoadIC,431,134
+block_count,KeyedLoadIC,432,134
block_count,KeyedLoadIC,433,0
block_count,KeyedLoadIC,434,0
block_count,KeyedLoadIC,435,0
@@ -24785,19 +24765,19 @@
block_count,KeyedLoadIC,452,0
block_count,KeyedLoadIC,453,0
block_count,KeyedLoadIC,454,0
-block_count,KeyedLoadIC,455,133
-block_count,KeyedLoadIC,456,133
-block_count,KeyedLoadIC,457,133
+block_count,KeyedLoadIC,455,134
+block_count,KeyedLoadIC,456,134
+block_count,KeyedLoadIC,457,134
block_count,KeyedLoadIC,458,0
-block_count,KeyedLoadIC,459,133
+block_count,KeyedLoadIC,459,134
block_count,KeyedLoadIC,460,0
block_count,KeyedLoadIC,461,15
block_count,KeyedLoadIC,462,0
block_count,KeyedLoadIC,463,0
-block_count,KeyedLoadIC,464,3
+block_count,KeyedLoadIC,464,4
block_count,KeyedLoadIC,465,0
-block_count,KeyedLoadIC,466,0
-block_count,KeyedLoadIC,467,92
+block_count,KeyedLoadIC,466,1
+block_count,KeyedLoadIC,467,93
block_count,KeyedLoadIC,468,19
block_count,KeyedLoadIC,469,0
block_count,KeyedLoadIC,470,0
@@ -24836,13 +24816,13 @@
block_count,KeyedLoadIC,503,0
block_count,KeyedLoadIC,504,0
block_count,KeyedLoadIC,505,0
-block_count,KeyedLoadIC,506,0
-block_count,KeyedLoadIC,507,0
+block_count,KeyedLoadIC,506,1
+block_count,KeyedLoadIC,507,1
block_count,KeyedLoadIC,508,0
block_count,KeyedLoadIC,509,0
block_count,KeyedLoadIC,510,0
block_count,KeyedLoadIC,511,0
-block_count,KeyedLoadIC,512,92
+block_count,KeyedLoadIC,512,93
block_count,KeyedLoadIC,513,92
block_count,KeyedLoadIC,514,0
block_count,KeyedLoadIC,515,0
@@ -24884,10 +24864,10 @@
block_count,KeyedLoadIC,551,0
block_count,KeyedLoadIC,552,0
block_count,KeyedLoadIC,553,0
-block_count,KeyedLoadIC,554,2
+block_count,KeyedLoadIC,554,4
block_count,KeyedLoadIC,555,0
-block_count,KeyedLoadIC,556,2
-block_count,KeyedLoadIC,557,2
+block_count,KeyedLoadIC,556,4
+block_count,KeyedLoadIC,557,4
block_count,KeyedLoadIC,558,0
block_count,KeyedLoadIC,559,0
block_count,KeyedLoadIC,560,0
@@ -25526,18 +25506,18 @@
block_count,EnumeratedKeyedLoadIC,608,2
block_count,EnumeratedKeyedLoadIC,609,0
block_count,EnumeratedKeyedLoadIC,610,0
-block_count,KeyedLoadIC_Megamorphic,0,2357
-block_count,KeyedLoadIC_Megamorphic,1,2357
-block_count,KeyedLoadIC_Megamorphic,2,2357
-block_count,KeyedLoadIC_Megamorphic,3,2039
-block_count,KeyedLoadIC_Megamorphic,4,2035
+block_count,KeyedLoadIC_Megamorphic,0,2358
+block_count,KeyedLoadIC_Megamorphic,1,2358
+block_count,KeyedLoadIC_Megamorphic,2,2358
+block_count,KeyedLoadIC_Megamorphic,3,2040
+block_count,KeyedLoadIC_Megamorphic,4,2036
block_count,KeyedLoadIC_Megamorphic,5,3
block_count,KeyedLoadIC_Megamorphic,6,0
block_count,KeyedLoadIC_Megamorphic,7,3
block_count,KeyedLoadIC_Megamorphic,8,0
block_count,KeyedLoadIC_Megamorphic,9,3
-block_count,KeyedLoadIC_Megamorphic,10,2035
-block_count,KeyedLoadIC_Megamorphic,11,2034
+block_count,KeyedLoadIC_Megamorphic,10,2036
+block_count,KeyedLoadIC_Megamorphic,11,2035
block_count,KeyedLoadIC_Megamorphic,12,47
block_count,KeyedLoadIC_Megamorphic,13,42
block_count,KeyedLoadIC_Megamorphic,14,5
@@ -25545,12 +25525,12 @@
block_count,KeyedLoadIC_Megamorphic,16,1987
block_count,KeyedLoadIC_Megamorphic,17,1891
block_count,KeyedLoadIC_Megamorphic,18,1891
-block_count,KeyedLoadIC_Megamorphic,19,1756
+block_count,KeyedLoadIC_Megamorphic,19,1757
block_count,KeyedLoadIC_Megamorphic,20,0
block_count,KeyedLoadIC_Megamorphic,21,0
block_count,KeyedLoadIC_Megamorphic,22,0
-block_count,KeyedLoadIC_Megamorphic,23,1756
-block_count,KeyedLoadIC_Megamorphic,24,1659
+block_count,KeyedLoadIC_Megamorphic,23,1757
+block_count,KeyedLoadIC_Megamorphic,24,1660
block_count,KeyedLoadIC_Megamorphic,25,97
block_count,KeyedLoadIC_Megamorphic,26,134
block_count,KeyedLoadIC_Megamorphic,27,0
@@ -25591,9 +25571,9 @@
block_count,KeyedLoadIC_Megamorphic,62,0
block_count,KeyedLoadIC_Megamorphic,63,0
block_count,KeyedLoadIC_Megamorphic,64,0
-block_count,KeyedLoadIC_Megamorphic,65,138
-block_count,KeyedLoadIC_Megamorphic,66,138
-block_count,KeyedLoadIC_Megamorphic,67,51
+block_count,KeyedLoadIC_Megamorphic,65,139
+block_count,KeyedLoadIC_Megamorphic,66,139
+block_count,KeyedLoadIC_Megamorphic,67,52
block_count,KeyedLoadIC_Megamorphic,68,51
block_count,KeyedLoadIC_Megamorphic,69,6
block_count,KeyedLoadIC_Megamorphic,70,6
@@ -25652,11 +25632,11 @@
block_count,KeyedLoadIC_Megamorphic,123,0
block_count,KeyedLoadIC_Megamorphic,124,51
block_count,KeyedLoadIC_Megamorphic,125,0
-block_count,KeyedLoadIC_Megamorphic,126,86
-block_count,KeyedLoadIC_Megamorphic,127,86
+block_count,KeyedLoadIC_Megamorphic,126,87
+block_count,KeyedLoadIC_Megamorphic,127,87
block_count,KeyedLoadIC_Megamorphic,128,0
-block_count,KeyedLoadIC_Megamorphic,129,86
-block_count,KeyedLoadIC_Megamorphic,130,86
+block_count,KeyedLoadIC_Megamorphic,129,87
+block_count,KeyedLoadIC_Megamorphic,130,87
block_count,KeyedLoadIC_Megamorphic,131,166
block_count,KeyedLoadIC_Megamorphic,132,110
block_count,KeyedLoadIC_Megamorphic,133,79
@@ -25717,8 +25697,8 @@
block_count,KeyedLoadIC_Megamorphic,188,0
block_count,KeyedLoadIC_Megamorphic,189,56
block_count,KeyedLoadIC_Megamorphic,190,56
-block_count,KeyedLoadIC_Megamorphic,191,139
-block_count,KeyedLoadIC_Megamorphic,192,139
+block_count,KeyedLoadIC_Megamorphic,191,140
+block_count,KeyedLoadIC_Megamorphic,192,140
block_count,KeyedLoadIC_Megamorphic,193,83
block_count,KeyedLoadIC_Megamorphic,194,83
block_count,KeyedLoadIC_Megamorphic,195,83
@@ -25878,8 +25858,8 @@
block_count,KeyedLoadIC_Megamorphic,349,0
block_count,KeyedLoadIC_Megamorphic,350,0
block_count,KeyedLoadIC_Megamorphic,351,1
-block_count,KeyedLoadIC_Megamorphic,352,1800
-block_count,KeyedLoadIC_Megamorphic,353,1800
+block_count,KeyedLoadIC_Megamorphic,352,1801
+block_count,KeyedLoadIC_Megamorphic,353,1801
block_count,KeyedLoadIC_Megamorphic,354,1144
block_count,KeyedLoadIC_Megamorphic,355,1002
block_count,KeyedLoadIC_Megamorphic,356,39
@@ -25912,16 +25892,16 @@
block_count,KeyedLoadIC_Megamorphic,383,962
block_count,KeyedLoadIC_Megamorphic,384,487
block_count,KeyedLoadIC_Megamorphic,385,475
-block_count,KeyedLoadIC_Megamorphic,386,1170
+block_count,KeyedLoadIC_Megamorphic,386,1171
block_count,KeyedLoadIC_Megamorphic,387,1025
-block_count,KeyedLoadIC_Megamorphic,388,886
+block_count,KeyedLoadIC_Megamorphic,388,887
block_count,KeyedLoadIC_Megamorphic,389,695
block_count,KeyedLoadIC_Megamorphic,390,191
block_count,KeyedLoadIC_Megamorphic,391,138
block_count,KeyedLoadIC_Megamorphic,392,145
block_count,KeyedLoadIC_Megamorphic,393,678
block_count,KeyedLoadIC_Megamorphic,394,165
-block_count,KeyedLoadIC_Megamorphic,395,512
+block_count,KeyedLoadIC_Megamorphic,395,513
block_count,KeyedLoadIC_Megamorphic,396,499
block_count,KeyedLoadIC_Megamorphic,397,13
block_count,KeyedLoadIC_Megamorphic,398,336
@@ -25931,7 +25911,7 @@
block_count,KeyedLoadIC_Megamorphic,402,0
block_count,KeyedLoadIC_Megamorphic,403,58
block_count,KeyedLoadIC_Megamorphic,404,274
-block_count,KeyedLoadIC_Megamorphic,405,46
+block_count,KeyedLoadIC_Megamorphic,405,47
block_count,KeyedLoadIC_Megamorphic,406,227
block_count,KeyedLoadIC_Megamorphic,407,47
block_count,KeyedLoadIC_Megamorphic,408,0
@@ -25944,13 +25924,13 @@
block_count,KeyedLoadIC_Megamorphic,415,807
block_count,KeyedLoadIC_Megamorphic,416,0
block_count,KeyedLoadIC_Megamorphic,417,807
-block_count,KeyedLoadIC_Megamorphic,418,676
-block_count,KeyedLoadIC_Megamorphic,419,674
-block_count,KeyedLoadIC_Megamorphic,420,2
-block_count,KeyedLoadIC_Megamorphic,421,130
-block_count,KeyedLoadIC_Megamorphic,422,133
-block_count,KeyedLoadIC_Megamorphic,423,112
-block_count,KeyedLoadIC_Megamorphic,424,112
+block_count,KeyedLoadIC_Megamorphic,418,680
+block_count,KeyedLoadIC_Megamorphic,419,670
+block_count,KeyedLoadIC_Megamorphic,420,10
+block_count,KeyedLoadIC_Megamorphic,421,126
+block_count,KeyedLoadIC_Megamorphic,422,137
+block_count,KeyedLoadIC_Megamorphic,423,116
+block_count,KeyedLoadIC_Megamorphic,424,116
block_count,KeyedLoadIC_Megamorphic,425,0
block_count,KeyedLoadIC_Megamorphic,426,20
block_count,KeyedLoadIC_Megamorphic,427,786
@@ -26203,8 +26183,8 @@
block_count,KeyedLoadIC_Megamorphic,674,0
block_count,KeyedLoadIC_Megamorphic,675,656
block_count,KeyedLoadIC_Megamorphic,676,656
-block_count,KeyedLoadIC_Megamorphic,677,1079
-block_count,KeyedLoadIC_Megamorphic,678,1004
+block_count,KeyedLoadIC_Megamorphic,677,1080
+block_count,KeyedLoadIC_Megamorphic,678,1005
block_count,KeyedLoadIC_Megamorphic,679,423
block_count,KeyedLoadIC_Megamorphic,680,581
block_count,KeyedLoadIC_Megamorphic,681,74
@@ -26620,12 +26600,12 @@
block_count,KeyedLoadICTrampoline_Megamorphic,1,1036
block_count,KeyedLoadICTrampoline_Megamorphic,2,0
block_count,KeyedLoadICTrampoline_Megamorphic,3,1036
-block_count,StoreGlobalIC,0,614
-block_count,StoreGlobalIC,1,613
-block_count,StoreGlobalIC,2,613
-block_count,StoreGlobalIC,3,613
-block_count,StoreGlobalIC,4,613
-block_count,StoreGlobalIC,5,613
+block_count,StoreGlobalIC,0,893
+block_count,StoreGlobalIC,1,893
+block_count,StoreGlobalIC,2,893
+block_count,StoreGlobalIC,3,893
+block_count,StoreGlobalIC,4,893
+block_count,StoreGlobalIC,5,893
block_count,StoreGlobalIC,6,1
block_count,StoreGlobalIC,7,0
block_count,StoreGlobalIC,8,0
@@ -26635,7 +26615,7 @@
block_count,StoreGlobalIC,12,1
block_count,StoreGlobalIC,13,0
block_count,StoreGlobalIC,14,1
-block_count,StoreGlobalIC,15,612
+block_count,StoreGlobalIC,15,891
block_count,StoreGlobalIC,16,0
block_count,StoreGlobalIC,17,0
block_count,StoreGlobalIC,18,0
@@ -27079,17 +27059,17 @@
block_count,StoreGlobalIC,456,0
block_count,StoreGlobalIC,457,0
block_count,StoreGlobalIC,458,0
-block_count,StoreGlobalICTrampoline,0,0
-block_count,StoreGlobalICTrampoline,1,0
+block_count,StoreGlobalICTrampoline,0,280
+block_count,StoreGlobalICTrampoline,1,280
block_count,StoreGlobalICTrampoline,2,0
-block_count,StoreGlobalICTrampoline,3,0
+block_count,StoreGlobalICTrampoline,3,280
block_count,StoreGlobalICBaseline,0,1
-block_count,StoreIC,0,286
-block_count,StoreIC,1,286
+block_count,StoreIC,0,288
+block_count,StoreIC,1,288
block_count,StoreIC,2,0
-block_count,StoreIC,3,286
-block_count,StoreIC,4,286
-block_count,StoreIC,5,279
+block_count,StoreIC,3,288
+block_count,StoreIC,4,288
+block_count,StoreIC,5,281
block_count,StoreIC,6,113
block_count,StoreIC,7,0
block_count,StoreIC,8,113
@@ -27108,14 +27088,14 @@
block_count,StoreIC,21,1
block_count,StoreIC,22,0
block_count,StoreIC,23,0
-block_count,StoreIC,24,74
+block_count,StoreIC,24,75
block_count,StoreIC,25,117
block_count,StoreIC,26,42
block_count,StoreIC,27,42
block_count,StoreIC,28,0
-block_count,StoreIC,29,74
-block_count,StoreIC,30,166
-block_count,StoreIC,31,278
+block_count,StoreIC,29,75
+block_count,StoreIC,30,168
+block_count,StoreIC,31,280
block_count,StoreIC,32,104
block_count,StoreIC,33,5
block_count,StoreIC,34,5
@@ -27157,7 +27137,7 @@
block_count,StoreIC,70,0
block_count,StoreIC,71,0
block_count,StoreIC,72,1
-block_count,StoreIC,73,2
+block_count,StoreIC,73,1
block_count,StoreIC,74,1
block_count,StoreIC,75,1
block_count,StoreIC,76,1
@@ -27246,8 +27226,8 @@
block_count,StoreIC,159,0
block_count,StoreIC,160,0
block_count,StoreIC,161,0
-block_count,StoreIC,162,99
-block_count,StoreIC,163,99
+block_count,StoreIC,162,98
+block_count,StoreIC,163,98
block_count,StoreIC,164,74
block_count,StoreIC,165,74
block_count,StoreIC,166,74
@@ -27260,17 +27240,17 @@
block_count,StoreIC,173,0
block_count,StoreIC,174,0
block_count,StoreIC,175,74
-block_count,StoreIC,176,65
-block_count,StoreIC,177,63
+block_count,StoreIC,176,64
+block_count,StoreIC,177,62
block_count,StoreIC,178,1
block_count,StoreIC,179,1
block_count,StoreIC,180,0
-block_count,StoreIC,181,61
-block_count,StoreIC,182,61
+block_count,StoreIC,181,60
+block_count,StoreIC,182,60
block_count,StoreIC,183,12
block_count,StoreIC,184,0
-block_count,StoreIC,185,12
-block_count,StoreIC,186,49
+block_count,StoreIC,185,11
+block_count,StoreIC,186,48
block_count,StoreIC,187,0
block_count,StoreIC,188,1
block_count,StoreIC,189,1
@@ -27323,7 +27303,7 @@
block_count,StoreIC,236,0
block_count,StoreIC,237,1
block_count,StoreIC,238,7
-block_count,StoreIC,239,8
+block_count,StoreIC,239,7
block_count,StoreIC,240,15
block_count,StoreIC,241,59
block_count,StoreIC,242,57
@@ -27354,7 +27334,7 @@
block_count,StoreIC,267,0
block_count,StoreIC,268,0
block_count,StoreIC,269,0
-block_count,StoreIC,270,174
+block_count,StoreIC,270,176
block_count,StoreIC,271,13
block_count,StoreIC,272,13
block_count,StoreIC,273,13
@@ -27381,9 +27361,9 @@
block_count,StoreIC,294,0
block_count,StoreIC,295,0
block_count,StoreIC,296,0
-block_count,StoreIC,297,160
-block_count,StoreIC,298,141
-block_count,StoreIC,299,141
+block_count,StoreIC,297,162
+block_count,StoreIC,298,143
+block_count,StoreIC,299,143
block_count,StoreIC,300,11
block_count,StoreIC,301,10
block_count,StoreIC,302,10
@@ -27409,30 +27389,30 @@
block_count,StoreIC,322,0
block_count,StoreIC,323,0
block_count,StoreIC,324,0
-block_count,StoreIC,325,70
-block_count,StoreIC,326,70
-block_count,StoreIC,327,70
+block_count,StoreIC,325,69
+block_count,StoreIC,326,69
+block_count,StoreIC,327,69
block_count,StoreIC,328,3
block_count,StoreIC,329,0
block_count,StoreIC,330,3
-block_count,StoreIC,331,66
+block_count,StoreIC,331,65
block_count,StoreIC,332,0
-block_count,StoreIC,333,70
+block_count,StoreIC,333,69
block_count,StoreIC,334,16
block_count,StoreIC,335,53
-block_count,StoreIC,336,70
-block_count,StoreIC,337,70
+block_count,StoreIC,336,69
+block_count,StoreIC,337,69
block_count,StoreIC,338,0
block_count,StoreIC,339,0
block_count,StoreIC,340,0
block_count,StoreIC,341,0
-block_count,StoreIC,342,57
+block_count,StoreIC,342,60
block_count,StoreIC,343,0
-block_count,StoreIC,344,57
+block_count,StoreIC,344,60
block_count,StoreIC,345,8
-block_count,StoreIC,346,49
-block_count,StoreIC,347,57
-block_count,StoreIC,348,57
+block_count,StoreIC,346,52
+block_count,StoreIC,347,60
+block_count,StoreIC,348,60
block_count,StoreIC,349,0
block_count,StoreIC,350,0
block_count,StoreIC,351,0
@@ -27459,24 +27439,24 @@
block_count,StoreIC,372,6
block_count,StoreIC,373,0
block_count,StoreIC,374,1
-block_count,StoreIC_Megamorphic,0,1497
-block_count,StoreIC_Megamorphic,1,1497
+block_count,StoreIC_Megamorphic,0,1506
+block_count,StoreIC_Megamorphic,1,1506
block_count,StoreIC_Megamorphic,2,0
-block_count,StoreIC_Megamorphic,3,1497
-block_count,StoreIC_Megamorphic,4,1497
+block_count,StoreIC_Megamorphic,3,1506
+block_count,StoreIC_Megamorphic,4,1506
block_count,StoreIC_Megamorphic,5,0
-block_count,StoreIC_Megamorphic,6,1497
-block_count,StoreIC_Megamorphic,7,1373
-block_count,StoreIC_Megamorphic,8,1318
-block_count,StoreIC_Megamorphic,9,54
-block_count,StoreIC_Megamorphic,10,124
-block_count,StoreIC_Megamorphic,11,178
-block_count,StoreIC_Megamorphic,12,178
-block_count,StoreIC_Megamorphic,13,176
+block_count,StoreIC_Megamorphic,6,1506
+block_count,StoreIC_Megamorphic,7,1346
+block_count,StoreIC_Megamorphic,8,1330
+block_count,StoreIC_Megamorphic,9,16
+block_count,StoreIC_Megamorphic,10,159
+block_count,StoreIC_Megamorphic,11,176
+block_count,StoreIC_Megamorphic,12,175
+block_count,StoreIC_Megamorphic,13,173
block_count,StoreIC_Megamorphic,14,1
block_count,StoreIC_Megamorphic,15,0
-block_count,StoreIC_Megamorphic,16,1495
-block_count,StoreIC_Megamorphic,17,710
+block_count,StoreIC_Megamorphic,16,1503
+block_count,StoreIC_Megamorphic,17,718
block_count,StoreIC_Megamorphic,18,1
block_count,StoreIC_Megamorphic,19,1
block_count,StoreIC_Megamorphic,20,1
@@ -27606,42 +27586,42 @@
block_count,StoreIC_Megamorphic,144,0
block_count,StoreIC_Megamorphic,145,0
block_count,StoreIC_Megamorphic,146,0
-block_count,StoreIC_Megamorphic,147,708
-block_count,StoreIC_Megamorphic,148,708
-block_count,StoreIC_Megamorphic,149,529
-block_count,StoreIC_Megamorphic,150,529
-block_count,StoreIC_Megamorphic,151,529
-block_count,StoreIC_Megamorphic,152,529
+block_count,StoreIC_Megamorphic,147,716
+block_count,StoreIC_Megamorphic,148,716
+block_count,StoreIC_Megamorphic,149,538
+block_count,StoreIC_Megamorphic,150,538
+block_count,StoreIC_Megamorphic,151,538
+block_count,StoreIC_Megamorphic,152,538
block_count,StoreIC_Megamorphic,153,0
block_count,StoreIC_Megamorphic,154,0
-block_count,StoreIC_Megamorphic,155,529
-block_count,StoreIC_Megamorphic,156,529
+block_count,StoreIC_Megamorphic,155,538
+block_count,StoreIC_Megamorphic,156,538
block_count,StoreIC_Megamorphic,157,0
block_count,StoreIC_Megamorphic,158,0
block_count,StoreIC_Megamorphic,159,0
-block_count,StoreIC_Megamorphic,160,529
-block_count,StoreIC_Megamorphic,161,322
-block_count,StoreIC_Megamorphic,162,322
+block_count,StoreIC_Megamorphic,160,538
+block_count,StoreIC_Megamorphic,161,326
+block_count,StoreIC_Megamorphic,162,326
block_count,StoreIC_Megamorphic,163,0
block_count,StoreIC_Megamorphic,164,0
block_count,StoreIC_Megamorphic,165,0
-block_count,StoreIC_Megamorphic,166,322
-block_count,StoreIC_Megamorphic,167,322
-block_count,StoreIC_Megamorphic,168,83
+block_count,StoreIC_Megamorphic,166,326
+block_count,StoreIC_Megamorphic,167,326
+block_count,StoreIC_Megamorphic,168,82
block_count,StoreIC_Megamorphic,169,0
-block_count,StoreIC_Megamorphic,170,83
-block_count,StoreIC_Megamorphic,171,239
+block_count,StoreIC_Megamorphic,170,82
+block_count,StoreIC_Megamorphic,171,243
block_count,StoreIC_Megamorphic,172,0
block_count,StoreIC_Megamorphic,173,0
block_count,StoreIC_Megamorphic,174,0
block_count,StoreIC_Megamorphic,175,0
block_count,StoreIC_Megamorphic,176,0
block_count,StoreIC_Megamorphic,177,0
-block_count,StoreIC_Megamorphic,178,207
+block_count,StoreIC_Megamorphic,178,211
block_count,StoreIC_Megamorphic,179,0
-block_count,StoreIC_Megamorphic,180,207
-block_count,StoreIC_Megamorphic,181,529
-block_count,StoreIC_Megamorphic,182,31
+block_count,StoreIC_Megamorphic,180,211
+block_count,StoreIC_Megamorphic,181,538
+block_count,StoreIC_Megamorphic,182,30
block_count,StoreIC_Megamorphic,183,0
block_count,StoreIC_Megamorphic,184,0
block_count,StoreIC_Megamorphic,185,0
@@ -27649,30 +27629,30 @@
block_count,StoreIC_Megamorphic,187,0
block_count,StoreIC_Megamorphic,188,0
block_count,StoreIC_Megamorphic,189,0
-block_count,StoreIC_Megamorphic,190,31
-block_count,StoreIC_Megamorphic,191,31
-block_count,StoreIC_Megamorphic,192,31
+block_count,StoreIC_Megamorphic,190,30
+block_count,StoreIC_Megamorphic,191,30
+block_count,StoreIC_Megamorphic,192,30
block_count,StoreIC_Megamorphic,193,0
-block_count,StoreIC_Megamorphic,194,31
-block_count,StoreIC_Megamorphic,195,13
-block_count,StoreIC_Megamorphic,196,13
+block_count,StoreIC_Megamorphic,194,30
+block_count,StoreIC_Megamorphic,195,12
+block_count,StoreIC_Megamorphic,196,12
block_count,StoreIC_Megamorphic,197,0
-block_count,StoreIC_Megamorphic,198,13
+block_count,StoreIC_Megamorphic,198,12
block_count,StoreIC_Megamorphic,199,0
block_count,StoreIC_Megamorphic,200,0
-block_count,StoreIC_Megamorphic,201,13
+block_count,StoreIC_Megamorphic,201,12
block_count,StoreIC_Megamorphic,202,0
-block_count,StoreIC_Megamorphic,203,13
+block_count,StoreIC_Megamorphic,203,12
block_count,StoreIC_Megamorphic,204,0
-block_count,StoreIC_Megamorphic,205,13
-block_count,StoreIC_Megamorphic,206,13
+block_count,StoreIC_Megamorphic,205,12
+block_count,StoreIC_Megamorphic,206,12
block_count,StoreIC_Megamorphic,207,0
-block_count,StoreIC_Megamorphic,208,13
-block_count,StoreIC_Megamorphic,209,13
+block_count,StoreIC_Megamorphic,208,12
+block_count,StoreIC_Megamorphic,209,12
block_count,StoreIC_Megamorphic,210,0
-block_count,StoreIC_Megamorphic,211,13
-block_count,StoreIC_Megamorphic,212,13
-block_count,StoreIC_Megamorphic,213,10
+block_count,StoreIC_Megamorphic,211,12
+block_count,StoreIC_Megamorphic,212,12
+block_count,StoreIC_Megamorphic,213,9
block_count,StoreIC_Megamorphic,214,3
block_count,StoreIC_Megamorphic,215,0
block_count,StoreIC_Megamorphic,216,3
@@ -27682,11 +27662,11 @@
block_count,StoreIC_Megamorphic,220,3
block_count,StoreIC_Megamorphic,221,0
block_count,StoreIC_Megamorphic,222,3
-block_count,StoreIC_Megamorphic,223,13
+block_count,StoreIC_Megamorphic,223,12
block_count,StoreIC_Megamorphic,224,17
-block_count,StoreIC_Megamorphic,225,31
-block_count,StoreIC_Megamorphic,226,498
-block_count,StoreIC_Megamorphic,227,498
+block_count,StoreIC_Megamorphic,225,30
+block_count,StoreIC_Megamorphic,226,507
+block_count,StoreIC_Megamorphic,227,507
block_count,StoreIC_Megamorphic,228,0
block_count,StoreIC_Megamorphic,229,0
block_count,StoreIC_Megamorphic,230,0
@@ -27714,7 +27694,7 @@
block_count,StoreIC_Megamorphic,252,0
block_count,StoreIC_Megamorphic,253,0
block_count,StoreIC_Megamorphic,254,0
-block_count,StoreIC_Megamorphic,255,784
+block_count,StoreIC_Megamorphic,255,785
block_count,StoreIC_Megamorphic,256,0
block_count,StoreIC_Megamorphic,257,0
block_count,StoreIC_Megamorphic,258,0
@@ -27779,7 +27759,7 @@
block_count,StoreIC_Megamorphic,317,0
block_count,StoreIC_Megamorphic,318,442
block_count,StoreIC_Megamorphic,319,2
-block_count,StoreIC_Megamorphic,320,439
+block_count,StoreIC_Megamorphic,320,440
block_count,StoreIC_Megamorphic,321,442
block_count,StoreIC_Megamorphic,322,442
block_count,StoreIC_Megamorphic,323,0
@@ -27821,11 +27801,11 @@
block_count,StoreICTrampoline,1,12
block_count,StoreICTrampoline,2,0
block_count,StoreICTrampoline,3,12
-block_count,StoreICTrampoline_Megamorphic,0,702
-block_count,StoreICTrampoline_Megamorphic,1,702
+block_count,StoreICTrampoline_Megamorphic,0,709
+block_count,StoreICTrampoline_Megamorphic,1,709
block_count,StoreICTrampoline_Megamorphic,2,0
-block_count,StoreICTrampoline_Megamorphic,3,702
-block_count,StoreICBaseline,0,212
+block_count,StoreICTrampoline_Megamorphic,3,709
+block_count,StoreICBaseline,0,215
block_count,DefineNamedOwnIC,0,37
block_count,DefineNamedOwnIC,1,37
block_count,DefineNamedOwnIC,2,0
@@ -28200,9 +28180,9 @@
block_count,KeyedStoreIC,3,217
block_count,KeyedStoreIC,4,217
block_count,KeyedStoreIC,5,215
-block_count,KeyedStoreIC,6,19
+block_count,KeyedStoreIC,6,18
block_count,KeyedStoreIC,7,0
-block_count,KeyedStoreIC,8,19
+block_count,KeyedStoreIC,8,18
block_count,KeyedStoreIC,9,11
block_count,KeyedStoreIC,10,1
block_count,KeyedStoreIC,11,0
@@ -28212,30 +28192,30 @@
block_count,KeyedStoreIC,15,0
block_count,KeyedStoreIC,16,0
block_count,KeyedStoreIC,17,1
-block_count,KeyedStoreIC,18,10
-block_count,KeyedStoreIC,19,7
-block_count,KeyedStoreIC,20,13
-block_count,KeyedStoreIC,21,6
-block_count,KeyedStoreIC,22,6
+block_count,KeyedStoreIC,18,9
+block_count,KeyedStoreIC,19,6
+block_count,KeyedStoreIC,20,12
+block_count,KeyedStoreIC,21,5
+block_count,KeyedStoreIC,22,5
block_count,KeyedStoreIC,23,0
-block_count,KeyedStoreIC,24,7
+block_count,KeyedStoreIC,24,6
block_count,KeyedStoreIC,25,196
block_count,KeyedStoreIC,26,204
block_count,KeyedStoreIC,27,203
block_count,KeyedStoreIC,28,202
-block_count,KeyedStoreIC,29,32
-block_count,KeyedStoreIC,30,32
-block_count,KeyedStoreIC,31,32
+block_count,KeyedStoreIC,29,31
+block_count,KeyedStoreIC,30,31
+block_count,KeyedStoreIC,31,31
block_count,KeyedStoreIC,32,0
block_count,KeyedStoreIC,33,0
-block_count,KeyedStoreIC,34,32
-block_count,KeyedStoreIC,35,32
+block_count,KeyedStoreIC,34,31
+block_count,KeyedStoreIC,35,31
block_count,KeyedStoreIC,36,0
block_count,KeyedStoreIC,37,0
block_count,KeyedStoreIC,38,0
block_count,KeyedStoreIC,39,0
block_count,KeyedStoreIC,40,0
-block_count,KeyedStoreIC,41,31
+block_count,KeyedStoreIC,41,30
block_count,KeyedStoreIC,42,0
block_count,KeyedStoreIC,43,0
block_count,KeyedStoreIC,44,0
@@ -28387,7 +28367,7 @@
block_count,KeyedStoreIC,190,0
block_count,KeyedStoreIC,191,0
block_count,KeyedStoreIC,192,0
-block_count,KeyedStoreIC,193,170
+block_count,KeyedStoreIC,193,171
block_count,KeyedStoreIC,194,0
block_count,KeyedStoreIC,195,0
block_count,KeyedStoreIC,196,0
@@ -28628,17 +28608,17 @@
block_count,KeyedStoreIC,431,0
block_count,KeyedStoreIC,432,1
block_count,KeyedStoreIC,433,2
-block_count,KeyedStoreIC,434,12
+block_count,KeyedStoreIC,434,11
block_count,KeyedStoreIC,435,0
block_count,KeyedStoreIC,436,0
block_count,KeyedStoreICTrampoline,0,0
block_count,KeyedStoreICTrampoline,1,0
block_count,KeyedStoreICTrampoline,2,0
block_count,KeyedStoreICTrampoline,3,0
-block_count,KeyedStoreICTrampoline_Megamorphic,0,299
-block_count,KeyedStoreICTrampoline_Megamorphic,1,299
+block_count,KeyedStoreICTrampoline_Megamorphic,0,230
+block_count,KeyedStoreICTrampoline_Megamorphic,1,230
block_count,KeyedStoreICTrampoline_Megamorphic,2,0
-block_count,KeyedStoreICTrampoline_Megamorphic,3,299
+block_count,KeyedStoreICTrampoline_Megamorphic,3,230
block_count,KeyedStoreICBaseline,0,201
block_count,DefineKeyedOwnIC,0,2
block_count,DefineKeyedOwnIC,1,2
@@ -29073,12 +29053,12 @@
block_count,DefineKeyedOwnIC,430,0
block_count,DefineKeyedOwnIC,431,2
block_count,DefineKeyedOwnIC,432,2
-block_count,StoreInArrayLiteralIC,0,18
-block_count,StoreInArrayLiteralIC,1,18
+block_count,StoreInArrayLiteralIC,0,17
+block_count,StoreInArrayLiteralIC,1,17
block_count,StoreInArrayLiteralIC,2,0
-block_count,StoreInArrayLiteralIC,3,18
-block_count,StoreInArrayLiteralIC,4,18
-block_count,StoreInArrayLiteralIC,5,17
+block_count,StoreInArrayLiteralIC,3,17
+block_count,StoreInArrayLiteralIC,4,17
+block_count,StoreInArrayLiteralIC,5,16
block_count,StoreInArrayLiteralIC,6,1
block_count,StoreInArrayLiteralIC,7,0
block_count,StoreInArrayLiteralIC,8,1
@@ -29092,24 +29072,24 @@
block_count,StoreInArrayLiteralIC,16,0
block_count,StoreInArrayLiteralIC,17,1
block_count,StoreInArrayLiteralIC,18,15
-block_count,StoreInArrayLiteralIC,19,17
-block_count,StoreInArrayLiteralIC,20,17
+block_count,StoreInArrayLiteralIC,19,16
+block_count,StoreInArrayLiteralIC,20,16
block_count,StoreInArrayLiteralIC,21,0
block_count,StoreInArrayLiteralIC,22,0
block_count,StoreInArrayLiteralIC,23,0
block_count,StoreInArrayLiteralIC,24,0
block_count,StoreInArrayLiteralIC,25,0
-block_count,StoreInArrayLiteralIC,26,17
+block_count,StoreInArrayLiteralIC,26,16
block_count,StoreInArrayLiteralIC,27,0
block_count,StoreInArrayLiteralIC,28,1
block_count,StoreInArrayLiteralIC,29,0
block_count,StoreInArrayLiteralIC,30,0
-block_count,StoreInArrayLiteralICBaseline,0,16
-block_count,LoadGlobalIC,0,1511
-block_count,LoadGlobalIC,1,1511
-block_count,LoadGlobalIC,2,1442
-block_count,LoadGlobalIC,3,1442
-block_count,LoadGlobalIC,4,1442
+block_count,StoreInArrayLiteralICBaseline,0,15
+block_count,LoadGlobalIC,0,1332
+block_count,LoadGlobalIC,1,1332
+block_count,LoadGlobalIC,2,1264
+block_count,LoadGlobalIC,3,1263
+block_count,LoadGlobalIC,4,1263
block_count,LoadGlobalIC,5,0
block_count,LoadGlobalIC,6,0
block_count,LoadGlobalIC,7,0
@@ -29502,11 +29482,11 @@
block_count,LoadGlobalICInsideTypeof,184,0
block_count,LoadGlobalICInsideTypeof,185,0
block_count,LoadGlobalICInsideTypeof,186,0
-block_count,LoadGlobalICTrampoline,0,1058
-block_count,LoadGlobalICTrampoline,1,1058
+block_count,LoadGlobalICTrampoline,0,875
+block_count,LoadGlobalICTrampoline,1,875
block_count,LoadGlobalICTrampoline,2,0
-block_count,LoadGlobalICTrampoline,3,1058
-block_count,LoadGlobalICBaseline,0,402
+block_count,LoadGlobalICTrampoline,3,875
+block_count,LoadGlobalICBaseline,0,401
block_count,LoadGlobalICInsideTypeofBaseline,0,0
block_count,LookupGlobalICBaseline,0,0
block_count,LookupGlobalICBaseline,1,0
@@ -29543,7 +29523,7 @@
block_count,KeyedHasIC,6,720
block_count,KeyedHasIC,7,0
block_count,KeyedHasIC,8,720
-block_count,KeyedHasIC,9,719
+block_count,KeyedHasIC,9,720
block_count,KeyedHasIC,10,3
block_count,KeyedHasIC,11,3
block_count,KeyedHasIC,12,0
@@ -29583,7 +29563,7 @@
block_count,KeyedHasIC,46,3
block_count,KeyedHasIC,47,3
block_count,KeyedHasIC,48,0
-block_count,KeyedHasIC,49,715
+block_count,KeyedHasIC,49,716
block_count,KeyedHasIC,50,0
block_count,KeyedHasIC,51,0
block_count,KeyedHasIC,52,0
@@ -29796,15 +29776,15 @@
block_count,KeyedHasIC,259,0
block_count,KeyedHasIC,260,0
block_count,KeyedHasIC,261,0
-block_count,KeyedHasIC,262,715
+block_count,KeyedHasIC,262,716
block_count,KeyedHasIC,263,0
block_count,KeyedHasIC,264,0
block_count,KeyedHasICBaseline,0,2
-block_count,KeyedHasIC_Megamorphic,0,715
-block_count,KeyedHasIC_Megamorphic,1,715
+block_count,KeyedHasIC_Megamorphic,0,716
+block_count,KeyedHasIC_Megamorphic,1,716
block_count,KeyedHasIC_Megamorphic,2,0
-block_count,KeyedHasIC_Megamorphic,3,715
-block_count,KeyedHasIC_Megamorphic,4,715
+block_count,KeyedHasIC_Megamorphic,3,716
+block_count,KeyedHasIC_Megamorphic,4,716
block_count,KeyedHasIC_Megamorphic,5,714
block_count,KeyedHasIC_Megamorphic,6,714
block_count,KeyedHasIC_Megamorphic,7,0
@@ -29833,22 +29813,22 @@
block_count,KeyedHasIC_Megamorphic,30,0
block_count,KeyedHasIC_Megamorphic,31,1
block_count,KeyedHasIC_Megamorphic,32,713
-block_count,KeyedHasIC_Megamorphic,33,2819
-block_count,KeyedHasIC_Megamorphic,34,2819
-block_count,KeyedHasIC_Megamorphic,35,2815
-block_count,KeyedHasIC_Megamorphic,36,2696
+block_count,KeyedHasIC_Megamorphic,33,2820
+block_count,KeyedHasIC_Megamorphic,34,2820
+block_count,KeyedHasIC_Megamorphic,35,2816
+block_count,KeyedHasIC_Megamorphic,36,2697
block_count,KeyedHasIC_Megamorphic,37,710
block_count,KeyedHasIC_Megamorphic,38,710
block_count,KeyedHasIC_Megamorphic,39,0
block_count,KeyedHasIC_Megamorphic,40,710
-block_count,KeyedHasIC_Megamorphic,41,4261
-block_count,KeyedHasIC_Megamorphic,42,4261
+block_count,KeyedHasIC_Megamorphic,41,4263
+block_count,KeyedHasIC_Megamorphic,42,4263
block_count,KeyedHasIC_Megamorphic,43,0
-block_count,KeyedHasIC_Megamorphic,44,4261
-block_count,KeyedHasIC_Megamorphic,45,1400
-block_count,KeyedHasIC_Megamorphic,46,2860
-block_count,KeyedHasIC_Megamorphic,47,4261
-block_count,KeyedHasIC_Megamorphic,48,3551
+block_count,KeyedHasIC_Megamorphic,44,4263
+block_count,KeyedHasIC_Megamorphic,45,1401
+block_count,KeyedHasIC_Megamorphic,46,2861
+block_count,KeyedHasIC_Megamorphic,47,4263
+block_count,KeyedHasIC_Megamorphic,48,3552
block_count,KeyedHasIC_Megamorphic,49,710
block_count,KeyedHasIC_Megamorphic,50,710
block_count,KeyedHasIC_Megamorphic,51,710
@@ -29862,19 +29842,19 @@
block_count,KeyedHasIC_Megamorphic,59,0
block_count,KeyedHasIC_Megamorphic,60,710
block_count,KeyedHasIC_Megamorphic,61,0
-block_count,KeyedHasIC_Megamorphic,62,1986
+block_count,KeyedHasIC_Megamorphic,62,1987
block_count,KeyedHasIC_Megamorphic,63,0
-block_count,KeyedHasIC_Megamorphic,64,1986
+block_count,KeyedHasIC_Megamorphic,64,1987
block_count,KeyedHasIC_Megamorphic,65,483
block_count,KeyedHasIC_Megamorphic,66,1503
-block_count,KeyedHasIC_Megamorphic,67,7457
-block_count,KeyedHasIC_Megamorphic,68,7455
-block_count,KeyedHasIC_Megamorphic,69,7452
-block_count,KeyedHasIC_Megamorphic,70,5954
+block_count,KeyedHasIC_Megamorphic,67,7460
+block_count,KeyedHasIC_Megamorphic,68,7457
+block_count,KeyedHasIC_Megamorphic,69,7455
+block_count,KeyedHasIC_Megamorphic,70,5956
block_count,KeyedHasIC_Megamorphic,71,1498
block_count,KeyedHasIC_Megamorphic,72,2
block_count,KeyedHasIC_Megamorphic,73,2
-block_count,KeyedHasIC_Megamorphic,74,1981
+block_count,KeyedHasIC_Megamorphic,74,1982
block_count,KeyedHasIC_Megamorphic,75,996
block_count,KeyedHasIC_Megamorphic,76,985
block_count,KeyedHasIC_Megamorphic,77,985
@@ -29918,8 +29898,8 @@
block_count,KeyedHasIC_Megamorphic,115,0
block_count,KeyedHasIC_Megamorphic,116,0
block_count,KeyedHasIC_Megamorphic,117,0
-block_count,KeyedHasIC_Megamorphic,118,2811
-block_count,KeyedHasIC_Megamorphic,119,2811
+block_count,KeyedHasIC_Megamorphic,118,2812
+block_count,KeyedHasIC_Megamorphic,119,2812
block_count,KeyedHasIC_Megamorphic,120,0
block_count,KeyedHasIC_Megamorphic,121,0
block_count,KeyedHasIC_Megamorphic,122,0
@@ -29958,12 +29938,12 @@
block_count,KeyedHasIC_Megamorphic,155,0
block_count,KeyedHasIC_Megamorphic,156,0
block_count,KeyedHasIC_Megamorphic,157,0
-block_count,KeyedHasIC_Megamorphic,158,2811
+block_count,KeyedHasIC_Megamorphic,158,2812
block_count,KeyedHasIC_Megamorphic,159,4
block_count,KeyedHasIC_Megamorphic,160,4
block_count,KeyedHasIC_Megamorphic,161,0
-block_count,KeyedHasIC_Megamorphic,162,2806
-block_count,KeyedHasIC_Megamorphic,163,2811
+block_count,KeyedHasIC_Megamorphic,162,2807
+block_count,KeyedHasIC_Megamorphic,163,2812
block_count,KeyedHasIC_Megamorphic,164,2106
block_count,KeyedHasIC_Megamorphic,165,705
block_count,KeyedHasIC_Megamorphic,166,1
@@ -30071,7 +30051,7 @@
block_count,KeyedHasIC_Megamorphic,268,0
block_count,KeyedHasIC_Megamorphic,269,0
block_count,KeyedHasIC_Megamorphic,270,0
-block_count,KeyedHasIC_Megamorphic,271,705
+block_count,KeyedHasIC_Megamorphic,271,706
block_count,KeyedHasIC_Megamorphic,272,8
block_count,KeyedHasIC_Megamorphic,273,0
block_count,KeyedHasIC_Megamorphic,274,0
@@ -30522,8 +30502,8 @@
block_count,IterableToListMayPreserveHoles,14,0
block_count,IterableToListMayPreserveHoles,15,0
block_count,FindOrderedHashMapEntry,0,392
-block_count,FindOrderedHashMapEntry,1,382
-block_count,FindOrderedHashMapEntry,2,382
+block_count,FindOrderedHashMapEntry,1,383
+block_count,FindOrderedHashMapEntry,2,383
block_count,FindOrderedHashMapEntry,3,128
block_count,FindOrderedHashMapEntry,4,128
block_count,FindOrderedHashMapEntry,5,66
@@ -30538,13 +30518,13 @@
block_count,FindOrderedHashMapEntry,14,56
block_count,FindOrderedHashMapEntry,15,62
block_count,FindOrderedHashMapEntry,16,128
-block_count,FindOrderedHashMapEntry,17,242
-block_count,FindOrderedHashMapEntry,18,137
-block_count,FindOrderedHashMapEntry,19,137
-block_count,FindOrderedHashMapEntry,20,114
+block_count,FindOrderedHashMapEntry,17,290
+block_count,FindOrderedHashMapEntry,18,184
+block_count,FindOrderedHashMapEntry,19,184
+block_count,FindOrderedHashMapEntry,20,161
block_count,FindOrderedHashMapEntry,21,23
block_count,FindOrderedHashMapEntry,22,0
-block_count,FindOrderedHashMapEntry,23,114
+block_count,FindOrderedHashMapEntry,23,161
block_count,FindOrderedHashMapEntry,24,105
block_count,FindOrderedHashMapEntry,25,0
block_count,FindOrderedHashMapEntry,26,0
@@ -30560,10 +30540,10 @@
block_count,FindOrderedHashMapEntry,36,0
block_count,FindOrderedHashMapEntry,37,0
block_count,FindOrderedHashMapEntry,38,254
-block_count,FindOrderedHashMapEntry,39,80
+block_count,FindOrderedHashMapEntry,39,79
block_count,FindOrderedHashMapEntry,40,8
-block_count,FindOrderedHashMapEntry,41,71
-block_count,FindOrderedHashMapEntry,42,173
+block_count,FindOrderedHashMapEntry,41,70
+block_count,FindOrderedHashMapEntry,42,175
block_count,FindOrderedHashMapEntry,43,254
block_count,FindOrderedHashMapEntry,44,254
block_count,FindOrderedHashMapEntry,45,0
@@ -31014,17 +30994,17 @@
block_count,MapPrototypeSet,17,0
block_count,MapPrototypeSet,18,0
block_count,MapPrototypeSet,19,1
-block_count,MapPrototypeSet,20,41
+block_count,MapPrototypeSet,20,42
block_count,MapPrototypeSet,21,45
block_count,MapPrototypeSet,22,45
-block_count,MapPrototypeSet,23,75
-block_count,MapPrototypeSet,24,41
-block_count,MapPrototypeSet,25,41
-block_count,MapPrototypeSet,26,30
+block_count,MapPrototypeSet,23,77
+block_count,MapPrototypeSet,24,43
+block_count,MapPrototypeSet,25,43
+block_count,MapPrototypeSet,26,32
block_count,MapPrototypeSet,27,11
block_count,MapPrototypeSet,28,0
-block_count,MapPrototypeSet,29,30
-block_count,MapPrototypeSet,30,33
+block_count,MapPrototypeSet,29,32
+block_count,MapPrototypeSet,30,34
block_count,MapPrototypeSet,31,0
block_count,MapPrototypeSet,32,0
block_count,MapPrototypeSet,33,0
@@ -31219,9 +31199,9 @@
block_count,MapPrototypeGet,5,0
block_count,MapPrototypeGet,6,35
block_count,MapPrototypeGet,7,23
-block_count,MapPrototypeGet,8,12
+block_count,MapPrototypeGet,8,11
block_count,MapPrototypeGet,9,0
-block_count,MapPrototypeGet,10,12
+block_count,MapPrototypeGet,10,11
block_count,MapPrototypeHas,0,5
block_count,MapPrototypeHas,1,0
block_count,MapPrototypeHas,2,5
@@ -31409,8 +31389,8 @@
block_count,MapIteratorToList,54,0
block_count,MapIteratorToList,55,0
block_count,MapIteratorToList,56,0
-block_count,Add_Baseline,0,196
-block_count,Add_Baseline,1,119
+block_count,Add_Baseline,0,200
+block_count,Add_Baseline,1,120
block_count,Add_Baseline,2,1
block_count,Add_Baseline,3,1
block_count,Add_Baseline,4,0
@@ -31430,62 +31410,62 @@
block_count,Add_Baseline,18,0
block_count,Add_Baseline,19,1
block_count,Add_Baseline,20,0
-block_count,Add_Baseline,21,118
-block_count,Add_Baseline,22,118
+block_count,Add_Baseline,21,119
+block_count,Add_Baseline,22,119
block_count,Add_Baseline,23,0
block_count,Add_Baseline,24,118
-block_count,Add_Baseline,25,118
+block_count,Add_Baseline,25,119
block_count,Add_Baseline,26,0
block_count,Add_Baseline,27,0
block_count,Add_Baseline,28,0
block_count,Add_Baseline,29,0
-block_count,Add_Baseline,30,76
-block_count,Add_Baseline,31,39
-block_count,Add_Baseline,32,34
-block_count,Add_Baseline,33,34
+block_count,Add_Baseline,30,79
+block_count,Add_Baseline,31,43
+block_count,Add_Baseline,32,38
+block_count,Add_Baseline,33,38
block_count,Add_Baseline,34,0
-block_count,Add_Baseline,35,34
+block_count,Add_Baseline,35,38
block_count,Add_Baseline,36,19
-block_count,Add_Baseline,37,14
+block_count,Add_Baseline,37,18
block_count,Add_Baseline,38,1
-block_count,Add_Baseline,39,12
+block_count,Add_Baseline,39,17
block_count,Add_Baseline,40,1
-block_count,Add_Baseline,41,11
-block_count,Add_Baseline,42,13
+block_count,Add_Baseline,41,15
+block_count,Add_Baseline,42,17
block_count,Add_Baseline,43,0
-block_count,Add_Baseline,44,13
+block_count,Add_Baseline,44,17
block_count,Add_Baseline,45,2
-block_count,Add_Baseline,46,10
+block_count,Add_Baseline,46,15
block_count,Add_Baseline,47,1
-block_count,Add_Baseline,48,9
-block_count,Add_Baseline,49,3
-block_count,Add_Baseline,50,5
-block_count,Add_Baseline,51,7
+block_count,Add_Baseline,48,14
+block_count,Add_Baseline,49,6
+block_count,Add_Baseline,50,7
+block_count,Add_Baseline,51,9
block_count,Add_Baseline,52,0
-block_count,Add_Baseline,53,7
-block_count,Add_Baseline,54,5
-block_count,Add_Baseline,55,21
+block_count,Add_Baseline,53,9
+block_count,Add_Baseline,54,8
+block_count,Add_Baseline,55,20
block_count,Add_Baseline,56,0
-block_count,Add_Baseline,57,4
+block_count,Add_Baseline,57,5
block_count,Add_Baseline,58,0
-block_count,Add_Baseline,59,4
-block_count,Add_Baseline,60,2
-block_count,Add_Baseline,61,1
+block_count,Add_Baseline,59,5
+block_count,Add_Baseline,60,3
+block_count,Add_Baseline,61,2
block_count,Add_Baseline,62,1
block_count,Add_Baseline,63,0
block_count,Add_Baseline,64,0
block_count,Add_Baseline,65,0
-block_count,Add_Baseline,66,1
+block_count,Add_Baseline,66,2
block_count,Add_Baseline,67,0
-block_count,Add_Baseline,68,1
-block_count,Add_Baseline,69,4
-block_count,Add_Baseline,70,2
-block_count,Add_Baseline,71,1
-block_count,Add_Baseline,72,2
-block_count,Add_Baseline,73,4
-block_count,Add_Baseline,74,37
-block_count,Add_Baseline,75,37
-block_count,Add_Baseline,76,35
+block_count,Add_Baseline,68,2
+block_count,Add_Baseline,69,5
+block_count,Add_Baseline,70,3
+block_count,Add_Baseline,71,2
+block_count,Add_Baseline,72,3
+block_count,Add_Baseline,73,5
+block_count,Add_Baseline,74,36
+block_count,Add_Baseline,75,35
+block_count,Add_Baseline,76,33
block_count,Add_Baseline,77,0
block_count,Add_Baseline,78,0
block_count,Add_Baseline,79,0
@@ -31540,7 +31520,7 @@
block_count,Add_Baseline,128,0
block_count,Add_Baseline,129,0
block_count,Add_Baseline,130,0
-block_count,Add_Baseline,131,34
+block_count,Add_Baseline,131,33
block_count,Add_Baseline,132,3
block_count,Add_Baseline,133,3
block_count,Add_Baseline,134,0
@@ -31549,10 +31529,10 @@
block_count,Add_Baseline,137,0
block_count,Add_Baseline,138,0
block_count,Add_Baseline,139,0
-block_count,Add_Baseline,140,31
+block_count,Add_Baseline,140,30
block_count,Add_Baseline,141,0
-block_count,Add_Baseline,142,31
-block_count,Add_Baseline,143,31
+block_count,Add_Baseline,142,30
+block_count,Add_Baseline,143,30
block_count,Add_Baseline,144,2
block_count,Add_Baseline,145,0
block_count,Add_Baseline,146,0
@@ -31568,34 +31548,34 @@
block_count,Add_Baseline,156,0
block_count,Add_Baseline,157,5
block_count,Add_Baseline,158,5
-block_count,Add_Baseline,159,40
+block_count,Add_Baseline,159,44
block_count,Add_Baseline,160,0
-block_count,Add_Baseline,161,40
-block_count,Add_Baseline,162,40
+block_count,Add_Baseline,161,44
+block_count,Add_Baseline,162,44
block_count,Add_Baseline,163,0
-block_count,Add_Baseline,164,40
-block_count,Add_Baseline,165,30
-block_count,Add_Baseline,166,9
+block_count,Add_Baseline,164,44
+block_count,Add_Baseline,165,33
+block_count,Add_Baseline,166,11
block_count,Add_Baseline,167,0
-block_count,Add_Baseline,168,9
+block_count,Add_Baseline,168,11
block_count,Add_Baseline,169,4
-block_count,Add_Baseline,170,5
+block_count,Add_Baseline,170,7
block_count,Add_Baseline,171,0
-block_count,Add_Baseline,172,5
-block_count,Add_Baseline,173,9
+block_count,Add_Baseline,172,7
+block_count,Add_Baseline,173,11
block_count,Add_Baseline,174,0
-block_count,Add_Baseline,175,9
+block_count,Add_Baseline,175,11
block_count,Add_Baseline,176,0
-block_count,Add_Baseline,177,40
+block_count,Add_Baseline,177,44
block_count,Add_Baseline,178,0
-block_count,Add_Baseline,179,40
-block_count,Add_Baseline,180,40
-block_count,AddSmi_Baseline,0,243
-block_count,AddSmi_Baseline,1,243
-block_count,AddSmi_Baseline,2,243
+block_count,Add_Baseline,179,44
+block_count,Add_Baseline,180,44
+block_count,AddSmi_Baseline,0,245
+block_count,AddSmi_Baseline,1,244
+block_count,AddSmi_Baseline,2,244
block_count,AddSmi_Baseline,3,0
-block_count,AddSmi_Baseline,4,243
-block_count,AddSmi_Baseline,5,243
+block_count,AddSmi_Baseline,4,244
+block_count,AddSmi_Baseline,5,244
block_count,AddSmi_Baseline,6,0
block_count,AddSmi_Baseline,7,0
block_count,AddSmi_Baseline,8,0
@@ -31724,21 +31704,21 @@
block_count,AddSmi_Baseline,131,0
block_count,AddSmi_Baseline,132,0
block_count,AddSmi_Baseline,133,0
-block_count,Subtract_Baseline,0,48
-block_count,Subtract_Baseline,1,35
-block_count,Subtract_Baseline,2,2
-block_count,Subtract_Baseline,3,2
+block_count,Subtract_Baseline,0,47
+block_count,Subtract_Baseline,1,34
+block_count,Subtract_Baseline,2,1
+block_count,Subtract_Baseline,3,1
block_count,Subtract_Baseline,4,0
-block_count,Subtract_Baseline,5,33
-block_count,Subtract_Baseline,6,33
+block_count,Subtract_Baseline,5,32
+block_count,Subtract_Baseline,6,32
block_count,Subtract_Baseline,7,0
block_count,Subtract_Baseline,8,0
block_count,Subtract_Baseline,9,0
block_count,Subtract_Baseline,10,0
-block_count,Subtract_Baseline,11,33
+block_count,Subtract_Baseline,11,32
block_count,Subtract_Baseline,12,0
-block_count,Subtract_Baseline,13,33
-block_count,Subtract_Baseline,14,33
+block_count,Subtract_Baseline,13,32
+block_count,Subtract_Baseline,14,32
block_count,Subtract_Baseline,15,13
block_count,Subtract_Baseline,16,13
block_count,Subtract_Baseline,17,12
@@ -31823,16 +31803,16 @@
block_count,Subtract_Baseline,96,15
block_count,Subtract_Baseline,97,15
block_count,SubtractSmi_Baseline,0,22
-block_count,SubtractSmi_Baseline,1,18
-block_count,SubtractSmi_Baseline,2,18
+block_count,SubtractSmi_Baseline,1,17
+block_count,SubtractSmi_Baseline,2,17
block_count,SubtractSmi_Baseline,3,0
block_count,SubtractSmi_Baseline,4,0
block_count,SubtractSmi_Baseline,5,0
block_count,SubtractSmi_Baseline,6,0
-block_count,SubtractSmi_Baseline,7,18
+block_count,SubtractSmi_Baseline,7,17
block_count,SubtractSmi_Baseline,8,0
-block_count,SubtractSmi_Baseline,9,18
-block_count,SubtractSmi_Baseline,10,18
+block_count,SubtractSmi_Baseline,9,17
+block_count,SubtractSmi_Baseline,10,17
block_count,SubtractSmi_Baseline,11,4
block_count,SubtractSmi_Baseline,12,4
block_count,SubtractSmi_Baseline,13,0
@@ -31841,10 +31821,10 @@
block_count,SubtractSmi_Baseline,16,0
block_count,SubtractSmi_Baseline,17,4
block_count,SubtractSmi_Baseline,18,4
-block_count,Multiply_Baseline,0,52
-block_count,Multiply_Baseline,1,12
-block_count,Multiply_Baseline,2,8
-block_count,Multiply_Baseline,3,8
+block_count,Multiply_Baseline,0,58
+block_count,Multiply_Baseline,1,15
+block_count,Multiply_Baseline,2,10
+block_count,Multiply_Baseline,3,10
block_count,Multiply_Baseline,4,0
block_count,Multiply_Baseline,5,4
block_count,Multiply_Baseline,6,4
@@ -31869,10 +31849,10 @@
block_count,Multiply_Baseline,25,0
block_count,Multiply_Baseline,26,4
block_count,Multiply_Baseline,27,4
-block_count,Multiply_Baseline,28,40
-block_count,Multiply_Baseline,29,40
-block_count,Multiply_Baseline,30,37
-block_count,Multiply_Baseline,31,37
+block_count,Multiply_Baseline,28,42
+block_count,Multiply_Baseline,29,42
+block_count,Multiply_Baseline,30,40
+block_count,Multiply_Baseline,31,40
block_count,Multiply_Baseline,32,0
block_count,Multiply_Baseline,33,2
block_count,Multiply_Baseline,34,0
@@ -31947,13 +31927,13 @@
block_count,Multiply_Baseline,103,0
block_count,Multiply_Baseline,104,0
block_count,Multiply_Baseline,105,0
-block_count,Multiply_Baseline,106,48
+block_count,Multiply_Baseline,106,53
block_count,Multiply_Baseline,107,0
-block_count,Multiply_Baseline,108,48
-block_count,Multiply_Baseline,109,48
+block_count,Multiply_Baseline,108,53
+block_count,Multiply_Baseline,109,53
block_count,Multiply_Baseline,110,0
-block_count,Multiply_Baseline,111,48
-block_count,Multiply_Baseline,112,48
+block_count,Multiply_Baseline,111,53
+block_count,Multiply_Baseline,112,53
block_count,MultiplySmi_Baseline,0,5
block_count,MultiplySmi_Baseline,1,4
block_count,MultiplySmi_Baseline,2,4
@@ -32057,7 +32037,7 @@
block_count,MultiplySmi_Baseline,100,0
block_count,MultiplySmi_Baseline,101,0
block_count,MultiplySmi_Baseline,102,0
-block_count,Divide_Baseline,0,4
+block_count,Divide_Baseline,0,3
block_count,Divide_Baseline,1,2
block_count,Divide_Baseline,2,1
block_count,Divide_Baseline,3,0
@@ -32601,7 +32581,7 @@
block_count,BitwiseAnd_Baseline,128,0
block_count,BitwiseAnd_Baseline,129,8
block_count,BitwiseAnd_Baseline,130,8
-block_count,BitwiseAndSmi_Baseline,0,33
+block_count,BitwiseAndSmi_Baseline,0,34
block_count,BitwiseAndSmi_Baseline,1,1
block_count,BitwiseAndSmi_Baseline,2,1
block_count,BitwiseAndSmi_Baseline,3,0
@@ -32632,10 +32612,10 @@
block_count,BitwiseAndSmi_Baseline,28,0
block_count,BitwiseAndSmi_Baseline,29,1
block_count,BitwiseAndSmi_Baseline,30,1
-block_count,BitwiseAndSmi_Baseline,31,31
-block_count,BitwiseAndSmi_Baseline,32,33
+block_count,BitwiseAndSmi_Baseline,31,32
+block_count,BitwiseAndSmi_Baseline,32,34
block_count,BitwiseAndSmi_Baseline,33,0
-block_count,BitwiseAndSmi_Baseline,34,33
+block_count,BitwiseAndSmi_Baseline,34,34
block_count,BitwiseOr_Baseline,0,20
block_count,BitwiseOr_Baseline,1,18
block_count,BitwiseOr_Baseline,2,1
@@ -32802,7 +32782,7 @@
block_count,BitwiseOrSmi_Baseline,32,181
block_count,BitwiseOrSmi_Baseline,33,0
block_count,BitwiseOrSmi_Baseline,34,181
-block_count,BitwiseXor_Baseline,0,8
+block_count,BitwiseXor_Baseline,0,9
block_count,BitwiseXor_Baseline,1,4
block_count,BitwiseXor_Baseline,2,4
block_count,BitwiseXor_Baseline,3,4
@@ -32898,7 +32878,7 @@
block_count,BitwiseXor_Baseline,93,0
block_count,BitwiseXor_Baseline,94,0
block_count,BitwiseXor_Baseline,95,4
-block_count,BitwiseXor_Baseline,96,8
+block_count,BitwiseXor_Baseline,96,9
block_count,BitwiseXor_Baseline,97,3
block_count,BitwiseXor_Baseline,98,5
block_count,BitwiseXor_Baseline,99,5
@@ -32919,20 +32899,20 @@
block_count,BitwiseXor_Baseline,114,0
block_count,BitwiseXor_Baseline,115,0
block_count,BitwiseXor_Baseline,116,0
-block_count,BitwiseXor_Baseline,117,4
-block_count,BitwiseXor_Baseline,118,8
+block_count,BitwiseXor_Baseline,117,5
+block_count,BitwiseXor_Baseline,118,9
block_count,BitwiseXor_Baseline,119,5
block_count,BitwiseXor_Baseline,120,3
block_count,BitwiseXor_Baseline,121,0
block_count,BitwiseXor_Baseline,122,3
block_count,BitwiseXor_Baseline,123,3
-block_count,BitwiseXor_Baseline,124,8
+block_count,BitwiseXor_Baseline,124,9
block_count,BitwiseXor_Baseline,125,3
block_count,BitwiseXor_Baseline,126,5
-block_count,BitwiseXor_Baseline,127,8
+block_count,BitwiseXor_Baseline,127,9
block_count,BitwiseXor_Baseline,128,0
-block_count,BitwiseXor_Baseline,129,8
-block_count,BitwiseXor_Baseline,130,8
+block_count,BitwiseXor_Baseline,129,9
+block_count,BitwiseXor_Baseline,130,9
block_count,BitwiseXorSmi_Baseline,0,0
block_count,BitwiseXorSmi_Baseline,1,0
block_count,BitwiseXorSmi_Baseline,2,0
@@ -33047,7 +33027,7 @@
block_count,ShiftLeft_Baseline,76,0
block_count,ShiftLeft_Baseline,77,1
block_count,ShiftLeft_Baseline,78,1
-block_count,ShiftLeftSmi_Baseline,0,30
+block_count,ShiftLeftSmi_Baseline,0,31
block_count,ShiftLeftSmi_Baseline,1,1
block_count,ShiftLeftSmi_Baseline,2,1
block_count,ShiftLeftSmi_Baseline,3,0
@@ -33069,14 +33049,14 @@
block_count,ShiftLeftSmi_Baseline,19,0
block_count,ShiftLeftSmi_Baseline,20,1
block_count,ShiftLeftSmi_Baseline,21,1
-block_count,ShiftLeftSmi_Baseline,22,0
+block_count,ShiftLeftSmi_Baseline,22,1
block_count,ShiftLeftSmi_Baseline,23,0
block_count,ShiftLeftSmi_Baseline,24,0
block_count,ShiftLeftSmi_Baseline,25,0
block_count,ShiftLeftSmi_Baseline,26,0
block_count,ShiftLeftSmi_Baseline,27,1
block_count,ShiftLeftSmi_Baseline,28,0
-block_count,ShiftLeftSmi_Baseline,29,0
+block_count,ShiftLeftSmi_Baseline,29,1
block_count,ShiftLeftSmi_Baseline,30,1
block_count,ShiftLeftSmi_Baseline,31,29
block_count,ShiftLeftSmi_Baseline,32,29
@@ -33088,9 +33068,9 @@
block_count,ShiftLeftSmi_Baseline,38,0
block_count,ShiftLeftSmi_Baseline,39,29
block_count,ShiftLeftSmi_Baseline,40,29
-block_count,ShiftLeftSmi_Baseline,41,30
+block_count,ShiftLeftSmi_Baseline,41,31
block_count,ShiftLeftSmi_Baseline,42,0
-block_count,ShiftLeftSmi_Baseline,43,30
+block_count,ShiftLeftSmi_Baseline,43,31
block_count,ShiftRight_Baseline,0,2
block_count,ShiftRight_Baseline,1,2
block_count,ShiftRight_Baseline,2,0
@@ -33170,7 +33150,7 @@
block_count,ShiftRight_Baseline,76,0
block_count,ShiftRight_Baseline,77,2
block_count,ShiftRight_Baseline,78,2
-block_count,ShiftRightSmi_Baseline,0,115
+block_count,ShiftRightSmi_Baseline,0,117
block_count,ShiftRightSmi_Baseline,1,1
block_count,ShiftRightSmi_Baseline,2,1
block_count,ShiftRightSmi_Baseline,3,0
@@ -33201,10 +33181,10 @@
block_count,ShiftRightSmi_Baseline,28,0
block_count,ShiftRightSmi_Baseline,29,1
block_count,ShiftRightSmi_Baseline,30,1
-block_count,ShiftRightSmi_Baseline,31,114
-block_count,ShiftRightSmi_Baseline,32,115
+block_count,ShiftRightSmi_Baseline,31,115
+block_count,ShiftRightSmi_Baseline,32,117
block_count,ShiftRightSmi_Baseline,33,0
-block_count,ShiftRightSmi_Baseline,34,115
+block_count,ShiftRightSmi_Baseline,34,117
block_count,ShiftRightLogical_Baseline,0,0
block_count,ShiftRightLogical_Baseline,1,0
block_count,ShiftRightLogical_Baseline,2,0
@@ -34019,9 +33999,9 @@
block_count,Add_RhsIsStringConstant_Internalize_Baseline,47,0
block_count,Equal_Baseline,0,165
block_count,Equal_Baseline,1,166
-block_count,Equal_Baseline,2,133
-block_count,Equal_Baseline,3,22
-block_count,Equal_Baseline,4,22
+block_count,Equal_Baseline,2,136
+block_count,Equal_Baseline,3,24
+block_count,Equal_Baseline,4,23
block_count,Equal_Baseline,5,9
block_count,Equal_Baseline,6,9
block_count,Equal_Baseline,7,8
@@ -34114,24 +34094,24 @@
block_count,Equal_Baseline,94,0
block_count,Equal_Baseline,95,0
block_count,Equal_Baseline,96,0
-block_count,Equal_Baseline,97,12
+block_count,Equal_Baseline,97,14
block_count,Equal_Baseline,98,0
-block_count,Equal_Baseline,99,12
-block_count,Equal_Baseline,100,9
+block_count,Equal_Baseline,99,13
+block_count,Equal_Baseline,100,10
block_count,Equal_Baseline,101,3
block_count,Equal_Baseline,102,3
block_count,Equal_Baseline,103,3
block_count,Equal_Baseline,104,0
-block_count,Equal_Baseline,105,12
+block_count,Equal_Baseline,105,13
block_count,Equal_Baseline,106,0
-block_count,Equal_Baseline,107,12
-block_count,Equal_Baseline,108,12
+block_count,Equal_Baseline,107,13
+block_count,Equal_Baseline,108,13
block_count,Equal_Baseline,109,1
-block_count,Equal_Baseline,110,10
-block_count,Equal_Baseline,111,12
+block_count,Equal_Baseline,110,12
+block_count,Equal_Baseline,111,13
block_count,Equal_Baseline,112,0
block_count,Equal_Baseline,113,0
-block_count,Equal_Baseline,114,111
+block_count,Equal_Baseline,114,112
block_count,Equal_Baseline,115,1
block_count,Equal_Baseline,116,0
block_count,Equal_Baseline,117,0
@@ -34151,7 +34131,7 @@
block_count,Equal_Baseline,131,0
block_count,Equal_Baseline,132,0
block_count,Equal_Baseline,133,1
-block_count,Equal_Baseline,134,109
+block_count,Equal_Baseline,134,110
block_count,Equal_Baseline,135,0
block_count,Equal_Baseline,136,0
block_count,Equal_Baseline,137,0
@@ -34164,14 +34144,14 @@
block_count,Equal_Baseline,144,0
block_count,Equal_Baseline,145,0
block_count,Equal_Baseline,146,0
-block_count,Equal_Baseline,147,2
+block_count,Equal_Baseline,147,1
block_count,Equal_Baseline,148,1
block_count,Equal_Baseline,149,0
-block_count,Equal_Baseline,150,32
-block_count,Equal_Baseline,151,8
-block_count,Equal_Baseline,152,8
-block_count,Equal_Baseline,153,6
-block_count,Equal_Baseline,154,3
+block_count,Equal_Baseline,150,30
+block_count,Equal_Baseline,151,6
+block_count,Equal_Baseline,152,6
+block_count,Equal_Baseline,153,4
+block_count,Equal_Baseline,154,1
block_count,Equal_Baseline,155,0
block_count,Equal_Baseline,156,0
block_count,Equal_Baseline,157,0
@@ -34183,9 +34163,9 @@
block_count,Equal_Baseline,163,0
block_count,Equal_Baseline,164,0
block_count,Equal_Baseline,165,0
-block_count,Equal_Baseline,166,3
+block_count,Equal_Baseline,166,1
block_count,Equal_Baseline,167,0
-block_count,Equal_Baseline,168,3
+block_count,Equal_Baseline,168,1
block_count,Equal_Baseline,169,2
block_count,Equal_Baseline,170,1
block_count,Equal_Baseline,171,0
@@ -34194,25 +34174,25 @@
block_count,Equal_Baseline,174,0
block_count,Equal_Baseline,175,0
block_count,Equal_Baseline,176,0
-block_count,Equal_Baseline,177,24
-block_count,Equal_Baseline,178,33
-block_count,Equal_Baseline,179,119
+block_count,Equal_Baseline,177,23
+block_count,Equal_Baseline,178,30
+block_count,Equal_Baseline,179,120
block_count,Equal_Baseline,180,165
block_count,Equal_Baseline,181,0
block_count,Equal_Baseline,182,165
-block_count,StrictEqual_Baseline,0,207
-block_count,StrictEqual_Baseline,1,175
-block_count,StrictEqual_Baseline,2,124
-block_count,StrictEqual_Baseline,3,124
-block_count,StrictEqual_Baseline,4,123
-block_count,StrictEqual_Baseline,5,60
-block_count,StrictEqual_Baseline,6,60
-block_count,StrictEqual_Baseline,7,28
-block_count,StrictEqual_Baseline,8,22
+block_count,StrictEqual_Baseline,0,201
+block_count,StrictEqual_Baseline,1,169
+block_count,StrictEqual_Baseline,2,120
+block_count,StrictEqual_Baseline,3,120
+block_count,StrictEqual_Baseline,4,119
+block_count,StrictEqual_Baseline,5,58
+block_count,StrictEqual_Baseline,6,58
+block_count,StrictEqual_Baseline,7,27
+block_count,StrictEqual_Baseline,8,20
block_count,StrictEqual_Baseline,9,0
-block_count,StrictEqual_Baseline,10,22
+block_count,StrictEqual_Baseline,10,20
block_count,StrictEqual_Baseline,11,0
-block_count,StrictEqual_Baseline,12,22
+block_count,StrictEqual_Baseline,12,20
block_count,StrictEqual_Baseline,13,6
block_count,StrictEqual_Baseline,14,3
block_count,StrictEqual_Baseline,15,2
@@ -34257,18 +34237,18 @@
block_count,StrictEqual_Baseline,54,0
block_count,StrictEqual_Baseline,55,0
block_count,StrictEqual_Baseline,56,0
-block_count,StrictEqual_Baseline,57,63
+block_count,StrictEqual_Baseline,57,61
block_count,StrictEqual_Baseline,58,0
block_count,StrictEqual_Baseline,59,0
block_count,StrictEqual_Baseline,60,0
-block_count,StrictEqual_Baseline,61,63
-block_count,StrictEqual_Baseline,62,15
-block_count,StrictEqual_Baseline,63,47
-block_count,StrictEqual_Baseline,64,63
+block_count,StrictEqual_Baseline,61,61
+block_count,StrictEqual_Baseline,62,14
+block_count,StrictEqual_Baseline,63,46
+block_count,StrictEqual_Baseline,64,61
block_count,StrictEqual_Baseline,65,0
-block_count,StrictEqual_Baseline,66,63
-block_count,StrictEqual_Baseline,67,63
-block_count,StrictEqual_Baseline,68,45
+block_count,StrictEqual_Baseline,66,60
+block_count,StrictEqual_Baseline,67,61
+block_count,StrictEqual_Baseline,68,44
block_count,StrictEqual_Baseline,69,17
block_count,StrictEqual_Baseline,70,0
block_count,StrictEqual_Baseline,71,0
@@ -34280,13 +34260,13 @@
block_count,StrictEqual_Baseline,77,0
block_count,StrictEqual_Baseline,78,0
block_count,StrictEqual_Baseline,79,0
-block_count,StrictEqual_Baseline,80,50
+block_count,StrictEqual_Baseline,80,48
block_count,StrictEqual_Baseline,81,0
block_count,StrictEqual_Baseline,82,0
block_count,StrictEqual_Baseline,83,0
block_count,StrictEqual_Baseline,84,0
block_count,StrictEqual_Baseline,85,0
-block_count,StrictEqual_Baseline,86,49
+block_count,StrictEqual_Baseline,86,48
block_count,StrictEqual_Baseline,87,1
block_count,StrictEqual_Baseline,88,32
block_count,StrictEqual_Baseline,89,16
@@ -34316,13 +34296,13 @@
block_count,StrictEqual_Baseline,113,0
block_count,StrictEqual_Baseline,114,0
block_count,StrictEqual_Baseline,115,16
-block_count,StrictEqual_Baseline,116,111
+block_count,StrictEqual_Baseline,116,108
block_count,StrictEqual_Baseline,117,32
-block_count,StrictEqual_Baseline,118,207
+block_count,StrictEqual_Baseline,118,201
block_count,StrictEqual_Baseline,119,0
-block_count,StrictEqual_Baseline,120,207
-block_count,LessThan_Baseline,0,163
-block_count,LessThan_Baseline,1,164
+block_count,StrictEqual_Baseline,120,201
+block_count,LessThan_Baseline,0,158
+block_count,LessThan_Baseline,1,158
block_count,LessThan_Baseline,2,10
block_count,LessThan_Baseline,3,3
block_count,LessThan_Baseline,4,0
@@ -34421,7 +34401,7 @@
block_count,LessThan_Baseline,97,0
block_count,LessThan_Baseline,98,0
block_count,LessThan_Baseline,99,0
-block_count,LessThan_Baseline,100,3
+block_count,LessThan_Baseline,100,2
block_count,LessThan_Baseline,101,0
block_count,LessThan_Baseline,102,0
block_count,LessThan_Baseline,103,0
@@ -34436,7 +34416,7 @@
block_count,LessThan_Baseline,112,0
block_count,LessThan_Baseline,113,0
block_count,LessThan_Baseline,114,0
-block_count,LessThan_Baseline,115,3
+block_count,LessThan_Baseline,115,2
block_count,LessThan_Baseline,116,7
block_count,LessThan_Baseline,117,0
block_count,LessThan_Baseline,118,0
@@ -34451,7 +34431,7 @@
block_count,LessThan_Baseline,127,0
block_count,LessThan_Baseline,128,0
block_count,LessThan_Baseline,129,7
-block_count,LessThan_Baseline,130,153
+block_count,LessThan_Baseline,130,147
block_count,LessThan_Baseline,131,0
block_count,LessThan_Baseline,132,0
block_count,LessThan_Baseline,133,0
@@ -34468,25 +34448,25 @@
block_count,LessThan_Baseline,144,0
block_count,LessThan_Baseline,145,0
block_count,LessThan_Baseline,146,0
-block_count,LessThan_Baseline,147,152
-block_count,LessThan_Baseline,148,46
-block_count,LessThan_Baseline,149,106
+block_count,LessThan_Baseline,147,146
+block_count,LessThan_Baseline,148,44
+block_count,LessThan_Baseline,149,102
block_count,LessThan_Baseline,150,0
block_count,LessThan_Baseline,151,0
block_count,LessThan_Baseline,152,0
block_count,LessThan_Baseline,153,0
block_count,LessThan_Baseline,154,0
block_count,LessThan_Baseline,155,0
-block_count,LessThan_Baseline,156,11
+block_count,LessThan_Baseline,156,10
block_count,LessThan_Baseline,157,8
block_count,LessThan_Baseline,158,2
-block_count,LessThan_Baseline,159,54
-block_count,LessThan_Baseline,160,108
-block_count,LessThan_Baseline,161,163
+block_count,LessThan_Baseline,159,52
+block_count,LessThan_Baseline,160,105
+block_count,LessThan_Baseline,161,158
block_count,LessThan_Baseline,162,0
-block_count,LessThan_Baseline,163,163
-block_count,GreaterThan_Baseline,0,49
-block_count,GreaterThan_Baseline,1,49
+block_count,LessThan_Baseline,163,158
+block_count,GreaterThan_Baseline,0,50
+block_count,GreaterThan_Baseline,1,50
block_count,GreaterThan_Baseline,2,4
block_count,GreaterThan_Baseline,3,2
block_count,GreaterThan_Baseline,4,0
@@ -34615,7 +34595,7 @@
block_count,GreaterThan_Baseline,127,0
block_count,GreaterThan_Baseline,128,0
block_count,GreaterThan_Baseline,129,1
-block_count,GreaterThan_Baseline,130,45
+block_count,GreaterThan_Baseline,130,46
block_count,GreaterThan_Baseline,131,0
block_count,GreaterThan_Baseline,132,0
block_count,GreaterThan_Baseline,133,0
@@ -34632,9 +34612,9 @@
block_count,GreaterThan_Baseline,144,0
block_count,GreaterThan_Baseline,145,0
block_count,GreaterThan_Baseline,146,0
-block_count,GreaterThan_Baseline,147,45
+block_count,GreaterThan_Baseline,147,46
block_count,GreaterThan_Baseline,148,27
-block_count,GreaterThan_Baseline,149,17
+block_count,GreaterThan_Baseline,149,18
block_count,GreaterThan_Baseline,150,0
block_count,GreaterThan_Baseline,151,0
block_count,GreaterThan_Baseline,152,0
@@ -34645,12 +34625,12 @@
block_count,GreaterThan_Baseline,157,2
block_count,GreaterThan_Baseline,158,1
block_count,GreaterThan_Baseline,159,30
-block_count,GreaterThan_Baseline,160,19
-block_count,GreaterThan_Baseline,161,49
+block_count,GreaterThan_Baseline,160,20
+block_count,GreaterThan_Baseline,161,50
block_count,GreaterThan_Baseline,162,0
-block_count,GreaterThan_Baseline,163,49
-block_count,LessThanOrEqual_Baseline,0,22
-block_count,LessThanOrEqual_Baseline,1,22
+block_count,GreaterThan_Baseline,163,50
+block_count,LessThanOrEqual_Baseline,0,20
+block_count,LessThanOrEqual_Baseline,1,20
block_count,LessThanOrEqual_Baseline,2,1
block_count,LessThanOrEqual_Baseline,3,0
block_count,LessThanOrEqual_Baseline,4,0
@@ -34765,7 +34745,7 @@
block_count,LessThanOrEqual_Baseline,113,0
block_count,LessThanOrEqual_Baseline,114,0
block_count,LessThanOrEqual_Baseline,115,0
-block_count,LessThanOrEqual_Baseline,116,1
+block_count,LessThanOrEqual_Baseline,116,0
block_count,LessThanOrEqual_Baseline,117,0
block_count,LessThanOrEqual_Baseline,118,0
block_count,LessThanOrEqual_Baseline,119,0
@@ -34778,8 +34758,8 @@
block_count,LessThanOrEqual_Baseline,126,0
block_count,LessThanOrEqual_Baseline,127,0
block_count,LessThanOrEqual_Baseline,128,0
-block_count,LessThanOrEqual_Baseline,129,1
-block_count,LessThanOrEqual_Baseline,130,20
+block_count,LessThanOrEqual_Baseline,129,0
+block_count,LessThanOrEqual_Baseline,130,18
block_count,LessThanOrEqual_Baseline,131,0
block_count,LessThanOrEqual_Baseline,132,0
block_count,LessThanOrEqual_Baseline,133,0
@@ -34796,9 +34776,9 @@
block_count,LessThanOrEqual_Baseline,144,0
block_count,LessThanOrEqual_Baseline,145,0
block_count,LessThanOrEqual_Baseline,146,0
-block_count,LessThanOrEqual_Baseline,147,20
+block_count,LessThanOrEqual_Baseline,147,18
block_count,LessThanOrEqual_Baseline,148,1
-block_count,LessThanOrEqual_Baseline,149,18
+block_count,LessThanOrEqual_Baseline,149,16
block_count,LessThanOrEqual_Baseline,150,0
block_count,LessThanOrEqual_Baseline,151,0
block_count,LessThanOrEqual_Baseline,152,0
@@ -34809,12 +34789,12 @@
block_count,LessThanOrEqual_Baseline,157,0
block_count,LessThanOrEqual_Baseline,158,1
block_count,LessThanOrEqual_Baseline,159,2
-block_count,LessThanOrEqual_Baseline,160,20
-block_count,LessThanOrEqual_Baseline,161,22
+block_count,LessThanOrEqual_Baseline,160,18
+block_count,LessThanOrEqual_Baseline,161,20
block_count,LessThanOrEqual_Baseline,162,0
-block_count,LessThanOrEqual_Baseline,163,22
-block_count,GreaterThanOrEqual_Baseline,0,42
-block_count,GreaterThanOrEqual_Baseline,1,42
+block_count,LessThanOrEqual_Baseline,163,20
+block_count,GreaterThanOrEqual_Baseline,0,41
+block_count,GreaterThanOrEqual_Baseline,1,41
block_count,GreaterThanOrEqual_Baseline,2,3
block_count,GreaterThanOrEqual_Baseline,3,2
block_count,GreaterThanOrEqual_Baseline,4,0
@@ -34943,7 +34923,7 @@
block_count,GreaterThanOrEqual_Baseline,127,0
block_count,GreaterThanOrEqual_Baseline,128,0
block_count,GreaterThanOrEqual_Baseline,129,0
-block_count,GreaterThanOrEqual_Baseline,130,38
+block_count,GreaterThanOrEqual_Baseline,130,37
block_count,GreaterThanOrEqual_Baseline,131,0
block_count,GreaterThanOrEqual_Baseline,132,0
block_count,GreaterThanOrEqual_Baseline,133,0
@@ -34960,8 +34940,8 @@
block_count,GreaterThanOrEqual_Baseline,144,0
block_count,GreaterThanOrEqual_Baseline,145,0
block_count,GreaterThanOrEqual_Baseline,146,0
-block_count,GreaterThanOrEqual_Baseline,147,38
-block_count,GreaterThanOrEqual_Baseline,148,22
+block_count,GreaterThanOrEqual_Baseline,147,37
+block_count,GreaterThanOrEqual_Baseline,148,21
block_count,GreaterThanOrEqual_Baseline,149,15
block_count,GreaterThanOrEqual_Baseline,150,0
block_count,GreaterThanOrEqual_Baseline,151,0
@@ -34972,14 +34952,14 @@
block_count,GreaterThanOrEqual_Baseline,156,3
block_count,GreaterThanOrEqual_Baseline,157,1
block_count,GreaterThanOrEqual_Baseline,158,1
-block_count,GreaterThanOrEqual_Baseline,159,24
+block_count,GreaterThanOrEqual_Baseline,159,23
block_count,GreaterThanOrEqual_Baseline,160,17
-block_count,GreaterThanOrEqual_Baseline,161,42
+block_count,GreaterThanOrEqual_Baseline,161,41
block_count,GreaterThanOrEqual_Baseline,162,0
-block_count,GreaterThanOrEqual_Baseline,163,42
+block_count,GreaterThanOrEqual_Baseline,163,40
block_count,Equal_WithFeedback,0,23
-block_count,Equal_WithFeedback,1,30
-block_count,Equal_WithFeedback,2,21
+block_count,Equal_WithFeedback,1,29
+block_count,Equal_WithFeedback,2,20
block_count,Equal_WithFeedback,3,17
block_count,Equal_WithFeedback,4,17
block_count,Equal_WithFeedback,5,15
@@ -35092,9 +35072,9 @@
block_count,Equal_WithFeedback,112,0
block_count,Equal_WithFeedback,113,2
block_count,Equal_WithFeedback,114,3
-block_count,Equal_WithFeedback,115,3
-block_count,Equal_WithFeedback,116,2
-block_count,Equal_WithFeedback,117,1
+block_count,Equal_WithFeedback,115,2
+block_count,Equal_WithFeedback,116,1
+block_count,Equal_WithFeedback,117,0
block_count,Equal_WithFeedback,118,0
block_count,Equal_WithFeedback,119,0
block_count,Equal_WithFeedback,120,0
@@ -35127,7 +35107,7 @@
block_count,Equal_WithFeedback,147,1
block_count,Equal_WithFeedback,148,1
block_count,Equal_WithFeedback,149,0
-block_count,Equal_WithFeedback,150,8
+block_count,Equal_WithFeedback,150,9
block_count,Equal_WithFeedback,151,8
block_count,Equal_WithFeedback,152,8
block_count,Equal_WithFeedback,153,8
@@ -35155,14 +35135,14 @@
block_count,Equal_WithFeedback,175,0
block_count,Equal_WithFeedback,176,0
block_count,Equal_WithFeedback,177,0
-block_count,Equal_WithFeedback,178,8
-block_count,Equal_WithFeedback,179,14
+block_count,Equal_WithFeedback,178,9
+block_count,Equal_WithFeedback,179,13
block_count,Equal_WithFeedback,180,23
block_count,Equal_WithFeedback,181,0
block_count,Equal_WithFeedback,182,23
block_count,StrictEqual_WithFeedback,0,44
block_count,StrictEqual_WithFeedback,1,34
-block_count,StrictEqual_WithFeedback,2,20
+block_count,StrictEqual_WithFeedback,2,21
block_count,StrictEqual_WithFeedback,3,20
block_count,StrictEqual_WithFeedback,4,19
block_count,StrictEqual_WithFeedback,5,8
@@ -35248,10 +35228,10 @@
block_count,StrictEqual_WithFeedback,85,0
block_count,StrictEqual_WithFeedback,86,12
block_count,StrictEqual_WithFeedback,87,3
-block_count,StrictEqual_WithFeedback,88,9
+block_count,StrictEqual_WithFeedback,88,10
block_count,StrictEqual_WithFeedback,89,8
block_count,StrictEqual_WithFeedback,90,8
-block_count,StrictEqual_WithFeedback,91,4
+block_count,StrictEqual_WithFeedback,91,5
block_count,StrictEqual_WithFeedback,92,2
block_count,StrictEqual_WithFeedback,93,0
block_count,StrictEqual_WithFeedback,94,0
@@ -35276,13 +35256,13 @@
block_count,StrictEqual_WithFeedback,113,0
block_count,StrictEqual_WithFeedback,114,0
block_count,StrictEqual_WithFeedback,115,1
-block_count,StrictEqual_WithFeedback,116,23
-block_count,StrictEqual_WithFeedback,117,9
+block_count,StrictEqual_WithFeedback,116,24
+block_count,StrictEqual_WithFeedback,117,10
block_count,StrictEqual_WithFeedback,118,44
block_count,StrictEqual_WithFeedback,119,0
block_count,StrictEqual_WithFeedback,120,44
-block_count,LessThan_WithFeedback,0,4
-block_count,LessThan_WithFeedback,1,4
+block_count,LessThan_WithFeedback,0,5
+block_count,LessThan_WithFeedback,1,5
block_count,LessThan_WithFeedback,2,0
block_count,LessThan_WithFeedback,3,0
block_count,LessThan_WithFeedback,4,0
@@ -35411,7 +35391,7 @@
block_count,LessThan_WithFeedback,127,0
block_count,LessThan_WithFeedback,128,0
block_count,LessThan_WithFeedback,129,0
-block_count,LessThan_WithFeedback,130,4
+block_count,LessThan_WithFeedback,130,5
block_count,LessThan_WithFeedback,131,0
block_count,LessThan_WithFeedback,132,0
block_count,LessThan_WithFeedback,133,0
@@ -35428,9 +35408,9 @@
block_count,LessThan_WithFeedback,144,0
block_count,LessThan_WithFeedback,145,0
block_count,LessThan_WithFeedback,146,0
-block_count,LessThan_WithFeedback,147,4
+block_count,LessThan_WithFeedback,147,5
block_count,LessThan_WithFeedback,148,0
-block_count,LessThan_WithFeedback,149,4
+block_count,LessThan_WithFeedback,149,5
block_count,LessThan_WithFeedback,150,0
block_count,LessThan_WithFeedback,151,0
block_count,LessThan_WithFeedback,152,0
@@ -35441,10 +35421,10 @@
block_count,LessThan_WithFeedback,157,0
block_count,LessThan_WithFeedback,158,0
block_count,LessThan_WithFeedback,159,0
-block_count,LessThan_WithFeedback,160,4
-block_count,LessThan_WithFeedback,161,4
+block_count,LessThan_WithFeedback,160,5
+block_count,LessThan_WithFeedback,161,5
block_count,LessThan_WithFeedback,162,0
-block_count,LessThan_WithFeedback,163,4
+block_count,LessThan_WithFeedback,163,5
block_count,GreaterThanOrEqual_WithFeedback,0,0
block_count,GreaterThanOrEqual_WithFeedback,1,0
block_count,GreaterThanOrEqual_WithFeedback,2,0
@@ -35644,8 +35624,8 @@
block_count,BitwiseNot_Baseline,32,0
block_count,BitwiseNot_Baseline,33,1
block_count,BitwiseNot_Baseline,34,1
-block_count,Decrement_Baseline,0,16
-block_count,Decrement_Baseline,1,16
+block_count,Decrement_Baseline,0,22
+block_count,Decrement_Baseline,1,22
block_count,Decrement_Baseline,2,0
block_count,Decrement_Baseline,3,0
block_count,Decrement_Baseline,4,0
@@ -35660,18 +35640,18 @@
block_count,Decrement_Baseline,13,0
block_count,Decrement_Baseline,14,0
block_count,Decrement_Baseline,15,0
-block_count,Decrement_Baseline,16,16
-block_count,Decrement_Baseline,17,16
+block_count,Decrement_Baseline,16,22
+block_count,Decrement_Baseline,17,22
block_count,Decrement_Baseline,18,0
block_count,Decrement_Baseline,19,0
block_count,Decrement_Baseline,20,0
block_count,Decrement_Baseline,21,0
block_count,Decrement_Baseline,22,0
-block_count,Decrement_Baseline,23,16
+block_count,Decrement_Baseline,23,22
block_count,Decrement_Baseline,24,0
-block_count,Decrement_Baseline,25,16
-block_count,Increment_Baseline,0,111
-block_count,Increment_Baseline,1,111
+block_count,Decrement_Baseline,25,22
+block_count,Increment_Baseline,0,106
+block_count,Increment_Baseline,1,106
block_count,Increment_Baseline,2,0
block_count,Increment_Baseline,3,0
block_count,Increment_Baseline,4,0
@@ -35686,16 +35666,16 @@
block_count,Increment_Baseline,13,0
block_count,Increment_Baseline,14,0
block_count,Increment_Baseline,15,0
-block_count,Increment_Baseline,16,111
-block_count,Increment_Baseline,17,111
+block_count,Increment_Baseline,16,106
+block_count,Increment_Baseline,17,106
block_count,Increment_Baseline,18,0
block_count,Increment_Baseline,19,0
block_count,Increment_Baseline,20,0
block_count,Increment_Baseline,21,0
block_count,Increment_Baseline,22,0
-block_count,Increment_Baseline,23,111
+block_count,Increment_Baseline,23,106
block_count,Increment_Baseline,24,0
-block_count,Increment_Baseline,25,111
+block_count,Increment_Baseline,25,106
block_count,Negate_Baseline,0,3
block_count,Negate_Baseline,1,3
block_count,Negate_Baseline,2,2
@@ -36649,20 +36629,20 @@
block_count,ObjectPrototypeHasOwnProperty,2,241
block_count,ObjectPrototypeHasOwnProperty,3,241
block_count,ObjectPrototypeHasOwnProperty,4,241
-block_count,ObjectPrototypeHasOwnProperty,5,240
-block_count,ObjectPrototypeHasOwnProperty,6,240
+block_count,ObjectPrototypeHasOwnProperty,5,241
+block_count,ObjectPrototypeHasOwnProperty,6,241
block_count,ObjectPrototypeHasOwnProperty,7,0
block_count,ObjectPrototypeHasOwnProperty,8,0
block_count,ObjectPrototypeHasOwnProperty,9,0
block_count,ObjectPrototypeHasOwnProperty,10,0
block_count,ObjectPrototypeHasOwnProperty,11,0
-block_count,ObjectPrototypeHasOwnProperty,12,240
-block_count,ObjectPrototypeHasOwnProperty,13,240
+block_count,ObjectPrototypeHasOwnProperty,12,241
+block_count,ObjectPrototypeHasOwnProperty,13,241
block_count,ObjectPrototypeHasOwnProperty,14,0
block_count,ObjectPrototypeHasOwnProperty,15,0
block_count,ObjectPrototypeHasOwnProperty,16,0
-block_count,ObjectPrototypeHasOwnProperty,17,240
-block_count,ObjectPrototypeHasOwnProperty,18,240
+block_count,ObjectPrototypeHasOwnProperty,17,241
+block_count,ObjectPrototypeHasOwnProperty,18,241
block_count,ObjectPrototypeHasOwnProperty,19,193
block_count,ObjectPrototypeHasOwnProperty,20,193
block_count,ObjectPrototypeHasOwnProperty,21,191
@@ -36908,35 +36888,35 @@
block_count,ObjectToString,84,0
block_count,ObjectToString,85,170
block_count,ObjectToString,86,61
-block_count,OrdinaryHasInstance,0,169
-block_count,OrdinaryHasInstance,1,168
-block_count,OrdinaryHasInstance,2,168
+block_count,OrdinaryHasInstance,0,167
+block_count,OrdinaryHasInstance,1,166
+block_count,OrdinaryHasInstance,2,166
block_count,OrdinaryHasInstance,3,0
-block_count,OrdinaryHasInstance,4,168
+block_count,OrdinaryHasInstance,4,166
block_count,OrdinaryHasInstance,5,0
block_count,OrdinaryHasInstance,6,0
block_count,OrdinaryHasInstance,7,0
-block_count,OrdinaryHasInstance,8,168
-block_count,OrdinaryHasInstance,9,168
-block_count,OrdinaryHasInstance,10,168
-block_count,OrdinaryHasInstance,11,168
+block_count,OrdinaryHasInstance,8,166
+block_count,OrdinaryHasInstance,9,166
+block_count,OrdinaryHasInstance,10,166
+block_count,OrdinaryHasInstance,11,166
block_count,OrdinaryHasInstance,12,6
-block_count,OrdinaryHasInstance,13,162
-block_count,OrdinaryHasInstance,14,168
-block_count,OrdinaryHasInstance,15,545
-block_count,OrdinaryHasInstance,16,488
-block_count,OrdinaryHasInstance,17,57
-block_count,OrdinaryHasInstance,18,57
-block_count,OrdinaryHasInstance,19,57
+block_count,OrdinaryHasInstance,13,159
+block_count,OrdinaryHasInstance,14,166
+block_count,OrdinaryHasInstance,15,535
+block_count,OrdinaryHasInstance,16,477
+block_count,OrdinaryHasInstance,17,58
+block_count,OrdinaryHasInstance,18,58
+block_count,OrdinaryHasInstance,19,58
block_count,OrdinaryHasInstance,20,0
block_count,OrdinaryHasInstance,21,0
block_count,OrdinaryHasInstance,22,0
-block_count,OrdinaryHasInstance,23,545
-block_count,OrdinaryHasInstance,24,415
-block_count,OrdinaryHasInstance,25,376
-block_count,OrdinaryHasInstance,26,38
-block_count,OrdinaryHasInstance,27,130
-block_count,OrdinaryHasInstance,28,168
+block_count,OrdinaryHasInstance,23,535
+block_count,OrdinaryHasInstance,24,404
+block_count,OrdinaryHasInstance,25,368
+block_count,OrdinaryHasInstance,26,35
+block_count,OrdinaryHasInstance,27,131
+block_count,OrdinaryHasInstance,28,166
block_count,OrdinaryHasInstance,29,0
block_count,OrdinaryHasInstance,30,0
block_count,OrdinaryHasInstance,31,0
@@ -37054,7 +37034,7 @@
block_count,InstanceOf_Baseline,17,0
block_count,InstanceOf_Baseline,18,0
block_count,InstanceOf_Baseline,19,0
-block_count,InstanceOf_Baseline,20,37
+block_count,InstanceOf_Baseline,20,36
block_count,InstanceOf_Baseline,21,0
block_count,InstanceOf_Baseline,22,37
block_count,InstanceOf_Baseline,23,37
@@ -37165,20 +37145,20 @@
block_count,ForInFilter,16,0
block_count,ForInFilter,17,219
block_count,ForInFilter,18,219
-block_count,ForInFilter,19,171
-block_count,ForInFilter,20,171
-block_count,ForInFilter,21,171
+block_count,ForInFilter,19,172
+block_count,ForInFilter,20,172
+block_count,ForInFilter,21,172
block_count,ForInFilter,22,0
block_count,ForInFilter,23,0
block_count,ForInFilter,24,0
-block_count,ForInFilter,25,171
-block_count,ForInFilter,26,171
+block_count,ForInFilter,25,172
+block_count,ForInFilter,26,172
block_count,ForInFilter,27,0
block_count,ForInFilter,28,0
block_count,ForInFilter,29,0
block_count,ForInFilter,30,47
block_count,ForInFilter,31,0
-block_count,ForInFilter,32,171
+block_count,ForInFilter,32,172
block_count,ForInFilter,33,220
block_count,ForInFilter,34,220
block_count,ForInFilter,35,196
@@ -37213,7 +37193,7 @@
block_count,ForInFilter,64,195
block_count,ForInFilter,65,0
block_count,ForInFilter,66,195
-block_count,ForInFilter,67,209
+block_count,ForInFilter,67,210
block_count,ForInFilter,68,113
block_count,ForInFilter,69,63
block_count,ForInFilter,70,14
@@ -38156,7 +38136,7 @@
block_count,SetConstructor,389,90
block_count,SetConstructor,390,0
block_count,SetConstructor,391,90
-block_count,SetConstructor,392,361
+block_count,SetConstructor,392,362
block_count,SetConstructor,393,271
block_count,SetConstructor,394,90
block_count,SetConstructor,395,90
@@ -38169,7 +38149,7 @@
block_count,SetPrototypeHas,5,0
block_count,SetPrototypeHas,6,11
block_count,SetPrototypeHas,7,5
-block_count,SetPrototypeHas,8,6
+block_count,SetPrototypeHas,8,5
block_count,SetPrototypeAdd,0,71
block_count,SetPrototypeAdd,1,0
block_count,SetPrototypeAdd,2,71
@@ -38193,13 +38173,13 @@
block_count,SetPrototypeAdd,20,49
block_count,SetPrototypeAdd,21,69
block_count,SetPrototypeAdd,22,69
-block_count,SetPrototypeAdd,23,99
-block_count,SetPrototypeAdd,24,31
-block_count,SetPrototypeAdd,25,30
-block_count,SetPrototypeAdd,26,29
+block_count,SetPrototypeAdd,23,100
+block_count,SetPrototypeAdd,24,32
+block_count,SetPrototypeAdd,25,31
+block_count,SetPrototypeAdd,26,30
block_count,SetPrototypeAdd,27,1
block_count,SetPrototypeAdd,28,0
-block_count,SetPrototypeAdd,29,29
+block_count,SetPrototypeAdd,29,30
block_count,SetPrototypeAdd,30,68
block_count,SetPrototypeAdd,31,0
block_count,SetPrototypeAdd,32,0
@@ -38543,10 +38523,10 @@
block_count,SetOrSetIteratorToList,54,0
block_count,SetOrSetIteratorToList,55,0
block_count,SetOrSetIteratorToList,56,0
-block_count,StringFromCharCode,0,18
+block_count,StringFromCharCode,0,17
block_count,StringFromCharCode,1,0
-block_count,StringFromCharCode,2,18
-block_count,StringFromCharCode,3,18
+block_count,StringFromCharCode,2,17
+block_count,StringFromCharCode,3,17
block_count,StringFromCharCode,4,8
block_count,StringFromCharCode,5,8
block_count,StringFromCharCode,6,8
@@ -38573,7 +38553,7 @@
block_count,StringFromCharCode,27,0
block_count,StringFromCharCode,28,863
block_count,StringFromCharCode,29,863
-block_count,StringFromCharCode,30,854
+block_count,StringFromCharCode,30,855
block_count,StringFromCharCode,31,8
block_count,StringFromCharCode,32,0
block_count,StringFromCharCode,33,0
@@ -38620,7 +38600,7 @@
block_count,StringFromCharCode,74,9
block_count,StringFromCharCode,75,0
block_count,StringFromCharCode,76,9
-block_count,StringFromCharCode,77,7
+block_count,StringFromCharCode,77,6
block_count,StringFromCharCode,78,2
block_count,StringFromCharCode,79,2
block_count,StringFromCharCode,80,2
@@ -39673,7 +39653,7 @@
block_count,WeakMapLookupHashIndex,32,72
block_count,WeakMapLookupHashIndex,33,109
block_count,WeakMapLookupHashIndex,34,109
-block_count,WeakMapLookupHashIndex,35,37
+block_count,WeakMapLookupHashIndex,35,36
block_count,WeakMapLookupHashIndex,36,72
block_count,WeakMapLookupHashIndex,37,0
block_count,WeakMapPrototypeGet,0,37
@@ -40215,26 +40195,26 @@
block_count,AsyncGeneratorYieldWithAwaitResolveClosure,3,7
block_count,AsyncGeneratorYieldWithAwaitResolveClosure,4,0
block_count,AsyncGeneratorYieldWithAwaitResolveClosure,5,7
-block_count,StringAdd_CheckNone,0,7777
-block_count,StringAdd_CheckNone,1,7362
-block_count,StringAdd_CheckNone,2,7315
-block_count,StringAdd_CheckNone,3,7315
-block_count,StringAdd_CheckNone,4,5878
-block_count,StringAdd_CheckNone,5,5846
+block_count,StringAdd_CheckNone,0,7785
+block_count,StringAdd_CheckNone,1,7370
+block_count,StringAdd_CheckNone,2,7323
+block_count,StringAdd_CheckNone,3,7323
+block_count,StringAdd_CheckNone,4,5885
+block_count,StringAdd_CheckNone,5,5853
block_count,StringAdd_CheckNone,6,32
-block_count,StringAdd_CheckNone,7,5878
-block_count,StringAdd_CheckNone,8,5867
+block_count,StringAdd_CheckNone,7,5885
+block_count,StringAdd_CheckNone,8,5874
block_count,StringAdd_CheckNone,9,10
-block_count,StringAdd_CheckNone,10,5878
+block_count,StringAdd_CheckNone,10,5885
block_count,StringAdd_CheckNone,11,2
-block_count,StringAdd_CheckNone,12,5875
-block_count,StringAdd_CheckNone,13,5878
+block_count,StringAdd_CheckNone,12,5882
+block_count,StringAdd_CheckNone,13,5885
block_count,StringAdd_CheckNone,14,0
-block_count,StringAdd_CheckNone,15,5878
-block_count,StringAdd_CheckNone,16,5878
-block_count,StringAdd_CheckNone,17,1436
-block_count,StringAdd_CheckNone,18,1461
-block_count,StringAdd_CheckNone,19,1460
+block_count,StringAdd_CheckNone,15,5884
+block_count,StringAdd_CheckNone,16,5885
+block_count,StringAdd_CheckNone,17,1438
+block_count,StringAdd_CheckNone,18,1463
+block_count,StringAdd_CheckNone,19,1462
block_count,StringAdd_CheckNone,20,25
block_count,StringAdd_CheckNone,21,1
block_count,StringAdd_CheckNone,22,0
@@ -40259,37 +40239,37 @@
block_count,StringAdd_CheckNone,41,0
block_count,StringAdd_CheckNone,42,0
block_count,StringAdd_CheckNone,43,25
-block_count,StringAdd_CheckNone,44,1435
-block_count,StringAdd_CheckNone,45,1426
-block_count,StringAdd_CheckNone,46,1426
-block_count,StringAdd_CheckNone,47,1426
+block_count,StringAdd_CheckNone,44,1437
+block_count,StringAdd_CheckNone,45,1428
+block_count,StringAdd_CheckNone,46,1428
+block_count,StringAdd_CheckNone,47,1428
block_count,StringAdd_CheckNone,48,0
-block_count,StringAdd_CheckNone,49,1426
+block_count,StringAdd_CheckNone,49,1428
block_count,StringAdd_CheckNone,50,0
block_count,StringAdd_CheckNone,51,0
-block_count,StringAdd_CheckNone,52,1426
+block_count,StringAdd_CheckNone,52,1428
block_count,StringAdd_CheckNone,53,0
-block_count,StringAdd_CheckNone,54,1426
+block_count,StringAdd_CheckNone,54,1428
block_count,StringAdd_CheckNone,55,821
-block_count,StringAdd_CheckNone,56,604
-block_count,StringAdd_CheckNone,57,1475
-block_count,StringAdd_CheckNone,58,870
-block_count,StringAdd_CheckNone,59,604
-block_count,StringAdd_CheckNone,60,1426
-block_count,StringAdd_CheckNone,61,358
-block_count,StringAdd_CheckNone,62,1067
-block_count,StringAdd_CheckNone,63,1426
+block_count,StringAdd_CheckNone,56,606
+block_count,StringAdd_CheckNone,57,1481
+block_count,StringAdd_CheckNone,58,874
+block_count,StringAdd_CheckNone,59,606
+block_count,StringAdd_CheckNone,60,1428
+block_count,StringAdd_CheckNone,61,359
+block_count,StringAdd_CheckNone,62,1068
+block_count,StringAdd_CheckNone,63,1428
block_count,StringAdd_CheckNone,64,0
-block_count,StringAdd_CheckNone,65,1426
-block_count,StringAdd_CheckNone,66,1007
-block_count,StringAdd_CheckNone,67,419
-block_count,StringAdd_CheckNone,68,530
+block_count,StringAdd_CheckNone,65,1428
+block_count,StringAdd_CheckNone,66,1008
+block_count,StringAdd_CheckNone,67,420
+block_count,StringAdd_CheckNone,68,532
block_count,StringAdd_CheckNone,69,111
-block_count,StringAdd_CheckNone,70,419
-block_count,StringAdd_CheckNone,71,1426
-block_count,StringAdd_CheckNone,72,348
-block_count,StringAdd_CheckNone,73,1078
-block_count,StringAdd_CheckNone,74,1426
+block_count,StringAdd_CheckNone,70,420
+block_count,StringAdd_CheckNone,71,1428
+block_count,StringAdd_CheckNone,72,349
+block_count,StringAdd_CheckNone,73,1079
+block_count,StringAdd_CheckNone,74,1428
block_count,StringAdd_CheckNone,75,0
block_count,StringAdd_CheckNone,76,8
block_count,StringAdd_CheckNone,77,8
@@ -40328,25 +40308,25 @@
block_count,StringAdd_CheckNone,110,0
block_count,StringAdd_CheckNone,111,0
block_count,StringAdd_CheckNone,112,47
-block_count,StringAdd_CheckNone,113,414
+block_count,StringAdd_CheckNone,113,415
block_count,SubString,0,1637
block_count,SubString,1,1410
-block_count,SubString,2,1298
+block_count,SubString,2,1299
block_count,SubString,3,1032
-block_count,SubString,4,1303
-block_count,SubString,5,271
-block_count,SubString,6,271
+block_count,SubString,4,1298
+block_count,SubString,5,266
+block_count,SubString,6,266
block_count,SubString,7,129
block_count,SubString,8,7
block_count,SubString,9,121
-block_count,SubString,10,142
-block_count,SubString,11,142
+block_count,SubString,10,137
+block_count,SubString,11,137
block_count,SubString,12,0
-block_count,SubString,13,271
+block_count,SubString,13,266
block_count,SubString,14,0
block_count,SubString,15,1032
block_count,SubString,16,1032
-block_count,SubString,17,447
+block_count,SubString,17,448
block_count,SubString,18,1
block_count,SubString,19,0
block_count,SubString,20,1
@@ -40368,7 +40348,7 @@
block_count,SubString,36,21
block_count,SubString,37,21
block_count,SubString,38,87
-block_count,SubString,39,65
+block_count,SubString,39,66
block_count,SubString,40,21
block_count,SubString,41,0
block_count,SubString,42,21
@@ -40415,25 +40395,25 @@
block_count,SubString,83,19
block_count,SubString,84,0
block_count,SubString,85,0
-block_count,SubString,86,562
-block_count,SubString,87,562
+block_count,SubString,86,563
+block_count,SubString,87,563
block_count,SubString,88,562
block_count,SubString,89,0
block_count,SubString,90,562
block_count,SubString,91,0
block_count,SubString,92,0
-block_count,SubString,93,562
+block_count,SubString,93,563
block_count,SubString,94,0
-block_count,SubString,95,562
+block_count,SubString,95,563
block_count,SubString,96,0
-block_count,SubString,97,562
-block_count,SubString,98,1357
-block_count,SubString,99,794
-block_count,SubString,100,562
-block_count,SubString,101,562
-block_count,SubString,102,408
+block_count,SubString,97,563
+block_count,SubString,98,1358
+block_count,SubString,99,795
+block_count,SubString,100,563
+block_count,SubString,101,563
+block_count,SubString,102,409
block_count,SubString,103,153
-block_count,SubString,104,562
+block_count,SubString,104,563
block_count,SubString,105,0
block_count,SubString,106,584
block_count,SubString,107,0
@@ -40588,7 +40568,7 @@
block_count,GetProperty,28,0
block_count,GetProperty,29,0
block_count,GetProperty,30,0
-block_count,GetProperty,31,91
+block_count,GetProperty,31,90
block_count,GetProperty,32,441
block_count,GetProperty,33,1169
block_count,GetProperty,34,1169
@@ -40622,7 +40602,7 @@
block_count,GetProperty,62,1103
block_count,GetProperty,63,0
block_count,GetProperty,64,1103
-block_count,GetProperty,65,55
+block_count,GetProperty,65,56
block_count,GetProperty,66,1047
block_count,GetProperty,67,2683
block_count,GetProperty,68,2423
@@ -40634,7 +40614,7 @@
block_count,GetProperty,74,723
block_count,GetProperty,75,440
block_count,GetProperty,76,282
-block_count,GetProperty,77,273
+block_count,GetProperty,77,274
block_count,GetProperty,78,8
block_count,GetProperty,79,431
block_count,GetProperty,80,2
@@ -40692,7 +40672,7 @@
block_count,GetProperty,132,0
block_count,GetProperty,133,0
block_count,GetProperty,134,0
-block_count,GetProperty,135,737
+block_count,GetProperty,135,738
block_count,GetProperty,136,736
block_count,GetProperty,137,1
block_count,GetProperty,138,0
@@ -40732,7 +40712,7 @@
block_count,GetProperty,172,0
block_count,GetProperty,173,0
block_count,GetProperty,174,0
-block_count,GetProperty,175,737
+block_count,GetProperty,175,738
block_count,GetProperty,176,728
block_count,GetProperty,177,9
block_count,GetProperty,178,431
@@ -44468,7 +44448,7 @@
block_count,ArrayPrototypeJoinImpl,4,179
block_count,ArrayPrototypeJoinImpl,5,179
block_count,ArrayPrototypeJoinImpl,6,179
-block_count,ArrayPrototypeJoinImpl,7,136
+block_count,ArrayPrototypeJoinImpl,7,137
block_count,ArrayPrototypeJoinImpl,8,103
block_count,ArrayPrototypeJoinImpl,9,33
block_count,ArrayPrototypeJoinImpl,10,33
@@ -46912,10 +46892,10 @@
block_count,ArrayMap,70,0
block_count,ArrayMap,71,32
block_count,ArrayMap,72,27
-block_count,ArrayMap,73,5
+block_count,ArrayMap,73,4
block_count,ArrayMap,74,14
block_count,ArrayMap,75,9
-block_count,ArrayMap,76,5
+block_count,ArrayMap,76,4
block_count,ArrayMap,77,32
block_count,ArrayMap,78,4
block_count,ArrayMap,79,27
@@ -46923,25 +46903,25 @@
block_count,ArrayMap,81,0
block_count,ArrayMap,82,45
block_count,ArrayMap,83,101
-block_count,ArrayMap,84,56
-block_count,ArrayMap,85,56
-block_count,ArrayMap,86,56
+block_count,ArrayMap,84,55
+block_count,ArrayMap,85,55
+block_count,ArrayMap,86,55
block_count,ArrayMap,87,0
block_count,ArrayMap,88,0
block_count,ArrayMap,89,0
-block_count,ArrayMap,90,56
+block_count,ArrayMap,90,55
block_count,ArrayMap,91,0
-block_count,ArrayMap,92,56
-block_count,ArrayMap,93,56
+block_count,ArrayMap,92,55
+block_count,ArrayMap,93,55
block_count,ArrayMap,94,0
block_count,ArrayMap,95,0
block_count,ArrayMap,96,0
block_count,ArrayMap,97,0
-block_count,ArrayMap,98,56
-block_count,ArrayMap,99,56
-block_count,ArrayMap,100,56
-block_count,ArrayMap,101,56
-block_count,ArrayMap,102,56
+block_count,ArrayMap,98,55
+block_count,ArrayMap,99,55
+block_count,ArrayMap,100,55
+block_count,ArrayMap,101,55
+block_count,ArrayMap,102,55
block_count,ArrayMap,103,0
block_count,ArrayMap,104,0
block_count,ArrayMap,105,0
@@ -46955,7 +46935,7 @@
block_count,ArrayMap,113,0
block_count,ArrayMap,114,0
block_count,ArrayMap,115,0
-block_count,ArrayMap,116,56
+block_count,ArrayMap,116,55
block_count,ArrayMap,117,19
block_count,ArrayMap,118,19
block_count,ArrayMap,119,0
@@ -46963,18 +46943,18 @@
block_count,ArrayMap,121,0
block_count,ArrayMap,122,0
block_count,ArrayMap,123,0
-block_count,ArrayMap,124,36
+block_count,ArrayMap,124,35
block_count,ArrayMap,125,0
block_count,ArrayMap,126,0
block_count,ArrayMap,127,0
-block_count,ArrayMap,128,36
-block_count,ArrayMap,129,36
+block_count,ArrayMap,128,35
+block_count,ArrayMap,129,35
block_count,ArrayMap,130,0
-block_count,ArrayMap,131,36
+block_count,ArrayMap,131,35
block_count,ArrayMap,132,36
-block_count,ArrayMap,133,56
+block_count,ArrayMap,133,55
block_count,ArrayMap,134,0
-block_count,ArrayMap,135,56
+block_count,ArrayMap,135,55
block_count,ArrayMap,136,0
block_count,ArrayMap,137,0
block_count,ArrayMap,138,0
@@ -48405,7 +48385,7 @@
block_count,ArrayPrototypeSplice,364,178
block_count,ArrayPrototypeSplice,365,178
block_count,ArrayPrototypeSplice,366,178
-block_count,ArrayPrototypeSplice,367,132
+block_count,ArrayPrototypeSplice,367,133
block_count,ArrayPrototypeSplice,368,40
block_count,ArrayPrototypeSplice,369,0
block_count,ArrayPrototypeSplice,370,0
@@ -48596,8 +48576,8 @@
block_count,ArrayPrototypeSplice,555,0
block_count,ArrayPrototypeSplice,556,0
block_count,ArrayPrototypeSplice,557,0
-block_count,ArrayPrototypeSplice,558,5
-block_count,ArrayPrototypeSplice,559,5
+block_count,ArrayPrototypeSplice,558,0
+block_count,ArrayPrototypeSplice,559,0
block_count,ArrayPrototypeSplice,560,0
block_count,ArrayPrototypeSplice,561,0
block_count,ArrayPrototypeSplice,562,0
@@ -48647,7 +48627,7 @@
block_count,ArrayPrototypeSplice,606,92
block_count,ArrayPrototypeSplice,607,1
block_count,ArrayPrototypeSplice,608,91
-block_count,ArrayPrototypeSplice,609,351
+block_count,ArrayPrototypeSplice,609,352
block_count,ArrayPrototypeSplice,610,260
block_count,ArrayPrototypeSplice,611,260
block_count,ArrayPrototypeSplice,612,260
@@ -48658,7 +48638,7 @@
block_count,ArrayPrototypeSplice,617,0
block_count,ArrayPrototypeSplice,618,91
block_count,ArrayPrototypeSplice,619,92
-block_count,ArrayPrototypeSplice,620,132
+block_count,ArrayPrototypeSplice,620,133
block_count,ArrayPrototypeSplice,621,45
block_count,ArrayPrototypeUnshift,0,3
block_count,ArrayPrototypeUnshift,1,0
@@ -49630,16 +49610,16 @@
block_count,StringPrototypeCharCodeAt,13,60
block_count,StringPrototypeCharCodeAt,14,60
block_count,StringPrototypeCharCodeAt,15,60
-block_count,StringPrototypeCharCodeAt,16,76
-block_count,StringPrototypeCharCodeAt,17,15
-block_count,StringPrototypeCharCodeAt,18,15
+block_count,StringPrototypeCharCodeAt,16,77
+block_count,StringPrototypeCharCodeAt,17,16
+block_count,StringPrototypeCharCodeAt,18,16
block_count,StringPrototypeCharCodeAt,19,0
block_count,StringPrototypeCharCodeAt,20,0
block_count,StringPrototypeCharCodeAt,21,0
-block_count,StringPrototypeCharCodeAt,22,14
-block_count,StringPrototypeCharCodeAt,23,14
+block_count,StringPrototypeCharCodeAt,22,16
+block_count,StringPrototypeCharCodeAt,23,16
block_count,StringPrototypeCharCodeAt,24,0
-block_count,StringPrototypeCharCodeAt,25,15
+block_count,StringPrototypeCharCodeAt,25,16
block_count,StringPrototypeCharCodeAt,26,0
block_count,StringPrototypeCharCodeAt,27,0
block_count,StringPrototypeCharCodeAt,28,0
@@ -50288,15 +50268,15 @@
block_count,StringAddConvertRight,208,9
block_count,StringCharAt,0,9
block_count,StringCharAt,1,11
-block_count,StringCharAt,2,2
-block_count,StringCharAt,3,2
-block_count,StringCharAt,4,2
+block_count,StringCharAt,2,1
+block_count,StringCharAt,3,1
+block_count,StringCharAt,4,1
block_count,StringCharAt,5,1
block_count,StringCharAt,6,0
block_count,StringCharAt,7,0
block_count,StringCharAt,8,0
block_count,StringCharAt,9,0
-block_count,StringCharAt,10,2
+block_count,StringCharAt,10,1
block_count,StringCharAt,11,0
block_count,StringCharAt,12,0
block_count,StringCharAt,13,0
@@ -50319,7 +50299,7 @@
block_count,StringCharAt,30,0
block_count,StringCharAt,31,0
block_count,StringCharAt,32,9
-block_count,FastNewClosureBaseline,0,36
+block_count,FastNewClosureBaseline,0,37
block_count,FastNewFunctionContextFunction,0,51
block_count,FastNewFunctionContextFunction,1,51
block_count,FastNewFunctionContextFunction,2,0
@@ -50406,15 +50386,15 @@
block_count,FastNewFunctionContextFunctionWithCells,64,11
block_count,FastNewFunctionContextFunctionWithCells,65,0
block_count,FastNewFunctionContextFunctionWithCells,66,11
-block_count,CreateRegExpLiteral,0,12
-block_count,CreateRegExpLiteral,1,12
+block_count,CreateRegExpLiteral,0,11
+block_count,CreateRegExpLiteral,1,11
block_count,CreateRegExpLiteral,2,0
-block_count,CreateRegExpLiteral,3,12
+block_count,CreateRegExpLiteral,3,11
block_count,CreateRegExpLiteral,4,0
-block_count,CreateRegExpLiteral,5,12
-block_count,CreateRegExpLiteral,6,12
+block_count,CreateRegExpLiteral,5,11
+block_count,CreateRegExpLiteral,6,11
block_count,CreateRegExpLiteral,7,0
-block_count,CreateRegExpLiteral,8,12
+block_count,CreateRegExpLiteral,8,11
block_count,CreateRegExpLiteral,9,0
block_count,CreateRegExpLiteral,10,0
block_count,CreateShallowArrayLiteral,0,9
@@ -50660,7 +50640,7 @@
block_count,CreateShallowObjectLiteral,154,5
block_count,CreateShallowObjectLiteral,155,28
block_count,CreateShallowObjectLiteral,156,6
-block_count,CreateShallowObjectLiteral,157,40
+block_count,CreateShallowObjectLiteral,157,41
block_count,CreateShallowObjectLiteral,158,24
block_count,CreateShallowObjectLiteral,159,16
block_count,CreateShallowObjectLiteral,160,0
@@ -50803,7 +50783,7 @@
block_count,NonNumberToNumeric,19,2
block_count,NonNumberToNumeric,20,5
block_count,NonNumberToNumeric,21,5
-block_count,NumberToString,0,1205
+block_count,NumberToString,0,1206
block_count,NumberToString,1,46
block_count,NumberToString,2,46
block_count,NumberToString,3,0
@@ -50821,11 +50801,11 @@
block_count,NumberToString,15,2
block_count,NumberToString,16,24
block_count,NumberToString,17,0
-block_count,NumberToString,18,1158
-block_count,NumberToString,19,1158
-block_count,NumberToString,20,954
-block_count,NumberToString,21,203
-block_count,NumberToString,22,203
+block_count,NumberToString,18,1159
+block_count,NumberToString,19,1159
+block_count,NumberToString,20,955
+block_count,NumberToString,21,204
+block_count,NumberToString,22,204
block_count,NumberToString,23,0
block_count,NumberToString,24,0
block_count,NumberToString,25,0
@@ -50857,16 +50837,16 @@
block_count,NumberToString,51,0
block_count,NumberToString,52,0
block_count,NumberToString,53,0
-block_count,NumberToString,54,1158
-block_count,NumberToString,55,1182
+block_count,NumberToString,54,1159
+block_count,NumberToString,55,1183
block_count,NumberToString,56,22
block_count,ToBoolean,0,13
block_count,ToBoolean,1,13
block_count,ToBoolean,2,1
-block_count,ToBoolean,3,0
-block_count,ToBoolean,4,0
-block_count,ToBoolean,5,0
-block_count,ToBoolean,6,0
+block_count,ToBoolean,3,1
+block_count,ToBoolean,4,1
+block_count,ToBoolean,5,1
+block_count,ToBoolean,6,1
block_count,ToBoolean,7,0
block_count,ToBoolean,8,0
block_count,ToBoolean,9,0
@@ -50879,13 +50859,13 @@
block_count,ToBoolean,16,0
block_count,ToBoolean,17,0
block_count,ToBoolean,18,0
-block_count,ToBooleanForBaselineJump,0,442
-block_count,ToBooleanForBaselineJump,1,411
-block_count,ToBooleanForBaselineJump,2,164
-block_count,ToBooleanForBaselineJump,3,73
-block_count,ToBooleanForBaselineJump,4,73
-block_count,ToBooleanForBaselineJump,5,73
-block_count,ToBooleanForBaselineJump,6,73
+block_count,ToBooleanForBaselineJump,0,434
+block_count,ToBooleanForBaselineJump,1,402
+block_count,ToBooleanForBaselineJump,2,162
+block_count,ToBooleanForBaselineJump,3,72
+block_count,ToBooleanForBaselineJump,4,72
+block_count,ToBooleanForBaselineJump,5,72
+block_count,ToBooleanForBaselineJump,6,72
block_count,ToBooleanForBaselineJump,7,0
block_count,ToBooleanForBaselineJump,8,0
block_count,ToBooleanForBaselineJump,9,0
@@ -50893,10 +50873,10 @@
block_count,ToBooleanForBaselineJump,11,0
block_count,ToBooleanForBaselineJump,12,0
block_count,ToBooleanForBaselineJump,13,0
-block_count,ToBooleanForBaselineJump,14,90
-block_count,ToBooleanForBaselineJump,15,247
-block_count,ToBooleanForBaselineJump,16,30
-block_count,ToBooleanForBaselineJump,17,18
+block_count,ToBooleanForBaselineJump,14,89
+block_count,ToBooleanForBaselineJump,15,239
+block_count,ToBooleanForBaselineJump,16,31
+block_count,ToBooleanForBaselineJump,17,19
block_count,ToBooleanForBaselineJump,18,12
block_count,ToLength,0,2
block_count,ToLength,1,2
@@ -51064,7 +51044,7 @@
block_count,ToObject,52,0
block_count,ToObject,53,0
block_count,ToObject,54,0
-block_count,NonPrimitiveToPrimitive_Default,0,177
+block_count,NonPrimitiveToPrimitive_Default,0,178
block_count,NonPrimitiveToPrimitive_Default,1,0
block_count,NonPrimitiveToPrimitive_Default,2,0
block_count,NonPrimitiveToPrimitive_Default,3,0
@@ -51074,9 +51054,9 @@
block_count,NonPrimitiveToPrimitive_Default,7,0
block_count,NonPrimitiveToPrimitive_Default,8,0
block_count,NonPrimitiveToPrimitive_Default,9,0
-block_count,NonPrimitiveToPrimitive_Default,10,177
+block_count,NonPrimitiveToPrimitive_Default,10,178
block_count,NonPrimitiveToPrimitive_Default,11,0
-block_count,NonPrimitiveToPrimitive_Default,12,177
+block_count,NonPrimitiveToPrimitive_Default,12,178
block_count,NonPrimitiveToPrimitive_Default,13,59
block_count,NonPrimitiveToPrimitive_Default,14,118
block_count,NonPrimitiveToPrimitive_Default,15,59
@@ -51111,7 +51091,7 @@
block_count,NonPrimitiveToPrimitive_Default,44,1
block_count,NonPrimitiveToPrimitive_Default,45,0
block_count,NonPrimitiveToPrimitive_Default,46,118
-block_count,NonPrimitiveToPrimitive_Default,47,593
+block_count,NonPrimitiveToPrimitive_Default,47,594
block_count,NonPrimitiveToPrimitive_Default,48,475
block_count,NonPrimitiveToPrimitive_Default,49,475
block_count,NonPrimitiveToPrimitive_Default,50,0
@@ -51771,7 +51751,7 @@
block_count,FunctionPrototypeHasInstance,24,0
block_count,FunctionPrototypeHasInstance,25,0
block_count,FunctionPrototypeHasInstance,26,159
-block_count,FunctionPrototypeHasInstance,27,131
+block_count,FunctionPrototypeHasInstance,27,130
block_count,FunctionPrototypeHasInstance,28,110
block_count,FunctionPrototypeHasInstance,29,20
block_count,FunctionPrototypeHasInstance,30,28
@@ -52733,9 +52713,9 @@
block_count,ParseInt,28,6
block_count,ParseInt,29,4
block_count,ParseInt,30,71
-block_count,NumberParseInt,0,26
+block_count,NumberParseInt,0,25
block_count,NumberParseInt,1,0
-block_count,NumberParseInt,2,26
+block_count,NumberParseInt,2,25
block_count,Add,0,6
block_count,Add,1,7
block_count,Add,2,0
@@ -53178,9 +53158,9 @@
block_count,Equal,4,56
block_count,Equal,5,36
block_count,Equal,6,24
-block_count,Equal,7,18
-block_count,Equal,8,18
-block_count,Equal,9,18
+block_count,Equal,7,19
+block_count,Equal,8,19
+block_count,Equal,9,19
block_count,Equal,10,16
block_count,Equal,11,16
block_count,Equal,12,0
@@ -53255,7 +53235,7 @@
block_count,Equal,81,0
block_count,Equal,82,3
block_count,Equal,83,19
-block_count,Equal,84,37
+block_count,Equal,84,38
block_count,Equal,85,58
block_count,Equal,86,58
block_count,Equal,87,32
@@ -53322,11 +53302,11 @@
block_count,StrictEqual,34,0
block_count,StrictEqual,35,0
block_count,StrictEqual,36,0
-block_count,StrictEqual,37,904
+block_count,StrictEqual,37,905
block_count,StrictEqual,38,49
block_count,StrictEqual,39,855
block_count,StrictEqual,40,505
-block_count,StrictEqual,41,349
+block_count,StrictEqual,41,350
block_count,StrictEqual,42,26
block_count,StrictEqual,43,47
block_count,StrictEqual,44,47
@@ -54892,13 +54872,13 @@
block_count,RegExpPrototypeExec,136,26
block_count,RegExpPrototypeExec,137,26
block_count,RegExpPrototypeExec,138,33
-block_count,RegExpPrototypeExec,139,6
-block_count,RegExpPrototypeExec,140,6
+block_count,RegExpPrototypeExec,139,7
+block_count,RegExpPrototypeExec,140,7
block_count,RegExpPrototypeExec,141,0
block_count,RegExpPrototypeExec,142,0
block_count,RegExpPrototypeExec,143,0
-block_count,RegExpPrototypeExec,144,6
-block_count,RegExpPrototypeExec,145,6
+block_count,RegExpPrototypeExec,144,7
+block_count,RegExpPrototypeExec,145,7
block_count,RegExpPrototypeExec,146,0
block_count,RegExpPrototypeExec,147,0
block_count,RegExpPrototypeExec,148,0
@@ -54916,7 +54896,7 @@
block_count,RegExpPrototypeExec,160,0
block_count,RegExpPrototypeExec,161,0
block_count,RegExpPrototypeExec,162,0
-block_count,RegExpPrototypeExec,163,6
+block_count,RegExpPrototypeExec,163,7
block_count,RegExpPrototypeExec,164,0
block_count,RegExpPrototypeExec,165,26
block_count,RegExpPrototypeExec,166,26
@@ -55078,7 +55058,7 @@
block_count,RegExpPrototypeExec,322,344
block_count,RegExpPrototypeExec,323,495
block_count,RegExpPrototypeExec,324,840
-block_count,RegExpPrototypeExec,325,744
+block_count,RegExpPrototypeExec,325,745
block_count,RegExpPrototypeExec,326,95
block_count,RegExpPrototypeExec,327,0
block_count,RegExpPrototypeExec,328,95
@@ -55654,21 +55634,21 @@
block_count,RegExpMatchFast,457,0
block_count,RegExpMatchFast,458,1
block_count,RegExpMatchFast,459,1
-block_count,RegExpMatchFast,460,1223
-block_count,RegExpMatchFast,461,1223
-block_count,RegExpMatchFast,462,1223
+block_count,RegExpMatchFast,460,1224
+block_count,RegExpMatchFast,461,1224
+block_count,RegExpMatchFast,462,1224
block_count,RegExpMatchFast,463,0
-block_count,RegExpMatchFast,464,1223
-block_count,RegExpMatchFast,465,1223
-block_count,RegExpMatchFast,466,1223
+block_count,RegExpMatchFast,464,1224
+block_count,RegExpMatchFast,465,1224
+block_count,RegExpMatchFast,466,1224
block_count,RegExpMatchFast,467,0
block_count,RegExpMatchFast,468,0
block_count,RegExpMatchFast,469,0
-block_count,RegExpMatchFast,470,1223
-block_count,RegExpMatchFast,471,2293
-block_count,RegExpMatchFast,472,1069
-block_count,RegExpMatchFast,473,1069
-block_count,RegExpMatchFast,474,1069
+block_count,RegExpMatchFast,470,1224
+block_count,RegExpMatchFast,471,2294
+block_count,RegExpMatchFast,472,1070
+block_count,RegExpMatchFast,473,1070
+block_count,RegExpMatchFast,474,1070
block_count,RegExpMatchFast,475,20
block_count,RegExpMatchFast,476,1049
block_count,RegExpMatchFast,477,0
@@ -55690,30 +55670,30 @@
block_count,RegExpMatchFast,493,0
block_count,RegExpMatchFast,494,0
block_count,RegExpMatchFast,495,0
-block_count,RegExpMatchFast,496,1069
+block_count,RegExpMatchFast,496,1070
block_count,RegExpMatchFast,497,0
-block_count,RegExpMatchFast,498,1223
-block_count,RegExpMatchFast,499,1223
-block_count,RegExpMatchFast,500,1223
+block_count,RegExpMatchFast,498,1224
+block_count,RegExpMatchFast,499,1224
+block_count,RegExpMatchFast,500,1224
block_count,RegExpMatchFast,501,0
-block_count,RegExpMatchFast,502,1223
+block_count,RegExpMatchFast,502,1224
block_count,RegExpMatchFast,503,0
block_count,RegExpMatchFast,504,0
-block_count,RegExpMatchFast,505,1223
-block_count,RegExpMatchFast,506,1223
+block_count,RegExpMatchFast,505,1224
+block_count,RegExpMatchFast,506,1224
block_count,RegExpMatchFast,507,0
block_count,RegExpMatchFast,508,0
block_count,RegExpMatchFast,509,0
block_count,RegExpMatchFast,510,0
block_count,RegExpMatchFast,511,0
-block_count,RegExpMatchFast,512,1223
+block_count,RegExpMatchFast,512,1224
block_count,RegExpMatchFast,513,124
block_count,RegExpMatchFast,514,124
block_count,RegExpMatchFast,515,0
block_count,RegExpMatchFast,516,1099
block_count,RegExpMatchFast,517,1099
block_count,RegExpMatchFast,518,0
-block_count,RegExpMatchFast,519,1223
+block_count,RegExpMatchFast,519,1224
block_count,RegExpMatchFast,520,0
block_count,RegExpMatchFast,521,0
block_count,RegExpMatchFast,522,0
@@ -55727,12 +55707,12 @@
block_count,RegExpMatchFast,530,0
block_count,RegExpMatchFast,531,0
block_count,RegExpMatchFast,532,0
-block_count,RegExpMatchFast,533,1223
+block_count,RegExpMatchFast,533,1224
block_count,RegExpMatchFast,534,0
block_count,RegExpMatchFast,535,0
block_count,RegExpMatchFast,536,0
block_count,RegExpMatchFast,537,0
-block_count,RegExpMatchFast,538,1223
+block_count,RegExpMatchFast,538,1224
block_count,RegExpMatchFast,539,190
block_count,RegExpMatchFast,540,0
block_count,RegExpMatchFast,541,190
@@ -56077,13 +56057,13 @@
block_count,RegExpMatchFast,880,0
block_count,RegExpMatchFast,881,190
block_count,RegExpMatchFast,882,1033
-block_count,RegExpMatchFast,883,1223
+block_count,RegExpMatchFast,883,1224
block_count,RegExpReplace,0,195
block_count,RegExpReplace,1,195
block_count,RegExpReplace,2,180
block_count,RegExpReplace,3,0
block_count,RegExpReplace,4,180
-block_count,RegExpReplace,5,14
+block_count,RegExpReplace,5,15
block_count,RegExpReplace,6,0
block_count,RegExpReplace,7,14
block_count,RegExpReplace,8,0
@@ -56121,12 +56101,12 @@
block_count,RegExpReplace,40,780
block_count,RegExpReplace,41,780
block_count,RegExpReplace,42,777
-block_count,RegExpReplace,43,389
+block_count,RegExpReplace,43,390
block_count,RegExpReplace,44,0
block_count,RegExpReplace,45,0
block_count,RegExpReplace,46,0
-block_count,RegExpReplace,47,389
-block_count,RegExpReplace,48,389
+block_count,RegExpReplace,47,390
+block_count,RegExpReplace,48,390
block_count,RegExpReplace,49,387
block_count,RegExpReplace,50,387
block_count,RegExpReplace,51,387
@@ -56414,8 +56394,8 @@
block_count,RegExpReplace,333,142
block_count,RegExpReplace,334,142
block_count,RegExpReplace,335,157
-block_count,RegExpReplace,336,15
-block_count,RegExpReplace,337,15
+block_count,RegExpReplace,336,14
+block_count,RegExpReplace,337,14
block_count,RegExpReplace,338,1
block_count,RegExpReplace,339,0
block_count,RegExpReplace,340,1
@@ -57436,31 +57416,31 @@
block_count,RegExpSplit,520,0
block_count,RegExpSplit,521,13
block_count,RegExpSplit,522,13
-block_count,RegExpPrototypeTest,0,138
+block_count,RegExpPrototypeTest,0,137
block_count,RegExpPrototypeTest,1,0
-block_count,RegExpPrototypeTest,2,138
-block_count,RegExpPrototypeTest,3,138
-block_count,RegExpPrototypeTest,4,138
-block_count,RegExpPrototypeTest,5,138
-block_count,RegExpPrototypeTest,6,138
+block_count,RegExpPrototypeTest,2,137
+block_count,RegExpPrototypeTest,3,137
+block_count,RegExpPrototypeTest,4,137
+block_count,RegExpPrototypeTest,5,137
+block_count,RegExpPrototypeTest,6,137
block_count,RegExpPrototypeTest,7,38
-block_count,RegExpPrototypeTest,8,100
+block_count,RegExpPrototypeTest,8,98
block_count,RegExpPrototypeTest,9,0
block_count,RegExpPrototypeTest,10,38
-block_count,RegExpPrototypeTest,11,138
-block_count,RegExpPrototypeTest,12,138
+block_count,RegExpPrototypeTest,11,137
+block_count,RegExpPrototypeTest,12,137
block_count,RegExpPrototypeTest,13,0
-block_count,RegExpPrototypeTest,14,138
+block_count,RegExpPrototypeTest,14,137
block_count,RegExpPrototypeTest,15,0
-block_count,RegExpPrototypeTest,16,138
+block_count,RegExpPrototypeTest,16,137
block_count,RegExpPrototypeTest,17,0
-block_count,RegExpPrototypeTest,18,138
+block_count,RegExpPrototypeTest,18,137
block_count,RegExpPrototypeTest,19,0
-block_count,RegExpPrototypeTest,20,138
+block_count,RegExpPrototypeTest,20,137
block_count,RegExpPrototypeTest,21,0
-block_count,RegExpPrototypeTest,22,138
+block_count,RegExpPrototypeTest,22,137
block_count,RegExpPrototypeTest,23,0
-block_count,RegExpPrototypeTest,24,138
+block_count,RegExpPrototypeTest,24,137
block_count,RegExpPrototypeTest,25,0
block_count,RegExpPrototypeTest,26,0
block_count,RegExpPrototypeTest,27,0
@@ -57489,23 +57469,23 @@
block_count,RegExpPrototypeTest,50,0
block_count,RegExpPrototypeTest,51,0
block_count,RegExpPrototypeTest,52,0
-block_count,RegExpPrototypeTest,53,138
-block_count,RegExpPrototypeTest,54,138
-block_count,RegExpPrototypeTest,55,136
+block_count,RegExpPrototypeTest,53,137
+block_count,RegExpPrototypeTest,54,137
+block_count,RegExpPrototypeTest,55,135
block_count,RegExpPrototypeTest,56,1
-block_count,RegExpPrototypeTest,57,138
-block_count,RegExpPrototypeTest,58,138
-block_count,RegExpPrototypeTest,59,138
+block_count,RegExpPrototypeTest,57,137
+block_count,RegExpPrototypeTest,58,137
+block_count,RegExpPrototypeTest,59,137
block_count,RegExpPrototypeTest,60,0
block_count,RegExpPrototypeTest,61,0
block_count,RegExpPrototypeTest,62,0
-block_count,RegExpPrototypeTest,63,138
-block_count,RegExpPrototypeTest,64,177
+block_count,RegExpPrototypeTest,63,137
+block_count,RegExpPrototypeTest,64,176
block_count,RegExpPrototypeTest,65,77
block_count,RegExpPrototypeTest,66,77
block_count,RegExpPrototypeTest,67,38
block_count,RegExpPrototypeTest,68,17
-block_count,RegExpPrototypeTest,69,21
+block_count,RegExpPrototypeTest,69,20
block_count,RegExpPrototypeTest,70,38
block_count,RegExpPrototypeTest,71,0
block_count,RegExpPrototypeTest,72,38
@@ -57527,28 +57507,28 @@
block_count,RegExpPrototypeTest,88,0
block_count,RegExpPrototypeTest,89,38
block_count,RegExpPrototypeTest,90,0
-block_count,RegExpPrototypeTest,91,100
-block_count,RegExpPrototypeTest,92,100
-block_count,RegExpPrototypeTest,93,138
+block_count,RegExpPrototypeTest,91,99
+block_count,RegExpPrototypeTest,92,99
+block_count,RegExpPrototypeTest,93,137
block_count,RegExpPrototypeTest,94,0
-block_count,RegExpPrototypeTest,95,136
+block_count,RegExpPrototypeTest,95,135
block_count,RegExpPrototypeTest,96,1
block_count,RegExpPrototypeTest,97,0
-block_count,RegExpPrototypeTest,98,136
-block_count,RegExpPrototypeTest,99,136
+block_count,RegExpPrototypeTest,98,135
+block_count,RegExpPrototypeTest,99,135
block_count,RegExpPrototypeTest,100,0
block_count,RegExpPrototypeTest,101,0
block_count,RegExpPrototypeTest,102,0
block_count,RegExpPrototypeTest,103,0
block_count,RegExpPrototypeTest,104,0
-block_count,RegExpPrototypeTest,105,136
+block_count,RegExpPrototypeTest,105,135
block_count,RegExpPrototypeTest,106,0
block_count,RegExpPrototypeTest,107,0
block_count,RegExpPrototypeTest,108,0
-block_count,RegExpPrototypeTest,109,136
-block_count,RegExpPrototypeTest,110,136
+block_count,RegExpPrototypeTest,109,135
+block_count,RegExpPrototypeTest,110,135
block_count,RegExpPrototypeTest,111,0
-block_count,RegExpPrototypeTest,112,136
+block_count,RegExpPrototypeTest,112,135
block_count,RegExpPrototypeTest,113,0
block_count,RegExpPrototypeTest,114,0
block_count,RegExpPrototypeTest,115,0
@@ -57562,12 +57542,12 @@
block_count,RegExpPrototypeTest,123,0
block_count,RegExpPrototypeTest,124,0
block_count,RegExpPrototypeTest,125,0
-block_count,RegExpPrototypeTest,126,136
+block_count,RegExpPrototypeTest,126,135
block_count,RegExpPrototypeTest,127,0
block_count,RegExpPrototypeTest,128,0
block_count,RegExpPrototypeTest,129,0
block_count,RegExpPrototypeTest,130,0
-block_count,RegExpPrototypeTest,131,138
+block_count,RegExpPrototypeTest,131,137
block_count,RegExpPrototypeTest,132,22
block_count,RegExpPrototypeTest,133,0
block_count,RegExpPrototypeTest,134,22
@@ -57591,22 +57571,22 @@
block_count,RegExpPrototypeTest,152,22
block_count,RegExpPrototypeTest,153,0
block_count,RegExpPrototypeTest,154,22
-block_count,RegExpPrototypeTest,155,115
-block_count,RegExpPrototypeTest,156,115
+block_count,RegExpPrototypeTest,155,114
+block_count,RegExpPrototypeTest,156,114
block_count,RegExpPrototypeTest,157,0
-block_count,RegExpPrototypeTest,158,115
-block_count,RegExpPrototypeTestFast,0,399
-block_count,RegExpPrototypeTestFast,1,399
-block_count,RegExpPrototypeTestFast,2,394
+block_count,RegExpPrototypeTest,158,114
+block_count,RegExpPrototypeTestFast,0,400
+block_count,RegExpPrototypeTestFast,1,400
+block_count,RegExpPrototypeTestFast,2,396
block_count,RegExpPrototypeTestFast,3,4
-block_count,RegExpPrototypeTestFast,4,399
-block_count,RegExpPrototypeTestFast,5,399
-block_count,RegExpPrototypeTestFast,6,399
+block_count,RegExpPrototypeTestFast,4,400
+block_count,RegExpPrototypeTestFast,5,400
+block_count,RegExpPrototypeTestFast,6,400
block_count,RegExpPrototypeTestFast,7,0
block_count,RegExpPrototypeTestFast,8,0
block_count,RegExpPrototypeTestFast,9,0
-block_count,RegExpPrototypeTestFast,10,399
-block_count,RegExpPrototypeTestFast,11,591
+block_count,RegExpPrototypeTestFast,10,400
+block_count,RegExpPrototypeTestFast,11,593
block_count,RegExpPrototypeTestFast,12,192
block_count,RegExpPrototypeTestFast,13,192
block_count,RegExpPrototypeTestFast,14,192
@@ -57633,28 +57613,28 @@
block_count,RegExpPrototypeTestFast,35,0
block_count,RegExpPrototypeTestFast,36,192
block_count,RegExpPrototypeTestFast,37,0
-block_count,RegExpPrototypeTestFast,38,399
-block_count,RegExpPrototypeTestFast,39,399
-block_count,RegExpPrototypeTestFast,40,399
+block_count,RegExpPrototypeTestFast,38,400
+block_count,RegExpPrototypeTestFast,39,400
+block_count,RegExpPrototypeTestFast,40,400
block_count,RegExpPrototypeTestFast,41,0
-block_count,RegExpPrototypeTestFast,42,394
+block_count,RegExpPrototypeTestFast,42,396
block_count,RegExpPrototypeTestFast,43,4
block_count,RegExpPrototypeTestFast,44,0
-block_count,RegExpPrototypeTestFast,45,394
-block_count,RegExpPrototypeTestFast,46,394
+block_count,RegExpPrototypeTestFast,45,396
+block_count,RegExpPrototypeTestFast,46,396
block_count,RegExpPrototypeTestFast,47,0
block_count,RegExpPrototypeTestFast,48,0
block_count,RegExpPrototypeTestFast,49,0
block_count,RegExpPrototypeTestFast,50,0
block_count,RegExpPrototypeTestFast,51,0
-block_count,RegExpPrototypeTestFast,52,394
+block_count,RegExpPrototypeTestFast,52,396
block_count,RegExpPrototypeTestFast,53,0
block_count,RegExpPrototypeTestFast,54,0
block_count,RegExpPrototypeTestFast,55,0
-block_count,RegExpPrototypeTestFast,56,394
-block_count,RegExpPrototypeTestFast,57,394
+block_count,RegExpPrototypeTestFast,56,395
+block_count,RegExpPrototypeTestFast,57,395
block_count,RegExpPrototypeTestFast,58,0
-block_count,RegExpPrototypeTestFast,59,394
+block_count,RegExpPrototypeTestFast,59,396
block_count,RegExpPrototypeTestFast,60,0
block_count,RegExpPrototypeTestFast,61,0
block_count,RegExpPrototypeTestFast,62,0
@@ -57668,39 +57648,39 @@
block_count,RegExpPrototypeTestFast,70,0
block_count,RegExpPrototypeTestFast,71,0
block_count,RegExpPrototypeTestFast,72,0
-block_count,RegExpPrototypeTestFast,73,394
+block_count,RegExpPrototypeTestFast,73,396
block_count,RegExpPrototypeTestFast,74,0
block_count,RegExpPrototypeTestFast,75,0
block_count,RegExpPrototypeTestFast,76,0
block_count,RegExpPrototypeTestFast,77,0
-block_count,RegExpPrototypeTestFast,78,399
-block_count,RegExpPrototypeTestFast,79,120
+block_count,RegExpPrototypeTestFast,78,400
+block_count,RegExpPrototypeTestFast,79,121
block_count,RegExpPrototypeTestFast,80,0
-block_count,RegExpPrototypeTestFast,81,120
+block_count,RegExpPrototypeTestFast,81,121
block_count,RegExpPrototypeTestFast,82,0
block_count,RegExpPrototypeTestFast,83,0
block_count,RegExpPrototypeTestFast,84,0
block_count,RegExpPrototypeTestFast,85,0
-block_count,RegExpPrototypeTestFast,86,120
-block_count,RegExpPrototypeTestFast,87,120
+block_count,RegExpPrototypeTestFast,86,121
+block_count,RegExpPrototypeTestFast,87,121
block_count,RegExpPrototypeTestFast,88,0
-block_count,RegExpPrototypeTestFast,89,120
+block_count,RegExpPrototypeTestFast,89,121
block_count,RegExpPrototypeTestFast,90,0
-block_count,RegExpPrototypeTestFast,91,120
-block_count,RegExpPrototypeTestFast,92,1625
+block_count,RegExpPrototypeTestFast,91,121
+block_count,RegExpPrototypeTestFast,92,1626
block_count,RegExpPrototypeTestFast,93,1504
-block_count,RegExpPrototypeTestFast,94,120
-block_count,RegExpPrototypeTestFast,95,120
-block_count,RegExpPrototypeTestFast,96,120
+block_count,RegExpPrototypeTestFast,94,121
+block_count,RegExpPrototypeTestFast,95,121
+block_count,RegExpPrototypeTestFast,96,121
block_count,RegExpPrototypeTestFast,97,0
-block_count,RegExpPrototypeTestFast,98,120
-block_count,RegExpPrototypeTestFast,99,120
+block_count,RegExpPrototypeTestFast,98,121
+block_count,RegExpPrototypeTestFast,99,121
block_count,RegExpPrototypeTestFast,100,0
-block_count,RegExpPrototypeTestFast,101,120
-block_count,RegExpPrototypeTestFast,102,278
-block_count,RegExpPrototypeTestFast,103,278
+block_count,RegExpPrototypeTestFast,101,121
+block_count,RegExpPrototypeTestFast,102,279
+block_count,RegExpPrototypeTestFast,103,279
block_count,RegExpPrototypeTestFast,104,0
-block_count,RegExpPrototypeTestFast,105,278
+block_count,RegExpPrototypeTestFast,105,279
block_count,RegExpPrototypeGlobalGetter,0,0
block_count,RegExpPrototypeGlobalGetter,1,0
block_count,RegExpPrototypeGlobalGetter,2,0
@@ -58467,7 +58447,7 @@
block_count,StringPrototypeIndexOf,9,1
block_count,StringPrototypeIndexOf,10,0
block_count,StringPrototypeIndexOf,11,1
-block_count,StringPrototypeIndexOf,12,17
+block_count,StringPrototypeIndexOf,12,18
block_count,StringPrototypeIndexOf,13,19
block_count,StringPrototypeIndexOf,14,19
block_count,StringPrototypeIndexOf,15,0
@@ -58482,7 +58462,7 @@
block_count,StringPrototypeIndexOf,24,0
block_count,StringPrototypeIndexOf,25,0
block_count,StringPrototypeIndexOf,26,19
-block_count,StringPrototypeIndexOf,27,17
+block_count,StringPrototypeIndexOf,27,18
block_count,StringPrototypeIndexOf,28,1
block_count,StringPrototypeIndexOf,29,1
block_count,StringPrototypeIndexOf,30,0
@@ -58654,31 +58634,31 @@
block_count,StringRepeat,4,0
block_count,StringRepeat,5,0
block_count,StringRepeat,6,0
-block_count,StringPrototypeSlice,0,35
+block_count,StringPrototypeSlice,0,36
block_count,StringPrototypeSlice,1,0
-block_count,StringPrototypeSlice,2,35
-block_count,StringPrototypeSlice,3,35
-block_count,StringPrototypeSlice,4,35
+block_count,StringPrototypeSlice,2,36
+block_count,StringPrototypeSlice,3,36
+block_count,StringPrototypeSlice,4,36
block_count,StringPrototypeSlice,5,0
block_count,StringPrototypeSlice,6,0
block_count,StringPrototypeSlice,7,0
-block_count,StringPrototypeSlice,8,35
+block_count,StringPrototypeSlice,8,36
block_count,StringPrototypeSlice,9,0
-block_count,StringPrototypeSlice,10,35
-block_count,StringPrototypeSlice,11,35
+block_count,StringPrototypeSlice,10,36
+block_count,StringPrototypeSlice,11,36
block_count,StringPrototypeSlice,12,0
-block_count,StringPrototypeSlice,13,35
+block_count,StringPrototypeSlice,13,36
block_count,StringPrototypeSlice,14,0
-block_count,StringPrototypeSlice,15,35
+block_count,StringPrototypeSlice,15,36
block_count,StringPrototypeSlice,16,0
-block_count,StringPrototypeSlice,17,35
-block_count,StringPrototypeSlice,18,35
+block_count,StringPrototypeSlice,17,36
+block_count,StringPrototypeSlice,18,36
block_count,StringPrototypeSlice,19,0
-block_count,StringPrototypeSlice,20,35
-block_count,StringPrototypeSlice,21,35
-block_count,StringPrototypeSlice,22,35
+block_count,StringPrototypeSlice,20,36
+block_count,StringPrototypeSlice,21,36
+block_count,StringPrototypeSlice,22,36
block_count,StringPrototypeSlice,23,0
-block_count,StringPrototypeSlice,24,34
+block_count,StringPrototypeSlice,24,35
block_count,StringPrototypeSlice,25,0
block_count,StringPrototypeSlice,26,0
block_count,StringPrototypeSlice,27,0
@@ -58691,14 +58671,14 @@
block_count,StringPrototypeSlice,34,0
block_count,StringPrototypeSlice,35,0
block_count,StringPrototypeSlice,36,0
-block_count,StringPrototypeSlice,37,35
-block_count,StringPrototypeSlice,38,35
-block_count,StringPrototypeSlice,39,35
+block_count,StringPrototypeSlice,37,36
+block_count,StringPrototypeSlice,38,36
+block_count,StringPrototypeSlice,39,36
block_count,StringPrototypeSlice,40,25
block_count,StringPrototypeSlice,41,0
block_count,StringPrototypeSlice,42,25
block_count,StringPrototypeSlice,43,10
-block_count,StringPrototypeSlice,44,35
+block_count,StringPrototypeSlice,44,36
block_count,StringPrototypeSlice,45,10
block_count,StringPrototypeSlice,46,25
block_count,StringPrototypeSlice,47,25
@@ -58720,37 +58700,37 @@
block_count,StringPrototypeSlice,63,0
block_count,StringPrototypeSlice,64,0
block_count,StringPrototypeSlice,65,0
-block_count,StringPrototypeSlice,66,24
+block_count,StringPrototypeSlice,66,25
block_count,StringPrototypeSlice,67,25
-block_count,StringPrototypeSlice,68,35
+block_count,StringPrototypeSlice,68,36
block_count,StringPrototypeSlice,69,32
-block_count,StringPrototypeSlice,70,31
-block_count,StringPrototypeSlice,71,31
-block_count,StringPrototypeSlice,72,22
-block_count,StringPrototypeSlice,73,35
-block_count,StringPrototypeSlice,74,13
-block_count,StringPrototypeSlice,75,13
-block_count,StringPrototypeSlice,76,9
+block_count,StringPrototypeSlice,70,32
+block_count,StringPrototypeSlice,71,32
+block_count,StringPrototypeSlice,72,23
+block_count,StringPrototypeSlice,73,37
+block_count,StringPrototypeSlice,74,14
+block_count,StringPrototypeSlice,75,14
+block_count,StringPrototypeSlice,76,10
block_count,StringPrototypeSlice,77,0
-block_count,StringPrototypeSlice,78,9
-block_count,StringPrototypeSlice,79,3
-block_count,StringPrototypeSlice,80,3
+block_count,StringPrototypeSlice,78,10
+block_count,StringPrototypeSlice,79,4
+block_count,StringPrototypeSlice,80,4
block_count,StringPrototypeSlice,81,0
-block_count,StringPrototypeSlice,82,13
+block_count,StringPrototypeSlice,82,14
block_count,StringPrototypeSlice,83,0
-block_count,StringPrototypeSlice,84,22
-block_count,StringPrototypeSlice,85,22
-block_count,StringPrototypeSlice,86,9
+block_count,StringPrototypeSlice,84,23
+block_count,StringPrototypeSlice,85,23
+block_count,StringPrototypeSlice,86,10
block_count,StringPrototypeSlice,87,2
block_count,StringPrototypeSlice,88,0
block_count,StringPrototypeSlice,89,2
block_count,StringPrototypeSlice,90,2
-block_count,StringPrototypeSlice,91,6
+block_count,StringPrototypeSlice,91,7
block_count,StringPrototypeSlice,92,0
-block_count,StringPrototypeSlice,93,6
-block_count,StringPrototypeSlice,94,6
-block_count,StringPrototypeSlice,95,12
-block_count,StringPrototypeSlice,96,12
+block_count,StringPrototypeSlice,93,7
+block_count,StringPrototypeSlice,94,7
+block_count,StringPrototypeSlice,95,13
+block_count,StringPrototypeSlice,96,13
block_count,StringPrototypeSlice,97,2
block_count,StringPrototypeSlice,98,2
block_count,StringPrototypeSlice,99,0
@@ -58821,15 +58801,15 @@
block_count,StringPrototypeSlice,164,10
block_count,StringPrototypeSlice,165,0
block_count,StringPrototypeSlice,166,10
-block_count,StringPrototypeSlice,167,20
-block_count,StringPrototypeSlice,168,10
+block_count,StringPrototypeSlice,167,21
+block_count,StringPrototypeSlice,168,11
block_count,StringPrototypeSlice,169,10
block_count,StringPrototypeSlice,170,10
-block_count,StringPrototypeSlice,171,6
+block_count,StringPrototypeSlice,171,7
block_count,StringPrototypeSlice,172,3
block_count,StringPrototypeSlice,173,10
block_count,StringPrototypeSlice,174,0
-block_count,StringPrototypeSlice,175,12
+block_count,StringPrototypeSlice,175,13
block_count,StringPrototypeSlice,176,0
block_count,StringPrototypeSlice,177,0
block_count,StringPrototypeSlice,178,0
@@ -58915,16 +58895,16 @@
block_count,StringPrototypeSlice,258,0
block_count,StringPrototypeSlice,259,0
block_count,StringPrototypeSlice,260,8
-block_count,StringPrototypeSlice,261,12
-block_count,StringPrototypeSlice,262,3
-block_count,StringPrototypeSlice,263,3
+block_count,StringPrototypeSlice,261,13
+block_count,StringPrototypeSlice,262,4
+block_count,StringPrototypeSlice,263,4
block_count,StringPrototypeSlice,264,0
block_count,StringPrototypeSlice,265,0
block_count,StringPrototypeSlice,266,0
block_count,StringPrototypeSlice,267,3
block_count,StringPrototypeSlice,268,3
block_count,StringPrototypeSlice,269,0
-block_count,StringPrototypeSlice,270,3
+block_count,StringPrototypeSlice,270,4
block_count,StringPrototypeSlice,271,0
block_count,StringPrototypeSlice,272,0
block_count,StringPrototypeSlice,273,0
@@ -62228,44 +62208,44 @@
block_count,NewStrictArgumentsElements,8,0
block_count,NewStrictArgumentsElements,9,0
block_count,NewStrictArgumentsElements,10,7
-block_count,NewStrictArgumentsElements,11,21
-block_count,NewStrictArgumentsElements,12,14
-block_count,NewStrictArgumentsElements,13,14
-block_count,NewStrictArgumentsElements,14,14
-block_count,NewStrictArgumentsElements,15,14
+block_count,NewStrictArgumentsElements,11,22
+block_count,NewStrictArgumentsElements,12,15
+block_count,NewStrictArgumentsElements,13,15
+block_count,NewStrictArgumentsElements,14,15
+block_count,NewStrictArgumentsElements,15,15
block_count,NewStrictArgumentsElements,16,0
block_count,NewStrictArgumentsElements,17,0
-block_count,NewStrictArgumentsElements,18,14
+block_count,NewStrictArgumentsElements,18,15
block_count,NewStrictArgumentsElements,19,0
block_count,NewStrictArgumentsElements,20,7
block_count,NewStrictArgumentsElements,21,0
block_count,NewStrictArgumentsElements,22,0
block_count,NewStrictArgumentsElements,23,0
block_count,NewStrictArgumentsElements,24,1
-block_count,NewRestArgumentsElements,0,18
-block_count,NewRestArgumentsElements,1,18
+block_count,NewRestArgumentsElements,0,17
+block_count,NewRestArgumentsElements,1,17
block_count,NewRestArgumentsElements,2,0
-block_count,NewRestArgumentsElements,3,18
-block_count,NewRestArgumentsElements,4,18
-block_count,NewRestArgumentsElements,5,18
-block_count,NewRestArgumentsElements,6,18
-block_count,NewRestArgumentsElements,7,18
-block_count,NewRestArgumentsElements,8,18
+block_count,NewRestArgumentsElements,3,17
+block_count,NewRestArgumentsElements,4,17
+block_count,NewRestArgumentsElements,5,17
+block_count,NewRestArgumentsElements,6,17
+block_count,NewRestArgumentsElements,7,17
+block_count,NewRestArgumentsElements,8,17
block_count,NewRestArgumentsElements,9,0
-block_count,NewRestArgumentsElements,10,18
+block_count,NewRestArgumentsElements,10,17
block_count,NewRestArgumentsElements,11,0
block_count,NewRestArgumentsElements,12,0
-block_count,NewRestArgumentsElements,13,18
-block_count,NewRestArgumentsElements,14,55
-block_count,NewRestArgumentsElements,15,37
-block_count,NewRestArgumentsElements,16,37
-block_count,NewRestArgumentsElements,17,37
-block_count,NewRestArgumentsElements,18,37
+block_count,NewRestArgumentsElements,13,17
+block_count,NewRestArgumentsElements,14,54
+block_count,NewRestArgumentsElements,15,36
+block_count,NewRestArgumentsElements,16,36
+block_count,NewRestArgumentsElements,17,36
+block_count,NewRestArgumentsElements,18,36
block_count,NewRestArgumentsElements,19,0
block_count,NewRestArgumentsElements,20,0
-block_count,NewRestArgumentsElements,21,37
+block_count,NewRestArgumentsElements,21,36
block_count,NewRestArgumentsElements,22,0
-block_count,NewRestArgumentsElements,23,18
+block_count,NewRestArgumentsElements,23,17
block_count,NewRestArgumentsElements,24,0
block_count,NewRestArgumentsElements,25,0
block_count,NewRestArgumentsElements,26,0
@@ -62370,9 +62350,9 @@
block_count,FastNewSloppyArguments,97,0
block_count,FastNewSloppyArguments,98,1
block_count,FastNewSloppyArguments,99,1
-block_count,FastNewStrictArguments,0,1
-block_count,FastNewStrictArguments,1,1
-block_count,FastNewStrictArguments,2,1
+block_count,FastNewStrictArguments,0,2
+block_count,FastNewStrictArguments,1,2
+block_count,FastNewStrictArguments,2,2
block_count,FastNewStrictArguments,3,1
block_count,FastNewStrictArguments,4,1
block_count,FastNewStrictArguments,5,1
@@ -62397,12 +62377,12 @@
block_count,FastNewStrictArguments,24,0
block_count,FastNewStrictArguments,25,0
block_count,FastNewStrictArguments,26,0
-block_count,FastNewStrictArguments,27,1
+block_count,FastNewStrictArguments,27,2
block_count,FastNewStrictArguments,28,0
-block_count,FastNewStrictArguments,29,1
+block_count,FastNewStrictArguments,29,2
block_count,FastNewStrictArguments,30,0
-block_count,FastNewStrictArguments,31,1
-block_count,FastNewStrictArguments,32,1
+block_count,FastNewStrictArguments,31,2
+block_count,FastNewStrictArguments,32,2
block_count,FastNewRestArguments,0,1
block_count,FastNewRestArguments,1,1
block_count,FastNewRestArguments,2,1
@@ -62424,14 +62404,14 @@
block_count,FastNewRestArguments,18,0
block_count,FastNewRestArguments,19,0
block_count,FastNewRestArguments,20,1
-block_count,FastNewRestArguments,21,3
-block_count,FastNewRestArguments,22,1
-block_count,FastNewRestArguments,23,1
-block_count,FastNewRestArguments,24,1
-block_count,FastNewRestArguments,25,1
+block_count,FastNewRestArguments,21,4
+block_count,FastNewRestArguments,22,3
+block_count,FastNewRestArguments,23,3
+block_count,FastNewRestArguments,24,3
+block_count,FastNewRestArguments,25,3
block_count,FastNewRestArguments,26,0
block_count,FastNewRestArguments,27,0
-block_count,FastNewRestArguments,28,1
+block_count,FastNewRestArguments,28,3
block_count,FastNewRestArguments,29,0
block_count,FastNewRestArguments,30,1
block_count,FastNewRestArguments,31,0
@@ -62751,15 +62731,15 @@
block_count,StringSlowFlatten,22,0
block_count,StringSlowFlatten,23,0
block_count,StringSlowFlatten,24,0
-block_count,StringIndexOf,0,365
-block_count,StringIndexOf,1,365
+block_count,StringIndexOf,0,366
+block_count,StringIndexOf,1,366
block_count,StringIndexOf,2,0
-block_count,StringIndexOf,3,365
-block_count,StringIndexOf,4,365
+block_count,StringIndexOf,3,366
+block_count,StringIndexOf,4,366
block_count,StringIndexOf,5,0
block_count,StringIndexOf,6,0
block_count,StringIndexOf,7,0
-block_count,StringIndexOf,8,365
+block_count,StringIndexOf,8,366
block_count,StringIndexOf,9,182
block_count,StringIndexOf,10,216
block_count,StringIndexOf,11,53
@@ -63156,7 +63136,7 @@
block_count,MergeAt,167,54
block_count,MergeAt,168,54
block_count,MergeAt,169,54
-block_count,MergeAt,170,53
+block_count,MergeAt,170,54
block_count,MergeAt,171,0
block_count,MergeAt,172,0
block_count,MergeAt,173,0
@@ -63400,13 +63380,13 @@
block_count,ArrayTimSort,21,0
block_count,ArrayTimSort,22,38
block_count,ArrayTimSort,23,38
-block_count,ArrayTimSort,24,276
+block_count,ArrayTimSort,24,277
block_count,ArrayTimSort,25,0
block_count,ArrayTimSort,26,0
block_count,ArrayTimSort,27,0
-block_count,ArrayTimSort,28,276
+block_count,ArrayTimSort,28,277
block_count,ArrayTimSort,29,0
-block_count,ArrayTimSort,30,276
+block_count,ArrayTimSort,30,277
block_count,ArrayTimSort,31,38
block_count,ArrayTimSort,32,238
block_count,ArrayTimSort,33,0
@@ -63580,26 +63560,26 @@
block_count,ArrayTimSort,201,150
block_count,ArrayTimSort,202,150
block_count,ArrayTimSort,203,414
-block_count,ArrayTimSort,204,263
-block_count,ArrayTimSort,205,263
+block_count,ArrayTimSort,204,264
+block_count,ArrayTimSort,205,264
block_count,ArrayTimSort,206,0
block_count,ArrayTimSort,207,263
-block_count,ArrayTimSort,208,263
+block_count,ArrayTimSort,208,264
block_count,ArrayTimSort,209,0
block_count,ArrayTimSort,210,0
block_count,ArrayTimSort,211,0
-block_count,ArrayTimSort,212,263
+block_count,ArrayTimSort,212,264
block_count,ArrayTimSort,213,126
block_count,ArrayTimSort,214,137
block_count,ArrayTimSort,215,126
block_count,ArrayTimSort,216,137
-block_count,ArrayTimSort,217,263
+block_count,ArrayTimSort,217,264
block_count,ArrayTimSort,218,0
block_count,ArrayTimSort,219,150
block_count,ArrayTimSort,220,327
-block_count,ArrayTimSort,221,176
-block_count,ArrayTimSort,222,176
-block_count,ArrayTimSort,223,176
+block_count,ArrayTimSort,221,177
+block_count,ArrayTimSort,222,177
+block_count,ArrayTimSort,223,177
block_count,ArrayTimSort,224,0
block_count,ArrayTimSort,225,0
block_count,ArrayTimSort,226,150
@@ -63652,7 +63632,7 @@
block_count,ArrayTimSort,273,0
block_count,ArrayTimSort,274,0
block_count,ArrayTimSort,275,38
-block_count,ArrayTimSort,276,276
+block_count,ArrayTimSort,276,277
block_count,ArrayTimSort,277,238
block_count,ArrayTimSort,278,238
block_count,ArrayTimSort,279,0
@@ -63849,8 +63829,8 @@
block_count,StringFastLocaleCompare,0,1402
block_count,StringFastLocaleCompare,1,1402
block_count,StringFastLocaleCompare,2,1402
-block_count,StringFastLocaleCompare,3,1319
-block_count,StringFastLocaleCompare,4,1319
+block_count,StringFastLocaleCompare,3,1320
+block_count,StringFastLocaleCompare,4,1320
block_count,StringFastLocaleCompare,5,0
block_count,StringFastLocaleCompare,6,0
block_count,StringFastLocaleCompare,7,0
@@ -64061,16 +64041,16 @@
block_count,StringFastLocaleCompare,212,0
block_count,StringFastLocaleCompare,213,0
block_count,StringFastLocaleCompare,214,0
-block_count,StringFastLocaleCompare,215,1319
-block_count,StringFastLocaleCompare,216,1319
-block_count,StringFastLocaleCompare,217,1319
+block_count,StringFastLocaleCompare,215,1320
+block_count,StringFastLocaleCompare,216,1320
+block_count,StringFastLocaleCompare,217,1320
block_count,StringFastLocaleCompare,218,0
block_count,StringFastLocaleCompare,219,0
block_count,StringFastLocaleCompare,220,0
-block_count,StringFastLocaleCompare,221,1319
-block_count,StringFastLocaleCompare,222,1319
-block_count,StringFastLocaleCompare,223,1319
-block_count,StringFastLocaleCompare,224,1319
+block_count,StringFastLocaleCompare,221,1320
+block_count,StringFastLocaleCompare,222,1320
+block_count,StringFastLocaleCompare,223,1320
+block_count,StringFastLocaleCompare,224,1320
block_count,StringFastLocaleCompare,225,0
block_count,StringFastLocaleCompare,226,0
block_count,StringFastLocaleCompare,227,0
@@ -64166,18 +64146,18 @@
block_count,StringFastLocaleCompare,317,0
block_count,StringFastLocaleCompare,318,0
block_count,StringFastLocaleCompare,319,0
-block_count,StringFastLocaleCompare,320,1319
-block_count,StringFastLocaleCompare,321,1319
-block_count,StringFastLocaleCompare,322,1319
+block_count,StringFastLocaleCompare,320,1320
+block_count,StringFastLocaleCompare,321,1320
+block_count,StringFastLocaleCompare,322,1320
block_count,StringFastLocaleCompare,323,0
block_count,StringFastLocaleCompare,324,0
block_count,StringFastLocaleCompare,325,0
-block_count,StringFastLocaleCompare,326,1319
+block_count,StringFastLocaleCompare,326,1320
block_count,StringFastLocaleCompare,327,903
block_count,StringFastLocaleCompare,328,903
-block_count,StringFastLocaleCompare,329,962
-block_count,StringFastLocaleCompare,330,962
-block_count,StringFastLocaleCompare,331,962
+block_count,StringFastLocaleCompare,329,963
+block_count,StringFastLocaleCompare,330,963
+block_count,StringFastLocaleCompare,331,963
block_count,StringFastLocaleCompare,332,59
block_count,StringFastLocaleCompare,333,903
block_count,StringFastLocaleCompare,334,0
@@ -64185,13 +64165,13 @@
block_count,StringFastLocaleCompare,336,0
block_count,StringFastLocaleCompare,337,0
block_count,StringFastLocaleCompare,338,416
-block_count,StringFastLocaleCompare,339,1319
-block_count,StringFastLocaleCompare,340,6462
-block_count,StringFastLocaleCompare,341,6451
-block_count,StringFastLocaleCompare,342,6451
-block_count,StringFastLocaleCompare,343,6395
-block_count,StringFastLocaleCompare,344,6395
-block_count,StringFastLocaleCompare,345,5142
+block_count,StringFastLocaleCompare,339,1320
+block_count,StringFastLocaleCompare,340,6464
+block_count,StringFastLocaleCompare,341,6453
+block_count,StringFastLocaleCompare,342,6453
+block_count,StringFastLocaleCompare,343,6398
+block_count,StringFastLocaleCompare,344,6398
+block_count,StringFastLocaleCompare,345,5144
block_count,StringFastLocaleCompare,346,1253
block_count,StringFastLocaleCompare,347,825
block_count,StringFastLocaleCompare,348,427
@@ -64645,7 +64625,6 @@
block_count,WasmAllocateZeroedFixedArray,8,0
block_count,WasmTriggerTierUp,0,0
block_count,WasmStackGuard,0,0
-block_count,WasmStackGuardLoop,0,0
block_count,CallIndirectIC,0,2
block_count,CallIndirectIC,1,0
block_count,CallIndirectIC,2,2
@@ -64657,10 +64636,10 @@
block_count,CallIndirectIC,8,1
block_count,CallIndirectIC,9,1
block_count,CallIndirectIC,10,1
-block_count,CallIndirectIC,11,4
-block_count,CallIndirectIC,12,4
-block_count,CallIndirectIC,13,4
-block_count,CallIndirectIC,14,2
+block_count,CallIndirectIC,11,2
+block_count,CallIndirectIC,12,2
+block_count,CallIndirectIC,13,2
+block_count,CallIndirectIC,14,1
block_count,CallIndirectIC,15,1
block_count,CallIndirectIC,16,0
block_count,CallIndirectIC,17,1
@@ -64730,9 +64709,9 @@
block_count,StringPrototypeToLowerCaseIntl,7,0
block_count,StringPrototypeToLowerCaseIntl,8,7
block_count,StringToLowerCaseIntl,0,146
-block_count,StringToLowerCaseIntl,1,172
-block_count,StringToLowerCaseIntl,2,30
-block_count,StringToLowerCaseIntl,3,30
+block_count,StringToLowerCaseIntl,1,171
+block_count,StringToLowerCaseIntl,2,29
+block_count,StringToLowerCaseIntl,3,29
block_count,StringToLowerCaseIntl,4,25
block_count,StringToLowerCaseIntl,5,25
block_count,StringToLowerCaseIntl,6,0
@@ -64773,8 +64752,8 @@
block_count,StringToLowerCaseIntl,41,0
block_count,StringToLowerCaseIntl,42,0
block_count,WideHandler,0,62
-block_count,ExtraWideHandler,0,11
-block_count,LdarHandler,0,90
+block_count,ExtraWideHandler,0,10
+block_count,LdarHandler,0,89
block_count,LdaZeroHandler,0,11
block_count,LdaZeroHandler,1,8
block_count,LdaZeroHandler,2,3
@@ -64880,12 +64859,12 @@
block_count,LdaCurrentContextSlotHandler,20,0
block_count,LdaCurrentContextSlotHandler,21,0
block_count,LdaCurrentContextSlotHandler,22,1
-block_count,LdaImmutableCurrentContextSlotHandler,0,20
+block_count,LdaImmutableCurrentContextSlotHandler,0,21
block_count,LdaImmutableCurrentContextSlotHandler,1,0
-block_count,LdaImmutableCurrentContextSlotHandler,2,20
+block_count,LdaImmutableCurrentContextSlotHandler,2,21
block_count,LdaImmutableCurrentContextSlotHandler,3,4
block_count,LdaImmutableCurrentContextSlotHandler,4,16
-block_count,StarHandler,0,20
+block_count,StarHandler,0,19
block_count,MovHandler,0,19
block_count,PushContextHandler,0,2
block_count,PopContextHandler,0,0
@@ -64960,7 +64939,7 @@
block_count,TestTypeOfHandler,49,0
block_count,TestTypeOfHandler,50,1
block_count,LdaGlobalHandler,0,23
-block_count,LdaGlobalHandler,1,13
+block_count,LdaGlobalHandler,1,14
block_count,LdaGlobalHandler,2,13
block_count,LdaGlobalHandler,3,13
block_count,LdaGlobalHandler,4,13
@@ -66160,11 +66139,11 @@
block_count,StaLookupSlotHandler,3,0
block_count,StaLookupSlotHandler,4,0
block_count,StaLookupSlotHandler,5,0
-block_count,GetNamedPropertyHandler,0,75
-block_count,GetNamedPropertyHandler,1,47
-block_count,GetNamedPropertyHandler,2,47
+block_count,GetNamedPropertyHandler,0,74
+block_count,GetNamedPropertyHandler,1,46
+block_count,GetNamedPropertyHandler,2,46
block_count,GetNamedPropertyHandler,3,0
-block_count,GetNamedPropertyHandler,4,47
+block_count,GetNamedPropertyHandler,4,46
block_count,GetNamedPropertyHandler,5,6
block_count,GetNamedPropertyHandler,6,0
block_count,GetNamedPropertyHandler,7,6
@@ -66175,16 +66154,16 @@
block_count,GetNamedPropertyHandler,12,2
block_count,GetNamedPropertyHandler,13,0
block_count,GetNamedPropertyHandler,14,2
-block_count,GetNamedPropertyHandler,15,41
-block_count,GetNamedPropertyHandler,16,44
+block_count,GetNamedPropertyHandler,15,40
+block_count,GetNamedPropertyHandler,16,43
block_count,GetNamedPropertyHandler,17,15
block_count,GetNamedPropertyHandler,18,15
-block_count,GetNamedPropertyHandler,19,14
-block_count,GetNamedPropertyHandler,20,14
-block_count,GetNamedPropertyHandler,21,14
+block_count,GetNamedPropertyHandler,19,13
+block_count,GetNamedPropertyHandler,20,13
+block_count,GetNamedPropertyHandler,21,13
block_count,GetNamedPropertyHandler,22,0
block_count,GetNamedPropertyHandler,23,0
-block_count,GetNamedPropertyHandler,24,14
+block_count,GetNamedPropertyHandler,24,13
block_count,GetNamedPropertyHandler,25,2
block_count,GetNamedPropertyHandler,26,0
block_count,GetNamedPropertyHandler,27,0
@@ -66256,21 +66235,21 @@
block_count,GetNamedPropertyHandler,93,0
block_count,GetNamedPropertyHandler,94,0
block_count,GetNamedPropertyHandler,95,2
-block_count,GetNamedPropertyHandler,96,11
-block_count,GetNamedPropertyHandler,97,14
-block_count,GetNamedPropertyHandler,98,14
+block_count,GetNamedPropertyHandler,96,10
+block_count,GetNamedPropertyHandler,97,13
+block_count,GetNamedPropertyHandler,98,13
block_count,GetNamedPropertyHandler,99,13
block_count,GetNamedPropertyHandler,100,13
block_count,GetNamedPropertyHandler,101,0
block_count,GetNamedPropertyHandler,102,0
-block_count,GetNamedPropertyHandler,103,14
+block_count,GetNamedPropertyHandler,103,13
block_count,GetNamedPropertyHandler,104,0
block_count,GetNamedPropertyHandler,105,1
block_count,GetNamedPropertyHandler,106,0
block_count,GetNamedPropertyHandler,107,0
block_count,GetNamedPropertyHandler,108,0
block_count,GetNamedPropertyHandler,109,28
-block_count,GetNamedPropertyHandler,110,42
+block_count,GetNamedPropertyHandler,110,41
block_count,GetNamedPropertyHandler,111,14
block_count,GetNamedPropertyHandler,112,3
block_count,GetNamedPropertyHandler,113,2
@@ -66420,9 +66399,9 @@
block_count,GetNamedPropertyHandler,257,1
block_count,GetNamedPropertyHandler,258,0
block_count,GetNamedPropertyHandler,259,27
-block_count,GetNamedPropertyHandler,260,75
-block_count,GetNamedPropertyHandler,261,21
-block_count,GetNamedPropertyHandler,262,54
+block_count,GetNamedPropertyHandler,260,74
+block_count,GetNamedPropertyHandler,261,20
+block_count,GetNamedPropertyHandler,262,53
block_count,GetNamedPropertyFromSuperHandler,0,0
block_count,GetKeyedPropertyHandler,0,22
block_count,GetKeyedPropertyHandler,1,9
@@ -66457,7 +66436,7 @@
block_count,AddHandler,20,0
block_count,AddHandler,21,4
block_count,AddHandler,22,4
-block_count,AddHandler,23,4
+block_count,AddHandler,23,3
block_count,AddHandler,24,0
block_count,AddHandler,25,3
block_count,AddHandler,26,0
@@ -67192,7 +67171,7 @@
block_count,ExpHandler,55,0
block_count,ExpHandler,56,0
block_count,ExpHandler,57,0
-block_count,BitwiseOrHandler,0,1
+block_count,BitwiseOrHandler,0,0
block_count,BitwiseOrHandler,1,0
block_count,BitwiseOrHandler,2,0
block_count,BitwiseOrHandler,3,0
@@ -67298,8 +67277,8 @@
block_count,BitwiseOrHandler,103,0
block_count,BitwiseOrHandler,104,0
block_count,BitwiseOrHandler,105,0
-block_count,BitwiseOrHandler,106,1
-block_count,BitwiseOrHandler,107,1
+block_count,BitwiseOrHandler,106,0
+block_count,BitwiseOrHandler,107,0
block_count,BitwiseOrHandler,108,0
block_count,BitwiseOrHandler,109,0
block_count,BitwiseOrHandler,110,0
@@ -67324,22 +67303,22 @@
block_count,BitwiseOrHandler,129,0
block_count,BitwiseOrHandler,130,0
block_count,BitwiseOrHandler,131,0
-block_count,BitwiseOrHandler,132,1
+block_count,BitwiseOrHandler,132,0
block_count,BitwiseOrHandler,133,0
block_count,BitwiseOrHandler,134,0
block_count,BitwiseOrHandler,135,0
block_count,BitwiseOrHandler,136,0
block_count,BitwiseOrHandler,137,0
-block_count,BitwiseOrHandler,138,1
+block_count,BitwiseOrHandler,138,0
block_count,BitwiseOrHandler,139,0
block_count,BitwiseOrHandler,140,0
-block_count,BitwiseOrHandler,141,1
+block_count,BitwiseOrHandler,141,0
block_count,BitwiseOrHandler,142,0
block_count,BitwiseOrHandler,143,0
block_count,BitwiseOrHandler,144,0
block_count,BitwiseOrHandler,145,0
-block_count,BitwiseOrHandler,146,1
-block_count,BitwiseOrHandler,147,1
+block_count,BitwiseOrHandler,146,0
+block_count,BitwiseOrHandler,147,0
block_count,BitwiseXorHandler,0,0
block_count,BitwiseXorHandler,1,0
block_count,BitwiseXorHandler,2,0
@@ -68762,8 +68741,8 @@
block_count,IncHandler,30,12
block_count,IncHandler,31,1
block_count,IncHandler,32,11
-block_count,DecHandler,0,3
-block_count,DecHandler,1,3
+block_count,DecHandler,0,2
+block_count,DecHandler,1,2
block_count,DecHandler,2,0
block_count,DecHandler,3,0
block_count,DecHandler,4,0
@@ -68780,19 +68759,19 @@
block_count,DecHandler,15,0
block_count,DecHandler,16,0
block_count,DecHandler,17,0
-block_count,DecHandler,18,3
-block_count,DecHandler,19,3
+block_count,DecHandler,18,2
+block_count,DecHandler,19,2
block_count,DecHandler,20,0
block_count,DecHandler,21,0
block_count,DecHandler,22,0
block_count,DecHandler,23,0
block_count,DecHandler,24,0
-block_count,DecHandler,25,3
-block_count,DecHandler,26,3
+block_count,DecHandler,25,2
+block_count,DecHandler,26,2
block_count,DecHandler,27,0
-block_count,DecHandler,28,3
+block_count,DecHandler,28,2
block_count,DecHandler,29,0
-block_count,DecHandler,30,3
+block_count,DecHandler,30,2
block_count,DecHandler,31,0
block_count,DecHandler,32,2
block_count,NegateHandler,0,0
@@ -69119,7 +69098,7 @@
block_count,CallPropertyHandler,66,1
block_count,CallPropertyHandler,67,0
block_count,CallPropertyHandler,68,2
-block_count,CallProperty0Handler,0,5
+block_count,CallProperty0Handler,0,4
block_count,CallProperty0Handler,1,3
block_count,CallProperty0Handler,2,0
block_count,CallProperty0Handler,3,0
@@ -69187,7 +69166,7 @@
block_count,CallProperty0Handler,65,0
block_count,CallProperty0Handler,66,3
block_count,CallProperty0Handler,67,1
-block_count,CallProperty0Handler,68,5
+block_count,CallProperty0Handler,68,4
block_count,CallProperty1Handler,0,13
block_count,CallProperty1Handler,1,8
block_count,CallProperty1Handler,2,0
@@ -69395,8 +69374,8 @@
block_count,CallUndefinedReceiverHandler,66,0
block_count,CallUndefinedReceiverHandler,67,0
block_count,CallUndefinedReceiverHandler,68,1
-block_count,CallUndefinedReceiver0Handler,0,3
-block_count,CallUndefinedReceiver0Handler,1,2
+block_count,CallUndefinedReceiver0Handler,0,1
+block_count,CallUndefinedReceiver0Handler,1,1
block_count,CallUndefinedReceiver0Handler,2,0
block_count,CallUndefinedReceiver0Handler,3,0
block_count,CallUndefinedReceiver0Handler,4,0
@@ -69461,9 +69440,9 @@
block_count,CallUndefinedReceiver0Handler,63,0
block_count,CallUndefinedReceiver0Handler,64,0
block_count,CallUndefinedReceiver0Handler,65,0
-block_count,CallUndefinedReceiver0Handler,66,2
+block_count,CallUndefinedReceiver0Handler,66,1
block_count,CallUndefinedReceiver0Handler,67,0
-block_count,CallUndefinedReceiver0Handler,68,3
+block_count,CallUndefinedReceiver0Handler,68,1
block_count,CallUndefinedReceiver1Handler,0,5
block_count,CallUndefinedReceiver1Handler,1,2
block_count,CallUndefinedReceiver1Handler,2,0
@@ -69775,7 +69754,7 @@
block_count,ConstructHandler,41,0
block_count,ConstructHandler,42,0
block_count,ConstructHandler,43,0
-block_count,ConstructHandler,44,1
+block_count,ConstructHandler,44,0
block_count,ConstructHandler,45,3
block_count,ConstructHandler,46,4
block_count,ConstructHandler,47,4
@@ -69971,11 +69950,11 @@
block_count,TestEqualHandler,107,2
block_count,TestEqualHandler,108,2
block_count,TestEqualHandler,109,0
-block_count,TestEqualHandler,110,1
+block_count,TestEqualHandler,110,2
block_count,TestEqualHandler,111,2
block_count,TestEqualHandler,112,0
block_count,TestEqualHandler,113,0
-block_count,TestEqualHandler,114,2
+block_count,TestEqualHandler,114,1
block_count,TestEqualHandler,115,0
block_count,TestEqualHandler,116,0
block_count,TestEqualHandler,117,0
@@ -69995,7 +69974,7 @@
block_count,TestEqualHandler,131,0
block_count,TestEqualHandler,132,0
block_count,TestEqualHandler,133,0
-block_count,TestEqualHandler,134,2
+block_count,TestEqualHandler,134,1
block_count,TestEqualHandler,135,0
block_count,TestEqualHandler,136,0
block_count,TestEqualHandler,137,0
@@ -70013,7 +69992,7 @@
block_count,TestEqualHandler,149,0
block_count,TestEqualHandler,150,0
block_count,TestEqualHandler,151,0
-block_count,TestEqualHandler,152,0
+block_count,TestEqualHandler,152,1
block_count,TestEqualHandler,153,0
block_count,TestEqualHandler,154,0
block_count,TestEqualHandler,155,0
@@ -70118,7 +70097,7 @@
block_count,TestEqualStrictHandler,66,2
block_count,TestEqualStrictHandler,67,3
block_count,TestEqualStrictHandler,68,0
-block_count,TestEqualStrictHandler,69,2
+block_count,TestEqualStrictHandler,69,3
block_count,TestEqualStrictHandler,70,3
block_count,TestEqualStrictHandler,71,2
block_count,TestEqualStrictHandler,72,0
@@ -70315,7 +70294,7 @@
block_count,TestLessThanHandler,127,0
block_count,TestLessThanHandler,128,0
block_count,TestLessThanHandler,129,0
-block_count,TestLessThanHandler,130,11
+block_count,TestLessThanHandler,130,10
block_count,TestLessThanHandler,131,0
block_count,TestLessThanHandler,132,0
block_count,TestLessThanHandler,133,0
@@ -70332,7 +70311,7 @@
block_count,TestLessThanHandler,144,0
block_count,TestLessThanHandler,145,0
block_count,TestLessThanHandler,146,0
-block_count,TestLessThanHandler,147,11
+block_count,TestLessThanHandler,147,10
block_count,TestLessThanHandler,148,1
block_count,TestLessThanHandler,149,9
block_count,TestLessThanHandler,150,0
@@ -70349,13 +70328,13 @@
block_count,TestLessThanHandler,161,1
block_count,TestLessThanHandler,162,9
block_count,TestLessThanHandler,163,11
-block_count,TestLessThanHandler,164,10
+block_count,TestLessThanHandler,164,9
block_count,TestLessThanHandler,165,0
-block_count,TestLessThanHandler,166,10
+block_count,TestLessThanHandler,166,9
block_count,TestLessThanHandler,167,1
block_count,TestLessThanHandler,168,11
-block_count,TestGreaterThanHandler,0,2
-block_count,TestGreaterThanHandler,1,2
+block_count,TestGreaterThanHandler,0,1
+block_count,TestGreaterThanHandler,1,1
block_count,TestGreaterThanHandler,2,0
block_count,TestGreaterThanHandler,3,0
block_count,TestGreaterThanHandler,4,0
@@ -70503,7 +70482,7 @@
block_count,TestGreaterThanHandler,146,0
block_count,TestGreaterThanHandler,147,1
block_count,TestGreaterThanHandler,148,0
-block_count,TestGreaterThanHandler,149,1
+block_count,TestGreaterThanHandler,149,0
block_count,TestGreaterThanHandler,150,0
block_count,TestGreaterThanHandler,151,0
block_count,TestGreaterThanHandler,152,0
@@ -70516,13 +70495,13 @@
block_count,TestGreaterThanHandler,159,0
block_count,TestGreaterThanHandler,160,0
block_count,TestGreaterThanHandler,161,1
-block_count,TestGreaterThanHandler,162,1
-block_count,TestGreaterThanHandler,163,2
+block_count,TestGreaterThanHandler,162,0
+block_count,TestGreaterThanHandler,163,1
block_count,TestGreaterThanHandler,164,1
block_count,TestGreaterThanHandler,165,0
block_count,TestGreaterThanHandler,166,1
block_count,TestGreaterThanHandler,167,0
-block_count,TestGreaterThanHandler,168,2
+block_count,TestGreaterThanHandler,168,1
block_count,TestLessThanOrEqualHandler,0,0
block_count,TestLessThanOrEqualHandler,1,0
block_count,TestLessThanOrEqualHandler,2,0
@@ -70840,7 +70819,7 @@
block_count,TestGreaterThanOrEqualHandler,145,0
block_count,TestGreaterThanOrEqualHandler,146,0
block_count,TestGreaterThanOrEqualHandler,147,1
-block_count,TestGreaterThanOrEqualHandler,148,1
+block_count,TestGreaterThanOrEqualHandler,148,0
block_count,TestGreaterThanOrEqualHandler,149,0
block_count,TestGreaterThanOrEqualHandler,150,0
block_count,TestGreaterThanOrEqualHandler,151,0
@@ -70861,7 +70840,7 @@
block_count,TestGreaterThanOrEqualHandler,166,1
block_count,TestGreaterThanOrEqualHandler,167,0
block_count,TestGreaterThanOrEqualHandler,168,1
-block_count,TestInstanceOfHandler,0,1
+block_count,TestInstanceOfHandler,0,0
block_count,TestInstanceOfHandler,1,0
block_count,TestInstanceOfHandler,2,0
block_count,TestInstanceOfHandler,3,0
@@ -70883,12 +70862,12 @@
block_count,TestInstanceOfHandler,19,0
block_count,TestInstanceOfHandler,20,0
block_count,TestInstanceOfHandler,21,0
-block_count,TestInstanceOfHandler,22,1
-block_count,TestInstanceOfHandler,23,1
+block_count,TestInstanceOfHandler,22,0
+block_count,TestInstanceOfHandler,23,0
block_count,TestInstanceOfHandler,24,0
-block_count,TestInstanceOfHandler,25,1
+block_count,TestInstanceOfHandler,25,0
block_count,TestInstanceOfHandler,26,0
-block_count,TestInstanceOfHandler,27,1
+block_count,TestInstanceOfHandler,27,0
block_count,TestInstanceOfHandler,28,0
block_count,TestInstanceOfHandler,29,0
block_count,TestInstanceOfHandler,30,0
@@ -70917,8 +70896,8 @@
block_count,TestInstanceOfHandler,53,0
block_count,TestInstanceOfHandler,54,0
block_count,TestInstanceOfHandler,55,0
-block_count,TestInstanceOfHandler,56,1
-block_count,TestInstanceOfHandler,57,1
+block_count,TestInstanceOfHandler,56,0
+block_count,TestInstanceOfHandler,57,0
block_count,TestInstanceOfHandler,58,0
block_count,TestInstanceOfHandler,59,0
block_count,TestInHandler,0,0
@@ -70989,7 +70968,7 @@
block_count,CreateRegExpLiteralHandler,9,0
block_count,CreateRegExpLiteralHandler,10,0
block_count,CreateRegExpLiteralHandler,11,0
-block_count,CreateArrayLiteralHandler,0,0
+block_count,CreateArrayLiteralHandler,0,1
block_count,CreateArrayLiteralHandler,1,0
block_count,CreateArrayLiteralHandler,2,0
block_count,CreateArrayLiteralHandler,3,0
@@ -71556,12 +71535,12 @@
block_count,CreateRestParameterHandler,36,0
block_count,CreateRestParameterHandler,37,0
block_count,CreateRestParameterHandler,38,0
-block_count,JumpLoopHandler,0,16
-block_count,JumpLoopHandler,1,14
+block_count,JumpLoopHandler,0,14
+block_count,JumpLoopHandler,1,13
block_count,JumpLoopHandler,2,1
block_count,JumpLoopHandler,3,0
block_count,JumpLoopHandler,4,1
-block_count,JumpLoopHandler,5,14
+block_count,JumpLoopHandler,5,13
block_count,JumpLoopHandler,6,0
block_count,JumpLoopHandler,7,0
block_count,JumpLoopHandler,8,0
@@ -71591,12 +71570,12 @@
block_count,JumpLoopHandler,32,0
block_count,JumpLoopHandler,33,0
block_count,JumpLoopHandler,34,0
-block_count,JumpLoopHandler,35,14
-block_count,JumpLoopHandler,36,14
+block_count,JumpLoopHandler,35,13
+block_count,JumpLoopHandler,36,13
block_count,JumpLoopHandler,37,0
-block_count,JumpLoopHandler,38,14
-block_count,JumpLoopHandler,39,14
-block_count,JumpLoopHandler,40,14
+block_count,JumpLoopHandler,38,13
+block_count,JumpLoopHandler,39,13
+block_count,JumpLoopHandler,40,13
block_count,JumpLoopHandler,41,0
block_count,JumpLoopHandler,42,0
block_count,JumpLoopHandler,43,0
@@ -71616,10 +71595,10 @@
block_count,JumpLoopHandler,57,0
block_count,JumpLoopHandler,58,0
block_count,JumpLoopHandler,59,0
-block_count,JumpLoopHandler,60,15
+block_count,JumpLoopHandler,60,14
block_count,JumpLoopHandler,61,0
-block_count,JumpLoopHandler,62,15
-block_count,JumpLoopHandler,63,15
+block_count,JumpLoopHandler,62,14
+block_count,JumpLoopHandler,63,14
block_count,JumpHandler,0,4
block_count,JumpConstantHandler,0,0
block_count,JumpIfUndefinedConstantHandler,0,0
@@ -71703,7 +71682,7 @@
block_count,JumpIfToBooleanTrueHandler,18,0
block_count,JumpIfToBooleanTrueHandler,19,2
block_count,JumpIfToBooleanTrueHandler,20,3
-block_count,JumpIfToBooleanFalseHandler,0,14
+block_count,JumpIfToBooleanFalseHandler,0,13
block_count,JumpIfToBooleanFalseHandler,1,10
block_count,JumpIfToBooleanFalseHandler,2,4
block_count,JumpIfToBooleanFalseHandler,3,3
@@ -71719,16 +71698,16 @@
block_count,JumpIfToBooleanFalseHandler,13,0
block_count,JumpIfToBooleanFalseHandler,14,1
block_count,JumpIfToBooleanFalseHandler,15,5
-block_count,JumpIfToBooleanFalseHandler,16,4
-block_count,JumpIfToBooleanFalseHandler,17,4
+block_count,JumpIfToBooleanFalseHandler,16,2
+block_count,JumpIfToBooleanFalseHandler,17,2
block_count,JumpIfToBooleanFalseHandler,18,0
-block_count,JumpIfToBooleanFalseHandler,19,9
+block_count,JumpIfToBooleanFalseHandler,19,7
block_count,JumpIfToBooleanFalseHandler,20,5
block_count,JumpIfTrueHandler,0,6
block_count,JumpIfTrueHandler,1,5
block_count,JumpIfTrueHandler,2,1
-block_count,JumpIfFalseHandler,0,24
-block_count,JumpIfFalseHandler,1,14
+block_count,JumpIfFalseHandler,0,23
+block_count,JumpIfFalseHandler,1,13
block_count,JumpIfFalseHandler,2,10
block_count,JumpIfNullHandler,0,0
block_count,JumpIfNullHandler,1,0
@@ -71835,7 +71814,7 @@
block_count,SetPendingMessageHandler,0,0
block_count,ThrowHandler,0,2
block_count,ReThrowHandler,0,0
-block_count,ReturnHandler,0,20
+block_count,ReturnHandler,0,21
block_count,ReturnHandler,1,0
block_count,ReturnHandler,2,20
block_count,ThrowReferenceErrorIfHoleHandler,0,1
@@ -77649,7 +77628,6 @@
builtin_hash,WasmAllocateZeroedFixedArray,248280626
builtin_hash,WasmTriggerTierUp,14772238
builtin_hash,WasmStackGuard,-245173892
-builtin_hash,WasmStackGuardLoop,114155899
builtin_hash,CallIndirectIC,-505126594
builtin_hash,CanUseSameAccessor_FastDoubleElements_0,238294760
builtin_hash,CanUseSameAccessor_FastSmiElements_0,238294760
diff -Nru chromium-143.0.7499.109/v8/tools/builtins-pgo/profiles/x64.profile chromium-143.0.7499.169/v8/tools/builtins-pgo/profiles/x64.profile
--- chromium-143.0.7499.109/v8/tools/builtins-pgo/profiles/x64.profile 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/v8/tools/builtins-pgo/profiles/x64.profile 2025-12-17 23:05:18.000000000 +0000
@@ -264,6 +264,7 @@
block_hint,ToNumber_Baseline,15,12,1
block_hint,ToNumber_Baseline,24,23,1
block_hint,ToNumeric_Baseline,1,28,0
+block_hint,ToNumeric_Baseline,2,3,1
block_hint,ToNumeric_Baseline,31,30,1
block_hint,ToNumberConvertBigInt,1,23,1
block_hint,ToNumberConvertBigInt,2,3,0
@@ -424,6 +425,7 @@
block_hint,KeyedStoreIC_Megamorphic,1219,1213,0
block_hint,KeyedStoreIC_Megamorphic,1217,1214,0
block_hint,KeyedStoreIC_Megamorphic,1215,1216,1
+block_hint,KeyedStoreIC_Megamorphic,1289,1292,0
block_hint,KeyedStoreIC_Megamorphic,1301,1378,0
block_hint,KeyedStoreIC_Megamorphic,1312,1376,0
block_hint,KeyedStoreIC_Megamorphic,1375,1342,1
@@ -637,6 +639,11 @@
block_hint,StoreFastElementIC_InBounds,290,285,0
block_hint,StoreFastElementIC_InBounds,289,286,0
block_hint,StoreFastElementIC_InBounds,288,287,1
+block_hint,StoreFastElementIC_InBounds,293,300,0
+block_hint,StoreFastElementIC_InBounds,303,309,0
+block_hint,StoreFastElementIC_InBounds,316,311,0
+block_hint,StoreFastElementIC_InBounds,315,312,0
+block_hint,StoreFastElementIC_InBounds,314,313,1
block_hint,StoreFastElementIC_InBounds,319,326,0
block_hint,StoreFastElementIC_InBounds,329,335,0
block_hint,StoreFastElementIC_InBounds,342,337,0
@@ -740,6 +747,16 @@
block_hint,ElementsTransitionAndStore_InBounds,348,347,1
block_hint,ElementsTransitionAndStore_InBounds,351,350,1
block_hint,ElementsTransitionAndStore_InBounds,353,352,1
+block_hint,ElementsTransitionAndStore_InBounds,609,592,1
+block_hint,ElementsTransitionAndStore_InBounds,612,622,0
+block_hint,ElementsTransitionAndStore_InBounds,615,614,0
+block_hint,ElementsTransitionAndStore_InBounds,618,617,0
+block_hint,ElementsTransitionAndStore_InBounds,621,620,1
+block_hint,ElementsTransitionAndStore_InBounds,626,633,0
+block_hint,ElementsTransitionAndStore_InBounds,630,629,1
+block_hint,ElementsTransitionAndStore_InBounds,632,631,0
+block_hint,ElementsTransitionAndStore_InBounds,636,635,1
+block_hint,ElementsTransitionAndStore_InBounds,639,638,0
block_hint,KeyedHasIC_PolymorphicName,1,2,1
block_hint,KeyedHasIC_PolymorphicName,6,7,1
block_hint,KeyedHasIC_PolymorphicName,54,10,0
@@ -865,7 +882,6 @@
block_hint,ArrayConstructorImpl,18,17,1
block_hint,ArrayConstructorImpl,35,26,0
block_hint,ArrayConstructorImpl,33,28,0
-block_hint,ArrayConstructorImpl,41,38,0
block_hint,ArrayNoArgumentConstructor_PackedSmi_DontOverride,2,1,1
block_hint,ArrayNoArgumentConstructor_Packed_DisableAllocationSites,2,1,1
block_hint,ArrayNoArgumentConstructor_PackedDouble_DisableAllocationSites,2,1,1
@@ -1031,7 +1047,6 @@
block_hint,CloneFastJSArray,7,6,1
block_hint,CloneFastJSArray,12,11,0
block_hint,CloneFastJSArray,22,23,1
-block_hint,CloneFastJSArray,29,30,1
block_hint,CloneFastJSArray,58,39,0
block_hint,CloneFastJSArray,41,40,1
block_hint,CloneFastJSArray,43,42,1
@@ -1055,8 +1070,6 @@
block_hint,ExtractFastJSArray,11,10,1
block_hint,ExtractFastJSArray,16,15,0
block_hint,ExtractFastJSArray,26,27,1
-block_hint,ExtractFastJSArray,29,28,1
-block_hint,ExtractFastJSArray,33,34,1
block_hint,ExtractFastJSArray,60,41,0
block_hint,ExtractFastJSArray,43,42,1
block_hint,ExtractFastJSArray,45,44,1
@@ -1263,6 +1276,7 @@
block_hint,LoadIC,5,6,0
block_hint,LoadIC,21,8,1
block_hint,LoadIC,23,22,0
+block_hint,LoadIC,26,27,1
block_hint,LoadIC,30,33,1
block_hint,LoadIC,31,32,1
block_hint,LoadIC,37,38,1
@@ -1290,7 +1304,6 @@
block_hint,LoadIC,244,230,0
block_hint,LoadIC,232,231,1
block_hint,LoadIC,235,234,0
-block_hint,LoadIC,283,282,0
block_hint,LoadIC_Megamorphic,1,2,1
block_hint,LoadIC_Megamorphic,5,4,0
block_hint,LoadIC_Megamorphic,8,9,1
@@ -1328,6 +1341,7 @@
block_hint,LoadIC_Noninlined,6,5,0
block_hint,LoadIC_Noninlined,19,18,0
block_hint,LoadIC_Noninlined,22,23,1
+block_hint,LoadIC_Noninlined,27,28,1
block_hint,LoadIC_Noninlined,119,32,0
block_hint,LoadIC_Noninlined,118,33,0
block_hint,LoadIC_Noninlined,37,34,0
@@ -1415,11 +1429,8 @@
block_hint,KeyedLoadIC,339,346,1
block_hint,KeyedLoadIC,383,348,1
block_hint,KeyedLoadIC,359,351,0
-block_hint,KeyedLoadIC,366,365,0
block_hint,KeyedLoadIC,369,368,0
-block_hint,KeyedLoadIC,374,375,1
block_hint,KeyedLoadIC,382,377,1
-block_hint,KeyedLoadIC,380,379,0
block_hint,KeyedLoadIC,393,405,1
block_hint,KeyedLoadIC,395,394,0
block_hint,KeyedLoadIC,404,403,1
@@ -1629,7 +1640,6 @@
block_hint,StoreIC,371,370,0
block_hint,StoreIC_Megamorphic,1,2,1
block_hint,StoreIC_Megamorphic,5,4,0
-block_hint,StoreIC_Megamorphic,8,9,1
block_hint,StoreIC_Megamorphic,12,15,1
block_hint,StoreIC_Megamorphic,13,14,1
block_hint,StoreIC_Megamorphic,17,257,1
@@ -1727,7 +1737,6 @@
block_hint,KeyedStoreIC,33,30,0
block_hint,KeyedStoreIC,32,31,0
block_hint,KeyedStoreIC,35,42,1
-block_hint,KeyedStoreIC,41,36,1
block_hint,KeyedStoreIC,40,37,0
block_hint,KeyedStoreIC,39,38,0
block_hint,KeyedStoreIC,286,196,0
@@ -2292,7 +2301,6 @@
block_hint,Equal_WithFeedback,169,154,1
block_hint,Equal_WithFeedback,166,155,0
block_hint,Equal_WithFeedback,157,156,0
-block_hint,Equal_WithFeedback,171,172,0
block_hint,Equal_WithFeedback,182,181,1
block_hint,StrictEqual_WithFeedback,71,3,0
block_hint,StrictEqual_WithFeedback,27,6,0
@@ -2329,6 +2337,7 @@
block_hint,GreaterThanOrEqual_WithFeedback,42,35,1
block_hint,GreaterThanOrEqual_WithFeedback,163,162,1
block_hint,Decrement_Baseline,2,16,0
+block_hint,Decrement_Baseline,15,3,1
block_hint,Decrement_Baseline,18,17,0
block_hint,Decrement_Baseline,26,25,0
block_hint,Increment_Baseline,2,16,0
@@ -2666,7 +2675,6 @@
block_hint,StringFromCharCode,76,75,1
block_hint,StringFromCharCode,82,81,0
block_hint,StringFromCharCode,84,85,0
-block_hint,StringFromCharCode,93,88,0
block_hint,StringPrototypeReplace,2,1,1
block_hint,StringPrototypeReplace,87,4,0
block_hint,StringPrototypeReplace,5,31,1
@@ -2986,6 +2994,7 @@
block_hint,CreateDataProperty,382,325,1
block_hint,CreateDataProperty,381,326,1
block_hint,CreateDataProperty,407,388,1
+block_hint,CreateDataProperty,412,411,0
block_hint,CreateDataProperty,813,414,1
block_hint,CreateDataProperty,812,415,1
block_hint,CreateDataProperty,811,659,1
@@ -3666,14 +3675,10 @@
block_hint,ArrayPrototypeSplice,494,479,1
block_hint,ArrayPrototypeSplice,501,502,1
block_hint,ArrayPrototypeSplice,569,503,0
+block_hint,ArrayPrototypeSplice,544,506,0
block_hint,ArrayPrototypeSplice,526,511,1
block_hint,ArrayPrototypeSplice,513,516,0
block_hint,ArrayPrototypeSplice,524,520,1
-block_hint,ArrayPrototypeSplice,532,533,0
-block_hint,ArrayPrototypeSplice,535,534,0
-block_hint,ArrayPrototypeSplice,543,542,0
-block_hint,ArrayPrototypeSplice,545,546,0
-block_hint,ArrayPrototypeSplice,558,547,0
block_hint,ArrayPrototypeSplice,593,592,0
block_hint,ArrayPrototypeSplice,596,599,0
block_hint,ArrayPrototypeSplice,602,601,0
@@ -3753,7 +3758,6 @@
block_hint,StringPrototypeCharCodeAt,44,14,0
block_hint,StringPrototypeCharCodeAt,43,15,0
block_hint,StringPrototypeCharCodeAt,26,18,0
-block_hint,StringPrototypeCharCodeAt,22,19,1
block_hint,StringPrototypeCharCodeAt,23,24,1
block_hint,StringPrototypeCharCodeAt,41,42,1
block_hint,StringPrototypeCodePointAt,2,1,1
@@ -3825,10 +3829,6 @@
block_hint,CreateShallowArrayLiteral,10,9,1
block_hint,CreateShallowArrayLiteral,15,14,0
block_hint,CreateShallowArrayLiteral,25,26,1
-block_hint,CreateShallowArrayLiteral,28,27,1
-block_hint,CreateShallowArrayLiteral,30,29,1
-block_hint,CreateShallowArrayLiteral,32,33,0
-block_hint,CreateShallowArrayLiteral,36,35,0
block_hint,CreateShallowArrayLiteral,61,42,0
block_hint,CreateShallowArrayLiteral,44,43,1
block_hint,CreateShallowArrayLiteral,46,45,1
@@ -4090,11 +4090,6 @@
block_hint,MathCos,5,6,1
block_hint,MathCos,15,16,1
block_hint,MathCos,21,20,0
-block_hint,MathExp,2,1,1
-block_hint,MathExp,4,8,1
-block_hint,MathExp,5,6,1
-block_hint,MathExp,10,11,1
-block_hint,MathExp,14,13,0
block_hint,MathFround,2,1,1
block_hint,MathFround,5,6,1
block_hint,MathLog,2,1,1
@@ -4357,6 +4352,7 @@
block_hint,RegExpPrototypeExec,206,136,0
block_hint,RegExpPrototypeExec,205,137,0
block_hint,RegExpPrototypeExec,164,140,0
+block_hint,RegExpPrototypeExec,144,141,1
block_hint,RegExpPrototypeExec,143,142,1
block_hint,RegExpPrototypeExec,145,146,1
block_hint,RegExpPrototypeExec,174,173,0
@@ -4486,9 +4482,9 @@
block_hint,RegExpReplace,87,195,1
block_hint,RegExpReplace,94,91,0
block_hint,RegExpReplace,93,92,0
-block_hint,RegExpReplace,124,98,1
block_hint,RegExpReplace,123,99,0
block_hint,RegExpReplace,102,101,1
+block_hint,RegExpReplace,104,105,1
block_hint,RegExpReplace,119,109,1
block_hint,RegExpReplace,133,132,0
block_hint,RegExpReplace,139,142,0
@@ -4509,9 +4505,9 @@
block_hint,RegExpReplace,329,326,0
block_hint,RegExpReplace,328,327,0
block_hint,RegExpReplace,402,334,0
-block_hint,RegExpReplace,362,336,1
block_hint,RegExpReplace,361,337,0
block_hint,RegExpReplace,340,339,1
+block_hint,RegExpReplace,342,343,1
block_hint,RegExpReplace,357,347,1
block_hint,RegExpReplace,370,369,0
block_hint,RegExpReplace,377,378,1
@@ -4551,8 +4547,8 @@
block_hint,RegExpSplit,17,421,1
block_hint,RegExpSplit,90,20,0
block_hint,RegExpSplit,89,21,0
-block_hint,RegExpSplit,49,23,1
block_hint,RegExpSplit,48,24,0
+block_hint,RegExpSplit,28,25,1
block_hint,RegExpSplit,27,26,0
block_hint,RegExpSplit,29,30,1
block_hint,RegExpSplit,57,56,0
@@ -5133,7 +5129,9 @@
block_hint,FastNewRestArguments,43,2,0
block_hint,FastNewRestArguments,4,3,1
block_hint,FastNewRestArguments,7,6,1
+block_hint,FastNewRestArguments,9,8,0
block_hint,FastNewRestArguments,38,11,0
+block_hint,FastNewRestArguments,37,12,0
block_hint,FastNewRestArguments,36,13,0
block_hint,FastNewRestArguments,35,14,0
block_hint,FastNewRestArguments,15,18,1
@@ -5542,6 +5540,7 @@
block_hint,GetNamedPropertyHandler,95,84,1
block_hint,GetNamedPropertyHandler,98,104,1
block_hint,GetNamedPropertyHandler,101,100,0
+block_hint,GetNamedPropertyHandler,108,107,0
block_hint,GetNamedPropertyHandler,149,150,1
block_hint,GetNamedPropertyHandler,158,152,0
block_hint,GetNamedPropertyHandler,157,154,0
@@ -5599,7 +5598,9 @@
block_hint,ModHandler,8,16,0
block_hint,ModHandler,26,23,1
block_hint,BitwiseOrHandler,105,102,1
+block_hint,BitwiseOrHandler,110,109,0
block_hint,BitwiseOrHandler,133,112,1
+block_hint,BitwiseOrHandler,131,128,1
block_hint,BitwiseOrHandler,136,135,1
block_hint,BitwiseOrHandler,142,143,1
block_hint,BitwiseOrHandler,148,145,0
@@ -5678,6 +5679,7 @@
block_hint,DecHandler,2,18,0
block_hint,DecHandler,20,19,0
block_hint,DecHandler,30,27,1
+block_hint,DecHandler,29,28,0
block_hint,DecHandler,33,32,0
block_hint,NegateHandler,17,3,1
block_hint,NegateHandler,33,30,1
@@ -5690,6 +5692,12 @@
block_hint,FindNonDefaultConstructorOrConstructHandler,6,13,1
block_hint,FindNonDefaultConstructorOrConstructHandler,12,7,0
block_hint,CallAnyReceiverHandler,66,2,1
+block_hint,CallPropertyHandler,46,45,1
+block_hint,CallPropertyHandler,48,47,0
+block_hint,CallPropertyHandler,55,63,1
+block_hint,CallPropertyHandler,57,58,0
+block_hint,CallPropertyHandler,62,59,0
+block_hint,CallPropertyHandler,60,61,1
block_hint,CallProperty0Handler,46,45,1
block_hint,CallProperty0Handler,48,47,0
block_hint,CallProperty0Handler,55,63,1
@@ -5793,7 +5801,6 @@
block_hint,TestLessThanHandler,131,147,0
block_hint,TestLessThanHandler,166,165,1
block_hint,TestGreaterThanHandler,100,4,1
-block_hint,TestGreaterThanHandler,115,101,1
block_hint,TestGreaterThanHandler,129,117,1
block_hint,TestGreaterThanHandler,131,147,0
block_hint,TestGreaterThanHandler,166,165,1
@@ -5939,14 +5946,20 @@
block_hint,GetNamedPropertyWideHandler,23,20,0
block_hint,GetNamedPropertyWideHandler,22,21,0
block_hint,GetNamedPropertyWideHandler,98,104,1
+block_hint,GetNamedPropertyWideHandler,102,99,0
block_hint,GetNamedPropertyWideHandler,101,100,0
+block_hint,GetNamedPropertyWideHandler,206,112,1
block_hint,GetNamedPropertyWideHandler,218,208,0
block_hint,GetNamedPropertyWideHandler,261,260,0
block_hint,AddWideHandler,2,21,0
block_hint,AddWideHandler,28,22,0
+block_hint,AddWideHandler,35,58,1
+block_hint,AddWideHandler,37,36,1
block_hint,AddWideHandler,159,77,0
block_hint,AddWideHandler,78,158,1
block_hint,AddWideHandler,139,136,1
+block_hint,AddWideHandler,173,170,1
+block_hint,AddWideHandler,178,177,1
block_hint,MulWideHandler,30,27,1
block_hint,MulWideHandler,33,38,1
block_hint,MulWideHandler,123,122,1
@@ -5956,6 +5969,7 @@
block_hint,MulSmiWideHandler,5,4,0
block_hint,MulSmiWideHandler,17,16,1
block_hint,MulSmiWideHandler,33,30,0
+block_hint,MulSmiWideHandler,32,31,1
block_hint,MulSmiWideHandler,48,47,1
block_hint,DivSmiWideHandler,27,1,1
block_hint,DivSmiWideHandler,28,38,1
@@ -5989,6 +6003,7 @@
block_hint,TestEqualWideHandler,153,179,0
block_hint,TestEqualWideHandler,185,184,1
block_hint,TestLessThanWideHandler,131,147,0
+block_hint,TestLessThanWideHandler,166,165,1
block_hint,TestGreaterThanWideHandler,131,147,0
block_hint,CreateRegExpLiteralWideHandler,10,1,1
block_hint,CreateRegExpLiteralWideHandler,9,8,1
@@ -6022,19 +6037,19 @@
block_hint,BitwiseAndSmiExtraWideHandler,27,26,0
block_hint,BitwiseAndSmiExtraWideHandler,41,38,1
block_hint,CallUndefinedReceiver1ExtraWideHandler,1,67,0
-builtin_count,RecordWriteSaveFP,1409
-builtin_count,RecordWriteIgnoreFP,24
+builtin_count,RecordWriteSaveFP,1416
+builtin_count,RecordWriteIgnoreFP,26
builtin_count,EphemeronKeyBarrierSaveFP,0
builtin_count,IndirectPointerBarrierIgnoreFP,0
-builtin_count,AdaptorWithBuiltinExitFrame0,124
+builtin_count,AdaptorWithBuiltinExitFrame0,123
builtin_count,AdaptorWithBuiltinExitFrame1,4
builtin_count,AdaptorWithBuiltinExitFrame2,0
builtin_count,AdaptorWithBuiltinExitFrame3,8
-builtin_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,144
-builtin_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,542
+builtin_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,146
+builtin_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,537
builtin_count,Call_ReceiverIsAny_Baseline_Compact,1
builtin_count,CallProxy,0
-builtin_count,CallWithSpread,29
+builtin_count,CallWithSpread,28
builtin_count,CallWithSpread_Baseline,1
builtin_count,CallWithArrayLike,33
builtin_count,CallFunctionTemplate_Generic,0
@@ -6043,17 +6058,17 @@
builtin_count,ConstructWithSpread_WithFeedback,1
builtin_count,ConstructForwardAllArgs_Baseline,0
builtin_count,ConstructForwardAllArgs_WithFeedback,2
-builtin_count,Construct_Baseline,49
-builtin_count,Construct_WithFeedback,91
-builtin_count,FastNewObject,190
-builtin_count,FastNewClosure,268
+builtin_count,Construct_Baseline,47
+builtin_count,Construct_WithFeedback,93
+builtin_count,FastNewObject,191
+builtin_count,FastNewClosure,270
builtin_count,StringEqual,619
builtin_count,StringGreaterThan,0
builtin_count,StringGreaterThanOrEqual,5
builtin_count,StringLessThan,473
builtin_count,StringLessThanOrEqual,47
builtin_count,StringCompare,3
-builtin_count,StringSubstring,471
+builtin_count,StringSubstring,470
builtin_count,OrderedHashTableHealIndex,0
builtin_count,CompileLazy,1
builtin_count,InstantiateAsmJs,0
@@ -6066,7 +6081,7 @@
builtin_count,AllocateInOldGeneration,1
builtin_count,CopyFastSmiOrObjectElements,17
builtin_count,GrowFastDoubleElements,376
-builtin_count,GrowFastSmiOrObjectElements,346
+builtin_count,GrowFastSmiOrObjectElements,345
builtin_count,ToNumber,0
builtin_count,ToNumber_Baseline,0
builtin_count,ToNumeric_Baseline,30
@@ -6078,19 +6093,19 @@
builtin_count,DefineKeyedOwnIC_Megamorphic,2
builtin_count,LoadGlobalIC_NoFeedback,16
builtin_count,LoadIC_FunctionPrototype,202
-builtin_count,LoadIC_StringLength,43
+builtin_count,LoadIC_StringLength,41
builtin_count,LoadIC_StringWrapperLength,0
builtin_count,LoadIC_NoFeedback,45
builtin_count,StoreIC_NoFeedback,6
builtin_count,DefineNamedOwnIC_NoFeedback,4
builtin_count,KeyedLoadIC_SloppyArguments,2
-builtin_count,StoreFastElementIC_InBounds,199
-builtin_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,21
+builtin_count,StoreFastElementIC_InBounds,201
+builtin_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,19
builtin_count,StoreFastElementIC_NoTransitionHandleCOW,0
builtin_count,ElementsTransitionAndStore_InBounds,0
builtin_count,ElementsTransitionAndStore_NoTransitionGrowAndHandleCOW,0
builtin_count,ElementsTransitionAndStore_NoTransitionHandleCOW,0
-builtin_count,KeyedHasIC_PolymorphicName,4
+builtin_count,KeyedHasIC_PolymorphicName,3
builtin_count,EnqueueMicrotask,19
builtin_count,RunMicrotasks,0
builtin_count,HasProperty,11
@@ -6114,9 +6129,9 @@
builtin_count,ArrayIncludes,4
builtin_count,ArrayIndexOfSmi,0
builtin_count,ArrayIndexOfSmiOrObject,140
-builtin_count,ArrayIndexOf,36
+builtin_count,ArrayIndexOf,37
builtin_count,ArrayPrototypePop,5
-builtin_count,ArrayPrototypePush,203
+builtin_count,ArrayPrototypePush,210
builtin_count,CloneFastJSArray,192
builtin_count,CloneFastJSArrayFillingHoles,0
builtin_count,ExtractFastJSArray,202
@@ -6126,7 +6141,7 @@
builtin_count,CreateObjectFromSlowBoilerplateHelper,49
builtin_count,ArrayPrototypeEntries,0
builtin_count,ArrayPrototypeKeys,0
-builtin_count,ArrayPrototypeValues,20
+builtin_count,ArrayPrototypeValues,19
builtin_count,ArrayIteratorPrototypeNext,156
builtin_count,AsyncFunctionEnter,1
builtin_count,AsyncFunctionResolve,1
@@ -6153,40 +6168,40 @@
builtin_count,GlobalIsNaN,0
builtin_count,LoadIC,645
builtin_count,LoadIC_Megamorphic,10000
-builtin_count,LoadIC_Noninlined,2
+builtin_count,LoadIC_Noninlined,3
builtin_count,LoadICTrampoline,274
-builtin_count,LoadICBaseline,1955
-builtin_count,LoadICTrampoline_Megamorphic,5642
-builtin_count,LoadSuperIC,1
+builtin_count,LoadICBaseline,1957
+builtin_count,LoadICTrampoline_Megamorphic,5681
+builtin_count,LoadSuperIC,2
builtin_count,LoadSuperICBaseline,1
-builtin_count,KeyedLoadIC,352
+builtin_count,KeyedLoadIC,349
builtin_count,EnumeratedKeyedLoadIC,4
builtin_count,KeyedLoadIC_Megamorphic,2357
builtin_count,KeyedLoadICTrampoline,1
-builtin_count,KeyedLoadICBaseline,328
+builtin_count,KeyedLoadICBaseline,324
builtin_count,EnumeratedKeyedLoadICBaseline,3
builtin_count,KeyedLoadICTrampoline_Megamorphic,1035
-builtin_count,StoreGlobalIC,772
-builtin_count,StoreGlobalICTrampoline,279
+builtin_count,StoreGlobalIC,553
+builtin_count,StoreGlobalICTrampoline,0
builtin_count,StoreGlobalICBaseline,1
builtin_count,StoreIC,290
builtin_count,StoreIC_Megamorphic,1496
builtin_count,StoreICTrampoline,12
-builtin_count,StoreICTrampoline_Megamorphic,702
-builtin_count,StoreICBaseline,217
+builtin_count,StoreICTrampoline_Megamorphic,700
+builtin_count,StoreICBaseline,216
builtin_count,DefineNamedOwnIC,37
builtin_count,DefineNamedOwnICBaseline,31
-builtin_count,KeyedStoreIC,218
+builtin_count,KeyedStoreIC,219
builtin_count,KeyedStoreICTrampoline,0
builtin_count,KeyedStoreICTrampoline_Megamorphic,229
builtin_count,KeyedStoreICBaseline,203
builtin_count,DefineKeyedOwnIC,2
-builtin_count,StoreInArrayLiteralIC,19
+builtin_count,StoreInArrayLiteralIC,18
builtin_count,StoreInArrayLiteralICBaseline,16
-builtin_count,LoadGlobalIC,1330
+builtin_count,LoadGlobalIC,1253
builtin_count,LoadGlobalICInsideTypeof,0
-builtin_count,LoadGlobalICTrampoline,852
-builtin_count,LoadGlobalICBaseline,407
+builtin_count,LoadGlobalICTrampoline,813
+builtin_count,LoadGlobalICBaseline,401
builtin_count,LoadGlobalICInsideTypeofBaseline,0
builtin_count,LookupGlobalICBaseline,0
builtin_count,LookupGlobalICInsideTypeofBaseline,0
@@ -6194,7 +6209,7 @@
builtin_count,KeyedHasICBaseline,2
builtin_count,KeyedHasIC_Megamorphic,715
builtin_count,AddLhsIsStringConstantInternalizeWithVector,706
-builtin_count,AddLhsIsStringConstantInternalizeTrampoline,4
+builtin_count,AddLhsIsStringConstantInternalizeTrampoline,5
builtin_count,AddRhsIsStringConstantInternalizeWithVector,7
builtin_count,AddRhsIsStringConstantInternalizeTrampoline,1
builtin_count,IterableToList,0
@@ -6213,13 +6228,13 @@
builtin_count,MapPrototypeValues,1
builtin_count,MapIteratorPrototypeNext,14
builtin_count,MapIteratorToList,0
-builtin_count,Add_Baseline,203
+builtin_count,Add_Baseline,201
builtin_count,AddSmi_Baseline,246
builtin_count,Subtract_Baseline,48
-builtin_count,SubtractSmi_Baseline,22
-builtin_count,Multiply_Baseline,54
+builtin_count,SubtractSmi_Baseline,23
+builtin_count,Multiply_Baseline,60
builtin_count,MultiplySmi_Baseline,5
-builtin_count,Divide_Baseline,3
+builtin_count,Divide_Baseline,4
builtin_count,DivideSmi_Baseline,1
builtin_count,Modulus_Baseline,0
builtin_count,ModulusSmi_Baseline,0
@@ -6232,30 +6247,30 @@
builtin_count,BitwiseXorSmi_Baseline,0
builtin_count,ShiftLeft_Baseline,1
builtin_count,ShiftLeftSmi_Baseline,31
-builtin_count,ShiftRight_Baseline,3
+builtin_count,ShiftRight_Baseline,2
builtin_count,ShiftRightSmi_Baseline,116
builtin_count,ShiftRightLogical_Baseline,0
builtin_count,ShiftRightLogicalSmi_Baseline,3
builtin_count,Add_WithFeedback,0
builtin_count,Subtract_WithFeedback,0
builtin_count,Divide_WithFeedback,0
-builtin_count,Modulus_WithFeedback,1
+builtin_count,Modulus_WithFeedback,2
builtin_count,BitwiseOr_WithFeedback,0
builtin_count,Add_LhsIsStringConstant_Internalize_Baseline,0
builtin_count,Add_RhsIsStringConstant_Internalize_Baseline,0
builtin_count,Equal_Baseline,166
-builtin_count,StrictEqual_Baseline,209
-builtin_count,LessThan_Baseline,164
-builtin_count,GreaterThan_Baseline,50
-builtin_count,LessThanOrEqual_Baseline,22
-builtin_count,GreaterThanOrEqual_Baseline,44
+builtin_count,StrictEqual_Baseline,211
+builtin_count,LessThan_Baseline,156
+builtin_count,GreaterThan_Baseline,48
+builtin_count,LessThanOrEqual_Baseline,21
+builtin_count,GreaterThanOrEqual_Baseline,43
builtin_count,Equal_WithFeedback,23
builtin_count,StrictEqual_WithFeedback,44
-builtin_count,LessThan_WithFeedback,3
+builtin_count,LessThan_WithFeedback,4
builtin_count,GreaterThanOrEqual_WithFeedback,0
builtin_count,BitwiseNot_Baseline,1
builtin_count,Decrement_Baseline,18
-builtin_count,Increment_Baseline,108
+builtin_count,Increment_Baseline,105
builtin_count,Negate_Baseline,3
builtin_count,ObjectAssign,2
builtin_count,ObjectCreate,8
@@ -6266,7 +6281,7 @@
builtin_count,ObjectKeys,14
builtin_count,ObjectPrototypeHasOwnProperty,241
builtin_count,ObjectToString,62
-builtin_count,OrdinaryHasInstance,168
+builtin_count,OrdinaryHasInstance,170
builtin_count,InstanceOf,8
builtin_count,InstanceOf_WithFeedback,2
builtin_count,InstanceOf_Baseline,37
@@ -6285,12 +6300,12 @@
builtin_count,SetPrototypeValues,11
builtin_count,SetIteratorPrototypeNext,58
builtin_count,SetOrSetIteratorToList,0
-builtin_count,StringFromCharCode,17
+builtin_count,StringFromCharCode,15
builtin_count,StringPrototypeReplace,242
builtin_count,StringPrototypeSplit,53
builtin_count,TypedArrayConstructor,4
builtin_count,TypedArrayPrototypeByteLength,0
-builtin_count,TypedArrayPrototypeLength,4
+builtin_count,TypedArrayPrototypeLength,5
builtin_count,WasmToJsWrapperCSA,0
builtin_count,WeakMapConstructor,0
builtin_count,WeakMapLookupHashIndex,74
@@ -6308,9 +6323,9 @@
builtin_count,AsyncGeneratorAwait,7
builtin_count,AsyncGeneratorAwaitResolveClosure,7
builtin_count,AsyncGeneratorYieldWithAwaitResolveClosure,7
-builtin_count,StringAdd_CheckNone,7777
+builtin_count,StringAdd_CheckNone,7775
builtin_count,SubString,1637
-builtin_count,GetProperty,446
+builtin_count,GetProperty,445
builtin_count,GetPropertyWithReceiver,18
builtin_count,SetProperty,0
builtin_count,CreateDataProperty,1
@@ -6355,20 +6370,20 @@
builtin_count,ToStringConvertSymbol,0
builtin_count,StringPrototypeToString,18
builtin_count,StringPrototypeCharAt,10
-builtin_count,StringPrototypeCharCodeAt,61
+builtin_count,StringPrototypeCharCodeAt,60
builtin_count,StringPrototypeCodePointAt,0
builtin_count,StringPrototypeConcat,0
builtin_count,StringConstructor,29
builtin_count,StringAddConvertLeft,17
builtin_count,StringAddConvertRight,190
builtin_count,StringCharAt,9
-builtin_count,FastNewClosureBaseline,36
+builtin_count,FastNewClosureBaseline,37
builtin_count,FastNewFunctionContextFunction,51
-builtin_count,FastNewFunctionContextFunctionWithCells,10
-builtin_count,CreateRegExpLiteral,14
+builtin_count,FastNewFunctionContextFunctionWithCells,11
+builtin_count,CreateRegExpLiteral,13
builtin_count,CreateShallowArrayLiteral,9
builtin_count,CreateEmptyArrayLiteral,13
-builtin_count,CreateShallowObjectLiteral,17
+builtin_count,CreateShallowObjectLiteral,16
builtin_count,ObjectConstructor,24
builtin_count,CreateEmptyLiteralObject,1
builtin_count,NumberConstructor,2
@@ -6376,7 +6391,7 @@
builtin_count,NonNumberToNumber,4
builtin_count,NonNumberToNumeric,5
builtin_count,NumberToString,1205
-builtin_count,ToBoolean,16
+builtin_count,ToBoolean,14
builtin_count,ToBooleanForBaselineJump,439
builtin_count,ToLength,2
builtin_count,ToName,47
@@ -6391,12 +6406,12 @@
builtin_count,DataViewPrototypeGetFloat64,0
builtin_count,DataViewPrototypeSetUint32,0
builtin_count,DataViewPrototypeSetFloat64,0
-builtin_count,FunctionPrototypeHasInstance,49
+builtin_count,FunctionPrototypeHasInstance,48
builtin_count,FastFunctionPrototypeBind,7
-builtin_count,ForInNext,31
+builtin_count,ForInNext,30
builtin_count,GetIteratorWithFeedback,0
-builtin_count,GetIteratorBaseline,15
-builtin_count,CallIteratorWithFeedback,16
+builtin_count,GetIteratorBaseline,14
+builtin_count,CallIteratorWithFeedback,15
builtin_count,MathAbs,0
builtin_count,MathCeil,0
builtin_count,MathFloor,0
@@ -6418,7 +6433,7 @@
builtin_count,MathTanh,0
builtin_count,MathRandom,312
builtin_count,NumberPrototypeToString,79
-builtin_count,NumberIsInteger,2
+builtin_count,NumberIsInteger,1
builtin_count,NumberIsNaN,0
builtin_count,NumberParseFloat,11
builtin_count,ParseInt,133
@@ -6467,7 +6482,7 @@
builtin_count,RegExpSearchFast,1
builtin_count,RegExpPrototypeSourceGetter,0
builtin_count,RegExpSplit,13
-builtin_count,RegExpPrototypeTest,137
+builtin_count,RegExpPrototypeTest,138
builtin_count,RegExpPrototypeTestFast,399
builtin_count,RegExpPrototypeGlobalGetter,0
builtin_count,RegExpPrototypeIgnoreCaseGetter,0
@@ -6480,7 +6495,7 @@
builtin_count,RegExpPrototypeFlagsGetter,0
builtin_count,StringPrototypeEndsWith,0
builtin_count,StringPrototypeIncludes,0
-builtin_count,StringPrototypeIndexOf,20
+builtin_count,StringPrototypeIndexOf,21
builtin_count,StringPrototypeIterator,0
builtin_count,StringIteratorPrototypeNext,0
builtin_count,StringPrototypeMatch,1226
@@ -6501,13 +6516,13 @@
builtin_count,NewRestArgumentsElements,18
builtin_count,FastNewSloppyArguments,2
builtin_count,FastNewStrictArguments,1
-builtin_count,FastNewRestArguments,0
-builtin_count,LoadFromContextCell,9
+builtin_count,FastNewRestArguments,1
+builtin_count,LoadFromContextCell,8
builtin_count,StoreCurrentContextElementBaseline,1
builtin_count,StoreContextElementBaseline,0
builtin_count,DetachContextCell,0
builtin_count,StringSlowFlatten,0
-builtin_count,StringIndexOf,366
+builtin_count,StringIndexOf,365
builtin_count,Load_FastSmiElements_0,0
builtin_count,Load_FastObjectElements_0,238
builtin_count,Load_FastDoubleElements_0,0
@@ -6535,25 +6550,25 @@
builtin_count,CanUseSameAccessor_FastObjectElements_0,38
builtin_count,StringPrototypeToLowerCaseIntl,7
builtin_count,StringToLowerCaseIntl,146
-builtin_count,WideHandler,61
-builtin_count,ExtraWideHandler,10
-builtin_count,LdarHandler,86
+builtin_count,WideHandler,62
+builtin_count,ExtraWideHandler,11
+builtin_count,LdarHandler,91
builtin_count,LdaZeroHandler,11
builtin_count,LdaSmiHandler,12
-builtin_count,LdaUndefinedHandler,7
+builtin_count,LdaUndefinedHandler,8
builtin_count,LdaNullHandler,1
builtin_count,LdaTheHoleHandler,0
builtin_count,LdaTrueHandler,2
builtin_count,LdaFalseHandler,2
-builtin_count,LdaConstantHandler,13
+builtin_count,LdaConstantHandler,14
builtin_count,LdaContextSlotNoCellHandler,0
builtin_count,LdaContextSlotHandler,0
-builtin_count,LdaImmutableContextSlotHandler,6
+builtin_count,LdaImmutableContextSlotHandler,7
builtin_count,LdaCurrentContextSlotNoCellHandler,5
builtin_count,LdaCurrentContextSlotHandler,1
-builtin_count,LdaImmutableCurrentContextSlotHandler,20
-builtin_count,StarHandler,19
-builtin_count,MovHandler,18
+builtin_count,LdaImmutableCurrentContextSlotHandler,21
+builtin_count,StarHandler,20
+builtin_count,MovHandler,19
builtin_count,PushContextHandler,2
builtin_count,PopContextHandler,0
builtin_count,TestReferenceEqualHandler,0
@@ -6571,9 +6586,9 @@
builtin_count,LdaLookupGlobalSlotHandler,0
builtin_count,LdaLookupGlobalSlotInsideTypeofHandler,0
builtin_count,StaLookupSlotHandler,0
-builtin_count,GetNamedPropertyHandler,72
+builtin_count,GetNamedPropertyHandler,75
builtin_count,GetNamedPropertyFromSuperHandler,0
-builtin_count,GetKeyedPropertyHandler,20
+builtin_count,GetKeyedPropertyHandler,22
builtin_count,GetEnumeratedKeyedPropertyHandler,1
builtin_count,SetNamedPropertyHandler,10
builtin_count,DefineNamedOwnPropertyHandler,3
@@ -6587,8 +6602,8 @@
builtin_count,DivHandler,0
builtin_count,ModHandler,0
builtin_count,ExpHandler,0
-builtin_count,BitwiseOrHandler,0
-builtin_count,BitwiseXorHandler,0
+builtin_count,BitwiseOrHandler,1
+builtin_count,BitwiseXorHandler,1
builtin_count,BitwiseAndHandler,0
builtin_count,ShiftLeftHandler,0
builtin_count,ShiftRightHandler,0
@@ -6605,7 +6620,7 @@
builtin_count,ShiftLeftSmiHandler,1
builtin_count,ShiftRightSmiHandler,2
builtin_count,ShiftRightLogicalSmiHandler,0
-builtin_count,IncHandler,11
+builtin_count,IncHandler,12
builtin_count,DecHandler,3
builtin_count,NegateHandler,0
builtin_count,BitwiseNotHandler,0
@@ -6618,7 +6633,7 @@
builtin_count,CallAnyReceiverHandler,0
builtin_count,CallPropertyHandler,2
builtin_count,CallProperty0Handler,5
-builtin_count,CallProperty1Handler,12
+builtin_count,CallProperty1Handler,13
builtin_count,CallProperty2Handler,4
builtin_count,CallUndefinedReceiverHandler,1
builtin_count,CallUndefinedReceiver0Handler,1
@@ -6633,9 +6648,9 @@
builtin_count,ConstructForwardAllArgsHandler,0
builtin_count,TestEqualHandler,5
builtin_count,TestEqualStrictHandler,7
-builtin_count,TestLessThanHandler,10
+builtin_count,TestLessThanHandler,11
builtin_count,TestGreaterThanHandler,2
-builtin_count,TestLessThanOrEqualHandler,1
+builtin_count,TestLessThanOrEqualHandler,0
builtin_count,TestGreaterThanOrEqualHandler,1
builtin_count,TestInstanceOfHandler,0
builtin_count,TestInHandler,0
@@ -6659,21 +6674,21 @@
builtin_count,CreateMappedArgumentsHandler,0
builtin_count,CreateUnmappedArgumentsHandler,0
builtin_count,CreateRestParameterHandler,0
-builtin_count,JumpLoopHandler,14
+builtin_count,JumpLoopHandler,15
builtin_count,JumpHandler,4
builtin_count,JumpConstantHandler,0
builtin_count,JumpIfUndefinedConstantHandler,0
builtin_count,JumpIfNotUndefinedConstantHandler,0
builtin_count,JumpIfUndefinedOrNullConstantHandler,0
-builtin_count,JumpIfTrueConstantHandler,0
+builtin_count,JumpIfTrueConstantHandler,1
builtin_count,JumpIfFalseConstantHandler,0
builtin_count,JumpIfForInDoneConstantHandler,0
builtin_count,JumpIfToBooleanTrueConstantHandler,0
builtin_count,JumpIfToBooleanFalseConstantHandler,0
-builtin_count,JumpIfToBooleanTrueHandler,5
-builtin_count,JumpIfToBooleanFalseHandler,12
+builtin_count,JumpIfToBooleanTrueHandler,6
+builtin_count,JumpIfToBooleanFalseHandler,13
builtin_count,JumpIfTrueHandler,6
-builtin_count,JumpIfFalseHandler,23
+builtin_count,JumpIfFalseHandler,25
builtin_count,JumpIfNullHandler,0
builtin_count,JumpIfNotNullHandler,0
builtin_count,JumpIfUndefinedHandler,1
@@ -6689,7 +6704,7 @@
builtin_count,SetPendingMessageHandler,0
builtin_count,ThrowHandler,2
builtin_count,ReThrowHandler,0
-builtin_count,ReturnHandler,19
+builtin_count,ReturnHandler,20
builtin_count,ThrowReferenceErrorIfHoleHandler,1
builtin_count,ThrowSuperNotCalledIfHoleHandler,0
builtin_count,ThrowSuperAlreadyCalledIfNotHoleHandler,0
@@ -6698,7 +6713,7 @@
builtin_count,SuspendGeneratorHandler,0
builtin_count,ResumeGeneratorHandler,0
builtin_count,GetIteratorHandler,0
-builtin_count,ShortStarHandler,54
+builtin_count,ShortStarHandler,56
builtin_count,LdarWideHandler,0
builtin_count,LdaSmiWideHandler,7
builtin_count,LdaConstantWideHandler,1
@@ -6796,38 +6811,38 @@
builtin_count,CallUndefinedReceiverExtraWideHandler,0
builtin_count,CallUndefinedReceiver1ExtraWideHandler,4
builtin_count,CallUndefinedReceiver2ExtraWideHandler,0
-block_count,RecordWriteSaveFP,0,1409
-block_count,RecordWriteSaveFP,1,1387
+block_count,RecordWriteSaveFP,0,1416
+block_count,RecordWriteSaveFP,1,1389
block_count,RecordWriteSaveFP,2,0
-block_count,RecordWriteSaveFP,3,1387
+block_count,RecordWriteSaveFP,3,1389
block_count,RecordWriteSaveFP,4,0
-block_count,RecordWriteSaveFP,5,1387
-block_count,RecordWriteSaveFP,6,1387
+block_count,RecordWriteSaveFP,5,1389
+block_count,RecordWriteSaveFP,6,1389
block_count,RecordWriteSaveFP,7,0
-block_count,RecordWriteSaveFP,8,1387
-block_count,RecordWriteSaveFP,9,1386
+block_count,RecordWriteSaveFP,8,1389
+block_count,RecordWriteSaveFP,9,1388
block_count,RecordWriteSaveFP,10,0
block_count,RecordWriteSaveFP,11,0
block_count,RecordWriteSaveFP,12,0
-block_count,RecordWriteSaveFP,13,1387
-block_count,RecordWriteSaveFP,14,22
-block_count,RecordWriteSaveFP,15,8
-block_count,RecordWriteSaveFP,16,7
-block_count,RecordWriteSaveFP,17,7
+block_count,RecordWriteSaveFP,13,1389
+block_count,RecordWriteSaveFP,14,27
+block_count,RecordWriteSaveFP,15,18
+block_count,RecordWriteSaveFP,16,17
+block_count,RecordWriteSaveFP,17,17
block_count,RecordWriteSaveFP,18,0
-block_count,RecordWriteSaveFP,19,1
+block_count,RecordWriteSaveFP,19,0
block_count,RecordWriteSaveFP,20,0
-block_count,RecordWriteSaveFP,21,1
-block_count,RecordWriteSaveFP,22,1
+block_count,RecordWriteSaveFP,21,0
+block_count,RecordWriteSaveFP,22,0
block_count,RecordWriteSaveFP,23,0
-block_count,RecordWriteSaveFP,24,1
-block_count,RecordWriteSaveFP,25,1
+block_count,RecordWriteSaveFP,24,0
+block_count,RecordWriteSaveFP,25,0
block_count,RecordWriteSaveFP,26,0
block_count,RecordWriteSaveFP,27,0
block_count,RecordWriteSaveFP,28,0
-block_count,RecordWriteSaveFP,29,14
-block_count,RecordWriteSaveFP,30,22
-block_count,RecordWriteSaveFP,31,22
+block_count,RecordWriteSaveFP,29,8
+block_count,RecordWriteSaveFP,30,27
+block_count,RecordWriteSaveFP,31,27
block_count,RecordWriteSaveFP,32,0
block_count,RecordWriteSaveFP,33,0
block_count,RecordWriteSaveFP,34,0
@@ -6846,17 +6861,17 @@
block_count,RecordWriteSaveFP,47,0
block_count,RecordWriteSaveFP,48,0
block_count,RecordWriteSaveFP,49,0
-block_count,RecordWriteSaveFP,50,22
-block_count,RecordWriteSaveFP,51,22
+block_count,RecordWriteSaveFP,50,27
+block_count,RecordWriteSaveFP,51,27
block_count,RecordWriteSaveFP,52,0
-block_count,RecordWriteSaveFP,53,22
-block_count,RecordWriteSaveFP,54,19
-block_count,RecordWriteSaveFP,55,19
+block_count,RecordWriteSaveFP,53,27
+block_count,RecordWriteSaveFP,54,26
+block_count,RecordWriteSaveFP,55,26
block_count,RecordWriteSaveFP,56,0
block_count,RecordWriteSaveFP,57,0
block_count,RecordWriteSaveFP,58,0
-block_count,RecordWriteSaveFP,59,3
-block_count,RecordWriteSaveFP,60,3
+block_count,RecordWriteSaveFP,59,1
+block_count,RecordWriteSaveFP,60,1
block_count,RecordWriteSaveFP,61,0
block_count,RecordWriteSaveFP,62,0
block_count,RecordWriteSaveFP,63,0
@@ -6864,22 +6879,22 @@
block_count,RecordWriteSaveFP,65,0
block_count,RecordWriteSaveFP,66,0
block_count,RecordWriteSaveFP,67,0
-block_count,RecordWriteSaveFP,68,22
-block_count,RecordWriteIgnoreFP,0,24
-block_count,RecordWriteIgnoreFP,1,22
+block_count,RecordWriteSaveFP,68,27
+block_count,RecordWriteIgnoreFP,0,26
+block_count,RecordWriteIgnoreFP,1,25
block_count,RecordWriteIgnoreFP,2,0
-block_count,RecordWriteIgnoreFP,3,22
+block_count,RecordWriteIgnoreFP,3,25
block_count,RecordWriteIgnoreFP,4,0
-block_count,RecordWriteIgnoreFP,5,22
-block_count,RecordWriteIgnoreFP,6,22
+block_count,RecordWriteIgnoreFP,5,25
+block_count,RecordWriteIgnoreFP,6,25
block_count,RecordWriteIgnoreFP,7,0
-block_count,RecordWriteIgnoreFP,8,22
-block_count,RecordWriteIgnoreFP,9,22
+block_count,RecordWriteIgnoreFP,8,25
+block_count,RecordWriteIgnoreFP,9,24
block_count,RecordWriteIgnoreFP,10,0
block_count,RecordWriteIgnoreFP,11,0
block_count,RecordWriteIgnoreFP,12,0
-block_count,RecordWriteIgnoreFP,13,22
-block_count,RecordWriteIgnoreFP,14,2
+block_count,RecordWriteIgnoreFP,13,25
+block_count,RecordWriteIgnoreFP,14,1
block_count,RecordWriteIgnoreFP,15,0
block_count,RecordWriteIgnoreFP,16,0
block_count,RecordWriteIgnoreFP,17,0
@@ -6894,9 +6909,9 @@
block_count,RecordWriteIgnoreFP,26,0
block_count,RecordWriteIgnoreFP,27,0
block_count,RecordWriteIgnoreFP,28,0
-block_count,RecordWriteIgnoreFP,29,2
-block_count,RecordWriteIgnoreFP,30,2
-block_count,RecordWriteIgnoreFP,31,2
+block_count,RecordWriteIgnoreFP,29,1
+block_count,RecordWriteIgnoreFP,30,1
+block_count,RecordWriteIgnoreFP,31,1
block_count,RecordWriteIgnoreFP,32,0
block_count,RecordWriteIgnoreFP,33,0
block_count,RecordWriteIgnoreFP,34,0
@@ -6915,12 +6930,12 @@
block_count,RecordWriteIgnoreFP,47,0
block_count,RecordWriteIgnoreFP,48,0
block_count,RecordWriteIgnoreFP,49,0
-block_count,RecordWriteIgnoreFP,50,2
-block_count,RecordWriteIgnoreFP,51,2
+block_count,RecordWriteIgnoreFP,50,1
+block_count,RecordWriteIgnoreFP,51,1
block_count,RecordWriteIgnoreFP,52,0
-block_count,RecordWriteIgnoreFP,53,2
-block_count,RecordWriteIgnoreFP,54,1
-block_count,RecordWriteIgnoreFP,55,1
+block_count,RecordWriteIgnoreFP,53,1
+block_count,RecordWriteIgnoreFP,54,0
+block_count,RecordWriteIgnoreFP,55,0
block_count,RecordWriteIgnoreFP,56,0
block_count,RecordWriteIgnoreFP,57,0
block_count,RecordWriteIgnoreFP,58,0
@@ -6933,10 +6948,10 @@
block_count,RecordWriteIgnoreFP,65,0
block_count,RecordWriteIgnoreFP,66,0
block_count,RecordWriteIgnoreFP,67,0
-block_count,RecordWriteIgnoreFP,68,2
+block_count,RecordWriteIgnoreFP,68,1
block_count,EphemeronKeyBarrierSaveFP,0,0
block_count,IndirectPointerBarrierIgnoreFP,0,0
-block_count,AdaptorWithBuiltinExitFrame0,0,124
+block_count,AdaptorWithBuiltinExitFrame0,0,123
block_count,AdaptorWithBuiltinExitFrame1,0,4
block_count,AdaptorWithBuiltinExitFrame1,1,0
block_count,AdaptorWithBuiltinExitFrame1,2,4
@@ -6949,16 +6964,16 @@
block_count,AdaptorWithBuiltinExitFrame3,1,6
block_count,AdaptorWithBuiltinExitFrame3,2,1
block_count,AdaptorWithBuiltinExitFrame3,3,8
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,0,144
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,1,144
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,2,42
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,3,37
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,4,36
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,5,36
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,0,146
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,1,146
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,2,46
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,3,39
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,4,39
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,5,39
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,6,0
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,7,36
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,8,36
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,9,36
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,7,39
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,8,39
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,9,39
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,10,0
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,11,0
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,12,0
@@ -6976,15 +6991,15 @@
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,24,0
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,25,0
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,26,0
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,27,36
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,28,36
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,29,36
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,27,39
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,28,39
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,29,39
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,30,0
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,31,0
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,32,0
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,33,0
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,34,0
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,35,36
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,35,39
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,36,0
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,37,0
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,38,0
@@ -7014,12 +7029,12 @@
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,62,0
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,63,0
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,64,0
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,65,5
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,66,101
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,65,6
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,66,100
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,67,0
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,68,144
-block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,0,542
-block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,1,542
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,68,146
+block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,0,537
+block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,1,537
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,2,31
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,3,12
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,4,11
@@ -7084,9 +7099,9 @@
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,63,0
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,64,0
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,65,18
-block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,66,511
+block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,66,505
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,67,0
-block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,68,542
+block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,68,537
block_count,Call_ReceiverIsAny_Baseline_Compact,0,1
block_count,Call_ReceiverIsAny_Baseline_Compact,1,1
block_count,Call_ReceiverIsAny_Baseline_Compact,2,0
@@ -7196,22 +7211,22 @@
block_count,CallProxy,37,0
block_count,CallProxy,38,0
block_count,CallProxy,39,0
-block_count,CallWithSpread,0,29
-block_count,CallWithSpread,1,29
+block_count,CallWithSpread,0,28
+block_count,CallWithSpread,1,28
block_count,CallWithSpread,2,0
-block_count,CallWithSpread,3,29
+block_count,CallWithSpread,3,28
block_count,CallWithSpread,4,0
-block_count,CallWithSpread,5,29
+block_count,CallWithSpread,5,28
block_count,CallWithSpread,6,0
-block_count,CallWithSpread,7,29
-block_count,CallWithSpread,8,29
-block_count,CallWithSpread,9,29
+block_count,CallWithSpread,7,28
+block_count,CallWithSpread,8,28
+block_count,CallWithSpread,9,28
block_count,CallWithSpread,10,4
block_count,CallWithSpread,11,0
block_count,CallWithSpread,12,0
block_count,CallWithSpread,13,0
block_count,CallWithSpread,14,4
-block_count,CallWithSpread,15,24
+block_count,CallWithSpread,15,23
block_count,CallWithSpread,16,0
block_count,CallWithSpread,17,0
block_count,CallWithSpread,18,0
@@ -7260,7 +7275,7 @@
block_count,CallWithSpread,61,4
block_count,CallWithSpread,62,0
block_count,CallWithSpread,63,0
-block_count,CallWithSpread,64,24
+block_count,CallWithSpread,64,23
block_count,CallWithSpread_Baseline,0,1
block_count,CallWithSpread_Baseline,1,1
block_count,CallWithSpread_Baseline,2,0
@@ -7344,7 +7359,7 @@
block_count,CallWithSpread_Baseline,80,0
block_count,CallWithSpread_Baseline,81,0
block_count,CallWithSpread_Baseline,82,0
-block_count,CallWithSpread_Baseline,83,1
+block_count,CallWithSpread_Baseline,83,0
block_count,CallWithSpread_Baseline,84,0
block_count,CallWithSpread_Baseline,85,0
block_count,CallWithSpread_Baseline,86,0
@@ -7868,8 +7883,8 @@
block_count,ConstructForwardAllArgs_WithFeedback,41,0
block_count,ConstructForwardAllArgs_WithFeedback,42,2
block_count,ConstructForwardAllArgs_WithFeedback,43,2
-block_count,Construct_Baseline,0,49
-block_count,Construct_Baseline,1,3
+block_count,Construct_Baseline,0,47
+block_count,Construct_Baseline,1,2
block_count,Construct_Baseline,2,1
block_count,Construct_Baseline,3,1
block_count,Construct_Baseline,4,0
@@ -7911,10 +7926,10 @@
block_count,Construct_Baseline,40,0
block_count,Construct_Baseline,41,1
block_count,Construct_Baseline,42,1
-block_count,Construct_Baseline,43,46
-block_count,Construct_Baseline,44,47
-block_count,Construct_WithFeedback,0,91
-block_count,Construct_WithFeedback,1,91
+block_count,Construct_Baseline,43,44
+block_count,Construct_Baseline,44,45
+block_count,Construct_WithFeedback,0,93
+block_count,Construct_WithFeedback,1,93
block_count,Construct_WithFeedback,2,19
block_count,Construct_WithFeedback,3,7
block_count,Construct_WithFeedback,4,7
@@ -7957,16 +7972,16 @@
block_count,Construct_WithFeedback,41,0
block_count,Construct_WithFeedback,42,7
block_count,Construct_WithFeedback,43,11
-block_count,Construct_WithFeedback,44,72
+block_count,Construct_WithFeedback,44,74
block_count,Construct_WithFeedback,45,0
-block_count,Construct_WithFeedback,46,84
-block_count,FastNewObject,0,190
+block_count,Construct_WithFeedback,46,86
+block_count,FastNewObject,0,191
block_count,FastNewObject,1,0
-block_count,FastNewObject,2,190
-block_count,FastNewObject,3,190
-block_count,FastNewObject,4,187
-block_count,FastNewObject,5,187
-block_count,FastNewObject,6,187
+block_count,FastNewObject,2,191
+block_count,FastNewObject,3,191
+block_count,FastNewObject,4,188
+block_count,FastNewObject,5,188
+block_count,FastNewObject,6,188
block_count,FastNewObject,7,0
block_count,FastNewObject,8,0
block_count,FastNewObject,9,0
@@ -7992,25 +8007,25 @@
block_count,FastNewObject,29,0
block_count,FastNewObject,30,0
block_count,FastNewObject,31,0
-block_count,FastNewObject,32,187
-block_count,FastNewObject,33,187
+block_count,FastNewObject,32,188
+block_count,FastNewObject,33,188
block_count,FastNewObject,34,0
-block_count,FastNewObject,35,187
+block_count,FastNewObject,35,188
block_count,FastNewObject,36,0
block_count,FastNewObject,37,0
-block_count,FastNewObject,38,187
-block_count,FastNewObject,39,187
+block_count,FastNewObject,38,188
+block_count,FastNewObject,39,188
block_count,FastNewObject,40,1
-block_count,FastNewObject,41,185
+block_count,FastNewObject,41,186
block_count,FastNewObject,42,48
-block_count,FastNewObject,43,136
-block_count,FastNewObject,44,282
-block_count,FastNewObject,45,146
-block_count,FastNewObject,46,136
-block_count,FastNewObject,47,185
-block_count,FastNewObject,48,97
+block_count,FastNewObject,43,138
+block_count,FastNewObject,44,295
+block_count,FastNewObject,45,156
+block_count,FastNewObject,46,138
+block_count,FastNewObject,47,186
+block_count,FastNewObject,48,98
block_count,FastNewObject,49,87
-block_count,FastNewObject,50,187
+block_count,FastNewObject,50,188
block_count,FastNewObject,51,0
block_count,FastNewObject,52,0
block_count,FastNewObject,53,0
@@ -8040,37 +8055,37 @@
block_count,FastNewObject,77,2
block_count,FastNewObject,78,0
block_count,FastNewObject,79,2
-block_count,FastNewClosure,0,268
-block_count,FastNewClosure,1,263
-block_count,FastNewClosure,2,262
+block_count,FastNewClosure,0,270
+block_count,FastNewClosure,1,265
+block_count,FastNewClosure,2,265
block_count,FastNewClosure,3,0
block_count,FastNewClosure,4,4
-block_count,FastNewClosure,5,267
+block_count,FastNewClosure,5,270
block_count,FastNewClosure,6,0
-block_count,FastNewClosure,7,267
-block_count,FastNewClosure,8,267
+block_count,FastNewClosure,7,270
+block_count,FastNewClosure,8,270
block_count,FastNewClosure,9,0
-block_count,FastNewClosure,10,267
+block_count,FastNewClosure,10,270
block_count,FastNewClosure,11,0
block_count,FastNewClosure,12,0
-block_count,FastNewClosure,13,267
-block_count,FastNewClosure,14,108
-block_count,FastNewClosure,15,158
-block_count,FastNewClosure,16,158
+block_count,FastNewClosure,13,270
+block_count,FastNewClosure,14,109
+block_count,FastNewClosure,15,161
+block_count,FastNewClosure,16,161
block_count,FastNewClosure,17,0
block_count,FastNewClosure,18,0
block_count,FastNewClosure,19,0
block_count,FastNewClosure,20,0
-block_count,FastNewClosure,21,158
+block_count,FastNewClosure,21,161
block_count,FastNewClosure,22,0
-block_count,FastNewClosure,23,158
-block_count,FastNewClosure,24,267
-block_count,FastNewClosure,25,108
-block_count,FastNewClosure,26,158
+block_count,FastNewClosure,23,161
+block_count,FastNewClosure,24,270
+block_count,FastNewClosure,25,109
+block_count,FastNewClosure,26,161
block_count,StringEqual,0,619
block_count,StringEqual,1,622
block_count,StringEqual,2,169
-block_count,StringEqual,3,5
+block_count,StringEqual,3,4
block_count,StringEqual,4,1
block_count,StringEqual,5,0
block_count,StringEqual,6,0
@@ -8094,7 +8109,7 @@
block_count,StringEqual,24,3
block_count,StringEqual,25,0
block_count,StringEqual,26,0
-block_count,StringEqual,27,4
+block_count,StringEqual,27,3
block_count,StringEqual,28,2
block_count,StringEqual,29,1
block_count,StringEqual,30,164
@@ -8125,7 +8140,7 @@
block_count,StringEqual,55,17
block_count,StringEqual,56,0
block_count,StringEqual,57,107
-block_count,StringEqual,58,44
+block_count,StringEqual,58,43
block_count,StringEqual,59,14
block_count,StringEqual,60,29
block_count,StringEqual,61,9
@@ -8211,7 +8226,7 @@
block_count,StringEqual,141,0
block_count,StringEqual,142,0
block_count,StringEqual,143,0
-block_count,StringEqual,144,453
+block_count,StringEqual,144,452
block_count,StringGreaterThan,0,0
block_count,StringGreaterThan,1,0
block_count,StringGreaterThan,2,0
@@ -8614,32 +8629,32 @@
block_count,StringCompare,79,0
block_count,StringCompare,80,0
block_count,StringCompare,81,0
-block_count,StringSubstring,0,471
-block_count,StringSubstring,1,471
-block_count,StringSubstring,2,471
+block_count,StringSubstring,0,470
+block_count,StringSubstring,1,470
+block_count,StringSubstring,2,470
block_count,StringSubstring,3,423
-block_count,StringSubstring,4,624
-block_count,StringSubstring,5,200
-block_count,StringSubstring,6,200
+block_count,StringSubstring,4,604
+block_count,StringSubstring,5,181
+block_count,StringSubstring,6,181
block_count,StringSubstring,7,175
block_count,StringSubstring,8,5
-block_count,StringSubstring,9,170
-block_count,StringSubstring,10,24
-block_count,StringSubstring,11,24
+block_count,StringSubstring,9,169
+block_count,StringSubstring,10,6
+block_count,StringSubstring,11,6
block_count,StringSubstring,12,0
-block_count,StringSubstring,13,200
+block_count,StringSubstring,13,181
block_count,StringSubstring,14,0
block_count,StringSubstring,15,423
block_count,StringSubstring,16,423
-block_count,StringSubstring,17,188
+block_count,StringSubstring,17,187
block_count,StringSubstring,18,3
block_count,StringSubstring,19,0
block_count,StringSubstring,20,3
block_count,StringSubstring,21,3
-block_count,StringSubstring,22,185
+block_count,StringSubstring,22,184
block_count,StringSubstring,23,0
-block_count,StringSubstring,24,185
-block_count,StringSubstring,25,185
+block_count,StringSubstring,24,184
+block_count,StringSubstring,25,184
block_count,StringSubstring,26,235
block_count,StringSubstring,27,235
block_count,StringSubstring,28,36
@@ -8652,7 +8667,7 @@
block_count,StringSubstring,35,0
block_count,StringSubstring,36,36
block_count,StringSubstring,37,35
-block_count,StringSubstring,38,110
+block_count,StringSubstring,38,109
block_count,StringSubstring,39,74
block_count,StringSubstring,40,35
block_count,StringSubstring,41,0
@@ -8691,7 +8706,7 @@
block_count,StringSubstring,74,31
block_count,StringSubstring,75,0
block_count,StringSubstring,76,31
-block_count,StringSubstring,77,46
+block_count,StringSubstring,77,45
block_count,StringSubstring,78,14
block_count,StringSubstring,79,31
block_count,StringSubstring,80,31
@@ -8806,16 +8821,16 @@
block_count,StringSubstring,189,0
block_count,StringSubstring,190,0
block_count,StringSubstring,191,47
-block_count,StringSubstring,192,54
-block_count,StringSubstring,193,7
-block_count,StringSubstring,194,7
+block_count,StringSubstring,192,50
+block_count,StringSubstring,193,3
+block_count,StringSubstring,194,3
block_count,StringSubstring,195,0
block_count,StringSubstring,196,0
block_count,StringSubstring,197,0
-block_count,StringSubstring,198,6
-block_count,StringSubstring,199,6
+block_count,StringSubstring,198,2
+block_count,StringSubstring,199,2
block_count,StringSubstring,200,0
-block_count,StringSubstring,201,7
+block_count,StringSubstring,201,3
block_count,StringSubstring,202,0
block_count,StringSubstring,203,0
block_count,StringSubstring,204,0
@@ -8968,7 +8983,7 @@
block_count,GrowFastDoubleElements,13,0
block_count,GrowFastDoubleElements,14,376
block_count,GrowFastDoubleElements,15,4291
-block_count,GrowFastDoubleElements,16,3915
+block_count,GrowFastDoubleElements,16,3914
block_count,GrowFastDoubleElements,17,376
block_count,GrowFastDoubleElements,18,376
block_count,GrowFastDoubleElements,19,100
@@ -8979,34 +8994,34 @@
block_count,GrowFastDoubleElements,24,4797
block_count,GrowFastDoubleElements,25,1
block_count,GrowFastDoubleElements,26,4798
-block_count,GrowFastDoubleElements,27,4637
+block_count,GrowFastDoubleElements,27,4636
block_count,GrowFastDoubleElements,28,161
block_count,GrowFastDoubleElements,29,214
block_count,GrowFastDoubleElements,30,0
block_count,GrowFastDoubleElements,31,0
block_count,GrowFastDoubleElements,32,0
block_count,GrowFastDoubleElements,33,0
-block_count,GrowFastSmiOrObjectElements,0,346
-block_count,GrowFastSmiOrObjectElements,1,346
-block_count,GrowFastSmiOrObjectElements,2,346
-block_count,GrowFastSmiOrObjectElements,3,346
+block_count,GrowFastSmiOrObjectElements,0,345
+block_count,GrowFastSmiOrObjectElements,1,345
+block_count,GrowFastSmiOrObjectElements,2,345
+block_count,GrowFastSmiOrObjectElements,3,345
block_count,GrowFastSmiOrObjectElements,4,345
block_count,GrowFastSmiOrObjectElements,5,0
block_count,GrowFastSmiOrObjectElements,6,345
block_count,GrowFastSmiOrObjectElements,7,0
block_count,GrowFastSmiOrObjectElements,8,0
-block_count,GrowFastSmiOrObjectElements,9,346
+block_count,GrowFastSmiOrObjectElements,9,345
block_count,GrowFastSmiOrObjectElements,10,0
-block_count,GrowFastSmiOrObjectElements,11,346
+block_count,GrowFastSmiOrObjectElements,11,345
block_count,GrowFastSmiOrObjectElements,12,0
-block_count,GrowFastSmiOrObjectElements,13,346
-block_count,GrowFastSmiOrObjectElements,14,4551
-block_count,GrowFastSmiOrObjectElements,15,4205
-block_count,GrowFastSmiOrObjectElements,16,346
-block_count,GrowFastSmiOrObjectElements,17,346
+block_count,GrowFastSmiOrObjectElements,13,345
+block_count,GrowFastSmiOrObjectElements,14,4549
+block_count,GrowFastSmiOrObjectElements,15,4203
+block_count,GrowFastSmiOrObjectElements,16,345
+block_count,GrowFastSmiOrObjectElements,17,345
block_count,GrowFastSmiOrObjectElements,18,18
block_count,GrowFastSmiOrObjectElements,19,327
-block_count,GrowFastSmiOrObjectElements,20,346
+block_count,GrowFastSmiOrObjectElements,20,345
block_count,GrowFastSmiOrObjectElements,21,47
block_count,GrowFastSmiOrObjectElements,22,6969
block_count,GrowFastSmiOrObjectElements,23,6922
@@ -9466,12 +9481,12 @@
block_count,KeyedStoreIC_Megamorphic,16,298
block_count,KeyedStoreIC_Megamorphic,17,250
block_count,KeyedStoreIC_Megamorphic,18,250
-block_count,KeyedStoreIC_Megamorphic,19,234
+block_count,KeyedStoreIC_Megamorphic,19,235
block_count,KeyedStoreIC_Megamorphic,20,0
block_count,KeyedStoreIC_Megamorphic,21,0
block_count,KeyedStoreIC_Megamorphic,22,0
-block_count,KeyedStoreIC_Megamorphic,23,234
-block_count,KeyedStoreIC_Megamorphic,24,183
+block_count,KeyedStoreIC_Megamorphic,23,235
+block_count,KeyedStoreIC_Megamorphic,24,184
block_count,KeyedStoreIC_Megamorphic,25,50
block_count,KeyedStoreIC_Megamorphic,26,3
block_count,KeyedStoreIC_Megamorphic,27,3
@@ -9479,7 +9494,7 @@
block_count,KeyedStoreIC_Megamorphic,29,0
block_count,KeyedStoreIC_Megamorphic,30,0
block_count,KeyedStoreIC_Megamorphic,31,46
-block_count,KeyedStoreIC_Megamorphic,32,16
+block_count,KeyedStoreIC_Megamorphic,32,15
block_count,KeyedStoreIC_Megamorphic,33,0
block_count,KeyedStoreIC_Megamorphic,34,47
block_count,KeyedStoreIC_Megamorphic,35,0
@@ -9563,7 +9578,7 @@
block_count,KeyedStoreIC_Megamorphic,113,0
block_count,KeyedStoreIC_Megamorphic,114,52
block_count,KeyedStoreIC_Megamorphic,115,0
-block_count,KeyedStoreIC_Megamorphic,116,47
+block_count,KeyedStoreIC_Megamorphic,116,46
block_count,KeyedStoreIC_Megamorphic,117,46
block_count,KeyedStoreIC_Megamorphic,118,46
block_count,KeyedStoreIC_Megamorphic,119,0
@@ -9586,11 +9601,11 @@
block_count,KeyedStoreIC_Megamorphic,136,51
block_count,KeyedStoreIC_Megamorphic,137,51
block_count,KeyedStoreIC_Megamorphic,138,0
-block_count,KeyedStoreIC_Megamorphic,139,47
+block_count,KeyedStoreIC_Megamorphic,139,46
block_count,KeyedStoreIC_Megamorphic,140,46
block_count,KeyedStoreIC_Megamorphic,141,0
-block_count,KeyedStoreIC_Megamorphic,142,47
-block_count,KeyedStoreIC_Megamorphic,143,47
+block_count,KeyedStoreIC_Megamorphic,142,46
+block_count,KeyedStoreIC_Megamorphic,143,46
block_count,KeyedStoreIC_Megamorphic,144,0
block_count,KeyedStoreIC_Megamorphic,145,0
block_count,KeyedStoreIC_Megamorphic,146,0
@@ -9633,9 +9648,9 @@
block_count,KeyedStoreIC_Megamorphic,183,0
block_count,KeyedStoreIC_Megamorphic,184,97
block_count,KeyedStoreIC_Megamorphic,185,50
-block_count,KeyedStoreIC_Megamorphic,186,47
+block_count,KeyedStoreIC_Megamorphic,186,46
block_count,KeyedStoreIC_Megamorphic,187,97
-block_count,KeyedStoreIC_Megamorphic,188,86
+block_count,KeyedStoreIC_Megamorphic,188,85
block_count,KeyedStoreIC_Megamorphic,189,11
block_count,KeyedStoreIC_Megamorphic,190,11
block_count,KeyedStoreIC_Megamorphic,191,11
@@ -9654,10 +9669,10 @@
block_count,KeyedStoreIC_Megamorphic,204,9
block_count,KeyedStoreIC_Megamorphic,205,0
block_count,KeyedStoreIC_Megamorphic,206,9
-block_count,KeyedStoreIC_Megamorphic,207,35
+block_count,KeyedStoreIC_Megamorphic,207,36
block_count,KeyedStoreIC_Megamorphic,208,31
block_count,KeyedStoreIC_Megamorphic,209,28
-block_count,KeyedStoreIC_Megamorphic,210,26
+block_count,KeyedStoreIC_Megamorphic,210,27
block_count,KeyedStoreIC_Megamorphic,211,1
block_count,KeyedStoreIC_Megamorphic,212,2
block_count,KeyedStoreIC_Megamorphic,213,4
@@ -10199,7 +10214,7 @@
block_count,KeyedStoreIC_Megamorphic,749,299
block_count,KeyedStoreIC_Megamorphic,750,298
block_count,KeyedStoreIC_Megamorphic,751,298
-block_count,KeyedStoreIC_Megamorphic,752,248
+block_count,KeyedStoreIC_Megamorphic,752,249
block_count,KeyedStoreIC_Megamorphic,753,49
block_count,KeyedStoreIC_Megamorphic,754,0
block_count,KeyedStoreIC_Megamorphic,755,0
@@ -12019,7 +12034,7 @@
block_count,LoadIC_FunctionPrototype,2,1
block_count,LoadIC_FunctionPrototype,3,200
block_count,LoadIC_FunctionPrototype,4,0
-block_count,LoadIC_StringLength,0,43
+block_count,LoadIC_StringLength,0,41
block_count,LoadIC_StringWrapperLength,0,0
block_count,LoadIC_NoFeedback,0,45
block_count,LoadIC_NoFeedback,1,45
@@ -12076,12 +12091,12 @@
block_count,LoadIC_NoFeedback,52,53
block_count,LoadIC_NoFeedback,53,48
block_count,LoadIC_NoFeedback,54,44
-block_count,LoadIC_NoFeedback,55,33
+block_count,LoadIC_NoFeedback,55,34
block_count,LoadIC_NoFeedback,56,10
block_count,LoadIC_NoFeedback,57,4
block_count,LoadIC_NoFeedback,58,4
block_count,LoadIC_NoFeedback,59,14
-block_count,LoadIC_NoFeedback,60,6
+block_count,LoadIC_NoFeedback,60,7
block_count,LoadIC_NoFeedback,61,7
block_count,LoadIC_NoFeedback,62,5
block_count,LoadIC_NoFeedback,63,1
@@ -12157,20 +12172,20 @@
block_count,LoadIC_NoFeedback,133,0
block_count,LoadIC_NoFeedback,134,0
block_count,LoadIC_NoFeedback,135,17
-block_count,LoadIC_NoFeedback,136,13
+block_count,LoadIC_NoFeedback,136,14
block_count,LoadIC_NoFeedback,137,0
block_count,LoadIC_NoFeedback,138,0
block_count,LoadIC_NoFeedback,139,0
block_count,LoadIC_NoFeedback,140,0
block_count,LoadIC_NoFeedback,141,0
-block_count,LoadIC_NoFeedback,142,13
-block_count,LoadIC_NoFeedback,143,13
+block_count,LoadIC_NoFeedback,142,14
+block_count,LoadIC_NoFeedback,143,14
block_count,LoadIC_NoFeedback,144,19
block_count,LoadIC_NoFeedback,145,19
-block_count,LoadIC_NoFeedback,146,18
-block_count,LoadIC_NoFeedback,147,18
-block_count,LoadIC_NoFeedback,148,18
-block_count,LoadIC_NoFeedback,149,18
+block_count,LoadIC_NoFeedback,146,19
+block_count,LoadIC_NoFeedback,147,19
+block_count,LoadIC_NoFeedback,148,19
+block_count,LoadIC_NoFeedback,149,19
block_count,LoadIC_NoFeedback,150,4
block_count,LoadIC_NoFeedback,151,4
block_count,LoadIC_NoFeedback,152,0
@@ -13144,7 +13159,7 @@
block_count,KeyedLoadIC_SloppyArguments,20,0
block_count,KeyedLoadIC_SloppyArguments,21,0
block_count,KeyedLoadIC_SloppyArguments,22,0
-block_count,StoreFastElementIC_InBounds,0,199
+block_count,StoreFastElementIC_InBounds,0,201
block_count,StoreFastElementIC_InBounds,1,0
block_count,StoreFastElementIC_InBounds,2,3
block_count,StoreFastElementIC_InBounds,3,3
@@ -13167,8 +13182,8 @@
block_count,StoreFastElementIC_InBounds,20,0
block_count,StoreFastElementIC_InBounds,21,3
block_count,StoreFastElementIC_InBounds,22,0
-block_count,StoreFastElementIC_InBounds,23,3
-block_count,StoreFastElementIC_InBounds,24,3
+block_count,StoreFastElementIC_InBounds,23,2
+block_count,StoreFastElementIC_InBounds,24,2
block_count,StoreFastElementIC_InBounds,25,0
block_count,StoreFastElementIC_InBounds,26,0
block_count,StoreFastElementIC_InBounds,27,0
@@ -13176,17 +13191,17 @@
block_count,StoreFastElementIC_InBounds,29,0
block_count,StoreFastElementIC_InBounds,30,0
block_count,StoreFastElementIC_InBounds,31,0
-block_count,StoreFastElementIC_InBounds,32,3
-block_count,StoreFastElementIC_InBounds,33,3
+block_count,StoreFastElementIC_InBounds,32,2
+block_count,StoreFastElementIC_InBounds,33,2
block_count,StoreFastElementIC_InBounds,34,0
-block_count,StoreFastElementIC_InBounds,35,3
+block_count,StoreFastElementIC_InBounds,35,2
block_count,StoreFastElementIC_InBounds,36,0
-block_count,StoreFastElementIC_InBounds,37,3
-block_count,StoreFastElementIC_InBounds,38,3
+block_count,StoreFastElementIC_InBounds,37,2
+block_count,StoreFastElementIC_InBounds,38,2
block_count,StoreFastElementIC_InBounds,39,0
-block_count,StoreFastElementIC_InBounds,40,3
+block_count,StoreFastElementIC_InBounds,40,2
block_count,StoreFastElementIC_InBounds,41,0
-block_count,StoreFastElementIC_InBounds,42,3
+block_count,StoreFastElementIC_InBounds,42,2
block_count,StoreFastElementIC_InBounds,43,0
block_count,StoreFastElementIC_InBounds,44,10
block_count,StoreFastElementIC_InBounds,45,10
@@ -13362,7 +13377,7 @@
block_count,StoreFastElementIC_InBounds,215,2
block_count,StoreFastElementIC_InBounds,216,0
block_count,StoreFastElementIC_InBounds,217,2
-block_count,StoreFastElementIC_InBounds,218,5
+block_count,StoreFastElementIC_InBounds,218,4
block_count,StoreFastElementIC_InBounds,219,0
block_count,StoreFastElementIC_InBounds,220,0
block_count,StoreFastElementIC_InBounds,221,0
@@ -13370,21 +13385,21 @@
block_count,StoreFastElementIC_InBounds,223,0
block_count,StoreFastElementIC_InBounds,224,0
block_count,StoreFastElementIC_InBounds,225,0
-block_count,StoreFastElementIC_InBounds,226,5
-block_count,StoreFastElementIC_InBounds,227,5
-block_count,StoreFastElementIC_InBounds,228,4
-block_count,StoreFastElementIC_InBounds,229,4
+block_count,StoreFastElementIC_InBounds,226,4
+block_count,StoreFastElementIC_InBounds,227,4
+block_count,StoreFastElementIC_InBounds,228,3
+block_count,StoreFastElementIC_InBounds,229,3
block_count,StoreFastElementIC_InBounds,230,0
block_count,StoreFastElementIC_InBounds,231,0
-block_count,StoreFastElementIC_InBounds,232,5
+block_count,StoreFastElementIC_InBounds,232,4
block_count,StoreFastElementIC_InBounds,233,0
-block_count,StoreFastElementIC_InBounds,234,5
-block_count,StoreFastElementIC_InBounds,235,5
+block_count,StoreFastElementIC_InBounds,234,4
+block_count,StoreFastElementIC_InBounds,235,4
block_count,StoreFastElementIC_InBounds,236,0
-block_count,StoreFastElementIC_InBounds,237,5
+block_count,StoreFastElementIC_InBounds,237,4
block_count,StoreFastElementIC_InBounds,238,0
-block_count,StoreFastElementIC_InBounds,239,5
-block_count,StoreFastElementIC_InBounds,240,15
+block_count,StoreFastElementIC_InBounds,239,4
+block_count,StoreFastElementIC_InBounds,240,16
block_count,StoreFastElementIC_InBounds,241,0
block_count,StoreFastElementIC_InBounds,242,0
block_count,StoreFastElementIC_InBounds,243,0
@@ -13392,21 +13407,21 @@
block_count,StoreFastElementIC_InBounds,245,0
block_count,StoreFastElementIC_InBounds,246,0
block_count,StoreFastElementIC_InBounds,247,0
-block_count,StoreFastElementIC_InBounds,248,15
-block_count,StoreFastElementIC_InBounds,249,15
-block_count,StoreFastElementIC_InBounds,250,15
+block_count,StoreFastElementIC_InBounds,248,16
+block_count,StoreFastElementIC_InBounds,249,16
+block_count,StoreFastElementIC_InBounds,250,16
block_count,StoreFastElementIC_InBounds,251,0
block_count,StoreFastElementIC_InBounds,252,0
block_count,StoreFastElementIC_InBounds,253,0
block_count,StoreFastElementIC_InBounds,254,0
block_count,StoreFastElementIC_InBounds,255,0
block_count,StoreFastElementIC_InBounds,256,0
-block_count,StoreFastElementIC_InBounds,257,15
-block_count,StoreFastElementIC_InBounds,258,15
-block_count,StoreFastElementIC_InBounds,259,15
-block_count,StoreFastElementIC_InBounds,260,15
+block_count,StoreFastElementIC_InBounds,257,16
+block_count,StoreFastElementIC_InBounds,258,16
+block_count,StoreFastElementIC_InBounds,259,16
+block_count,StoreFastElementIC_InBounds,260,16
block_count,StoreFastElementIC_InBounds,261,0
-block_count,StoreFastElementIC_InBounds,262,15
+block_count,StoreFastElementIC_InBounds,262,16
block_count,StoreFastElementIC_InBounds,263,0
block_count,StoreFastElementIC_InBounds,264,0
block_count,StoreFastElementIC_InBounds,265,0
@@ -13604,7 +13619,7 @@
block_count,StoreFastElementIC_InBounds,457,0
block_count,StoreFastElementIC_InBounds,458,0
block_count,StoreFastElementIC_InBounds,459,0
-block_count,StoreFastElementIC_InBounds,460,20
+block_count,StoreFastElementIC_InBounds,460,22
block_count,StoreFastElementIC_InBounds,461,0
block_count,StoreFastElementIC_InBounds,462,0
block_count,StoreFastElementIC_InBounds,463,0
@@ -13612,21 +13627,21 @@
block_count,StoreFastElementIC_InBounds,465,0
block_count,StoreFastElementIC_InBounds,466,0
block_count,StoreFastElementIC_InBounds,467,0
-block_count,StoreFastElementIC_InBounds,468,20
-block_count,StoreFastElementIC_InBounds,469,20
-block_count,StoreFastElementIC_InBounds,470,20
-block_count,StoreFastElementIC_InBounds,471,19
-block_count,StoreFastElementIC_InBounds,472,19
+block_count,StoreFastElementIC_InBounds,468,22
+block_count,StoreFastElementIC_InBounds,469,22
+block_count,StoreFastElementIC_InBounds,470,22
+block_count,StoreFastElementIC_InBounds,471,21
+block_count,StoreFastElementIC_InBounds,472,21
block_count,StoreFastElementIC_InBounds,473,0
block_count,StoreFastElementIC_InBounds,474,0
block_count,StoreFastElementIC_InBounds,475,0
-block_count,StoreFastElementIC_InBounds,476,19
+block_count,StoreFastElementIC_InBounds,476,21
block_count,StoreFastElementIC_InBounds,477,0
-block_count,StoreFastElementIC_InBounds,478,20
-block_count,StoreFastElementIC_InBounds,479,20
-block_count,StoreFastElementIC_InBounds,480,20
+block_count,StoreFastElementIC_InBounds,478,22
+block_count,StoreFastElementIC_InBounds,479,22
+block_count,StoreFastElementIC_InBounds,480,22
block_count,StoreFastElementIC_InBounds,481,0
-block_count,StoreFastElementIC_InBounds,482,20
+block_count,StoreFastElementIC_InBounds,482,22
block_count,StoreFastElementIC_InBounds,483,0
block_count,StoreFastElementIC_InBounds,484,0
block_count,StoreFastElementIC_InBounds,485,0
@@ -14323,7 +14338,7 @@
block_count,StoreFastElementIC_InBounds,1176,0
block_count,StoreFastElementIC_InBounds,1177,0
block_count,StoreFastElementIC_InBounds,1178,0
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,0,21
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,0,19
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,1,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,2,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,3,0
@@ -14358,7 +14373,7 @@
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,32,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,33,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,34,0
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,35,0
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,35,1
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,36,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,37,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,38,0
@@ -14366,8 +14381,8 @@
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,40,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,41,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,42,0
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,43,1
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,44,1
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,43,0
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,44,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,45,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,46,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,47,0
@@ -14519,7 +14534,7 @@
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,193,1
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,194,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,195,1
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,196,17
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,196,15
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,197,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,198,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,199,0
@@ -14527,15 +14542,15 @@
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,201,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,202,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,203,0
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,204,17
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,205,17
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,204,15
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,205,15
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,206,0
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,207,17
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,208,17
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,207,15
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,208,15
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,209,1
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,210,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,211,1
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,212,15
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,212,13
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,213,1
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,214,1
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,215,1
@@ -14550,7 +14565,7 @@
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,224,1
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,225,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,226,1
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,227,14
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,227,13
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,228,12
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,229,1
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,230,1
@@ -14558,8 +14573,8 @@
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,232,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,233,1
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,234,0
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,235,15
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,236,14
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,235,14
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,236,13
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,237,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,238,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,239,1
@@ -14577,12 +14592,12 @@
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,251,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,252,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,253,0
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,254,14
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,255,15
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,254,12
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,255,13
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,256,0
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,257,15
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,258,17
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,259,17
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,257,13
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,258,15
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,259,15
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,260,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,261,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,262,0
@@ -14611,9 +14626,9 @@
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,285,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,286,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,287,0
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,288,17
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,288,15
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,289,0
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,290,17
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,290,15
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,291,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,292,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,293,0
@@ -18576,15 +18591,15 @@
block_count,ElementsTransitionAndStore_NoTransitionHandleCOW,862,0
block_count,ElementsTransitionAndStore_NoTransitionHandleCOW,863,0
block_count,ElementsTransitionAndStore_NoTransitionHandleCOW,864,0
-block_count,KeyedHasIC_PolymorphicName,0,4
-block_count,KeyedHasIC_PolymorphicName,1,4
+block_count,KeyedHasIC_PolymorphicName,0,3
+block_count,KeyedHasIC_PolymorphicName,1,3
block_count,KeyedHasIC_PolymorphicName,2,0
-block_count,KeyedHasIC_PolymorphicName,3,4
-block_count,KeyedHasIC_PolymorphicName,4,5
+block_count,KeyedHasIC_PolymorphicName,3,3
+block_count,KeyedHasIC_PolymorphicName,4,4
block_count,KeyedHasIC_PolymorphicName,5,1
block_count,KeyedHasIC_PolymorphicName,6,1
block_count,KeyedHasIC_PolymorphicName,7,0
-block_count,KeyedHasIC_PolymorphicName,8,4
+block_count,KeyedHasIC_PolymorphicName,8,3
block_count,KeyedHasIC_PolymorphicName,9,1
block_count,KeyedHasIC_PolymorphicName,10,1
block_count,KeyedHasIC_PolymorphicName,11,1
@@ -18632,7 +18647,7 @@
block_count,KeyedHasIC_PolymorphicName,53,0
block_count,KeyedHasIC_PolymorphicName,54,0
block_count,KeyedHasIC_PolymorphicName,55,2
-block_count,KeyedHasIC_PolymorphicName,56,4
+block_count,KeyedHasIC_PolymorphicName,56,3
block_count,KeyedHasIC_PolymorphicName,57,1
block_count,KeyedHasIC_PolymorphicName,58,1
block_count,KeyedHasIC_PolymorphicName,59,0
@@ -19856,7 +19871,7 @@
block_count,ArrayConstructorImpl,0,11
block_count,ArrayConstructorImpl,1,10
block_count,ArrayConstructorImpl,2,9
-block_count,ArrayConstructorImpl,3,8
+block_count,ArrayConstructorImpl,3,7
block_count,ArrayConstructorImpl,4,3
block_count,ArrayConstructorImpl,5,4
block_count,ArrayConstructorImpl,6,0
@@ -19896,7 +19911,7 @@
block_count,ArrayConstructorImpl,40,0
block_count,ArrayConstructorImpl,41,0
block_count,ArrayConstructorImpl,42,1
-block_count,ArrayConstructorImpl,43,5
+block_count,ArrayConstructorImpl,43,4
block_count,ArrayNoArgumentConstructor_PackedSmi_DontOverride,0,0
block_count,ArrayNoArgumentConstructor_PackedSmi_DontOverride,1,0
block_count,ArrayNoArgumentConstructor_PackedSmi_DontOverride,2,0
@@ -20059,7 +20074,7 @@
block_count,ArraySingleArgumentConstructor_Holey_DisableAllocationSites,31,0
block_count,ArraySingleArgumentConstructor_Holey_DisableAllocationSites,32,0
block_count,ArraySingleArgumentConstructor_Holey_DisableAllocationSites,33,39
-block_count,ArraySingleArgumentConstructor_Holey_DisableAllocationSites,34,39
+block_count,ArraySingleArgumentConstructor_Holey_DisableAllocationSites,34,38
block_count,ArraySingleArgumentConstructor_Holey_DisableAllocationSites,35,0
block_count,ArraySingleArgumentConstructor_Holey_DisableAllocationSites,36,0
block_count,ArraySingleArgumentConstructor_Holey_DisableAllocationSites,37,0
@@ -20886,22 +20901,22 @@
block_count,ArrayIndexOfSmiOrObject,177,0
block_count,ArrayIndexOfSmiOrObject,178,0
block_count,ArrayIndexOfSmiOrObject,179,0
-block_count,ArrayIndexOf,0,36
+block_count,ArrayIndexOf,0,37
block_count,ArrayIndexOf,1,0
-block_count,ArrayIndexOf,2,36
-block_count,ArrayIndexOf,3,36
-block_count,ArrayIndexOf,4,36
+block_count,ArrayIndexOf,2,37
+block_count,ArrayIndexOf,3,37
+block_count,ArrayIndexOf,4,37
block_count,ArrayIndexOf,5,0
-block_count,ArrayIndexOf,6,36
+block_count,ArrayIndexOf,6,37
block_count,ArrayIndexOf,7,0
-block_count,ArrayIndexOf,8,36
-block_count,ArrayIndexOf,9,36
-block_count,ArrayIndexOf,10,36
-block_count,ArrayIndexOf,11,36
+block_count,ArrayIndexOf,8,37
+block_count,ArrayIndexOf,9,37
+block_count,ArrayIndexOf,10,37
+block_count,ArrayIndexOf,11,37
block_count,ArrayIndexOf,12,0
-block_count,ArrayIndexOf,13,36
-block_count,ArrayIndexOf,14,36
-block_count,ArrayIndexOf,15,36
+block_count,ArrayIndexOf,13,37
+block_count,ArrayIndexOf,14,37
+block_count,ArrayIndexOf,15,37
block_count,ArrayIndexOf,16,0
block_count,ArrayIndexOf,17,0
block_count,ArrayIndexOf,18,0
@@ -20913,8 +20928,8 @@
block_count,ArrayIndexOf,24,0
block_count,ArrayIndexOf,25,0
block_count,ArrayIndexOf,26,0
-block_count,ArrayIndexOf,27,36
-block_count,ArrayIndexOf,28,36
+block_count,ArrayIndexOf,27,37
+block_count,ArrayIndexOf,28,37
block_count,ArrayIndexOf,29,35
block_count,ArrayIndexOf,30,35
block_count,ArrayIndexOf,31,0
@@ -20975,25 +20990,25 @@
block_count,ArrayPrototypePop,37,0
block_count,ArrayPrototypePop,38,0
block_count,ArrayPrototypePop,39,0
-block_count,ArrayPrototypePush,0,203
+block_count,ArrayPrototypePush,0,210
block_count,ArrayPrototypePush,1,0
-block_count,ArrayPrototypePush,2,203
-block_count,ArrayPrototypePush,3,203
-block_count,ArrayPrototypePush,4,203
-block_count,ArrayPrototypePush,5,203
-block_count,ArrayPrototypePush,6,203
+block_count,ArrayPrototypePush,2,210
+block_count,ArrayPrototypePush,3,210
+block_count,ArrayPrototypePush,4,210
+block_count,ArrayPrototypePush,5,210
+block_count,ArrayPrototypePush,6,210
block_count,ArrayPrototypePush,7,0
-block_count,ArrayPrototypePush,8,203
-block_count,ArrayPrototypePush,9,203
-block_count,ArrayPrototypePush,10,203
+block_count,ArrayPrototypePush,8,210
+block_count,ArrayPrototypePush,9,210
+block_count,ArrayPrototypePush,10,210
block_count,ArrayPrototypePush,11,0
-block_count,ArrayPrototypePush,12,203
-block_count,ArrayPrototypePush,13,203
+block_count,ArrayPrototypePush,12,210
+block_count,ArrayPrototypePush,13,210
block_count,ArrayPrototypePush,14,0
-block_count,ArrayPrototypePush,15,203
-block_count,ArrayPrototypePush,16,203
-block_count,ArrayPrototypePush,17,8
-block_count,ArrayPrototypePush,18,8
+block_count,ArrayPrototypePush,15,210
+block_count,ArrayPrototypePush,16,210
+block_count,ArrayPrototypePush,17,7
+block_count,ArrayPrototypePush,18,7
block_count,ArrayPrototypePush,19,7
block_count,ArrayPrototypePush,20,0
block_count,ArrayPrototypePush,21,0
@@ -21023,9 +21038,9 @@
block_count,ArrayPrototypePush,45,0
block_count,ArrayPrototypePush,46,0
block_count,ArrayPrototypePush,47,0
-block_count,ArrayPrototypePush,48,8
-block_count,ArrayPrototypePush,49,8
-block_count,ArrayPrototypePush,50,8
+block_count,ArrayPrototypePush,48,7
+block_count,ArrayPrototypePush,49,7
+block_count,ArrayPrototypePush,50,7
block_count,ArrayPrototypePush,51,7
block_count,ArrayPrototypePush,52,7
block_count,ArrayPrototypePush,53,0
@@ -21044,8 +21059,8 @@
block_count,ArrayPrototypePush,66,0
block_count,ArrayPrototypePush,67,0
block_count,ArrayPrototypePush,68,0
-block_count,ArrayPrototypePush,69,195
-block_count,ArrayPrototypePush,70,195
+block_count,ArrayPrototypePush,69,202
+block_count,ArrayPrototypePush,70,201
block_count,ArrayPrototypePush,71,0
block_count,ArrayPrototypePush,72,0
block_count,ArrayPrototypePush,73,0
@@ -21106,9 +21121,9 @@
block_count,ArrayPrototypePush,128,0
block_count,ArrayPrototypePush,129,0
block_count,ArrayPrototypePush,130,0
-block_count,ArrayPrototypePush,131,195
-block_count,ArrayPrototypePush,132,194
-block_count,ArrayPrototypePush,133,172
+block_count,ArrayPrototypePush,131,202
+block_count,ArrayPrototypePush,132,201
+block_count,ArrayPrototypePush,133,178
block_count,ArrayPrototypePush,134,22
block_count,ArrayPrototypePush,135,22
block_count,ArrayPrototypePush,136,22
@@ -21122,30 +21137,30 @@
block_count,ArrayPrototypePush,144,22
block_count,ArrayPrototypePush,145,0
block_count,ArrayPrototypePush,146,22
-block_count,ArrayPrototypePush,147,254
-block_count,ArrayPrototypePush,148,231
+block_count,ArrayPrototypePush,147,256
+block_count,ArrayPrototypePush,148,233
block_count,ArrayPrototypePush,149,22
block_count,ArrayPrototypePush,150,22
block_count,ArrayPrototypePush,151,0
block_count,ArrayPrototypePush,152,21
block_count,ArrayPrototypePush,153,22
block_count,ArrayPrototypePush,154,1
-block_count,ArrayPrototypePush,155,278
+block_count,ArrayPrototypePush,155,279
block_count,ArrayPrototypePush,156,277
block_count,ArrayPrototypePush,157,1
-block_count,ArrayPrototypePush,158,20
+block_count,ArrayPrototypePush,158,21
block_count,ArrayPrototypePush,159,22
block_count,ArrayPrototypePush,160,0
block_count,ArrayPrototypePush,161,0
-block_count,ArrayPrototypePush,162,194
-block_count,ArrayPrototypePush,163,194
-block_count,ArrayPrototypePush,164,220
-block_count,ArrayPrototypePush,165,220
+block_count,ArrayPrototypePush,162,201
+block_count,ArrayPrototypePush,163,201
+block_count,ArrayPrototypePush,164,227
+block_count,ArrayPrototypePush,165,227
block_count,ArrayPrototypePush,166,26
-block_count,ArrayPrototypePush,167,194
+block_count,ArrayPrototypePush,167,201
block_count,ArrayPrototypePush,168,0
block_count,ArrayPrototypePush,169,0
-block_count,ArrayPrototypePush,170,194
+block_count,ArrayPrototypePush,170,201
block_count,ArrayPrototypePush,171,0
block_count,ArrayPrototypePush,172,0
block_count,ArrayPrototypePush,173,0
@@ -21451,8 +21466,8 @@
block_count,ExtractFastJSArray,29,0
block_count,ExtractFastJSArray,30,0
block_count,ExtractFastJSArray,31,0
-block_count,ExtractFastJSArray,32,11
-block_count,ExtractFastJSArray,33,11
+block_count,ExtractFastJSArray,32,0
+block_count,ExtractFastJSArray,33,0
block_count,ExtractFastJSArray,34,0
block_count,ExtractFastJSArray,35,0
block_count,ExtractFastJSArray,36,0
@@ -21726,9 +21741,9 @@
block_count,CreateObjectFromSlowBoilerplateHelper,79,0
block_count,CreateObjectFromSlowBoilerplateHelper,80,49
block_count,CreateObjectFromSlowBoilerplateHelper,81,49
-block_count,CreateObjectFromSlowBoilerplateHelper,82,103
+block_count,CreateObjectFromSlowBoilerplateHelper,82,102
block_count,CreateObjectFromSlowBoilerplateHelper,83,102
-block_count,CreateObjectFromSlowBoilerplateHelper,84,100
+block_count,CreateObjectFromSlowBoilerplateHelper,84,99
block_count,CreateObjectFromSlowBoilerplateHelper,85,46
block_count,CreateObjectFromSlowBoilerplateHelper,86,0
block_count,CreateObjectFromSlowBoilerplateHelper,87,46
@@ -21756,22 +21771,22 @@
block_count,CreateObjectFromSlowBoilerplateHelper,109,0
block_count,CreateObjectFromSlowBoilerplateHelper,110,46
block_count,CreateObjectFromSlowBoilerplateHelper,111,0
-block_count,CreateObjectFromSlowBoilerplateHelper,112,54
+block_count,CreateObjectFromSlowBoilerplateHelper,112,53
block_count,CreateObjectFromSlowBoilerplateHelper,113,2
block_count,CreateObjectFromSlowBoilerplateHelper,114,0
block_count,CreateObjectFromSlowBoilerplateHelper,115,56
block_count,CreateObjectFromSlowBoilerplateHelper,116,53
-block_count,CreateObjectFromSlowBoilerplateHelper,117,3
+block_count,CreateObjectFromSlowBoilerplateHelper,117,2
block_count,CreateObjectFromSlowBoilerplateHelper,118,0
block_count,CreateObjectFromSlowBoilerplateHelper,119,49
block_count,CreateObjectFromSlowBoilerplateHelper,120,0
block_count,CreateObjectFromSlowBoilerplateHelper,121,49
block_count,CreateObjectFromSlowBoilerplateHelper,122,0
-block_count,CreateObjectFromSlowBoilerplateHelper,123,49
-block_count,CreateObjectFromSlowBoilerplateHelper,124,51
-block_count,CreateObjectFromSlowBoilerplateHelper,125,51
-block_count,CreateObjectFromSlowBoilerplateHelper,126,50
-block_count,CreateObjectFromSlowBoilerplateHelper,127,50
+block_count,CreateObjectFromSlowBoilerplateHelper,123,48
+block_count,CreateObjectFromSlowBoilerplateHelper,124,50
+block_count,CreateObjectFromSlowBoilerplateHelper,125,50
+block_count,CreateObjectFromSlowBoilerplateHelper,126,49
+block_count,CreateObjectFromSlowBoilerplateHelper,127,49
block_count,CreateObjectFromSlowBoilerplateHelper,128,49
block_count,CreateObjectFromSlowBoilerplateHelper,129,49
block_count,CreateObjectFromSlowBoilerplateHelper,130,0
@@ -21784,12 +21799,12 @@
block_count,CreateObjectFromSlowBoilerplateHelper,137,0
block_count,CreateObjectFromSlowBoilerplateHelper,138,0
block_count,CreateObjectFromSlowBoilerplateHelper,139,0
-block_count,CreateObjectFromSlowBoilerplateHelper,140,51
+block_count,CreateObjectFromSlowBoilerplateHelper,140,50
block_count,CreateObjectFromSlowBoilerplateHelper,141,50
block_count,CreateObjectFromSlowBoilerplateHelper,142,49
block_count,CreateObjectFromSlowBoilerplateHelper,143,49
block_count,CreateObjectFromSlowBoilerplateHelper,144,49
-block_count,CreateObjectFromSlowBoilerplateHelper,145,49
+block_count,CreateObjectFromSlowBoilerplateHelper,145,48
block_count,CreateObjectFromSlowBoilerplateHelper,146,0
block_count,CreateObjectFromSlowBoilerplateHelper,147,0
block_count,CreateObjectFromSlowBoilerplateHelper,148,0
@@ -21800,9 +21815,9 @@
block_count,CreateObjectFromSlowBoilerplateHelper,153,0
block_count,CreateObjectFromSlowBoilerplateHelper,154,1
block_count,CreateObjectFromSlowBoilerplateHelper,155,0
-block_count,CreateObjectFromSlowBoilerplateHelper,156,51
-block_count,CreateObjectFromSlowBoilerplateHelper,157,2
-block_count,CreateObjectFromSlowBoilerplateHelper,158,49
+block_count,CreateObjectFromSlowBoilerplateHelper,156,50
+block_count,CreateObjectFromSlowBoilerplateHelper,157,1
+block_count,CreateObjectFromSlowBoilerplateHelper,158,48
block_count,CreateObjectFromSlowBoilerplateHelper,159,49
block_count,CreateObjectFromSlowBoilerplateHelper,160,48
block_count,CreateObjectFromSlowBoilerplateHelper,161,1
@@ -21929,21 +21944,21 @@
block_count,ArrayPrototypeKeys,12,0
block_count,ArrayPrototypeKeys,13,0
block_count,ArrayPrototypeKeys,14,0
-block_count,ArrayPrototypeValues,0,20
+block_count,ArrayPrototypeValues,0,19
block_count,ArrayPrototypeValues,1,0
-block_count,ArrayPrototypeValues,2,20
-block_count,ArrayPrototypeValues,3,20
-block_count,ArrayPrototypeValues,4,20
+block_count,ArrayPrototypeValues,2,19
+block_count,ArrayPrototypeValues,3,19
+block_count,ArrayPrototypeValues,4,19
block_count,ArrayPrototypeValues,5,0
-block_count,ArrayPrototypeValues,6,20
+block_count,ArrayPrototypeValues,6,19
block_count,ArrayPrototypeValues,7,0
block_count,ArrayPrototypeValues,8,0
-block_count,ArrayPrototypeValues,9,20
+block_count,ArrayPrototypeValues,9,19
block_count,ArrayPrototypeValues,10,0
-block_count,ArrayPrototypeValues,11,20
+block_count,ArrayPrototypeValues,11,19
block_count,ArrayPrototypeValues,12,0
-block_count,ArrayPrototypeValues,13,20
-block_count,ArrayPrototypeValues,14,20
+block_count,ArrayPrototypeValues,13,19
+block_count,ArrayPrototypeValues,14,19
block_count,ArrayIteratorPrototypeNext,0,156
block_count,ArrayIteratorPrototypeNext,1,0
block_count,ArrayIteratorPrototypeNext,2,156
@@ -22126,7 +22141,7 @@
block_count,ArrayIteratorPrototypeNext,179,0
block_count,ArrayIteratorPrototypeNext,180,153
block_count,ArrayIteratorPrototypeNext,181,153
-block_count,ArrayIteratorPrototypeNext,182,48
+block_count,ArrayIteratorPrototypeNext,182,47
block_count,ArrayIteratorPrototypeNext,183,105
block_count,ArrayIteratorPrototypeNext,184,105
block_count,ArrayIteratorPrototypeNext,185,0
@@ -22162,14 +22177,14 @@
block_count,ArrayIteratorPrototypeNext,215,0
block_count,ArrayIteratorPrototypeNext,216,99
block_count,ArrayIteratorPrototypeNext,217,0
-block_count,ArrayIteratorPrototypeNext,218,5
+block_count,ArrayIteratorPrototypeNext,218,6
block_count,ArrayIteratorPrototypeNext,219,0
block_count,ArrayIteratorPrototypeNext,220,0
block_count,ArrayIteratorPrototypeNext,221,0
-block_count,ArrayIteratorPrototypeNext,222,5
+block_count,ArrayIteratorPrototypeNext,222,6
block_count,ArrayIteratorPrototypeNext,223,0
-block_count,ArrayIteratorPrototypeNext,224,5
-block_count,ArrayIteratorPrototypeNext,225,5
+block_count,ArrayIteratorPrototypeNext,224,6
+block_count,ArrayIteratorPrototypeNext,225,6
block_count,ArrayIteratorPrototypeNext,226,0
block_count,ArrayIteratorPrototypeNext,227,0
block_count,ArrayIteratorPrototypeNext,228,0
@@ -22191,7 +22206,7 @@
block_count,ArrayIteratorPrototypeNext,244,0
block_count,ArrayIteratorPrototypeNext,245,0
block_count,ArrayIteratorPrototypeNext,246,0
-block_count,ArrayIteratorPrototypeNext,247,49
+block_count,ArrayIteratorPrototypeNext,247,48
block_count,ArrayIteratorPrototypeNext,248,1
block_count,ArrayIteratorPrototypeNext,249,107
block_count,ArrayIteratorPrototypeNext,250,0
@@ -22488,7 +22503,7 @@
block_count,CreateGeneratorObject,26,0
block_count,CreateGeneratorObject,27,0
block_count,CreateGeneratorObject,28,0
-block_count,CreateGeneratorObject,29,1
+block_count,CreateGeneratorObject,29,2
block_count,CreateGeneratorObject,30,1
block_count,CreateGeneratorObject,31,0
block_count,CreateGeneratorObject,32,0
@@ -22506,7 +22521,7 @@
block_count,CreateGeneratorObject,44,0
block_count,CreateGeneratorObject,45,0
block_count,CreateGeneratorObject,46,0
-block_count,CreateGeneratorObject,47,0
+block_count,CreateGeneratorObject,47,1
block_count,CreateGeneratorObject,48,0
block_count,CreateGeneratorObject,49,0
block_count,CreateGeneratorObject,50,0
@@ -22593,15 +22608,15 @@
block_count,SuspendGeneratorBaseline,9,0
block_count,SuspendGeneratorBaseline,10,1
block_count,SuspendGeneratorBaseline,11,1
-block_count,SuspendGeneratorBaseline,12,16
-block_count,SuspendGeneratorBaseline,13,15
+block_count,SuspendGeneratorBaseline,12,17
+block_count,SuspendGeneratorBaseline,13,16
block_count,SuspendGeneratorBaseline,14,1
block_count,ResumeGeneratorBaseline,0,1
block_count,ResumeGeneratorBaseline,1,0
block_count,ResumeGeneratorBaseline,2,1
block_count,ResumeGeneratorBaseline,3,1
-block_count,ResumeGeneratorBaseline,4,16
-block_count,ResumeGeneratorBaseline,5,15
+block_count,ResumeGeneratorBaseline,4,17
+block_count,ResumeGeneratorBaseline,5,16
block_count,ResumeGeneratorBaseline,6,1
block_count,GlobalIsFinite,0,0
block_count,GlobalIsFinite,1,0
@@ -22632,7 +22647,7 @@
block_count,LoadIC,4,328
block_count,LoadIC,5,0
block_count,LoadIC,6,328
-block_count,LoadIC,7,26
+block_count,LoadIC,7,27
block_count,LoadIC,8,0
block_count,LoadIC,9,0
block_count,LoadIC,10,0
@@ -22646,35 +22661,35 @@
block_count,LoadIC,18,0
block_count,LoadIC,19,0
block_count,LoadIC,20,0
-block_count,LoadIC,21,26
-block_count,LoadIC,22,26
+block_count,LoadIC,21,27
+block_count,LoadIC,22,27
block_count,LoadIC,23,0
-block_count,LoadIC,24,26
-block_count,LoadIC,25,18
-block_count,LoadIC,26,17
+block_count,LoadIC,24,27
+block_count,LoadIC,25,22
+block_count,LoadIC,26,22
block_count,LoadIC,27,0
-block_count,LoadIC,28,7
-block_count,LoadIC,29,8
-block_count,LoadIC,30,8
-block_count,LoadIC,31,8
+block_count,LoadIC,28,4
+block_count,LoadIC,29,4
+block_count,LoadIC,30,4
+block_count,LoadIC,31,4
block_count,LoadIC,32,0
block_count,LoadIC,33,0
-block_count,LoadIC,34,302
-block_count,LoadIC,35,403
-block_count,LoadIC,36,101
-block_count,LoadIC,37,101
+block_count,LoadIC,34,301
+block_count,LoadIC,35,402
+block_count,LoadIC,36,100
+block_count,LoadIC,37,100
block_count,LoadIC,38,0
-block_count,LoadIC,39,302
+block_count,LoadIC,39,301
block_count,LoadIC,40,316
block_count,LoadIC,41,645
-block_count,LoadIC,42,278
-block_count,LoadIC,43,278
-block_count,LoadIC,44,80
+block_count,LoadIC,42,277
+block_count,LoadIC,43,277
+block_count,LoadIC,44,79
block_count,LoadIC,45,79
block_count,LoadIC,46,79
block_count,LoadIC,47,0
block_count,LoadIC,48,0
-block_count,LoadIC,49,80
+block_count,LoadIC,49,79
block_count,LoadIC,50,26
block_count,LoadIC,51,26
block_count,LoadIC,52,26
@@ -22758,13 +22773,13 @@
block_count,LoadIC,130,0
block_count,LoadIC,131,0
block_count,LoadIC,132,0
-block_count,LoadIC,133,366
+block_count,LoadIC,133,367
block_count,LoadIC,134,445
block_count,LoadIC,135,325
block_count,LoadIC,136,267
-block_count,LoadIC,137,246
-block_count,LoadIC,138,35
-block_count,LoadIC,139,35
+block_count,LoadIC,137,247
+block_count,LoadIC,138,36
+block_count,LoadIC,139,36
block_count,LoadIC,140,1
block_count,LoadIC,141,1
block_count,LoadIC,142,1
@@ -22794,24 +22809,24 @@
block_count,LoadIC,166,0
block_count,LoadIC,167,0
block_count,LoadIC,168,0
-block_count,LoadIC,169,33
+block_count,LoadIC,169,34
block_count,LoadIC,170,0
-block_count,LoadIC,171,211
-block_count,LoadIC,172,211
+block_count,LoadIC,171,210
+block_count,LoadIC,172,210
block_count,LoadIC,173,0
-block_count,LoadIC,174,211
-block_count,LoadIC,175,211
+block_count,LoadIC,174,210
+block_count,LoadIC,175,210
block_count,LoadIC,176,308
block_count,LoadIC,177,308
block_count,LoadIC,178,97
-block_count,LoadIC,179,211
+block_count,LoadIC,179,210
block_count,LoadIC,180,0
block_count,LoadIC,181,0
block_count,LoadIC,182,0
block_count,LoadIC,183,0
-block_count,LoadIC,184,211
+block_count,LoadIC,184,210
block_count,LoadIC,185,0
-block_count,LoadIC,186,211
+block_count,LoadIC,186,210
block_count,LoadIC,187,0
block_count,LoadIC,188,0
block_count,LoadIC,189,0
@@ -22851,7 +22866,7 @@
block_count,LoadIC,223,0
block_count,LoadIC,224,0
block_count,LoadIC,225,0
-block_count,LoadIC,226,211
+block_count,LoadIC,226,210
block_count,LoadIC,227,20
block_count,LoadIC,228,57
block_count,LoadIC,229,120
@@ -22915,24 +22930,24 @@
block_count,LoadIC_Megamorphic,4,10000
block_count,LoadIC_Megamorphic,5,0
block_count,LoadIC_Megamorphic,6,10000
-block_count,LoadIC_Megamorphic,7,8322
-block_count,LoadIC_Megamorphic,8,8301
-block_count,LoadIC_Megamorphic,9,21
-block_count,LoadIC_Megamorphic,10,1677
-block_count,LoadIC_Megamorphic,11,1698
-block_count,LoadIC_Megamorphic,12,1688
-block_count,LoadIC_Megamorphic,13,1686
+block_count,LoadIC_Megamorphic,7,8370
+block_count,LoadIC_Megamorphic,8,8351
+block_count,LoadIC_Megamorphic,9,18
+block_count,LoadIC_Megamorphic,10,1629
+block_count,LoadIC_Megamorphic,11,1648
+block_count,LoadIC_Megamorphic,12,1637
+block_count,LoadIC_Megamorphic,13,1635
block_count,LoadIC_Megamorphic,14,1
block_count,LoadIC_Megamorphic,15,10
block_count,LoadIC_Megamorphic,16,9987
-block_count,LoadIC_Megamorphic,17,3629
-block_count,LoadIC_Megamorphic,18,3629
-block_count,LoadIC_Megamorphic,19,3617
-block_count,LoadIC_Megamorphic,20,3617
-block_count,LoadIC_Megamorphic,21,3617
+block_count,LoadIC_Megamorphic,17,3628
+block_count,LoadIC_Megamorphic,18,3628
+block_count,LoadIC_Megamorphic,19,3616
+block_count,LoadIC_Megamorphic,20,3616
+block_count,LoadIC_Megamorphic,21,3616
block_count,LoadIC_Megamorphic,22,0
block_count,LoadIC_Megamorphic,23,0
-block_count,LoadIC_Megamorphic,24,3617
+block_count,LoadIC_Megamorphic,24,3616
block_count,LoadIC_Megamorphic,25,8
block_count,LoadIC_Megamorphic,26,4
block_count,LoadIC_Megamorphic,27,4
@@ -23003,26 +23018,26 @@
block_count,LoadIC_Megamorphic,92,0
block_count,LoadIC_Megamorphic,93,0
block_count,LoadIC_Megamorphic,94,3
-block_count,LoadIC_Megamorphic,95,3609
-block_count,LoadIC_Megamorphic,96,3617
-block_count,LoadIC_Megamorphic,97,3615
-block_count,LoadIC_Megamorphic,98,2842
-block_count,LoadIC_Megamorphic,99,2842
+block_count,LoadIC_Megamorphic,95,3608
+block_count,LoadIC_Megamorphic,96,3616
+block_count,LoadIC_Megamorphic,97,3614
+block_count,LoadIC_Megamorphic,98,2840
+block_count,LoadIC_Megamorphic,99,2840
block_count,LoadIC_Megamorphic,100,0
block_count,LoadIC_Megamorphic,101,773
-block_count,LoadIC_Megamorphic,102,3615
+block_count,LoadIC_Megamorphic,102,3614
block_count,LoadIC_Megamorphic,103,1
block_count,LoadIC_Megamorphic,104,11
block_count,LoadIC_Megamorphic,105,0
block_count,LoadIC_Megamorphic,106,0
block_count,LoadIC_Megamorphic,107,0
-block_count,LoadIC_Megamorphic,108,6357
+block_count,LoadIC_Megamorphic,108,6359
block_count,LoadIC_Megamorphic,109,9973
-block_count,LoadIC_Megamorphic,110,4307
-block_count,LoadIC_Megamorphic,111,2261
-block_count,LoadIC_Megamorphic,112,1488
-block_count,LoadIC_Megamorphic,113,1481
-block_count,LoadIC_Megamorphic,114,686
+block_count,LoadIC_Megamorphic,110,4304
+block_count,LoadIC_Megamorphic,111,2260
+block_count,LoadIC_Megamorphic,112,1487
+block_count,LoadIC_Megamorphic,113,1480
+block_count,LoadIC_Megamorphic,114,685
block_count,LoadIC_Megamorphic,115,9
block_count,LoadIC_Megamorphic,116,9
block_count,LoadIC_Megamorphic,117,9
@@ -23052,7 +23067,7 @@
block_count,LoadIC_Megamorphic,141,0
block_count,LoadIC_Megamorphic,142,0
block_count,LoadIC_Megamorphic,143,0
-block_count,LoadIC_Megamorphic,144,677
+block_count,LoadIC_Megamorphic,144,676
block_count,LoadIC_Megamorphic,145,794
block_count,LoadIC_Megamorphic,146,7
block_count,LoadIC_Megamorphic,147,7
@@ -23111,19 +23126,19 @@
block_count,LoadIC_Megamorphic,200,0
block_count,LoadIC_Megamorphic,201,7
block_count,LoadIC_Megamorphic,202,773
-block_count,LoadIC_Megamorphic,203,2045
-block_count,LoadIC_Megamorphic,204,5666
-block_count,LoadIC_Megamorphic,205,5666
+block_count,LoadIC_Megamorphic,203,2043
+block_count,LoadIC_Megamorphic,204,5669
+block_count,LoadIC_Megamorphic,205,5669
block_count,LoadIC_Megamorphic,206,301
-block_count,LoadIC_Megamorphic,207,5365
-block_count,LoadIC_Megamorphic,208,5666
-block_count,LoadIC_Megamorphic,209,5643
-block_count,LoadIC_Megamorphic,210,22
-block_count,LoadIC_Megamorphic,211,22
-block_count,LoadIC_Megamorphic,212,22
+block_count,LoadIC_Megamorphic,207,5367
+block_count,LoadIC_Megamorphic,208,5669
+block_count,LoadIC_Megamorphic,209,5646
+block_count,LoadIC_Megamorphic,210,23
+block_count,LoadIC_Megamorphic,211,23
+block_count,LoadIC_Megamorphic,212,23
block_count,LoadIC_Megamorphic,213,0
-block_count,LoadIC_Megamorphic,214,22
-block_count,LoadIC_Megamorphic,215,22
+block_count,LoadIC_Megamorphic,214,23
+block_count,LoadIC_Megamorphic,215,23
block_count,LoadIC_Megamorphic,216,0
block_count,LoadIC_Megamorphic,217,0
block_count,LoadIC_Megamorphic,218,0
@@ -23166,10 +23181,10 @@
block_count,LoadIC_Megamorphic,255,0
block_count,LoadIC_Megamorphic,256,0
block_count,LoadIC_Megamorphic,257,12
-block_count,LoadIC_Noninlined,0,2
-block_count,LoadIC_Noninlined,1,2
+block_count,LoadIC_Noninlined,0,3
+block_count,LoadIC_Noninlined,1,3
block_count,LoadIC_Noninlined,2,0
-block_count,LoadIC_Noninlined,3,2
+block_count,LoadIC_Noninlined,3,3
block_count,LoadIC_Noninlined,4,1
block_count,LoadIC_Noninlined,5,1
block_count,LoadIC_Noninlined,6,0
@@ -23183,10 +23198,10 @@
block_count,LoadIC_Noninlined,14,0
block_count,LoadIC_Noninlined,15,0
block_count,LoadIC_Noninlined,16,0
-block_count,LoadIC_Noninlined,17,1
-block_count,LoadIC_Noninlined,18,1
+block_count,LoadIC_Noninlined,17,2
+block_count,LoadIC_Noninlined,18,2
block_count,LoadIC_Noninlined,19,0
-block_count,LoadIC_Noninlined,20,1
+block_count,LoadIC_Noninlined,20,2
block_count,LoadIC_Noninlined,21,1
block_count,LoadIC_Noninlined,22,1
block_count,LoadIC_Noninlined,23,0
@@ -23291,7 +23306,7 @@
block_count,LoadIC_Noninlined,122,0
block_count,LoadIC_Noninlined,123,1
block_count,LoadIC_Noninlined,124,1
-block_count,LoadIC_Noninlined,125,0
+block_count,LoadIC_Noninlined,125,1
block_count,LoadIC_Noninlined,126,0
block_count,LoadIC_Noninlined,127,0
block_count,LoadIC_Noninlined,128,0
@@ -23442,14 +23457,14 @@
block_count,LoadICTrampoline,1,274
block_count,LoadICTrampoline,2,0
block_count,LoadICTrampoline,3,274
-block_count,LoadICBaseline,0,1955
-block_count,LoadICBaseline,1,1954
+block_count,LoadICBaseline,0,1957
+block_count,LoadICBaseline,1,1957
block_count,LoadICBaseline,2,0
-block_count,LoadICBaseline,3,1955
-block_count,LoadICBaseline,4,477
+block_count,LoadICBaseline,3,1957
+block_count,LoadICBaseline,4,481
block_count,LoadICBaseline,5,0
-block_count,LoadICBaseline,6,476
-block_count,LoadICBaseline,7,127
+block_count,LoadICBaseline,6,480
+block_count,LoadICBaseline,7,129
block_count,LoadICBaseline,8,1
block_count,LoadICBaseline,9,1
block_count,LoadICBaseline,10,0
@@ -23463,36 +23478,36 @@
block_count,LoadICBaseline,18,0
block_count,LoadICBaseline,19,0
block_count,LoadICBaseline,20,0
-block_count,LoadICBaseline,21,125
-block_count,LoadICBaseline,22,125
+block_count,LoadICBaseline,21,127
+block_count,LoadICBaseline,22,127
block_count,LoadICBaseline,23,0
-block_count,LoadICBaseline,24,125
-block_count,LoadICBaseline,25,107
-block_count,LoadICBaseline,26,106
+block_count,LoadICBaseline,24,127
+block_count,LoadICBaseline,25,104
+block_count,LoadICBaseline,26,103
block_count,LoadICBaseline,27,0
-block_count,LoadICBaseline,28,18
-block_count,LoadICBaseline,29,18
-block_count,LoadICBaseline,30,17
-block_count,LoadICBaseline,31,17
+block_count,LoadICBaseline,28,23
+block_count,LoadICBaseline,29,23
+block_count,LoadICBaseline,30,22
+block_count,LoadICBaseline,31,22
block_count,LoadICBaseline,32,0
block_count,LoadICBaseline,33,1
-block_count,LoadICBaseline,34,349
-block_count,LoadICBaseline,35,627
-block_count,LoadICBaseline,36,278
-block_count,LoadICBaseline,37,278
+block_count,LoadICBaseline,34,351
+block_count,LoadICBaseline,35,632
+block_count,LoadICBaseline,36,281
+block_count,LoadICBaseline,37,281
block_count,LoadICBaseline,38,0
-block_count,LoadICBaseline,39,348
-block_count,LoadICBaseline,40,1477
-block_count,LoadICBaseline,41,1951
-block_count,LoadICBaseline,42,614
-block_count,LoadICBaseline,43,609
-block_count,LoadICBaseline,44,574
-block_count,LoadICBaseline,45,574
-block_count,LoadICBaseline,46,574
+block_count,LoadICBaseline,39,351
+block_count,LoadICBaseline,40,1476
+block_count,LoadICBaseline,41,1953
+block_count,LoadICBaseline,42,615
+block_count,LoadICBaseline,43,611
+block_count,LoadICBaseline,44,578
+block_count,LoadICBaseline,45,578
+block_count,LoadICBaseline,46,578
block_count,LoadICBaseline,47,0
block_count,LoadICBaseline,48,0
-block_count,LoadICBaseline,49,574
-block_count,LoadICBaseline,50,54
+block_count,LoadICBaseline,49,578
+block_count,LoadICBaseline,50,52
block_count,LoadICBaseline,51,10
block_count,LoadICBaseline,52,10
block_count,LoadICBaseline,53,0
@@ -23549,7 +23564,7 @@
block_count,LoadICBaseline,104,0
block_count,LoadICBaseline,105,0
block_count,LoadICBaseline,106,0
-block_count,LoadICBaseline,107,44
+block_count,LoadICBaseline,107,41
block_count,LoadICBaseline,108,0
block_count,LoadICBaseline,109,0
block_count,LoadICBaseline,110,0
@@ -23561,26 +23576,26 @@
block_count,LoadICBaseline,116,0
block_count,LoadICBaseline,117,0
block_count,LoadICBaseline,118,0
-block_count,LoadICBaseline,119,44
-block_count,LoadICBaseline,120,520
-block_count,LoadICBaseline,121,574
-block_count,LoadICBaseline,122,574
-block_count,LoadICBaseline,123,543
-block_count,LoadICBaseline,124,543
+block_count,LoadICBaseline,119,41
+block_count,LoadICBaseline,120,526
+block_count,LoadICBaseline,121,578
+block_count,LoadICBaseline,122,578
+block_count,LoadICBaseline,123,547
+block_count,LoadICBaseline,124,547
block_count,LoadICBaseline,125,0
block_count,LoadICBaseline,126,30
-block_count,LoadICBaseline,127,574
+block_count,LoadICBaseline,127,578
block_count,LoadICBaseline,128,0
-block_count,LoadICBaseline,129,34
+block_count,LoadICBaseline,129,32
block_count,LoadICBaseline,130,4
block_count,LoadICBaseline,131,4
block_count,LoadICBaseline,132,0
-block_count,LoadICBaseline,133,1336
-block_count,LoadICBaseline,134,1911
-block_count,LoadICBaseline,135,600
-block_count,LoadICBaseline,136,156
-block_count,LoadICBaseline,137,126
-block_count,LoadICBaseline,138,100
+block_count,LoadICBaseline,133,1338
+block_count,LoadICBaseline,134,1916
+block_count,LoadICBaseline,135,604
+block_count,LoadICBaseline,136,163
+block_count,LoadICBaseline,137,133
+block_count,LoadICBaseline,138,107
block_count,LoadICBaseline,139,1
block_count,LoadICBaseline,140,0
block_count,LoadICBaseline,141,0
@@ -23612,7 +23627,7 @@
block_count,LoadICBaseline,167,0
block_count,LoadICBaseline,168,0
block_count,LoadICBaseline,169,0
-block_count,LoadICBaseline,170,99
+block_count,LoadICBaseline,170,106
block_count,LoadICBaseline,171,25
block_count,LoadICBaseline,172,25
block_count,LoadICBaseline,173,0
@@ -23670,19 +23685,19 @@
block_count,LoadICBaseline,225,0
block_count,LoadICBaseline,226,25
block_count,LoadICBaseline,227,30
-block_count,LoadICBaseline,228,443
-block_count,LoadICBaseline,229,1310
-block_count,LoadICBaseline,230,1310
-block_count,LoadICBaseline,231,371
-block_count,LoadICBaseline,232,939
-block_count,LoadICBaseline,233,1310
-block_count,LoadICBaseline,234,1259
-block_count,LoadICBaseline,235,50
-block_count,LoadICBaseline,236,50
-block_count,LoadICBaseline,237,50
+block_count,LoadICBaseline,228,441
+block_count,LoadICBaseline,229,1311
+block_count,LoadICBaseline,230,1311
+block_count,LoadICBaseline,231,379
+block_count,LoadICBaseline,232,932
+block_count,LoadICBaseline,233,1311
+block_count,LoadICBaseline,234,1262
+block_count,LoadICBaseline,235,49
+block_count,LoadICBaseline,236,49
+block_count,LoadICBaseline,237,49
block_count,LoadICBaseline,238,0
-block_count,LoadICBaseline,239,50
-block_count,LoadICBaseline,240,50
+block_count,LoadICBaseline,239,49
+block_count,LoadICBaseline,240,49
block_count,LoadICBaseline,241,0
block_count,LoadICBaseline,242,0
block_count,LoadICBaseline,243,0
@@ -23725,11 +23740,11 @@
block_count,LoadICBaseline,280,0
block_count,LoadICBaseline,281,0
block_count,LoadICBaseline,282,3
-block_count,LoadICTrampoline_Megamorphic,0,5642
-block_count,LoadICTrampoline_Megamorphic,1,5642
+block_count,LoadICTrampoline_Megamorphic,0,5681
+block_count,LoadICTrampoline_Megamorphic,1,5681
block_count,LoadICTrampoline_Megamorphic,2,0
-block_count,LoadICTrampoline_Megamorphic,3,5642
-block_count,LoadSuperIC,0,1
+block_count,LoadICTrampoline_Megamorphic,3,5681
+block_count,LoadSuperIC,0,2
block_count,LoadSuperIC,1,1
block_count,LoadSuperIC,2,1
block_count,LoadSuperIC,3,0
@@ -24309,15 +24324,15 @@
block_count,LoadSuperIC,577,0
block_count,LoadSuperIC,578,0
block_count,LoadSuperICBaseline,0,1
-block_count,KeyedLoadIC,0,352
-block_count,KeyedLoadIC,1,352
+block_count,KeyedLoadIC,0,349
+block_count,KeyedLoadIC,1,349
block_count,KeyedLoadIC,2,0
-block_count,KeyedLoadIC,3,352
-block_count,KeyedLoadIC,4,352
-block_count,KeyedLoadIC,5,349
-block_count,KeyedLoadIC,6,36
+block_count,KeyedLoadIC,3,349
+block_count,KeyedLoadIC,4,349
+block_count,KeyedLoadIC,5,346
+block_count,KeyedLoadIC,6,35
block_count,KeyedLoadIC,7,0
-block_count,KeyedLoadIC,8,36
+block_count,KeyedLoadIC,8,35
block_count,KeyedLoadIC,9,21
block_count,KeyedLoadIC,10,1
block_count,KeyedLoadIC,11,0
@@ -24358,15 +24373,15 @@
block_count,KeyedLoadIC,46,0
block_count,KeyedLoadIC,47,0
block_count,KeyedLoadIC,48,0
-block_count,KeyedLoadIC,49,19
-block_count,KeyedLoadIC,50,15
-block_count,KeyedLoadIC,51,30
-block_count,KeyedLoadIC,52,15
-block_count,KeyedLoadIC,53,15
+block_count,KeyedLoadIC,49,20
+block_count,KeyedLoadIC,50,14
+block_count,KeyedLoadIC,51,27
+block_count,KeyedLoadIC,52,13
+block_count,KeyedLoadIC,53,13
block_count,KeyedLoadIC,54,0
-block_count,KeyedLoadIC,55,15
-block_count,KeyedLoadIC,56,313
-block_count,KeyedLoadIC,57,328
+block_count,KeyedLoadIC,55,14
+block_count,KeyedLoadIC,56,310
+block_count,KeyedLoadIC,57,324
block_count,KeyedLoadIC,58,2
block_count,KeyedLoadIC,59,2
block_count,KeyedLoadIC,60,0
@@ -24458,10 +24473,10 @@
block_count,KeyedLoadIC,146,0
block_count,KeyedLoadIC,147,0
block_count,KeyedLoadIC,148,0
-block_count,KeyedLoadIC,149,326
-block_count,KeyedLoadIC,150,326
-block_count,KeyedLoadIC,151,4
-block_count,KeyedLoadIC,152,3
+block_count,KeyedLoadIC,149,322
+block_count,KeyedLoadIC,150,322
+block_count,KeyedLoadIC,151,2
+block_count,KeyedLoadIC,152,2
block_count,KeyedLoadIC,153,0
block_count,KeyedLoadIC,154,0
block_count,KeyedLoadIC,155,0
@@ -24640,7 +24655,7 @@
block_count,KeyedLoadIC,328,0
block_count,KeyedLoadIC,329,0
block_count,KeyedLoadIC,330,0
-block_count,KeyedLoadIC,331,3
+block_count,KeyedLoadIC,331,2
block_count,KeyedLoadIC,332,0
block_count,KeyedLoadIC,333,0
block_count,KeyedLoadIC,334,0
@@ -24648,19 +24663,19 @@
block_count,KeyedLoadIC,336,0
block_count,KeyedLoadIC,337,0
block_count,KeyedLoadIC,338,0
-block_count,KeyedLoadIC,339,3
-block_count,KeyedLoadIC,340,3
-block_count,KeyedLoadIC,341,3
-block_count,KeyedLoadIC,342,6
-block_count,KeyedLoadIC,343,2
-block_count,KeyedLoadIC,344,2
+block_count,KeyedLoadIC,339,2
+block_count,KeyedLoadIC,340,2
+block_count,KeyedLoadIC,341,2
+block_count,KeyedLoadIC,342,3
+block_count,KeyedLoadIC,343,1
+block_count,KeyedLoadIC,344,1
block_count,KeyedLoadIC,345,0
block_count,KeyedLoadIC,346,0
block_count,KeyedLoadIC,347,0
-block_count,KeyedLoadIC,348,2
-block_count,KeyedLoadIC,349,2
+block_count,KeyedLoadIC,348,1
+block_count,KeyedLoadIC,349,1
block_count,KeyedLoadIC,350,0
-block_count,KeyedLoadIC,351,2
+block_count,KeyedLoadIC,351,1
block_count,KeyedLoadIC,352,0
block_count,KeyedLoadIC,353,0
block_count,KeyedLoadIC,354,0
@@ -24673,16 +24688,16 @@
block_count,KeyedLoadIC,361,0
block_count,KeyedLoadIC,362,0
block_count,KeyedLoadIC,363,0
-block_count,KeyedLoadIC,364,3
-block_count,KeyedLoadIC,365,3
+block_count,KeyedLoadIC,364,2
+block_count,KeyedLoadIC,365,2
block_count,KeyedLoadIC,366,0
-block_count,KeyedLoadIC,367,3
-block_count,KeyedLoadIC,368,3
+block_count,KeyedLoadIC,367,2
+block_count,KeyedLoadIC,368,2
block_count,KeyedLoadIC,369,0
block_count,KeyedLoadIC,370,0
block_count,KeyedLoadIC,371,0
block_count,KeyedLoadIC,372,0
-block_count,KeyedLoadIC,373,3
+block_count,KeyedLoadIC,373,2
block_count,KeyedLoadIC,374,0
block_count,KeyedLoadIC,375,0
block_count,KeyedLoadIC,376,0
@@ -24691,8 +24706,8 @@
block_count,KeyedLoadIC,379,0
block_count,KeyedLoadIC,380,0
block_count,KeyedLoadIC,381,0
-block_count,KeyedLoadIC,382,322
-block_count,KeyedLoadIC,383,322
+block_count,KeyedLoadIC,382,320
+block_count,KeyedLoadIC,383,320
block_count,KeyedLoadIC,384,0
block_count,KeyedLoadIC,385,0
block_count,KeyedLoadIC,386,0
@@ -24705,24 +24720,24 @@
block_count,KeyedLoadIC,393,0
block_count,KeyedLoadIC,394,0
block_count,KeyedLoadIC,395,0
-block_count,KeyedLoadIC,396,322
-block_count,KeyedLoadIC,397,322
-block_count,KeyedLoadIC,398,322
-block_count,KeyedLoadIC,399,187
+block_count,KeyedLoadIC,396,320
+block_count,KeyedLoadIC,397,320
+block_count,KeyedLoadIC,398,320
+block_count,KeyedLoadIC,399,186
block_count,KeyedLoadIC,400,5
-block_count,KeyedLoadIC,401,182
-block_count,KeyedLoadIC,402,187
+block_count,KeyedLoadIC,401,181
+block_count,KeyedLoadIC,402,186
block_count,KeyedLoadIC,403,0
-block_count,KeyedLoadIC,404,187
+block_count,KeyedLoadIC,404,185
block_count,KeyedLoadIC,405,0
-block_count,KeyedLoadIC,406,11
-block_count,KeyedLoadIC,407,103
+block_count,KeyedLoadIC,406,10
+block_count,KeyedLoadIC,407,104
block_count,KeyedLoadIC,408,0
block_count,KeyedLoadIC,409,0
block_count,KeyedLoadIC,410,0
block_count,KeyedLoadIC,411,0
-block_count,KeyedLoadIC,412,115
-block_count,KeyedLoadIC,413,7
+block_count,KeyedLoadIC,412,114
+block_count,KeyedLoadIC,413,6
block_count,KeyedLoadIC,414,38
block_count,KeyedLoadIC,415,0
block_count,KeyedLoadIC,416,0
@@ -24734,14 +24749,14 @@
block_count,KeyedLoadIC,422,0
block_count,KeyedLoadIC,423,10
block_count,KeyedLoadIC,424,10
-block_count,KeyedLoadIC,425,15
-block_count,KeyedLoadIC,426,15
+block_count,KeyedLoadIC,425,14
+block_count,KeyedLoadIC,426,14
block_count,KeyedLoadIC,427,0
-block_count,KeyedLoadIC,428,15
-block_count,KeyedLoadIC,429,15
+block_count,KeyedLoadIC,428,14
+block_count,KeyedLoadIC,429,14
block_count,KeyedLoadIC,430,0
-block_count,KeyedLoadIC,431,135
-block_count,KeyedLoadIC,432,135
+block_count,KeyedLoadIC,431,134
+block_count,KeyedLoadIC,432,134
block_count,KeyedLoadIC,433,0
block_count,KeyedLoadIC,434,0
block_count,KeyedLoadIC,435,0
@@ -24764,18 +24779,18 @@
block_count,KeyedLoadIC,452,0
block_count,KeyedLoadIC,453,0
block_count,KeyedLoadIC,454,0
-block_count,KeyedLoadIC,455,135
-block_count,KeyedLoadIC,456,135
-block_count,KeyedLoadIC,457,135
+block_count,KeyedLoadIC,455,134
+block_count,KeyedLoadIC,456,134
+block_count,KeyedLoadIC,457,134
block_count,KeyedLoadIC,458,0
-block_count,KeyedLoadIC,459,135
+block_count,KeyedLoadIC,459,134
block_count,KeyedLoadIC,460,0
-block_count,KeyedLoadIC,461,16
+block_count,KeyedLoadIC,461,15
block_count,KeyedLoadIC,462,0
block_count,KeyedLoadIC,463,0
block_count,KeyedLoadIC,464,3
block_count,KeyedLoadIC,465,0
-block_count,KeyedLoadIC,466,0
+block_count,KeyedLoadIC,466,1
block_count,KeyedLoadIC,467,93
block_count,KeyedLoadIC,468,20
block_count,KeyedLoadIC,469,0
@@ -24815,8 +24830,8 @@
block_count,KeyedLoadIC,503,0
block_count,KeyedLoadIC,504,0
block_count,KeyedLoadIC,505,0
-block_count,KeyedLoadIC,506,0
-block_count,KeyedLoadIC,507,0
+block_count,KeyedLoadIC,506,1
+block_count,KeyedLoadIC,507,1
block_count,KeyedLoadIC,508,0
block_count,KeyedLoadIC,509,0
block_count,KeyedLoadIC,510,0
@@ -24875,23 +24890,23 @@
block_count,KeyedLoadIC,563,0
block_count,KeyedLoadIC,564,0
block_count,KeyedLoadIC,565,1
-block_count,KeyedLoadIC,566,1
-block_count,KeyedLoadIC,567,1
+block_count,KeyedLoadIC,566,0
+block_count,KeyedLoadIC,567,0
block_count,KeyedLoadIC,568,0
block_count,KeyedLoadIC,569,0
block_count,KeyedLoadIC,570,0
block_count,KeyedLoadIC,571,0
block_count,KeyedLoadIC,572,0
-block_count,KeyedLoadIC,573,1
+block_count,KeyedLoadIC,573,0
block_count,KeyedLoadIC,574,0
block_count,KeyedLoadIC,575,0
block_count,KeyedLoadIC,576,0
-block_count,KeyedLoadIC,577,1
-block_count,KeyedLoadIC,578,1
+block_count,KeyedLoadIC,577,0
+block_count,KeyedLoadIC,578,0
block_count,KeyedLoadIC,579,0
block_count,KeyedLoadIC,580,0
block_count,KeyedLoadIC,581,2
-block_count,KeyedLoadIC,582,22
+block_count,KeyedLoadIC,582,23
block_count,KeyedLoadIC,583,0
block_count,KeyedLoadIC,584,0
block_count,EnumeratedKeyedLoadIC,0,4
@@ -25509,13 +25524,13 @@
block_count,KeyedLoadIC_Megamorphic,1,2357
block_count,KeyedLoadIC_Megamorphic,2,2357
block_count,KeyedLoadIC_Megamorphic,3,2039
-block_count,KeyedLoadIC_Megamorphic,4,2036
+block_count,KeyedLoadIC_Megamorphic,4,2035
block_count,KeyedLoadIC_Megamorphic,5,3
block_count,KeyedLoadIC_Megamorphic,6,0
block_count,KeyedLoadIC_Megamorphic,7,3
block_count,KeyedLoadIC_Megamorphic,8,0
block_count,KeyedLoadIC_Megamorphic,9,3
-block_count,KeyedLoadIC_Megamorphic,10,2036
+block_count,KeyedLoadIC_Megamorphic,10,2035
block_count,KeyedLoadIC_Megamorphic,11,2034
block_count,KeyedLoadIC_Megamorphic,12,47
block_count,KeyedLoadIC_Megamorphic,13,42
@@ -25524,14 +25539,14 @@
block_count,KeyedLoadIC_Megamorphic,16,1987
block_count,KeyedLoadIC_Megamorphic,17,1891
block_count,KeyedLoadIC_Megamorphic,18,1891
-block_count,KeyedLoadIC_Megamorphic,19,1747
+block_count,KeyedLoadIC_Megamorphic,19,1756
block_count,KeyedLoadIC_Megamorphic,20,0
block_count,KeyedLoadIC_Megamorphic,21,0
block_count,KeyedLoadIC_Megamorphic,22,0
-block_count,KeyedLoadIC_Megamorphic,23,1747
-block_count,KeyedLoadIC_Megamorphic,24,1650
+block_count,KeyedLoadIC_Megamorphic,23,1756
+block_count,KeyedLoadIC_Megamorphic,24,1659
block_count,KeyedLoadIC_Megamorphic,25,97
-block_count,KeyedLoadIC_Megamorphic,26,143
+block_count,KeyedLoadIC_Megamorphic,26,134
block_count,KeyedLoadIC_Megamorphic,27,0
block_count,KeyedLoadIC_Megamorphic,28,95
block_count,KeyedLoadIC_Megamorphic,29,42
@@ -25572,7 +25587,7 @@
block_count,KeyedLoadIC_Megamorphic,64,0
block_count,KeyedLoadIC_Megamorphic,65,139
block_count,KeyedLoadIC_Megamorphic,66,139
-block_count,KeyedLoadIC_Megamorphic,67,51
+block_count,KeyedLoadIC_Megamorphic,67,52
block_count,KeyedLoadIC_Megamorphic,68,51
block_count,KeyedLoadIC_Megamorphic,69,6
block_count,KeyedLoadIC_Megamorphic,70,6
@@ -25910,7 +25925,7 @@
block_count,KeyedLoadIC_Megamorphic,402,0
block_count,KeyedLoadIC_Megamorphic,403,58
block_count,KeyedLoadIC_Megamorphic,404,274
-block_count,KeyedLoadIC_Megamorphic,405,47
+block_count,KeyedLoadIC_Megamorphic,405,46
block_count,KeyedLoadIC_Megamorphic,406,227
block_count,KeyedLoadIC_Megamorphic,407,47
block_count,KeyedLoadIC_Megamorphic,408,0
@@ -25923,13 +25938,13 @@
block_count,KeyedLoadIC_Megamorphic,415,807
block_count,KeyedLoadIC_Megamorphic,416,0
block_count,KeyedLoadIC_Megamorphic,417,807
-block_count,KeyedLoadIC_Megamorphic,418,660
-block_count,KeyedLoadIC_Megamorphic,419,657
+block_count,KeyedLoadIC_Megamorphic,418,670
+block_count,KeyedLoadIC_Megamorphic,419,668
block_count,KeyedLoadIC_Megamorphic,420,2
-block_count,KeyedLoadIC_Megamorphic,421,146
-block_count,KeyedLoadIC_Megamorphic,422,149
-block_count,KeyedLoadIC_Megamorphic,423,128
-block_count,KeyedLoadIC_Megamorphic,424,128
+block_count,KeyedLoadIC_Megamorphic,421,136
+block_count,KeyedLoadIC_Megamorphic,422,139
+block_count,KeyedLoadIC_Megamorphic,423,118
+block_count,KeyedLoadIC_Megamorphic,424,118
block_count,KeyedLoadIC_Megamorphic,425,0
block_count,KeyedLoadIC_Megamorphic,426,20
block_count,KeyedLoadIC_Megamorphic,427,786
@@ -26593,18 +26608,18 @@
block_count,KeyedLoadICTrampoline,1,1
block_count,KeyedLoadICTrampoline,2,0
block_count,KeyedLoadICTrampoline,3,1
-block_count,KeyedLoadICBaseline,0,328
+block_count,KeyedLoadICBaseline,0,324
block_count,EnumeratedKeyedLoadICBaseline,0,3
block_count,KeyedLoadICTrampoline_Megamorphic,0,1035
block_count,KeyedLoadICTrampoline_Megamorphic,1,1035
block_count,KeyedLoadICTrampoline_Megamorphic,2,0
block_count,KeyedLoadICTrampoline_Megamorphic,3,1035
-block_count,StoreGlobalIC,0,772
-block_count,StoreGlobalIC,1,772
-block_count,StoreGlobalIC,2,772
-block_count,StoreGlobalIC,3,772
-block_count,StoreGlobalIC,4,772
-block_count,StoreGlobalIC,5,772
+block_count,StoreGlobalIC,0,553
+block_count,StoreGlobalIC,1,553
+block_count,StoreGlobalIC,2,553
+block_count,StoreGlobalIC,3,553
+block_count,StoreGlobalIC,4,553
+block_count,StoreGlobalIC,5,553
block_count,StoreGlobalIC,6,1
block_count,StoreGlobalIC,7,0
block_count,StoreGlobalIC,8,0
@@ -26614,7 +26629,7 @@
block_count,StoreGlobalIC,12,1
block_count,StoreGlobalIC,13,0
block_count,StoreGlobalIC,14,1
-block_count,StoreGlobalIC,15,770
+block_count,StoreGlobalIC,15,551
block_count,StoreGlobalIC,16,0
block_count,StoreGlobalIC,17,0
block_count,StoreGlobalIC,18,0
@@ -27058,10 +27073,10 @@
block_count,StoreGlobalIC,456,0
block_count,StoreGlobalIC,457,0
block_count,StoreGlobalIC,458,0
-block_count,StoreGlobalICTrampoline,0,279
-block_count,StoreGlobalICTrampoline,1,279
+block_count,StoreGlobalICTrampoline,0,0
+block_count,StoreGlobalICTrampoline,1,0
block_count,StoreGlobalICTrampoline,2,0
-block_count,StoreGlobalICTrampoline,3,279
+block_count,StoreGlobalICTrampoline,3,0
block_count,StoreGlobalICBaseline,0,1
block_count,StoreIC,0,290
block_count,StoreIC,1,290
@@ -27069,17 +27084,17 @@
block_count,StoreIC,3,290
block_count,StoreIC,4,290
block_count,StoreIC,5,284
-block_count,StoreIC,6,114
+block_count,StoreIC,6,116
block_count,StoreIC,7,0
-block_count,StoreIC,8,114
-block_count,StoreIC,9,39
+block_count,StoreIC,8,116
+block_count,StoreIC,9,40
block_count,StoreIC,10,0
-block_count,StoreIC,11,38
-block_count,StoreIC,12,38
+block_count,StoreIC,11,40
+block_count,StoreIC,12,40
block_count,StoreIC,13,0
-block_count,StoreIC,14,38
-block_count,StoreIC,15,37
-block_count,StoreIC,16,37
+block_count,StoreIC,14,40
+block_count,StoreIC,15,38
+block_count,StoreIC,16,38
block_count,StoreIC,17,0
block_count,StoreIC,18,1
block_count,StoreIC,19,1
@@ -27088,12 +27103,12 @@
block_count,StoreIC,22,0
block_count,StoreIC,23,0
block_count,StoreIC,24,75
-block_count,StoreIC,25,117
-block_count,StoreIC,26,42
-block_count,StoreIC,27,42
+block_count,StoreIC,25,119
+block_count,StoreIC,26,44
+block_count,StoreIC,27,43
block_count,StoreIC,28,0
block_count,StoreIC,29,75
-block_count,StoreIC,30,170
+block_count,StoreIC,30,168
block_count,StoreIC,31,283
block_count,StoreIC,32,105
block_count,StoreIC,33,5
@@ -27136,7 +27151,7 @@
block_count,StoreIC,70,0
block_count,StoreIC,71,0
block_count,StoreIC,72,1
-block_count,StoreIC,73,1
+block_count,StoreIC,73,2
block_count,StoreIC,74,1
block_count,StoreIC,75,1
block_count,StoreIC,76,1
@@ -27225,8 +27240,8 @@
block_count,StoreIC,159,0
block_count,StoreIC,160,0
block_count,StoreIC,161,0
-block_count,StoreIC,162,99
-block_count,StoreIC,163,99
+block_count,StoreIC,162,100
+block_count,StoreIC,163,100
block_count,StoreIC,164,75
block_count,StoreIC,165,75
block_count,StoreIC,166,75
@@ -27244,12 +27259,12 @@
block_count,StoreIC,178,1
block_count,StoreIC,179,1
block_count,StoreIC,180,0
-block_count,StoreIC,181,61
-block_count,StoreIC,182,61
+block_count,StoreIC,181,62
+block_count,StoreIC,182,62
block_count,StoreIC,183,12
block_count,StoreIC,184,0
block_count,StoreIC,185,12
-block_count,StoreIC,186,48
+block_count,StoreIC,186,49
block_count,StoreIC,187,0
block_count,StoreIC,188,1
block_count,StoreIC,189,1
@@ -27260,7 +27275,7 @@
block_count,StoreIC,194,0
block_count,StoreIC,195,9
block_count,StoreIC,196,75
-block_count,StoreIC,197,15
+block_count,StoreIC,197,16
block_count,StoreIC,198,0
block_count,StoreIC,199,0
block_count,StoreIC,200,0
@@ -27268,11 +27283,11 @@
block_count,StoreIC,202,0
block_count,StoreIC,203,0
block_count,StoreIC,204,0
-block_count,StoreIC,205,15
-block_count,StoreIC,206,15
-block_count,StoreIC,207,15
+block_count,StoreIC,205,16
+block_count,StoreIC,206,16
+block_count,StoreIC,207,16
block_count,StoreIC,208,0
-block_count,StoreIC,209,15
+block_count,StoreIC,209,16
block_count,StoreIC,210,7
block_count,StoreIC,211,7
block_count,StoreIC,212,0
@@ -27302,10 +27317,10 @@
block_count,StoreIC,236,0
block_count,StoreIC,237,1
block_count,StoreIC,238,7
-block_count,StoreIC,239,7
-block_count,StoreIC,240,15
+block_count,StoreIC,239,8
+block_count,StoreIC,240,16
block_count,StoreIC,241,59
-block_count,StoreIC,242,58
+block_count,StoreIC,242,57
block_count,StoreIC,243,1
block_count,StoreIC,244,1
block_count,StoreIC,245,0
@@ -27315,9 +27330,9 @@
block_count,StoreIC,249,1
block_count,StoreIC,250,0
block_count,StoreIC,251,0
-block_count,StoreIC,252,24
-block_count,StoreIC,253,24
-block_count,StoreIC,254,24
+block_count,StoreIC,252,25
+block_count,StoreIC,253,25
+block_count,StoreIC,254,25
block_count,StoreIC,255,0
block_count,StoreIC,256,0
block_count,StoreIC,257,0
@@ -27333,7 +27348,7 @@
block_count,StoreIC,267,0
block_count,StoreIC,268,0
block_count,StoreIC,269,0
-block_count,StoreIC,270,178
+block_count,StoreIC,270,177
block_count,StoreIC,271,13
block_count,StoreIC,272,13
block_count,StoreIC,273,13
@@ -27360,9 +27375,9 @@
block_count,StoreIC,294,0
block_count,StoreIC,295,0
block_count,StoreIC,296,0
-block_count,StoreIC,297,164
-block_count,StoreIC,298,145
-block_count,StoreIC,299,145
+block_count,StoreIC,297,163
+block_count,StoreIC,298,144
+block_count,StoreIC,299,144
block_count,StoreIC,300,11
block_count,StoreIC,301,10
block_count,StoreIC,302,10
@@ -27372,7 +27387,7 @@
block_count,StoreIC,306,0
block_count,StoreIC,307,11
block_count,StoreIC,308,1
-block_count,StoreIC,309,10
+block_count,StoreIC,309,9
block_count,StoreIC,310,11
block_count,StoreIC,311,11
block_count,StoreIC,312,0
@@ -27388,30 +27403,30 @@
block_count,StoreIC,322,0
block_count,StoreIC,323,0
block_count,StoreIC,324,0
-block_count,StoreIC,325,68
-block_count,StoreIC,326,68
-block_count,StoreIC,327,68
+block_count,StoreIC,325,71
+block_count,StoreIC,326,71
+block_count,StoreIC,327,71
block_count,StoreIC,328,3
block_count,StoreIC,329,0
block_count,StoreIC,330,3
-block_count,StoreIC,331,65
+block_count,StoreIC,331,67
block_count,StoreIC,332,0
-block_count,StoreIC,333,68
+block_count,StoreIC,333,71
block_count,StoreIC,334,16
-block_count,StoreIC,335,52
-block_count,StoreIC,336,68
-block_count,StoreIC,337,68
+block_count,StoreIC,335,54
+block_count,StoreIC,336,71
+block_count,StoreIC,337,71
block_count,StoreIC,338,0
block_count,StoreIC,339,0
block_count,StoreIC,340,0
block_count,StoreIC,341,0
-block_count,StoreIC,342,62
+block_count,StoreIC,342,59
block_count,StoreIC,343,0
-block_count,StoreIC,344,62
-block_count,StoreIC,345,9
-block_count,StoreIC,346,53
-block_count,StoreIC,347,62
-block_count,StoreIC,348,62
+block_count,StoreIC,344,59
+block_count,StoreIC,345,8
+block_count,StoreIC,346,50
+block_count,StoreIC,347,59
+block_count,StoreIC,348,59
block_count,StoreIC,349,0
block_count,StoreIC,350,0
block_count,StoreIC,351,0
@@ -27445,17 +27460,17 @@
block_count,StoreIC_Megamorphic,4,1496
block_count,StoreIC_Megamorphic,5,0
block_count,StoreIC_Megamorphic,6,1496
-block_count,StoreIC_Megamorphic,7,1370
-block_count,StoreIC_Megamorphic,8,1357
-block_count,StoreIC_Megamorphic,9,13
-block_count,StoreIC_Megamorphic,10,125
-block_count,StoreIC_Megamorphic,11,138
-block_count,StoreIC_Megamorphic,12,137
-block_count,StoreIC_Megamorphic,13,135
+block_count,StoreIC_Megamorphic,7,1335
+block_count,StoreIC_Megamorphic,8,1267
+block_count,StoreIC_Megamorphic,9,67
+block_count,StoreIC_Megamorphic,10,161
+block_count,StoreIC_Megamorphic,11,229
+block_count,StoreIC_Megamorphic,12,228
+block_count,StoreIC_Megamorphic,13,226
block_count,StoreIC_Megamorphic,14,1
block_count,StoreIC_Megamorphic,15,0
-block_count,StoreIC_Megamorphic,16,1493
-block_count,StoreIC_Megamorphic,17,708
+block_count,StoreIC_Megamorphic,16,1494
+block_count,StoreIC_Megamorphic,17,711
block_count,StoreIC_Megamorphic,18,1
block_count,StoreIC_Megamorphic,19,1
block_count,StoreIC_Megamorphic,20,1
@@ -27585,31 +27600,31 @@
block_count,StoreIC_Megamorphic,144,0
block_count,StoreIC_Megamorphic,145,0
block_count,StoreIC_Megamorphic,146,0
-block_count,StoreIC_Megamorphic,147,706
-block_count,StoreIC_Megamorphic,148,706
-block_count,StoreIC_Megamorphic,149,528
-block_count,StoreIC_Megamorphic,150,528
-block_count,StoreIC_Megamorphic,151,528
-block_count,StoreIC_Megamorphic,152,528
+block_count,StoreIC_Megamorphic,147,709
+block_count,StoreIC_Megamorphic,148,709
+block_count,StoreIC_Megamorphic,149,531
+block_count,StoreIC_Megamorphic,150,531
+block_count,StoreIC_Megamorphic,151,531
+block_count,StoreIC_Megamorphic,152,531
block_count,StoreIC_Megamorphic,153,0
block_count,StoreIC_Megamorphic,154,0
-block_count,StoreIC_Megamorphic,155,528
-block_count,StoreIC_Megamorphic,156,528
+block_count,StoreIC_Megamorphic,155,531
+block_count,StoreIC_Megamorphic,156,531
block_count,StoreIC_Megamorphic,157,0
block_count,StoreIC_Megamorphic,158,0
block_count,StoreIC_Megamorphic,159,0
-block_count,StoreIC_Megamorphic,160,528
-block_count,StoreIC_Megamorphic,161,321
-block_count,StoreIC_Megamorphic,162,321
+block_count,StoreIC_Megamorphic,160,531
+block_count,StoreIC_Megamorphic,161,323
+block_count,StoreIC_Megamorphic,162,323
block_count,StoreIC_Megamorphic,163,0
block_count,StoreIC_Megamorphic,164,0
block_count,StoreIC_Megamorphic,165,0
-block_count,StoreIC_Megamorphic,166,321
-block_count,StoreIC_Megamorphic,167,321
-block_count,StoreIC_Megamorphic,168,82
+block_count,StoreIC_Megamorphic,166,323
+block_count,StoreIC_Megamorphic,167,323
+block_count,StoreIC_Megamorphic,168,83
block_count,StoreIC_Megamorphic,169,0
-block_count,StoreIC_Megamorphic,170,82
-block_count,StoreIC_Megamorphic,171,239
+block_count,StoreIC_Megamorphic,170,83
+block_count,StoreIC_Megamorphic,171,240
block_count,StoreIC_Megamorphic,172,0
block_count,StoreIC_Megamorphic,173,0
block_count,StoreIC_Megamorphic,174,0
@@ -27619,7 +27634,7 @@
block_count,StoreIC_Megamorphic,178,207
block_count,StoreIC_Megamorphic,179,0
block_count,StoreIC_Megamorphic,180,207
-block_count,StoreIC_Megamorphic,181,528
+block_count,StoreIC_Megamorphic,181,531
block_count,StoreIC_Megamorphic,182,31
block_count,StoreIC_Megamorphic,183,0
block_count,StoreIC_Megamorphic,184,0
@@ -27664,8 +27679,8 @@
block_count,StoreIC_Megamorphic,223,13
block_count,StoreIC_Megamorphic,224,17
block_count,StoreIC_Megamorphic,225,31
-block_count,StoreIC_Megamorphic,226,497
-block_count,StoreIC_Megamorphic,227,497
+block_count,StoreIC_Megamorphic,226,499
+block_count,StoreIC_Megamorphic,227,499
block_count,StoreIC_Megamorphic,228,0
block_count,StoreIC_Megamorphic,229,0
block_count,StoreIC_Megamorphic,230,0
@@ -27693,7 +27708,7 @@
block_count,StoreIC_Megamorphic,252,0
block_count,StoreIC_Megamorphic,253,0
block_count,StoreIC_Megamorphic,254,0
-block_count,StoreIC_Megamorphic,255,784
+block_count,StoreIC_Megamorphic,255,782
block_count,StoreIC_Megamorphic,256,0
block_count,StoreIC_Megamorphic,257,0
block_count,StoreIC_Megamorphic,258,0
@@ -27720,9 +27735,9 @@
block_count,StoreIC_Megamorphic,279,0
block_count,StoreIC_Megamorphic,280,0
block_count,StoreIC_Megamorphic,281,0
-block_count,StoreIC_Megamorphic,282,784
-block_count,StoreIC_Megamorphic,283,784
-block_count,StoreIC_Megamorphic,284,784
+block_count,StoreIC_Megamorphic,282,782
+block_count,StoreIC_Megamorphic,283,782
+block_count,StoreIC_Megamorphic,284,782
block_count,StoreIC_Megamorphic,285,6
block_count,StoreIC_Megamorphic,286,6
block_count,StoreIC_Megamorphic,287,6
@@ -27765,13 +27780,13 @@
block_count,StoreIC_Megamorphic,324,0
block_count,StoreIC_Megamorphic,325,0
block_count,StoreIC_Megamorphic,326,0
-block_count,StoreIC_Megamorphic,327,334
+block_count,StoreIC_Megamorphic,327,332
block_count,StoreIC_Megamorphic,328,0
-block_count,StoreIC_Megamorphic,329,334
+block_count,StoreIC_Megamorphic,329,332
block_count,StoreIC_Megamorphic,330,2
-block_count,StoreIC_Megamorphic,331,331
-block_count,StoreIC_Megamorphic,332,334
-block_count,StoreIC_Megamorphic,333,334
+block_count,StoreIC_Megamorphic,331,330
+block_count,StoreIC_Megamorphic,332,332
+block_count,StoreIC_Megamorphic,333,332
block_count,StoreIC_Megamorphic,334,0
block_count,StoreIC_Megamorphic,335,0
block_count,StoreIC_Megamorphic,336,0
@@ -27800,11 +27815,11 @@
block_count,StoreICTrampoline,1,12
block_count,StoreICTrampoline,2,0
block_count,StoreICTrampoline,3,12
-block_count,StoreICTrampoline_Megamorphic,0,702
-block_count,StoreICTrampoline_Megamorphic,1,702
+block_count,StoreICTrampoline_Megamorphic,0,700
+block_count,StoreICTrampoline_Megamorphic,1,700
block_count,StoreICTrampoline_Megamorphic,2,0
-block_count,StoreICTrampoline_Megamorphic,3,702
-block_count,StoreICBaseline,0,217
+block_count,StoreICTrampoline_Megamorphic,3,700
+block_count,StoreICBaseline,0,216
block_count,DefineNamedOwnIC,0,37
block_count,DefineNamedOwnIC,1,37
block_count,DefineNamedOwnIC,2,0
@@ -28125,9 +28140,9 @@
block_count,DefineNamedOwnIC,317,26
block_count,DefineNamedOwnIC,318,26
block_count,DefineNamedOwnIC,319,26
-block_count,DefineNamedOwnIC,320,4
+block_count,DefineNamedOwnIC,320,3
block_count,DefineNamedOwnIC,321,0
-block_count,DefineNamedOwnIC,322,4
+block_count,DefineNamedOwnIC,322,3
block_count,DefineNamedOwnIC,323,22
block_count,DefineNamedOwnIC,324,0
block_count,DefineNamedOwnIC,325,26
@@ -28173,12 +28188,12 @@
block_count,DefineNamedOwnIC,365,0
block_count,DefineNamedOwnIC,366,0
block_count,DefineNamedOwnICBaseline,0,31
-block_count,KeyedStoreIC,0,218
-block_count,KeyedStoreIC,1,218
+block_count,KeyedStoreIC,0,219
+block_count,KeyedStoreIC,1,219
block_count,KeyedStoreIC,2,0
-block_count,KeyedStoreIC,3,218
-block_count,KeyedStoreIC,4,218
-block_count,KeyedStoreIC,5,216
+block_count,KeyedStoreIC,3,219
+block_count,KeyedStoreIC,4,219
+block_count,KeyedStoreIC,5,217
block_count,KeyedStoreIC,6,18
block_count,KeyedStoreIC,7,0
block_count,KeyedStoreIC,8,18
@@ -28193,28 +28208,28 @@
block_count,KeyedStoreIC,17,1
block_count,KeyedStoreIC,18,9
block_count,KeyedStoreIC,19,7
-block_count,KeyedStoreIC,20,13
-block_count,KeyedStoreIC,21,6
-block_count,KeyedStoreIC,22,6
+block_count,KeyedStoreIC,20,12
+block_count,KeyedStoreIC,21,5
+block_count,KeyedStoreIC,22,5
block_count,KeyedStoreIC,23,0
block_count,KeyedStoreIC,24,7
-block_count,KeyedStoreIC,25,197
-block_count,KeyedStoreIC,26,206
-block_count,KeyedStoreIC,27,204
-block_count,KeyedStoreIC,28,204
-block_count,KeyedStoreIC,29,33
-block_count,KeyedStoreIC,30,33
-block_count,KeyedStoreIC,31,33
+block_count,KeyedStoreIC,25,199
+block_count,KeyedStoreIC,26,207
+block_count,KeyedStoreIC,27,205
+block_count,KeyedStoreIC,28,205
+block_count,KeyedStoreIC,29,31
+block_count,KeyedStoreIC,30,31
+block_count,KeyedStoreIC,31,31
block_count,KeyedStoreIC,32,0
block_count,KeyedStoreIC,33,0
-block_count,KeyedStoreIC,34,33
-block_count,KeyedStoreIC,35,33
+block_count,KeyedStoreIC,34,31
+block_count,KeyedStoreIC,35,31
block_count,KeyedStoreIC,36,0
block_count,KeyedStoreIC,37,0
block_count,KeyedStoreIC,38,0
block_count,KeyedStoreIC,39,0
block_count,KeyedStoreIC,40,0
-block_count,KeyedStoreIC,41,32
+block_count,KeyedStoreIC,41,30
block_count,KeyedStoreIC,42,0
block_count,KeyedStoreIC,43,0
block_count,KeyedStoreIC,44,0
@@ -28366,7 +28381,7 @@
block_count,KeyedStoreIC,190,0
block_count,KeyedStoreIC,191,0
block_count,KeyedStoreIC,192,0
-block_count,KeyedStoreIC,193,171
+block_count,KeyedStoreIC,193,173
block_count,KeyedStoreIC,194,0
block_count,KeyedStoreIC,195,0
block_count,KeyedStoreIC,196,0
@@ -29052,11 +29067,11 @@
block_count,DefineKeyedOwnIC,430,0
block_count,DefineKeyedOwnIC,431,2
block_count,DefineKeyedOwnIC,432,2
-block_count,StoreInArrayLiteralIC,0,19
-block_count,StoreInArrayLiteralIC,1,19
+block_count,StoreInArrayLiteralIC,0,18
+block_count,StoreInArrayLiteralIC,1,18
block_count,StoreInArrayLiteralIC,2,0
-block_count,StoreInArrayLiteralIC,3,19
-block_count,StoreInArrayLiteralIC,4,19
+block_count,StoreInArrayLiteralIC,3,18
+block_count,StoreInArrayLiteralIC,4,18
block_count,StoreInArrayLiteralIC,5,17
block_count,StoreInArrayLiteralIC,6,1
block_count,StoreInArrayLiteralIC,7,0
@@ -29070,7 +29085,7 @@
block_count,StoreInArrayLiteralIC,15,1
block_count,StoreInArrayLiteralIC,16,0
block_count,StoreInArrayLiteralIC,17,1
-block_count,StoreInArrayLiteralIC,18,16
+block_count,StoreInArrayLiteralIC,18,15
block_count,StoreInArrayLiteralIC,19,17
block_count,StoreInArrayLiteralIC,20,17
block_count,StoreInArrayLiteralIC,21,0
@@ -29084,11 +29099,11 @@
block_count,StoreInArrayLiteralIC,29,0
block_count,StoreInArrayLiteralIC,30,0
block_count,StoreInArrayLiteralICBaseline,0,16
-block_count,LoadGlobalIC,0,1330
-block_count,LoadGlobalIC,1,1330
-block_count,LoadGlobalIC,2,1258
-block_count,LoadGlobalIC,3,1258
-block_count,LoadGlobalIC,4,1258
+block_count,LoadGlobalIC,0,1253
+block_count,LoadGlobalIC,1,1253
+block_count,LoadGlobalIC,2,1184
+block_count,LoadGlobalIC,3,1184
+block_count,LoadGlobalIC,4,1184
block_count,LoadGlobalIC,5,0
block_count,LoadGlobalIC,6,0
block_count,LoadGlobalIC,7,0
@@ -29271,14 +29286,14 @@
block_count,LoadGlobalIC,184,0
block_count,LoadGlobalIC,185,0
block_count,LoadGlobalIC,186,0
-block_count,LoadGlobalIC,187,72
+block_count,LoadGlobalIC,187,68
block_count,LoadGlobalIC,188,0
-block_count,LoadGlobalIC,189,72
+block_count,LoadGlobalIC,189,68
block_count,LoadGlobalIC,190,0
-block_count,LoadGlobalIC,191,72
-block_count,LoadGlobalIC,192,72
-block_count,LoadGlobalIC,193,71
-block_count,LoadGlobalIC,194,57
+block_count,LoadGlobalIC,191,68
+block_count,LoadGlobalIC,192,68
+block_count,LoadGlobalIC,193,68
+block_count,LoadGlobalIC,194,54
block_count,LoadGlobalIC,195,0
block_count,LoadGlobalIC,196,0
block_count,LoadGlobalIC,197,0
@@ -29290,7 +29305,7 @@
block_count,LoadGlobalIC,203,0
block_count,LoadGlobalIC,204,0
block_count,LoadGlobalIC,205,0
-block_count,LoadGlobalIC,206,57
+block_count,LoadGlobalIC,206,54
block_count,LoadGlobalIC,207,14
block_count,LoadGlobalIC,208,0
block_count,LoadGlobalIC,209,14
@@ -29481,11 +29496,11 @@
block_count,LoadGlobalICInsideTypeof,184,0
block_count,LoadGlobalICInsideTypeof,185,0
block_count,LoadGlobalICInsideTypeof,186,0
-block_count,LoadGlobalICTrampoline,0,852
-block_count,LoadGlobalICTrampoline,1,852
+block_count,LoadGlobalICTrampoline,0,813
+block_count,LoadGlobalICTrampoline,1,813
block_count,LoadGlobalICTrampoline,2,0
-block_count,LoadGlobalICTrampoline,3,852
-block_count,LoadGlobalICBaseline,0,407
+block_count,LoadGlobalICTrampoline,3,813
+block_count,LoadGlobalICBaseline,0,401
block_count,LoadGlobalICInsideTypeofBaseline,0,0
block_count,LookupGlobalICBaseline,0,0
block_count,LookupGlobalICBaseline,1,0
@@ -29518,13 +29533,13 @@
block_count,KeyedHasIC,2,0
block_count,KeyedHasIC,3,720
block_count,KeyedHasIC,4,720
-block_count,KeyedHasIC,5,720
-block_count,KeyedHasIC,6,720
+block_count,KeyedHasIC,5,719
+block_count,KeyedHasIC,6,719
block_count,KeyedHasIC,7,0
-block_count,KeyedHasIC,8,720
+block_count,KeyedHasIC,8,719
block_count,KeyedHasIC,9,719
-block_count,KeyedHasIC,10,4
-block_count,KeyedHasIC,11,4
+block_count,KeyedHasIC,10,3
+block_count,KeyedHasIC,11,3
block_count,KeyedHasIC,12,0
block_count,KeyedHasIC,13,0
block_count,KeyedHasIC,14,0
@@ -29559,8 +29574,8 @@
block_count,KeyedHasIC,43,0
block_count,KeyedHasIC,44,0
block_count,KeyedHasIC,45,0
-block_count,KeyedHasIC,46,4
-block_count,KeyedHasIC,47,4
+block_count,KeyedHasIC,46,3
+block_count,KeyedHasIC,47,3
block_count,KeyedHasIC,48,0
block_count,KeyedHasIC,49,715
block_count,KeyedHasIC,50,0
@@ -29814,19 +29829,19 @@
block_count,KeyedHasIC_Megamorphic,32,713
block_count,KeyedHasIC_Megamorphic,33,2819
block_count,KeyedHasIC_Megamorphic,34,2819
-block_count,KeyedHasIC_Megamorphic,35,2816
-block_count,KeyedHasIC_Megamorphic,36,2697
+block_count,KeyedHasIC_Megamorphic,35,2815
+block_count,KeyedHasIC_Megamorphic,36,2696
block_count,KeyedHasIC_Megamorphic,37,710
block_count,KeyedHasIC_Megamorphic,38,710
block_count,KeyedHasIC_Megamorphic,39,0
block_count,KeyedHasIC_Megamorphic,40,710
-block_count,KeyedHasIC_Megamorphic,41,4262
-block_count,KeyedHasIC_Megamorphic,42,4262
+block_count,KeyedHasIC_Megamorphic,41,4261
+block_count,KeyedHasIC_Megamorphic,42,4261
block_count,KeyedHasIC_Megamorphic,43,0
-block_count,KeyedHasIC_Megamorphic,44,4262
-block_count,KeyedHasIC_Megamorphic,45,1401
+block_count,KeyedHasIC_Megamorphic,44,4261
+block_count,KeyedHasIC_Megamorphic,45,1400
block_count,KeyedHasIC_Megamorphic,46,2861
-block_count,KeyedHasIC_Megamorphic,47,4262
+block_count,KeyedHasIC_Megamorphic,47,4261
block_count,KeyedHasIC_Megamorphic,48,3551
block_count,KeyedHasIC_Megamorphic,49,710
block_count,KeyedHasIC_Megamorphic,50,710
@@ -29848,8 +29863,8 @@
block_count,KeyedHasIC_Megamorphic,66,1503
block_count,KeyedHasIC_Megamorphic,67,7458
block_count,KeyedHasIC_Megamorphic,68,7455
-block_count,KeyedHasIC_Megamorphic,69,7453
-block_count,KeyedHasIC_Megamorphic,70,5955
+block_count,KeyedHasIC_Megamorphic,69,7452
+block_count,KeyedHasIC_Megamorphic,70,5954
block_count,KeyedHasIC_Megamorphic,71,1498
block_count,KeyedHasIC_Megamorphic,72,2
block_count,KeyedHasIC_Megamorphic,73,2
@@ -30108,14 +30123,14 @@
block_count,AddLhsIsStringConstantInternalizeWithVector,45,0
block_count,AddLhsIsStringConstantInternalizeWithVector,46,0
block_count,AddLhsIsStringConstantInternalizeWithVector,47,1
-block_count,AddLhsIsStringConstantInternalizeTrampoline,0,4
-block_count,AddLhsIsStringConstantInternalizeTrampoline,1,4
+block_count,AddLhsIsStringConstantInternalizeTrampoline,0,5
+block_count,AddLhsIsStringConstantInternalizeTrampoline,1,5
block_count,AddLhsIsStringConstantInternalizeTrampoline,2,0
-block_count,AddLhsIsStringConstantInternalizeTrampoline,3,4
-block_count,AddLhsIsStringConstantInternalizeTrampoline,4,4
-block_count,AddLhsIsStringConstantInternalizeTrampoline,5,4
+block_count,AddLhsIsStringConstantInternalizeTrampoline,3,5
+block_count,AddLhsIsStringConstantInternalizeTrampoline,4,5
+block_count,AddLhsIsStringConstantInternalizeTrampoline,5,5
block_count,AddLhsIsStringConstantInternalizeTrampoline,6,0
-block_count,AddLhsIsStringConstantInternalizeTrampoline,7,4
+block_count,AddLhsIsStringConstantInternalizeTrampoline,7,5
block_count,AddLhsIsStringConstantInternalizeTrampoline,8,4
block_count,AddLhsIsStringConstantInternalizeTrampoline,9,0
block_count,AddLhsIsStringConstantInternalizeTrampoline,10,4
@@ -30149,8 +30164,8 @@
block_count,AddLhsIsStringConstantInternalizeTrampoline,38,4
block_count,AddLhsIsStringConstantInternalizeTrampoline,39,4
block_count,AddLhsIsStringConstantInternalizeTrampoline,40,4
-block_count,AddLhsIsStringConstantInternalizeTrampoline,41,4
-block_count,AddLhsIsStringConstantInternalizeTrampoline,42,4
+block_count,AddLhsIsStringConstantInternalizeTrampoline,41,5
+block_count,AddLhsIsStringConstantInternalizeTrampoline,42,5
block_count,AddLhsIsStringConstantInternalizeTrampoline,43,0
block_count,AddLhsIsStringConstantInternalizeTrampoline,44,4
block_count,AddLhsIsStringConstantInternalizeTrampoline,45,0
@@ -30517,13 +30532,13 @@
block_count,FindOrderedHashMapEntry,14,56
block_count,FindOrderedHashMapEntry,15,62
block_count,FindOrderedHashMapEntry,16,128
-block_count,FindOrderedHashMapEntry,17,182
-block_count,FindOrderedHashMapEntry,18,77
-block_count,FindOrderedHashMapEntry,19,77
-block_count,FindOrderedHashMapEntry,20,54
+block_count,FindOrderedHashMapEntry,17,280
+block_count,FindOrderedHashMapEntry,18,175
+block_count,FindOrderedHashMapEntry,19,175
+block_count,FindOrderedHashMapEntry,20,151
block_count,FindOrderedHashMapEntry,21,23
block_count,FindOrderedHashMapEntry,22,0
-block_count,FindOrderedHashMapEntry,23,54
+block_count,FindOrderedHashMapEntry,23,151
block_count,FindOrderedHashMapEntry,24,105
block_count,FindOrderedHashMapEntry,25,0
block_count,FindOrderedHashMapEntry,26,0
@@ -30539,10 +30554,10 @@
block_count,FindOrderedHashMapEntry,36,0
block_count,FindOrderedHashMapEntry,37,0
block_count,FindOrderedHashMapEntry,38,254
-block_count,FindOrderedHashMapEntry,39,78
+block_count,FindOrderedHashMapEntry,39,80
block_count,FindOrderedHashMapEntry,40,8
-block_count,FindOrderedHashMapEntry,41,70
-block_count,FindOrderedHashMapEntry,42,175
+block_count,FindOrderedHashMapEntry,41,71
+block_count,FindOrderedHashMapEntry,42,173
block_count,FindOrderedHashMapEntry,43,254
block_count,FindOrderedHashMapEntry,44,254
block_count,FindOrderedHashMapEntry,45,0
@@ -30996,13 +31011,13 @@
block_count,MapPrototypeSet,20,41
block_count,MapPrototypeSet,21,45
block_count,MapPrototypeSet,22,45
-block_count,MapPrototypeSet,23,76
-block_count,MapPrototypeSet,24,42
-block_count,MapPrototypeSet,25,42
-block_count,MapPrototypeSet,26,31
+block_count,MapPrototypeSet,23,74
+block_count,MapPrototypeSet,24,40
+block_count,MapPrototypeSet,25,40
+block_count,MapPrototypeSet,26,29
block_count,MapPrototypeSet,27,11
block_count,MapPrototypeSet,28,0
-block_count,MapPrototypeSet,29,31
+block_count,MapPrototypeSet,29,29
block_count,MapPrototypeSet,30,34
block_count,MapPrototypeSet,31,0
block_count,MapPrototypeSet,32,0
@@ -31021,7 +31036,7 @@
block_count,MapPrototypeSet,45,2
block_count,MapPrototypeSet,46,0
block_count,MapPrototypeSet,47,2
-block_count,MapPrototypeSet,48,17
+block_count,MapPrototypeSet,48,18
block_count,MapPrototypeSet,49,20
block_count,MapPrototypeSet,50,20
block_count,MapPrototypeSet,51,0
@@ -31198,9 +31213,9 @@
block_count,MapPrototypeGet,5,0
block_count,MapPrototypeGet,6,35
block_count,MapPrototypeGet,7,23
-block_count,MapPrototypeGet,8,11
+block_count,MapPrototypeGet,8,12
block_count,MapPrototypeGet,9,0
-block_count,MapPrototypeGet,10,11
+block_count,MapPrototypeGet,10,12
block_count,MapPrototypeHas,0,5
block_count,MapPrototypeHas,1,0
block_count,MapPrototypeHas,2,5
@@ -31388,8 +31403,8 @@
block_count,MapIteratorToList,54,0
block_count,MapIteratorToList,55,0
block_count,MapIteratorToList,56,0
-block_count,Add_Baseline,0,203
-block_count,Add_Baseline,1,125
+block_count,Add_Baseline,0,201
+block_count,Add_Baseline,1,121
block_count,Add_Baseline,2,1
block_count,Add_Baseline,3,1
block_count,Add_Baseline,4,0
@@ -31409,62 +31424,62 @@
block_count,Add_Baseline,18,0
block_count,Add_Baseline,19,1
block_count,Add_Baseline,20,0
-block_count,Add_Baseline,21,124
-block_count,Add_Baseline,22,124
+block_count,Add_Baseline,21,120
+block_count,Add_Baseline,22,120
block_count,Add_Baseline,23,0
-block_count,Add_Baseline,24,124
-block_count,Add_Baseline,25,124
+block_count,Add_Baseline,24,120
+block_count,Add_Baseline,25,120
block_count,Add_Baseline,26,0
block_count,Add_Baseline,27,0
block_count,Add_Baseline,28,0
block_count,Add_Baseline,29,0
-block_count,Add_Baseline,30,78
-block_count,Add_Baseline,31,41
-block_count,Add_Baseline,32,35
-block_count,Add_Baseline,33,35
+block_count,Add_Baseline,30,80
+block_count,Add_Baseline,31,45
+block_count,Add_Baseline,32,40
+block_count,Add_Baseline,33,40
block_count,Add_Baseline,34,0
-block_count,Add_Baseline,35,35
+block_count,Add_Baseline,35,40
block_count,Add_Baseline,36,20
-block_count,Add_Baseline,37,15
+block_count,Add_Baseline,37,20
block_count,Add_Baseline,38,1
-block_count,Add_Baseline,39,13
+block_count,Add_Baseline,39,18
block_count,Add_Baseline,40,1
-block_count,Add_Baseline,41,12
-block_count,Add_Baseline,42,13
+block_count,Add_Baseline,41,16
+block_count,Add_Baseline,42,18
block_count,Add_Baseline,43,0
-block_count,Add_Baseline,44,13
+block_count,Add_Baseline,44,18
block_count,Add_Baseline,45,2
-block_count,Add_Baseline,46,11
+block_count,Add_Baseline,46,16
block_count,Add_Baseline,47,1
-block_count,Add_Baseline,48,10
-block_count,Add_Baseline,49,3
-block_count,Add_Baseline,50,6
-block_count,Add_Baseline,51,7
+block_count,Add_Baseline,48,14
+block_count,Add_Baseline,49,7
+block_count,Add_Baseline,50,7
+block_count,Add_Baseline,51,9
block_count,Add_Baseline,52,0
-block_count,Add_Baseline,53,7
-block_count,Add_Baseline,54,6
-block_count,Add_Baseline,55,22
+block_count,Add_Baseline,53,9
+block_count,Add_Baseline,54,9
+block_count,Add_Baseline,55,21
block_count,Add_Baseline,56,0
block_count,Add_Baseline,57,5
block_count,Add_Baseline,58,0
block_count,Add_Baseline,59,5
block_count,Add_Baseline,60,3
-block_count,Add_Baseline,61,2
-block_count,Add_Baseline,62,2
+block_count,Add_Baseline,61,1
+block_count,Add_Baseline,62,1
block_count,Add_Baseline,63,0
block_count,Add_Baseline,64,0
block_count,Add_Baseline,65,0
-block_count,Add_Baseline,66,2
+block_count,Add_Baseline,66,1
block_count,Add_Baseline,67,0
-block_count,Add_Baseline,68,2
+block_count,Add_Baseline,68,1
block_count,Add_Baseline,69,5
block_count,Add_Baseline,70,3
-block_count,Add_Baseline,71,2
+block_count,Add_Baseline,71,1
block_count,Add_Baseline,72,3
block_count,Add_Baseline,73,5
-block_count,Add_Baseline,74,37
-block_count,Add_Baseline,75,37
-block_count,Add_Baseline,76,34
+block_count,Add_Baseline,74,34
+block_count,Add_Baseline,75,34
+block_count,Add_Baseline,76,32
block_count,Add_Baseline,77,0
block_count,Add_Baseline,78,0
block_count,Add_Baseline,79,0
@@ -31519,7 +31534,7 @@
block_count,Add_Baseline,128,0
block_count,Add_Baseline,129,0
block_count,Add_Baseline,130,0
-block_count,Add_Baseline,131,34
+block_count,Add_Baseline,131,31
block_count,Add_Baseline,132,3
block_count,Add_Baseline,133,3
block_count,Add_Baseline,134,0
@@ -31528,10 +31543,10 @@
block_count,Add_Baseline,137,0
block_count,Add_Baseline,138,0
block_count,Add_Baseline,139,0
-block_count,Add_Baseline,140,31
+block_count,Add_Baseline,140,28
block_count,Add_Baseline,141,0
-block_count,Add_Baseline,142,31
-block_count,Add_Baseline,143,31
+block_count,Add_Baseline,142,28
+block_count,Add_Baseline,143,28
block_count,Add_Baseline,144,2
block_count,Add_Baseline,145,0
block_count,Add_Baseline,146,0
@@ -31547,33 +31562,33 @@
block_count,Add_Baseline,156,0
block_count,Add_Baseline,157,5
block_count,Add_Baseline,158,5
-block_count,Add_Baseline,159,42
+block_count,Add_Baseline,159,46
block_count,Add_Baseline,160,0
-block_count,Add_Baseline,161,42
-block_count,Add_Baseline,162,42
+block_count,Add_Baseline,161,46
+block_count,Add_Baseline,162,46
block_count,Add_Baseline,163,0
-block_count,Add_Baseline,164,42
-block_count,Add_Baseline,165,31
-block_count,Add_Baseline,166,10
+block_count,Add_Baseline,164,46
+block_count,Add_Baseline,165,35
+block_count,Add_Baseline,166,11
block_count,Add_Baseline,167,0
-block_count,Add_Baseline,168,10
-block_count,Add_Baseline,169,4
-block_count,Add_Baseline,170,6
+block_count,Add_Baseline,168,11
+block_count,Add_Baseline,169,3
+block_count,Add_Baseline,170,7
block_count,Add_Baseline,171,0
-block_count,Add_Baseline,172,6
-block_count,Add_Baseline,173,10
+block_count,Add_Baseline,172,7
+block_count,Add_Baseline,173,11
block_count,Add_Baseline,174,0
-block_count,Add_Baseline,175,10
+block_count,Add_Baseline,175,11
block_count,Add_Baseline,176,0
-block_count,Add_Baseline,177,42
+block_count,Add_Baseline,177,46
block_count,Add_Baseline,178,0
-block_count,Add_Baseline,179,42
-block_count,Add_Baseline,180,42
+block_count,Add_Baseline,179,46
+block_count,Add_Baseline,180,46
block_count,AddSmi_Baseline,0,246
block_count,AddSmi_Baseline,1,246
block_count,AddSmi_Baseline,2,246
block_count,AddSmi_Baseline,3,0
-block_count,AddSmi_Baseline,4,245
+block_count,AddSmi_Baseline,4,246
block_count,AddSmi_Baseline,5,246
block_count,AddSmi_Baseline,6,0
block_count,AddSmi_Baseline,7,0
@@ -31705,8 +31720,8 @@
block_count,AddSmi_Baseline,133,0
block_count,Subtract_Baseline,0,48
block_count,Subtract_Baseline,1,34
-block_count,Subtract_Baseline,2,1
-block_count,Subtract_Baseline,3,1
+block_count,Subtract_Baseline,2,2
+block_count,Subtract_Baseline,3,2
block_count,Subtract_Baseline,4,0
block_count,Subtract_Baseline,5,32
block_count,Subtract_Baseline,6,32
@@ -31720,8 +31735,8 @@
block_count,Subtract_Baseline,14,32
block_count,Subtract_Baseline,15,13
block_count,Subtract_Baseline,16,13
-block_count,Subtract_Baseline,17,13
-block_count,Subtract_Baseline,18,13
+block_count,Subtract_Baseline,17,12
+block_count,Subtract_Baseline,18,12
block_count,Subtract_Baseline,19,0
block_count,Subtract_Baseline,20,0
block_count,Subtract_Baseline,21,0
@@ -31801,17 +31816,17 @@
block_count,Subtract_Baseline,95,0
block_count,Subtract_Baseline,96,15
block_count,Subtract_Baseline,97,15
-block_count,SubtractSmi_Baseline,0,22
-block_count,SubtractSmi_Baseline,1,18
-block_count,SubtractSmi_Baseline,2,18
+block_count,SubtractSmi_Baseline,0,23
+block_count,SubtractSmi_Baseline,1,19
+block_count,SubtractSmi_Baseline,2,19
block_count,SubtractSmi_Baseline,3,0
block_count,SubtractSmi_Baseline,4,0
block_count,SubtractSmi_Baseline,5,0
block_count,SubtractSmi_Baseline,6,0
-block_count,SubtractSmi_Baseline,7,18
+block_count,SubtractSmi_Baseline,7,19
block_count,SubtractSmi_Baseline,8,0
block_count,SubtractSmi_Baseline,9,18
-block_count,SubtractSmi_Baseline,10,18
+block_count,SubtractSmi_Baseline,10,19
block_count,SubtractSmi_Baseline,11,4
block_count,SubtractSmi_Baseline,12,4
block_count,SubtractSmi_Baseline,13,0
@@ -31820,10 +31835,10 @@
block_count,SubtractSmi_Baseline,16,0
block_count,SubtractSmi_Baseline,17,4
block_count,SubtractSmi_Baseline,18,4
-block_count,Multiply_Baseline,0,54
-block_count,Multiply_Baseline,1,13
-block_count,Multiply_Baseline,2,8
-block_count,Multiply_Baseline,3,8
+block_count,Multiply_Baseline,0,60
+block_count,Multiply_Baseline,1,16
+block_count,Multiply_Baseline,2,11
+block_count,Multiply_Baseline,3,11
block_count,Multiply_Baseline,4,0
block_count,Multiply_Baseline,5,4
block_count,Multiply_Baseline,6,4
@@ -31848,10 +31863,10 @@
block_count,Multiply_Baseline,25,0
block_count,Multiply_Baseline,26,4
block_count,Multiply_Baseline,27,4
-block_count,Multiply_Baseline,28,41
-block_count,Multiply_Baseline,29,41
-block_count,Multiply_Baseline,30,39
-block_count,Multiply_Baseline,31,39
+block_count,Multiply_Baseline,28,44
+block_count,Multiply_Baseline,29,44
+block_count,Multiply_Baseline,30,42
+block_count,Multiply_Baseline,31,42
block_count,Multiply_Baseline,32,0
block_count,Multiply_Baseline,33,2
block_count,Multiply_Baseline,34,0
@@ -31926,13 +31941,13 @@
block_count,Multiply_Baseline,103,0
block_count,Multiply_Baseline,104,0
block_count,Multiply_Baseline,105,0
-block_count,Multiply_Baseline,106,49
+block_count,Multiply_Baseline,106,56
block_count,Multiply_Baseline,107,0
-block_count,Multiply_Baseline,108,49
-block_count,Multiply_Baseline,109,49
+block_count,Multiply_Baseline,108,56
+block_count,Multiply_Baseline,109,56
block_count,Multiply_Baseline,110,0
-block_count,Multiply_Baseline,111,49
-block_count,Multiply_Baseline,112,49
+block_count,Multiply_Baseline,111,56
+block_count,Multiply_Baseline,112,56
block_count,MultiplySmi_Baseline,0,5
block_count,MultiplySmi_Baseline,1,4
block_count,MultiplySmi_Baseline,2,4
@@ -32036,7 +32051,7 @@
block_count,MultiplySmi_Baseline,100,0
block_count,MultiplySmi_Baseline,101,0
block_count,MultiplySmi_Baseline,102,0
-block_count,Divide_Baseline,0,3
+block_count,Divide_Baseline,0,4
block_count,Divide_Baseline,1,2
block_count,Divide_Baseline,2,1
block_count,Divide_Baseline,3,1
@@ -32611,7 +32626,7 @@
block_count,BitwiseAndSmi_Baseline,28,0
block_count,BitwiseAndSmi_Baseline,29,1
block_count,BitwiseAndSmi_Baseline,30,1
-block_count,BitwiseAndSmi_Baseline,31,32
+block_count,BitwiseAndSmi_Baseline,31,33
block_count,BitwiseAndSmi_Baseline,32,34
block_count,BitwiseAndSmi_Baseline,33,0
block_count,BitwiseAndSmi_Baseline,34,34
@@ -32879,8 +32894,8 @@
block_count,BitwiseXor_Baseline,95,4
block_count,BitwiseXor_Baseline,96,8
block_count,BitwiseXor_Baseline,97,3
-block_count,BitwiseXor_Baseline,98,5
-block_count,BitwiseXor_Baseline,99,5
+block_count,BitwiseXor_Baseline,98,4
+block_count,BitwiseXor_Baseline,99,4
block_count,BitwiseXor_Baseline,100,0
block_count,BitwiseXor_Baseline,101,0
block_count,BitwiseXor_Baseline,102,0
@@ -32898,7 +32913,7 @@
block_count,BitwiseXor_Baseline,114,0
block_count,BitwiseXor_Baseline,115,0
block_count,BitwiseXor_Baseline,116,0
-block_count,BitwiseXor_Baseline,117,5
+block_count,BitwiseXor_Baseline,117,4
block_count,BitwiseXor_Baseline,118,8
block_count,BitwiseXor_Baseline,119,5
block_count,BitwiseXor_Baseline,120,3
@@ -33057,21 +33072,21 @@
block_count,ShiftLeftSmi_Baseline,28,0
block_count,ShiftLeftSmi_Baseline,29,1
block_count,ShiftLeftSmi_Baseline,30,1
-block_count,ShiftLeftSmi_Baseline,31,30
+block_count,ShiftLeftSmi_Baseline,31,29
block_count,ShiftLeftSmi_Baseline,32,29
block_count,ShiftLeftSmi_Baseline,33,0
block_count,ShiftLeftSmi_Baseline,34,0
block_count,ShiftLeftSmi_Baseline,35,0
block_count,ShiftLeftSmi_Baseline,36,0
-block_count,ShiftLeftSmi_Baseline,37,30
+block_count,ShiftLeftSmi_Baseline,37,29
block_count,ShiftLeftSmi_Baseline,38,0
block_count,ShiftLeftSmi_Baseline,39,29
-block_count,ShiftLeftSmi_Baseline,40,30
+block_count,ShiftLeftSmi_Baseline,40,29
block_count,ShiftLeftSmi_Baseline,41,31
block_count,ShiftLeftSmi_Baseline,42,0
block_count,ShiftLeftSmi_Baseline,43,31
-block_count,ShiftRight_Baseline,0,3
-block_count,ShiftRight_Baseline,1,3
+block_count,ShiftRight_Baseline,0,2
+block_count,ShiftRight_Baseline,1,2
block_count,ShiftRight_Baseline,2,0
block_count,ShiftRight_Baseline,3,0
block_count,ShiftRight_Baseline,4,0
@@ -33114,8 +33129,8 @@
block_count,ShiftRight_Baseline,41,0
block_count,ShiftRight_Baseline,42,0
block_count,ShiftRight_Baseline,43,0
-block_count,ShiftRight_Baseline,44,3
-block_count,ShiftRight_Baseline,45,3
+block_count,ShiftRight_Baseline,44,2
+block_count,ShiftRight_Baseline,45,2
block_count,ShiftRight_Baseline,46,0
block_count,ShiftRight_Baseline,47,0
block_count,ShiftRight_Baseline,48,0
@@ -33136,19 +33151,19 @@
block_count,ShiftRight_Baseline,63,0
block_count,ShiftRight_Baseline,64,0
block_count,ShiftRight_Baseline,65,0
-block_count,ShiftRight_Baseline,66,3
-block_count,ShiftRight_Baseline,67,3
+block_count,ShiftRight_Baseline,66,2
+block_count,ShiftRight_Baseline,67,2
block_count,ShiftRight_Baseline,68,0
block_count,ShiftRight_Baseline,69,0
block_count,ShiftRight_Baseline,70,0
block_count,ShiftRight_Baseline,71,0
-block_count,ShiftRight_Baseline,72,3
+block_count,ShiftRight_Baseline,72,2
block_count,ShiftRight_Baseline,73,0
-block_count,ShiftRight_Baseline,74,3
-block_count,ShiftRight_Baseline,75,3
+block_count,ShiftRight_Baseline,74,2
+block_count,ShiftRight_Baseline,75,2
block_count,ShiftRight_Baseline,76,0
-block_count,ShiftRight_Baseline,77,3
-block_count,ShiftRight_Baseline,78,3
+block_count,ShiftRight_Baseline,77,2
+block_count,ShiftRight_Baseline,78,2
block_count,ShiftRightSmi_Baseline,0,116
block_count,ShiftRightSmi_Baseline,1,1
block_count,ShiftRightSmi_Baseline,2,1
@@ -33180,7 +33195,7 @@
block_count,ShiftRightSmi_Baseline,28,0
block_count,ShiftRightSmi_Baseline,29,1
block_count,ShiftRightSmi_Baseline,30,1
-block_count,ShiftRightSmi_Baseline,31,114
+block_count,ShiftRightSmi_Baseline,31,115
block_count,ShiftRightSmi_Baseline,32,116
block_count,ShiftRightSmi_Baseline,33,0
block_count,ShiftRightSmi_Baseline,34,116
@@ -33291,16 +33306,16 @@
block_count,ShiftRightLogicalSmi_Baseline,28,0
block_count,ShiftRightLogicalSmi_Baseline,29,1
block_count,ShiftRightLogicalSmi_Baseline,30,1
-block_count,ShiftRightLogicalSmi_Baseline,31,2
+block_count,ShiftRightLogicalSmi_Baseline,31,1
block_count,ShiftRightLogicalSmi_Baseline,32,1
block_count,ShiftRightLogicalSmi_Baseline,33,0
block_count,ShiftRightLogicalSmi_Baseline,34,0
block_count,ShiftRightLogicalSmi_Baseline,35,0
block_count,ShiftRightLogicalSmi_Baseline,36,0
-block_count,ShiftRightLogicalSmi_Baseline,37,2
+block_count,ShiftRightLogicalSmi_Baseline,37,1
block_count,ShiftRightLogicalSmi_Baseline,38,0
block_count,ShiftRightLogicalSmi_Baseline,39,1
-block_count,ShiftRightLogicalSmi_Baseline,40,2
+block_count,ShiftRightLogicalSmi_Baseline,40,1
block_count,ShiftRightLogicalSmi_Baseline,41,3
block_count,ShiftRightLogicalSmi_Baseline,42,0
block_count,ShiftRightLogicalSmi_Baseline,43,3
@@ -33663,13 +33678,13 @@
block_count,Divide_WithFeedback,106,0
block_count,Divide_WithFeedback,107,0
block_count,Divide_WithFeedback,108,0
-block_count,Modulus_WithFeedback,0,1
-block_count,Modulus_WithFeedback,1,1
+block_count,Modulus_WithFeedback,0,2
+block_count,Modulus_WithFeedback,1,2
block_count,Modulus_WithFeedback,2,0
block_count,Modulus_WithFeedback,3,0
block_count,Modulus_WithFeedback,4,0
-block_count,Modulus_WithFeedback,5,1
-block_count,Modulus_WithFeedback,6,1
+block_count,Modulus_WithFeedback,5,2
+block_count,Modulus_WithFeedback,6,2
block_count,Modulus_WithFeedback,7,0
block_count,Modulus_WithFeedback,8,0
block_count,Modulus_WithFeedback,9,0
@@ -33679,15 +33694,15 @@
block_count,Modulus_WithFeedback,13,0
block_count,Modulus_WithFeedback,14,0
block_count,Modulus_WithFeedback,15,0
-block_count,Modulus_WithFeedback,16,1
+block_count,Modulus_WithFeedback,16,2
block_count,Modulus_WithFeedback,17,0
-block_count,Modulus_WithFeedback,18,1
+block_count,Modulus_WithFeedback,18,2
block_count,Modulus_WithFeedback,19,0
-block_count,Modulus_WithFeedback,20,1
-block_count,Modulus_WithFeedback,21,1
+block_count,Modulus_WithFeedback,20,2
+block_count,Modulus_WithFeedback,21,2
block_count,Modulus_WithFeedback,22,0
-block_count,Modulus_WithFeedback,23,1
-block_count,Modulus_WithFeedback,24,1
+block_count,Modulus_WithFeedback,23,2
+block_count,Modulus_WithFeedback,24,2
block_count,Modulus_WithFeedback,25,0
block_count,Modulus_WithFeedback,26,0
block_count,Modulus_WithFeedback,27,0
@@ -33997,8 +34012,8 @@
block_count,Add_RhsIsStringConstant_Internalize_Baseline,46,0
block_count,Add_RhsIsStringConstant_Internalize_Baseline,47,0
block_count,Equal_Baseline,0,166
-block_count,Equal_Baseline,1,167
-block_count,Equal_Baseline,2,135
+block_count,Equal_Baseline,1,168
+block_count,Equal_Baseline,2,136
block_count,Equal_Baseline,3,24
block_count,Equal_Baseline,4,23
block_count,Equal_Baseline,5,9
@@ -34063,9 +34078,9 @@
block_count,Equal_Baseline,64,0
block_count,Equal_Baseline,65,0
block_count,Equal_Baseline,66,2
-block_count,Equal_Baseline,67,2
+block_count,Equal_Baseline,67,1
block_count,Equal_Baseline,68,0
-block_count,Equal_Baseline,69,2
+block_count,Equal_Baseline,69,1
block_count,Equal_Baseline,70,0
block_count,Equal_Baseline,71,0
block_count,Equal_Baseline,72,0
@@ -34093,7 +34108,7 @@
block_count,Equal_Baseline,94,0
block_count,Equal_Baseline,95,0
block_count,Equal_Baseline,96,0
-block_count,Equal_Baseline,97,14
+block_count,Equal_Baseline,97,13
block_count,Equal_Baseline,98,0
block_count,Equal_Baseline,99,13
block_count,Equal_Baseline,100,10
@@ -34103,15 +34118,15 @@
block_count,Equal_Baseline,104,0
block_count,Equal_Baseline,105,13
block_count,Equal_Baseline,106,1
-block_count,Equal_Baseline,107,12
+block_count,Equal_Baseline,107,11
block_count,Equal_Baseline,108,13
block_count,Equal_Baseline,109,0
block_count,Equal_Baseline,110,13
block_count,Equal_Baseline,111,13
block_count,Equal_Baseline,112,0
block_count,Equal_Baseline,113,0
-block_count,Equal_Baseline,114,111
-block_count,Equal_Baseline,115,2
+block_count,Equal_Baseline,114,112
+block_count,Equal_Baseline,115,1
block_count,Equal_Baseline,116,0
block_count,Equal_Baseline,117,0
block_count,Equal_Baseline,118,0
@@ -34130,7 +34145,7 @@
block_count,Equal_Baseline,131,0
block_count,Equal_Baseline,132,0
block_count,Equal_Baseline,133,1
-block_count,Equal_Baseline,134,109
+block_count,Equal_Baseline,134,110
block_count,Equal_Baseline,135,0
block_count,Equal_Baseline,136,0
block_count,Equal_Baseline,137,0
@@ -34143,12 +34158,12 @@
block_count,Equal_Baseline,144,0
block_count,Equal_Baseline,145,0
block_count,Equal_Baseline,146,0
-block_count,Equal_Baseline,147,2
+block_count,Equal_Baseline,147,1
block_count,Equal_Baseline,148,1
block_count,Equal_Baseline,149,0
block_count,Equal_Baseline,150,31
-block_count,Equal_Baseline,151,5
-block_count,Equal_Baseline,152,5
+block_count,Equal_Baseline,151,6
+block_count,Equal_Baseline,152,6
block_count,Equal_Baseline,153,4
block_count,Equal_Baseline,154,1
block_count,Equal_Baseline,155,0
@@ -34174,28 +34189,28 @@
block_count,Equal_Baseline,175,0
block_count,Equal_Baseline,176,0
block_count,Equal_Baseline,177,25
-block_count,Equal_Baseline,178,32
-block_count,Equal_Baseline,179,120
+block_count,Equal_Baseline,178,31
+block_count,Equal_Baseline,179,121
block_count,Equal_Baseline,180,166
block_count,Equal_Baseline,181,0
block_count,Equal_Baseline,182,166
-block_count,StrictEqual_Baseline,0,209
-block_count,StrictEqual_Baseline,1,177
-block_count,StrictEqual_Baseline,2,127
-block_count,StrictEqual_Baseline,3,127
-block_count,StrictEqual_Baseline,4,127
-block_count,StrictEqual_Baseline,5,60
-block_count,StrictEqual_Baseline,6,60
-block_count,StrictEqual_Baseline,7,29
+block_count,StrictEqual_Baseline,0,211
+block_count,StrictEqual_Baseline,1,178
+block_count,StrictEqual_Baseline,2,126
+block_count,StrictEqual_Baseline,3,126
+block_count,StrictEqual_Baseline,4,125
+block_count,StrictEqual_Baseline,5,61
+block_count,StrictEqual_Baseline,6,61
+block_count,StrictEqual_Baseline,7,30
block_count,StrictEqual_Baseline,8,23
block_count,StrictEqual_Baseline,9,0
block_count,StrictEqual_Baseline,10,23
block_count,StrictEqual_Baseline,11,0
block_count,StrictEqual_Baseline,12,23
block_count,StrictEqual_Baseline,13,6
-block_count,StrictEqual_Baseline,14,3
-block_count,StrictEqual_Baseline,15,2
-block_count,StrictEqual_Baseline,16,2
+block_count,StrictEqual_Baseline,14,4
+block_count,StrictEqual_Baseline,15,3
+block_count,StrictEqual_Baseline,16,3
block_count,StrictEqual_Baseline,17,0
block_count,StrictEqual_Baseline,18,1
block_count,StrictEqual_Baseline,19,2
@@ -34204,7 +34219,7 @@
block_count,StrictEqual_Baseline,22,0
block_count,StrictEqual_Baseline,23,0
block_count,StrictEqual_Baseline,24,0
-block_count,StrictEqual_Baseline,25,30
+block_count,StrictEqual_Baseline,25,31
block_count,StrictEqual_Baseline,26,0
block_count,StrictEqual_Baseline,27,0
block_count,StrictEqual_Baseline,28,0
@@ -34236,18 +34251,18 @@
block_count,StrictEqual_Baseline,54,0
block_count,StrictEqual_Baseline,55,0
block_count,StrictEqual_Baseline,56,0
-block_count,StrictEqual_Baseline,57,66
+block_count,StrictEqual_Baseline,57,63
block_count,StrictEqual_Baseline,58,0
block_count,StrictEqual_Baseline,59,0
block_count,StrictEqual_Baseline,60,0
-block_count,StrictEqual_Baseline,61,65
-block_count,StrictEqual_Baseline,62,17
-block_count,StrictEqual_Baseline,63,48
-block_count,StrictEqual_Baseline,64,65
+block_count,StrictEqual_Baseline,61,63
+block_count,StrictEqual_Baseline,62,15
+block_count,StrictEqual_Baseline,63,47
+block_count,StrictEqual_Baseline,64,63
block_count,StrictEqual_Baseline,65,0
-block_count,StrictEqual_Baseline,66,65
-block_count,StrictEqual_Baseline,67,65
-block_count,StrictEqual_Baseline,68,47
+block_count,StrictEqual_Baseline,66,63
+block_count,StrictEqual_Baseline,67,63
+block_count,StrictEqual_Baseline,68,46
block_count,StrictEqual_Baseline,69,17
block_count,StrictEqual_Baseline,70,0
block_count,StrictEqual_Baseline,71,0
@@ -34259,13 +34274,13 @@
block_count,StrictEqual_Baseline,77,0
block_count,StrictEqual_Baseline,78,0
block_count,StrictEqual_Baseline,79,0
-block_count,StrictEqual_Baseline,80,49
+block_count,StrictEqual_Baseline,80,52
block_count,StrictEqual_Baseline,81,0
block_count,StrictEqual_Baseline,82,0
block_count,StrictEqual_Baseline,83,0
block_count,StrictEqual_Baseline,84,0
block_count,StrictEqual_Baseline,85,0
-block_count,StrictEqual_Baseline,86,48
+block_count,StrictEqual_Baseline,86,51
block_count,StrictEqual_Baseline,87,1
block_count,StrictEqual_Baseline,88,32
block_count,StrictEqual_Baseline,89,16
@@ -34295,13 +34310,13 @@
block_count,StrictEqual_Baseline,113,0
block_count,StrictEqual_Baseline,114,0
block_count,StrictEqual_Baseline,115,16
-block_count,StrictEqual_Baseline,116,111
+block_count,StrictEqual_Baseline,116,114
block_count,StrictEqual_Baseline,117,32
-block_count,StrictEqual_Baseline,118,209
+block_count,StrictEqual_Baseline,118,211
block_count,StrictEqual_Baseline,119,0
-block_count,StrictEqual_Baseline,120,209
-block_count,LessThan_Baseline,0,164
-block_count,LessThan_Baseline,1,164
+block_count,StrictEqual_Baseline,120,211
+block_count,LessThan_Baseline,0,156
+block_count,LessThan_Baseline,1,157
block_count,LessThan_Baseline,2,10
block_count,LessThan_Baseline,3,3
block_count,LessThan_Baseline,4,0
@@ -34430,7 +34445,7 @@
block_count,LessThan_Baseline,127,0
block_count,LessThan_Baseline,128,0
block_count,LessThan_Baseline,129,7
-block_count,LessThan_Baseline,130,153
+block_count,LessThan_Baseline,130,146
block_count,LessThan_Baseline,131,0
block_count,LessThan_Baseline,132,0
block_count,LessThan_Baseline,133,0
@@ -34447,9 +34462,9 @@
block_count,LessThan_Baseline,144,0
block_count,LessThan_Baseline,145,0
block_count,LessThan_Baseline,146,0
-block_count,LessThan_Baseline,147,153
-block_count,LessThan_Baseline,148,47
-block_count,LessThan_Baseline,149,105
+block_count,LessThan_Baseline,147,145
+block_count,LessThan_Baseline,148,44
+block_count,LessThan_Baseline,149,100
block_count,LessThan_Baseline,150,0
block_count,LessThan_Baseline,151,0
block_count,LessThan_Baseline,152,0
@@ -34459,13 +34474,13 @@
block_count,LessThan_Baseline,156,10
block_count,LessThan_Baseline,157,8
block_count,LessThan_Baseline,158,2
-block_count,LessThan_Baseline,159,56
-block_count,LessThan_Baseline,160,107
-block_count,LessThan_Baseline,161,164
+block_count,LessThan_Baseline,159,53
+block_count,LessThan_Baseline,160,103
+block_count,LessThan_Baseline,161,156
block_count,LessThan_Baseline,162,0
-block_count,LessThan_Baseline,163,164
-block_count,GreaterThan_Baseline,0,50
-block_count,GreaterThan_Baseline,1,50
+block_count,LessThan_Baseline,163,156
+block_count,GreaterThan_Baseline,0,48
+block_count,GreaterThan_Baseline,1,48
block_count,GreaterThan_Baseline,2,4
block_count,GreaterThan_Baseline,3,2
block_count,GreaterThan_Baseline,4,0
@@ -34594,7 +34609,7 @@
block_count,GreaterThan_Baseline,127,0
block_count,GreaterThan_Baseline,128,0
block_count,GreaterThan_Baseline,129,1
-block_count,GreaterThan_Baseline,130,46
+block_count,GreaterThan_Baseline,130,43
block_count,GreaterThan_Baseline,131,0
block_count,GreaterThan_Baseline,132,0
block_count,GreaterThan_Baseline,133,0
@@ -34611,8 +34626,8 @@
block_count,GreaterThan_Baseline,144,0
block_count,GreaterThan_Baseline,145,0
block_count,GreaterThan_Baseline,146,0
-block_count,GreaterThan_Baseline,147,46
-block_count,GreaterThan_Baseline,148,28
+block_count,GreaterThan_Baseline,147,43
+block_count,GreaterThan_Baseline,148,26
block_count,GreaterThan_Baseline,149,17
block_count,GreaterThan_Baseline,150,0
block_count,GreaterThan_Baseline,151,0
@@ -34623,13 +34638,13 @@
block_count,GreaterThan_Baseline,156,3
block_count,GreaterThan_Baseline,157,2
block_count,GreaterThan_Baseline,158,1
-block_count,GreaterThan_Baseline,159,31
+block_count,GreaterThan_Baseline,159,29
block_count,GreaterThan_Baseline,160,18
-block_count,GreaterThan_Baseline,161,50
+block_count,GreaterThan_Baseline,161,48
block_count,GreaterThan_Baseline,162,0
-block_count,GreaterThan_Baseline,163,50
-block_count,LessThanOrEqual_Baseline,0,22
-block_count,LessThanOrEqual_Baseline,1,22
+block_count,GreaterThan_Baseline,163,47
+block_count,LessThanOrEqual_Baseline,0,21
+block_count,LessThanOrEqual_Baseline,1,21
block_count,LessThanOrEqual_Baseline,2,1
block_count,LessThanOrEqual_Baseline,3,0
block_count,LessThanOrEqual_Baseline,4,0
@@ -34744,7 +34759,7 @@
block_count,LessThanOrEqual_Baseline,113,0
block_count,LessThanOrEqual_Baseline,114,0
block_count,LessThanOrEqual_Baseline,115,0
-block_count,LessThanOrEqual_Baseline,116,0
+block_count,LessThanOrEqual_Baseline,116,1
block_count,LessThanOrEqual_Baseline,117,0
block_count,LessThanOrEqual_Baseline,118,0
block_count,LessThanOrEqual_Baseline,119,0
@@ -34757,8 +34772,8 @@
block_count,LessThanOrEqual_Baseline,126,0
block_count,LessThanOrEqual_Baseline,127,0
block_count,LessThanOrEqual_Baseline,128,0
-block_count,LessThanOrEqual_Baseline,129,0
-block_count,LessThanOrEqual_Baseline,130,20
+block_count,LessThanOrEqual_Baseline,129,1
+block_count,LessThanOrEqual_Baseline,130,19
block_count,LessThanOrEqual_Baseline,131,0
block_count,LessThanOrEqual_Baseline,132,0
block_count,LessThanOrEqual_Baseline,133,0
@@ -34775,9 +34790,9 @@
block_count,LessThanOrEqual_Baseline,144,0
block_count,LessThanOrEqual_Baseline,145,0
block_count,LessThanOrEqual_Baseline,146,0
-block_count,LessThanOrEqual_Baseline,147,20
+block_count,LessThanOrEqual_Baseline,147,19
block_count,LessThanOrEqual_Baseline,148,1
-block_count,LessThanOrEqual_Baseline,149,18
+block_count,LessThanOrEqual_Baseline,149,17
block_count,LessThanOrEqual_Baseline,150,0
block_count,LessThanOrEqual_Baseline,151,0
block_count,LessThanOrEqual_Baseline,152,0
@@ -34788,14 +34803,14 @@
block_count,LessThanOrEqual_Baseline,157,0
block_count,LessThanOrEqual_Baseline,158,1
block_count,LessThanOrEqual_Baseline,159,2
-block_count,LessThanOrEqual_Baseline,160,20
-block_count,LessThanOrEqual_Baseline,161,22
+block_count,LessThanOrEqual_Baseline,160,18
+block_count,LessThanOrEqual_Baseline,161,21
block_count,LessThanOrEqual_Baseline,162,0
-block_count,LessThanOrEqual_Baseline,163,22
-block_count,GreaterThanOrEqual_Baseline,0,44
-block_count,GreaterThanOrEqual_Baseline,1,45
-block_count,GreaterThanOrEqual_Baseline,2,4
-block_count,GreaterThanOrEqual_Baseline,3,3
+block_count,LessThanOrEqual_Baseline,163,21
+block_count,GreaterThanOrEqual_Baseline,0,43
+block_count,GreaterThanOrEqual_Baseline,1,44
+block_count,GreaterThanOrEqual_Baseline,2,3
+block_count,GreaterThanOrEqual_Baseline,3,2
block_count,GreaterThanOrEqual_Baseline,4,0
block_count,GreaterThanOrEqual_Baseline,5,0
block_count,GreaterThanOrEqual_Baseline,6,0
@@ -34892,7 +34907,7 @@
block_count,GreaterThanOrEqual_Baseline,97,0
block_count,GreaterThanOrEqual_Baseline,98,0
block_count,GreaterThanOrEqual_Baseline,99,0
-block_count,GreaterThanOrEqual_Baseline,100,3
+block_count,GreaterThanOrEqual_Baseline,100,2
block_count,GreaterThanOrEqual_Baseline,101,0
block_count,GreaterThanOrEqual_Baseline,102,0
block_count,GreaterThanOrEqual_Baseline,103,0
@@ -34907,7 +34922,7 @@
block_count,GreaterThanOrEqual_Baseline,112,0
block_count,GreaterThanOrEqual_Baseline,113,0
block_count,GreaterThanOrEqual_Baseline,114,0
-block_count,GreaterThanOrEqual_Baseline,115,3
+block_count,GreaterThanOrEqual_Baseline,115,2
block_count,GreaterThanOrEqual_Baseline,116,0
block_count,GreaterThanOrEqual_Baseline,117,0
block_count,GreaterThanOrEqual_Baseline,118,0
@@ -34939,27 +34954,27 @@
block_count,GreaterThanOrEqual_Baseline,144,0
block_count,GreaterThanOrEqual_Baseline,145,0
block_count,GreaterThanOrEqual_Baseline,146,0
-block_count,GreaterThanOrEqual_Baseline,147,40
+block_count,GreaterThanOrEqual_Baseline,147,39
block_count,GreaterThanOrEqual_Baseline,148,24
-block_count,GreaterThanOrEqual_Baseline,149,16
+block_count,GreaterThanOrEqual_Baseline,149,15
block_count,GreaterThanOrEqual_Baseline,150,0
block_count,GreaterThanOrEqual_Baseline,151,0
block_count,GreaterThanOrEqual_Baseline,152,0
block_count,GreaterThanOrEqual_Baseline,153,0
block_count,GreaterThanOrEqual_Baseline,154,0
block_count,GreaterThanOrEqual_Baseline,155,0
-block_count,GreaterThanOrEqual_Baseline,156,4
-block_count,GreaterThanOrEqual_Baseline,157,2
+block_count,GreaterThanOrEqual_Baseline,156,3
+block_count,GreaterThanOrEqual_Baseline,157,1
block_count,GreaterThanOrEqual_Baseline,158,1
block_count,GreaterThanOrEqual_Baseline,159,26
-block_count,GreaterThanOrEqual_Baseline,160,18
-block_count,GreaterThanOrEqual_Baseline,161,44
+block_count,GreaterThanOrEqual_Baseline,160,17
+block_count,GreaterThanOrEqual_Baseline,161,43
block_count,GreaterThanOrEqual_Baseline,162,0
-block_count,GreaterThanOrEqual_Baseline,163,44
+block_count,GreaterThanOrEqual_Baseline,163,43
block_count,Equal_WithFeedback,0,23
block_count,Equal_WithFeedback,1,30
-block_count,Equal_WithFeedback,2,20
-block_count,Equal_WithFeedback,3,17
+block_count,Equal_WithFeedback,2,21
+block_count,Equal_WithFeedback,3,18
block_count,Equal_WithFeedback,4,17
block_count,Equal_WithFeedback,5,15
block_count,Equal_WithFeedback,6,13
@@ -35072,7 +35087,7 @@
block_count,Equal_WithFeedback,113,2
block_count,Equal_WithFeedback,114,3
block_count,Equal_WithFeedback,115,2
-block_count,Equal_WithFeedback,116,1
+block_count,Equal_WithFeedback,116,2
block_count,Equal_WithFeedback,117,0
block_count,Equal_WithFeedback,118,0
block_count,Equal_WithFeedback,119,0
@@ -35227,10 +35242,10 @@
block_count,StrictEqual_WithFeedback,85,0
block_count,StrictEqual_WithFeedback,86,12
block_count,StrictEqual_WithFeedback,87,3
-block_count,StrictEqual_WithFeedback,88,9
+block_count,StrictEqual_WithFeedback,88,10
block_count,StrictEqual_WithFeedback,89,8
block_count,StrictEqual_WithFeedback,90,8
-block_count,StrictEqual_WithFeedback,91,4
+block_count,StrictEqual_WithFeedback,91,5
block_count,StrictEqual_WithFeedback,92,2
block_count,StrictEqual_WithFeedback,93,0
block_count,StrictEqual_WithFeedback,94,0
@@ -35256,11 +35271,11 @@
block_count,StrictEqual_WithFeedback,114,0
block_count,StrictEqual_WithFeedback,115,1
block_count,StrictEqual_WithFeedback,116,23
-block_count,StrictEqual_WithFeedback,117,9
+block_count,StrictEqual_WithFeedback,117,10
block_count,StrictEqual_WithFeedback,118,44
block_count,StrictEqual_WithFeedback,119,0
block_count,StrictEqual_WithFeedback,120,44
-block_count,LessThan_WithFeedback,0,3
+block_count,LessThan_WithFeedback,0,4
block_count,LessThan_WithFeedback,1,4
block_count,LessThan_WithFeedback,2,0
block_count,LessThan_WithFeedback,3,0
@@ -35390,7 +35405,7 @@
block_count,LessThan_WithFeedback,127,0
block_count,LessThan_WithFeedback,128,0
block_count,LessThan_WithFeedback,129,0
-block_count,LessThan_WithFeedback,130,3
+block_count,LessThan_WithFeedback,130,4
block_count,LessThan_WithFeedback,131,0
block_count,LessThan_WithFeedback,132,0
block_count,LessThan_WithFeedback,133,0
@@ -35407,9 +35422,9 @@
block_count,LessThan_WithFeedback,144,0
block_count,LessThan_WithFeedback,145,0
block_count,LessThan_WithFeedback,146,0
-block_count,LessThan_WithFeedback,147,3
+block_count,LessThan_WithFeedback,147,4
block_count,LessThan_WithFeedback,148,0
-block_count,LessThan_WithFeedback,149,3
+block_count,LessThan_WithFeedback,149,4
block_count,LessThan_WithFeedback,150,0
block_count,LessThan_WithFeedback,151,0
block_count,LessThan_WithFeedback,152,0
@@ -35420,10 +35435,10 @@
block_count,LessThan_WithFeedback,157,0
block_count,LessThan_WithFeedback,158,0
block_count,LessThan_WithFeedback,159,0
-block_count,LessThan_WithFeedback,160,3
-block_count,LessThan_WithFeedback,161,3
+block_count,LessThan_WithFeedback,160,4
+block_count,LessThan_WithFeedback,161,4
block_count,LessThan_WithFeedback,162,0
-block_count,LessThan_WithFeedback,163,3
+block_count,LessThan_WithFeedback,163,4
block_count,GreaterThanOrEqual_WithFeedback,0,0
block_count,GreaterThanOrEqual_WithFeedback,1,0
block_count,GreaterThanOrEqual_WithFeedback,2,0
@@ -35649,8 +35664,8 @@
block_count,Decrement_Baseline,23,18
block_count,Decrement_Baseline,24,0
block_count,Decrement_Baseline,25,18
-block_count,Increment_Baseline,0,108
-block_count,Increment_Baseline,1,108
+block_count,Increment_Baseline,0,105
+block_count,Increment_Baseline,1,105
block_count,Increment_Baseline,2,0
block_count,Increment_Baseline,3,0
block_count,Increment_Baseline,4,0
@@ -35665,16 +35680,16 @@
block_count,Increment_Baseline,13,0
block_count,Increment_Baseline,14,0
block_count,Increment_Baseline,15,0
-block_count,Increment_Baseline,16,108
-block_count,Increment_Baseline,17,108
+block_count,Increment_Baseline,16,105
+block_count,Increment_Baseline,17,105
block_count,Increment_Baseline,18,0
block_count,Increment_Baseline,19,0
block_count,Increment_Baseline,20,0
block_count,Increment_Baseline,21,0
block_count,Increment_Baseline,22,0
-block_count,Increment_Baseline,23,108
+block_count,Increment_Baseline,23,105
block_count,Increment_Baseline,24,0
-block_count,Increment_Baseline,25,108
+block_count,Increment_Baseline,25,105
block_count,Negate_Baseline,0,3
block_count,Negate_Baseline,1,3
block_count,Negate_Baseline,2,2
@@ -36887,35 +36902,35 @@
block_count,ObjectToString,84,0
block_count,ObjectToString,85,170
block_count,ObjectToString,86,61
-block_count,OrdinaryHasInstance,0,168
-block_count,OrdinaryHasInstance,1,168
-block_count,OrdinaryHasInstance,2,168
+block_count,OrdinaryHasInstance,0,170
+block_count,OrdinaryHasInstance,1,169
+block_count,OrdinaryHasInstance,2,169
block_count,OrdinaryHasInstance,3,0
-block_count,OrdinaryHasInstance,4,168
+block_count,OrdinaryHasInstance,4,169
block_count,OrdinaryHasInstance,5,0
block_count,OrdinaryHasInstance,6,0
block_count,OrdinaryHasInstance,7,0
-block_count,OrdinaryHasInstance,8,168
-block_count,OrdinaryHasInstance,9,168
-block_count,OrdinaryHasInstance,10,168
-block_count,OrdinaryHasInstance,11,168
+block_count,OrdinaryHasInstance,8,169
+block_count,OrdinaryHasInstance,9,169
+block_count,OrdinaryHasInstance,10,169
+block_count,OrdinaryHasInstance,11,169
block_count,OrdinaryHasInstance,12,6
-block_count,OrdinaryHasInstance,13,161
-block_count,OrdinaryHasInstance,14,168
-block_count,OrdinaryHasInstance,15,540
-block_count,OrdinaryHasInstance,16,482
-block_count,OrdinaryHasInstance,17,58
-block_count,OrdinaryHasInstance,18,58
-block_count,OrdinaryHasInstance,19,58
+block_count,OrdinaryHasInstance,13,163
+block_count,OrdinaryHasInstance,14,169
+block_count,OrdinaryHasInstance,15,549
+block_count,OrdinaryHasInstance,16,491
+block_count,OrdinaryHasInstance,17,57
+block_count,OrdinaryHasInstance,18,57
+block_count,OrdinaryHasInstance,19,57
block_count,OrdinaryHasInstance,20,0
block_count,OrdinaryHasInstance,21,0
block_count,OrdinaryHasInstance,22,0
-block_count,OrdinaryHasInstance,23,540
-block_count,OrdinaryHasInstance,24,408
-block_count,OrdinaryHasInstance,25,372
-block_count,OrdinaryHasInstance,26,35
-block_count,OrdinaryHasInstance,27,132
-block_count,OrdinaryHasInstance,28,168
+block_count,OrdinaryHasInstance,23,549
+block_count,OrdinaryHasInstance,24,417
+block_count,OrdinaryHasInstance,25,379
+block_count,OrdinaryHasInstance,26,38
+block_count,OrdinaryHasInstance,27,131
+block_count,OrdinaryHasInstance,28,169
block_count,OrdinaryHasInstance,29,0
block_count,OrdinaryHasInstance,30,0
block_count,OrdinaryHasInstance,31,0
@@ -37033,7 +37048,7 @@
block_count,InstanceOf_Baseline,17,0
block_count,InstanceOf_Baseline,18,0
block_count,InstanceOf_Baseline,19,0
-block_count,InstanceOf_Baseline,20,37
+block_count,InstanceOf_Baseline,20,36
block_count,InstanceOf_Baseline,21,0
block_count,InstanceOf_Baseline,22,37
block_count,InstanceOf_Baseline,23,37
@@ -37144,20 +37159,20 @@
block_count,ForInFilter,16,0
block_count,ForInFilter,17,219
block_count,ForInFilter,18,219
-block_count,ForInFilter,19,172
-block_count,ForInFilter,20,172
-block_count,ForInFilter,21,172
+block_count,ForInFilter,19,171
+block_count,ForInFilter,20,171
+block_count,ForInFilter,21,171
block_count,ForInFilter,22,0
block_count,ForInFilter,23,0
block_count,ForInFilter,24,0
-block_count,ForInFilter,25,172
-block_count,ForInFilter,26,172
+block_count,ForInFilter,25,171
+block_count,ForInFilter,26,171
block_count,ForInFilter,27,0
block_count,ForInFilter,28,0
block_count,ForInFilter,29,0
block_count,ForInFilter,30,47
block_count,ForInFilter,31,0
-block_count,ForInFilter,32,172
+block_count,ForInFilter,32,171
block_count,ForInFilter,33,220
block_count,ForInFilter,34,220
block_count,ForInFilter,35,196
@@ -38135,7 +38150,7 @@
block_count,SetConstructor,389,90
block_count,SetConstructor,390,0
block_count,SetConstructor,391,90
-block_count,SetConstructor,392,362
+block_count,SetConstructor,392,361
block_count,SetConstructor,393,271
block_count,SetConstructor,394,90
block_count,SetConstructor,395,90
@@ -38280,7 +38295,7 @@
block_count,SetPrototypeDelete,22,9
block_count,SetPrototypeDelete,23,9
block_count,SetPrototypeDelete,24,9
-block_count,SetPrototypeDelete,25,10
+block_count,SetPrototypeDelete,25,11
block_count,SetPrototypeDelete,26,10
block_count,SetPrototypeDelete,27,8
block_count,SetPrototypeDelete,28,0
@@ -38522,10 +38537,10 @@
block_count,SetOrSetIteratorToList,54,0
block_count,SetOrSetIteratorToList,55,0
block_count,SetOrSetIteratorToList,56,0
-block_count,StringFromCharCode,0,17
+block_count,StringFromCharCode,0,15
block_count,StringFromCharCode,1,0
-block_count,StringFromCharCode,2,17
-block_count,StringFromCharCode,3,17
+block_count,StringFromCharCode,2,15
+block_count,StringFromCharCode,3,15
block_count,StringFromCharCode,4,8
block_count,StringFromCharCode,5,8
block_count,StringFromCharCode,6,8
@@ -38596,10 +38611,10 @@
block_count,StringFromCharCode,71,0
block_count,StringFromCharCode,72,0
block_count,StringFromCharCode,73,0
-block_count,StringFromCharCode,74,9
+block_count,StringFromCharCode,74,6
block_count,StringFromCharCode,75,0
-block_count,StringFromCharCode,76,9
-block_count,StringFromCharCode,77,6
+block_count,StringFromCharCode,76,6
+block_count,StringFromCharCode,77,4
block_count,StringFromCharCode,78,2
block_count,StringFromCharCode,79,2
block_count,StringFromCharCode,80,2
@@ -38609,12 +38624,12 @@
block_count,StringFromCharCode,84,0
block_count,StringFromCharCode,85,2
block_count,StringFromCharCode,86,0
-block_count,StringFromCharCode,87,9
+block_count,StringFromCharCode,87,6
block_count,StringFromCharCode,88,0
block_count,StringFromCharCode,89,0
block_count,StringFromCharCode,90,0
block_count,StringFromCharCode,91,0
-block_count,StringFromCharCode,92,9
+block_count,StringFromCharCode,92,6
block_count,StringPrototypeReplace,0,242
block_count,StringPrototypeReplace,1,0
block_count,StringPrototypeReplace,2,242
@@ -38927,17 +38942,17 @@
block_count,TypedArrayPrototypeByteLength,10,0
block_count,TypedArrayPrototypeByteLength,11,0
block_count,TypedArrayPrototypeByteLength,12,0
-block_count,TypedArrayPrototypeLength,0,4
+block_count,TypedArrayPrototypeLength,0,5
block_count,TypedArrayPrototypeLength,1,0
-block_count,TypedArrayPrototypeLength,2,4
-block_count,TypedArrayPrototypeLength,3,4
-block_count,TypedArrayPrototypeLength,4,4
+block_count,TypedArrayPrototypeLength,2,5
+block_count,TypedArrayPrototypeLength,3,5
+block_count,TypedArrayPrototypeLength,4,5
block_count,TypedArrayPrototypeLength,5,0
-block_count,TypedArrayPrototypeLength,6,4
-block_count,TypedArrayPrototypeLength,7,4
-block_count,TypedArrayPrototypeLength,8,4
-block_count,TypedArrayPrototypeLength,9,4
-block_count,TypedArrayPrototypeLength,10,4
+block_count,TypedArrayPrototypeLength,6,5
+block_count,TypedArrayPrototypeLength,7,5
+block_count,TypedArrayPrototypeLength,8,5
+block_count,TypedArrayPrototypeLength,9,5
+block_count,TypedArrayPrototypeLength,10,5
block_count,TypedArrayPrototypeLength,11,0
block_count,TypedArrayPrototypeLength,12,0
block_count,TypedArrayPrototypeLength,13,0
@@ -38958,8 +38973,8 @@
block_count,TypedArrayPrototypeLength,28,0
block_count,TypedArrayPrototypeLength,29,0
block_count,TypedArrayPrototypeLength,30,0
-block_count,TypedArrayPrototypeLength,31,4
-block_count,TypedArrayPrototypeLength,32,4
+block_count,TypedArrayPrototypeLength,31,5
+block_count,TypedArrayPrototypeLength,32,5
block_count,WasmToJsWrapperCSA,0,0
block_count,WasmToJsWrapperCSA,1,0
block_count,WasmToJsWrapperCSA,2,0
@@ -39650,9 +39665,9 @@
block_count,WeakMapLookupHashIndex,30,0
block_count,WeakMapLookupHashIndex,31,72
block_count,WeakMapLookupHashIndex,32,72
-block_count,WeakMapLookupHashIndex,33,107
-block_count,WeakMapLookupHashIndex,34,106
-block_count,WeakMapLookupHashIndex,35,34
+block_count,WeakMapLookupHashIndex,33,108
+block_count,WeakMapLookupHashIndex,34,108
+block_count,WeakMapLookupHashIndex,35,35
block_count,WeakMapLookupHashIndex,36,72
block_count,WeakMapLookupHashIndex,37,0
block_count,WeakMapPrototypeGet,0,37
@@ -40194,16 +40209,16 @@
block_count,AsyncGeneratorYieldWithAwaitResolveClosure,3,7
block_count,AsyncGeneratorYieldWithAwaitResolveClosure,4,0
block_count,AsyncGeneratorYieldWithAwaitResolveClosure,5,7
-block_count,StringAdd_CheckNone,0,7777
-block_count,StringAdd_CheckNone,1,7362
-block_count,StringAdd_CheckNone,2,7315
-block_count,StringAdd_CheckNone,3,7315
+block_count,StringAdd_CheckNone,0,7775
+block_count,StringAdd_CheckNone,1,7361
+block_count,StringAdd_CheckNone,2,7313
+block_count,StringAdd_CheckNone,3,7313
block_count,StringAdd_CheckNone,4,5878
block_count,StringAdd_CheckNone,5,5845
block_count,StringAdd_CheckNone,6,32
block_count,StringAdd_CheckNone,7,5878
block_count,StringAdd_CheckNone,8,5867
-block_count,StringAdd_CheckNone,9,11
+block_count,StringAdd_CheckNone,9,10
block_count,StringAdd_CheckNone,10,5878
block_count,StringAdd_CheckNone,11,2
block_count,StringAdd_CheckNone,12,5875
@@ -40211,9 +40226,9 @@
block_count,StringAdd_CheckNone,14,0
block_count,StringAdd_CheckNone,15,5877
block_count,StringAdd_CheckNone,16,5878
-block_count,StringAdd_CheckNone,17,1437
-block_count,StringAdd_CheckNone,18,1462
-block_count,StringAdd_CheckNone,19,1461
+block_count,StringAdd_CheckNone,17,1435
+block_count,StringAdd_CheckNone,18,1461
+block_count,StringAdd_CheckNone,19,1460
block_count,StringAdd_CheckNone,20,25
block_count,StringAdd_CheckNone,21,1
block_count,StringAdd_CheckNone,22,0
@@ -40238,37 +40253,37 @@
block_count,StringAdd_CheckNone,41,0
block_count,StringAdd_CheckNone,42,0
block_count,StringAdd_CheckNone,43,25
-block_count,StringAdd_CheckNone,44,1436
-block_count,StringAdd_CheckNone,45,1427
-block_count,StringAdd_CheckNone,46,1427
-block_count,StringAdd_CheckNone,47,1427
+block_count,StringAdd_CheckNone,44,1435
+block_count,StringAdd_CheckNone,45,1426
+block_count,StringAdd_CheckNone,46,1426
+block_count,StringAdd_CheckNone,47,1425
block_count,StringAdd_CheckNone,48,0
-block_count,StringAdd_CheckNone,49,1427
+block_count,StringAdd_CheckNone,49,1425
block_count,StringAdd_CheckNone,50,0
block_count,StringAdd_CheckNone,51,0
-block_count,StringAdd_CheckNone,52,1427
+block_count,StringAdd_CheckNone,52,1426
block_count,StringAdd_CheckNone,53,0
-block_count,StringAdd_CheckNone,54,1427
+block_count,StringAdd_CheckNone,54,1426
block_count,StringAdd_CheckNone,55,821
-block_count,StringAdd_CheckNone,56,605
-block_count,StringAdd_CheckNone,57,1475
+block_count,StringAdd_CheckNone,56,604
+block_count,StringAdd_CheckNone,57,1474
block_count,StringAdd_CheckNone,58,870
-block_count,StringAdd_CheckNone,59,605
-block_count,StringAdd_CheckNone,60,1427
-block_count,StringAdd_CheckNone,61,359
+block_count,StringAdd_CheckNone,59,604
+block_count,StringAdd_CheckNone,60,1426
+block_count,StringAdd_CheckNone,61,358
block_count,StringAdd_CheckNone,62,1067
-block_count,StringAdd_CheckNone,63,1427
+block_count,StringAdd_CheckNone,63,1426
block_count,StringAdd_CheckNone,64,0
-block_count,StringAdd_CheckNone,65,1427
-block_count,StringAdd_CheckNone,66,1008
+block_count,StringAdd_CheckNone,65,1426
+block_count,StringAdd_CheckNone,66,1007
block_count,StringAdd_CheckNone,67,418
block_count,StringAdd_CheckNone,68,530
block_count,StringAdd_CheckNone,69,111
block_count,StringAdd_CheckNone,70,418
-block_count,StringAdd_CheckNone,71,1427
+block_count,StringAdd_CheckNone,71,1426
block_count,StringAdd_CheckNone,72,347
-block_count,StringAdd_CheckNone,73,1079
-block_count,StringAdd_CheckNone,74,1427
+block_count,StringAdd_CheckNone,73,1078
+block_count,StringAdd_CheckNone,74,1426
block_count,StringAdd_CheckNone,75,0
block_count,StringAdd_CheckNone,76,8
block_count,StringAdd_CheckNone,77,8
@@ -40310,18 +40325,18 @@
block_count,StringAdd_CheckNone,113,414
block_count,SubString,0,1637
block_count,SubString,1,1410
-block_count,SubString,2,1299
+block_count,SubString,2,1298
block_count,SubString,3,1032
-block_count,SubString,4,1226
-block_count,SubString,5,194
-block_count,SubString,6,194
+block_count,SubString,4,1298
+block_count,SubString,5,266
+block_count,SubString,6,266
block_count,SubString,7,129
block_count,SubString,8,7
block_count,SubString,9,121
-block_count,SubString,10,65
-block_count,SubString,11,65
+block_count,SubString,10,137
+block_count,SubString,11,137
block_count,SubString,12,0
-block_count,SubString,13,194
+block_count,SubString,13,266
block_count,SubString,14,0
block_count,SubString,15,1032
block_count,SubString,16,1032
@@ -40407,7 +40422,7 @@
block_count,SubString,96,0
block_count,SubString,97,562
block_count,SubString,98,1357
-block_count,SubString,99,795
+block_count,SubString,99,794
block_count,SubString,100,562
block_count,SubString,101,562
block_count,SubString,102,408
@@ -40501,15 +40516,15 @@
block_count,SubString,190,0
block_count,SubString,191,266
block_count,SubString,192,401
-block_count,SubString,193,135
-block_count,SubString,194,135
+block_count,SubString,193,134
+block_count,SubString,194,134
block_count,SubString,195,132
block_count,SubString,196,0
block_count,SubString,197,131
block_count,SubString,198,2
block_count,SubString,199,2
block_count,SubString,200,0
-block_count,SubString,201,135
+block_count,SubString,201,134
block_count,SubString,202,0
block_count,SubString,203,0
block_count,SubString,204,0
@@ -40536,19 +40551,19 @@
block_count,SubString,225,111
block_count,SubString,226,227
block_count,SubString,227,227
-block_count,GetProperty,0,446
-block_count,GetProperty,1,446
+block_count,GetProperty,0,445
+block_count,GetProperty,1,445
block_count,GetProperty,2,0
block_count,GetProperty,3,445
-block_count,GetProperty,4,441
-block_count,GetProperty,5,441
-block_count,GetProperty,6,441
+block_count,GetProperty,4,440
+block_count,GetProperty,5,440
+block_count,GetProperty,6,440
block_count,GetProperty,7,0
block_count,GetProperty,8,0
block_count,GetProperty,9,0
block_count,GetProperty,10,0
block_count,GetProperty,11,0
-block_count,GetProperty,12,441
+block_count,GetProperty,12,440
block_count,GetProperty,13,350
block_count,GetProperty,14,0
block_count,GetProperty,15,0
@@ -40567,12 +40582,12 @@
block_count,GetProperty,28,0
block_count,GetProperty,29,0
block_count,GetProperty,30,0
-block_count,GetProperty,31,91
-block_count,GetProperty,32,441
-block_count,GetProperty,33,1170
-block_count,GetProperty,34,1170
-block_count,GetProperty,35,1170
-block_count,GetProperty,36,1147
+block_count,GetProperty,31,90
+block_count,GetProperty,32,440
+block_count,GetProperty,33,1168
+block_count,GetProperty,34,1168
+block_count,GetProperty,35,1167
+block_count,GetProperty,36,1145
block_count,GetProperty,37,43
block_count,GetProperty,38,43
block_count,GetProperty,39,0
@@ -40598,22 +40613,22 @@
block_count,GetProperty,59,43
block_count,GetProperty,60,0
block_count,GetProperty,61,0
-block_count,GetProperty,62,1104
+block_count,GetProperty,62,1102
block_count,GetProperty,63,0
-block_count,GetProperty,64,1104
+block_count,GetProperty,64,1102
block_count,GetProperty,65,55
-block_count,GetProperty,66,1048
-block_count,GetProperty,67,2683
-block_count,GetProperty,68,2423
-block_count,GetProperty,69,2303
-block_count,GetProperty,70,1635
-block_count,GetProperty,71,668
+block_count,GetProperty,66,1046
+block_count,GetProperty,67,2679
+block_count,GetProperty,68,2420
+block_count,GetProperty,69,2300
+block_count,GetProperty,70,1633
+block_count,GetProperty,71,667
block_count,GetProperty,72,119
block_count,GetProperty,73,259
-block_count,GetProperty,74,724
-block_count,GetProperty,75,441
-block_count,GetProperty,76,283
-block_count,GetProperty,77,274
+block_count,GetProperty,74,723
+block_count,GetProperty,75,440
+block_count,GetProperty,76,282
+block_count,GetProperty,77,273
block_count,GetProperty,78,8
block_count,GetProperty,79,431
block_count,GetProperty,80,2
@@ -40671,8 +40686,8 @@
block_count,GetProperty,132,0
block_count,GetProperty,133,0
block_count,GetProperty,134,0
-block_count,GetProperty,135,739
-block_count,GetProperty,136,737
+block_count,GetProperty,135,737
+block_count,GetProperty,136,736
block_count,GetProperty,137,1
block_count,GetProperty,138,0
block_count,GetProperty,139,1
@@ -40711,8 +40726,8 @@
block_count,GetProperty,172,0
block_count,GetProperty,173,0
block_count,GetProperty,174,0
-block_count,GetProperty,175,739
-block_count,GetProperty,176,729
+block_count,GetProperty,175,737
+block_count,GetProperty,176,727
block_count,GetProperty,177,9
block_count,GetProperty,178,431
block_count,GetProperty,179,2
@@ -48553,8 +48568,8 @@
block_count,ArrayPrototypeSplice,544,0
block_count,ArrayPrototypeSplice,545,0
block_count,ArrayPrototypeSplice,546,0
-block_count,ArrayPrototypeSplice,547,4
-block_count,ArrayPrototypeSplice,548,4
+block_count,ArrayPrototypeSplice,547,0
+block_count,ArrayPrototypeSplice,548,0
block_count,ArrayPrototypeSplice,549,0
block_count,ArrayPrototypeSplice,550,0
block_count,ArrayPrototypeSplice,551,0
@@ -49571,32 +49586,32 @@
block_count,StringPrototypeCharAt,46,0
block_count,StringPrototypeCharAt,47,10
block_count,StringPrototypeCharAt,48,0
-block_count,StringPrototypeCharCodeAt,0,61
+block_count,StringPrototypeCharCodeAt,0,60
block_count,StringPrototypeCharCodeAt,1,0
-block_count,StringPrototypeCharCodeAt,2,61
-block_count,StringPrototypeCharCodeAt,3,61
-block_count,StringPrototypeCharCodeAt,4,61
+block_count,StringPrototypeCharCodeAt,2,60
+block_count,StringPrototypeCharCodeAt,3,60
+block_count,StringPrototypeCharCodeAt,4,60
block_count,StringPrototypeCharCodeAt,5,0
block_count,StringPrototypeCharCodeAt,6,0
block_count,StringPrototypeCharCodeAt,7,0
-block_count,StringPrototypeCharCodeAt,8,61
+block_count,StringPrototypeCharCodeAt,8,60
block_count,StringPrototypeCharCodeAt,9,0
-block_count,StringPrototypeCharCodeAt,10,61
-block_count,StringPrototypeCharCodeAt,11,61
+block_count,StringPrototypeCharCodeAt,10,60
+block_count,StringPrototypeCharCodeAt,11,60
block_count,StringPrototypeCharCodeAt,12,0
-block_count,StringPrototypeCharCodeAt,13,61
-block_count,StringPrototypeCharCodeAt,14,61
-block_count,StringPrototypeCharCodeAt,15,61
-block_count,StringPrototypeCharCodeAt,16,113
-block_count,StringPrototypeCharCodeAt,17,52
-block_count,StringPrototypeCharCodeAt,18,52
+block_count,StringPrototypeCharCodeAt,13,60
+block_count,StringPrototypeCharCodeAt,14,60
+block_count,StringPrototypeCharCodeAt,15,60
+block_count,StringPrototypeCharCodeAt,16,69
+block_count,StringPrototypeCharCodeAt,17,8
+block_count,StringPrototypeCharCodeAt,18,8
block_count,StringPrototypeCharCodeAt,19,0
block_count,StringPrototypeCharCodeAt,20,0
block_count,StringPrototypeCharCodeAt,21,0
-block_count,StringPrototypeCharCodeAt,22,51
-block_count,StringPrototypeCharCodeAt,23,51
+block_count,StringPrototypeCharCodeAt,22,8
+block_count,StringPrototypeCharCodeAt,23,8
block_count,StringPrototypeCharCodeAt,24,0
-block_count,StringPrototypeCharCodeAt,25,52
+block_count,StringPrototypeCharCodeAt,25,8
block_count,StringPrototypeCharCodeAt,26,0
block_count,StringPrototypeCharCodeAt,27,0
block_count,StringPrototypeCharCodeAt,28,0
@@ -49609,8 +49624,8 @@
block_count,StringPrototypeCharCodeAt,35,0
block_count,StringPrototypeCharCodeAt,36,0
block_count,StringPrototypeCharCodeAt,37,0
-block_count,StringPrototypeCharCodeAt,38,61
-block_count,StringPrototypeCharCodeAt,39,61
+block_count,StringPrototypeCharCodeAt,38,60
+block_count,StringPrototypeCharCodeAt,39,60
block_count,StringPrototypeCharCodeAt,40,9
block_count,StringPrototypeCharCodeAt,41,51
block_count,StringPrototypeCharCodeAt,42,0
@@ -50206,7 +50221,7 @@
block_count,StringAddConvertRight,169,9
block_count,StringAddConvertRight,170,9
block_count,StringAddConvertRight,171,2
-block_count,StringAddConvertRight,172,7
+block_count,StringAddConvertRight,172,6
block_count,StringAddConvertRight,173,6
block_count,StringAddConvertRight,174,0
block_count,StringAddConvertRight,175,0
@@ -50276,7 +50291,7 @@
block_count,StringCharAt,30,0
block_count,StringCharAt,31,0
block_count,StringCharAt,32,9
-block_count,FastNewClosureBaseline,0,36
+block_count,FastNewClosureBaseline,0,37
block_count,FastNewFunctionContextFunction,0,51
block_count,FastNewFunctionContextFunction,1,51
block_count,FastNewFunctionContextFunction,2,0
@@ -50296,21 +50311,21 @@
block_count,FastNewFunctionContextFunction,16,51
block_count,FastNewFunctionContextFunction,17,46
block_count,FastNewFunctionContextFunction,18,5
-block_count,FastNewFunctionContextFunctionWithCells,0,10
-block_count,FastNewFunctionContextFunctionWithCells,1,10
+block_count,FastNewFunctionContextFunctionWithCells,0,11
+block_count,FastNewFunctionContextFunctionWithCells,1,11
block_count,FastNewFunctionContextFunctionWithCells,2,0
-block_count,FastNewFunctionContextFunctionWithCells,3,10
+block_count,FastNewFunctionContextFunctionWithCells,3,11
block_count,FastNewFunctionContextFunctionWithCells,4,0
block_count,FastNewFunctionContextFunctionWithCells,5,0
-block_count,FastNewFunctionContextFunctionWithCells,6,10
+block_count,FastNewFunctionContextFunctionWithCells,6,11
block_count,FastNewFunctionContextFunctionWithCells,7,0
-block_count,FastNewFunctionContextFunctionWithCells,8,10
-block_count,FastNewFunctionContextFunctionWithCells,9,10
+block_count,FastNewFunctionContextFunctionWithCells,8,11
+block_count,FastNewFunctionContextFunctionWithCells,9,11
block_count,FastNewFunctionContextFunctionWithCells,10,0
-block_count,FastNewFunctionContextFunctionWithCells,11,10
+block_count,FastNewFunctionContextFunctionWithCells,11,11
block_count,FastNewFunctionContextFunctionWithCells,12,0
-block_count,FastNewFunctionContextFunctionWithCells,13,10
-block_count,FastNewFunctionContextFunctionWithCells,14,10
+block_count,FastNewFunctionContextFunctionWithCells,13,11
+block_count,FastNewFunctionContextFunctionWithCells,14,11
block_count,FastNewFunctionContextFunctionWithCells,15,0
block_count,FastNewFunctionContextFunctionWithCells,16,0
block_count,FastNewFunctionContextFunctionWithCells,17,0
@@ -50343,28 +50358,28 @@
block_count,FastNewFunctionContextFunctionWithCells,44,0
block_count,FastNewFunctionContextFunctionWithCells,45,0
block_count,FastNewFunctionContextFunctionWithCells,46,0
-block_count,FastNewFunctionContextFunctionWithCells,47,10
+block_count,FastNewFunctionContextFunctionWithCells,47,11
block_count,FastNewFunctionContextFunctionWithCells,48,0
-block_count,FastNewFunctionContextFunctionWithCells,49,10
-block_count,FastNewFunctionContextFunctionWithCells,50,10
+block_count,FastNewFunctionContextFunctionWithCells,49,11
+block_count,FastNewFunctionContextFunctionWithCells,50,11
block_count,FastNewFunctionContextFunctionWithCells,51,0
-block_count,FastNewFunctionContextFunctionWithCells,52,10
+block_count,FastNewFunctionContextFunctionWithCells,52,11
block_count,FastNewFunctionContextFunctionWithCells,53,0
-block_count,FastNewFunctionContextFunctionWithCells,54,10
-block_count,FastNewFunctionContextFunctionWithCells,55,10
-block_count,FastNewFunctionContextFunctionWithCells,56,10
+block_count,FastNewFunctionContextFunctionWithCells,54,11
+block_count,FastNewFunctionContextFunctionWithCells,55,11
+block_count,FastNewFunctionContextFunctionWithCells,56,11
block_count,FastNewFunctionContextFunctionWithCells,57,0
-block_count,FastNewFunctionContextFunctionWithCells,58,10
+block_count,FastNewFunctionContextFunctionWithCells,58,11
block_count,FastNewFunctionContextFunctionWithCells,59,0
-block_count,FastNewFunctionContextFunctionWithCells,60,10
-block_count,FastNewFunctionContextFunctionWithCells,61,9
+block_count,FastNewFunctionContextFunctionWithCells,60,11
+block_count,FastNewFunctionContextFunctionWithCells,61,10
block_count,FastNewFunctionContextFunctionWithCells,62,1
-block_count,FastNewFunctionContextFunctionWithCells,63,10
-block_count,FastNewFunctionContextFunctionWithCells,64,10
+block_count,FastNewFunctionContextFunctionWithCells,63,11
+block_count,FastNewFunctionContextFunctionWithCells,64,11
block_count,FastNewFunctionContextFunctionWithCells,65,0
-block_count,FastNewFunctionContextFunctionWithCells,66,10
-block_count,CreateRegExpLiteral,0,14
-block_count,CreateRegExpLiteral,1,14
+block_count,FastNewFunctionContextFunctionWithCells,66,11
+block_count,CreateRegExpLiteral,0,13
+block_count,CreateRegExpLiteral,1,13
block_count,CreateRegExpLiteral,2,0
block_count,CreateRegExpLiteral,3,13
block_count,CreateRegExpLiteral,4,0
@@ -50379,16 +50394,16 @@
block_count,CreateShallowArrayLiteral,2,0
block_count,CreateShallowArrayLiteral,3,9
block_count,CreateShallowArrayLiteral,4,9
-block_count,CreateShallowArrayLiteral,5,8
-block_count,CreateShallowArrayLiteral,6,6
-block_count,CreateShallowArrayLiteral,7,6
-block_count,CreateShallowArrayLiteral,8,6
+block_count,CreateShallowArrayLiteral,5,9
+block_count,CreateShallowArrayLiteral,6,5
+block_count,CreateShallowArrayLiteral,7,5
+block_count,CreateShallowArrayLiteral,8,5
block_count,CreateShallowArrayLiteral,9,0
-block_count,CreateShallowArrayLiteral,10,6
+block_count,CreateShallowArrayLiteral,10,5
block_count,CreateShallowArrayLiteral,11,0
block_count,CreateShallowArrayLiteral,12,0
-block_count,CreateShallowArrayLiteral,13,6
-block_count,CreateShallowArrayLiteral,14,6
+block_count,CreateShallowArrayLiteral,13,5
+block_count,CreateShallowArrayLiteral,14,5
block_count,CreateShallowArrayLiteral,15,0
block_count,CreateShallowArrayLiteral,16,0
block_count,CreateShallowArrayLiteral,17,0
@@ -50398,8 +50413,8 @@
block_count,CreateShallowArrayLiteral,21,0
block_count,CreateShallowArrayLiteral,22,0
block_count,CreateShallowArrayLiteral,23,0
-block_count,CreateShallowArrayLiteral,24,6
-block_count,CreateShallowArrayLiteral,25,6
+block_count,CreateShallowArrayLiteral,24,5
+block_count,CreateShallowArrayLiteral,25,5
block_count,CreateShallowArrayLiteral,26,0
block_count,CreateShallowArrayLiteral,27,0
block_count,CreateShallowArrayLiteral,28,0
@@ -50411,10 +50426,10 @@
block_count,CreateShallowArrayLiteral,34,0
block_count,CreateShallowArrayLiteral,35,0
block_count,CreateShallowArrayLiteral,36,0
-block_count,CreateShallowArrayLiteral,37,6
+block_count,CreateShallowArrayLiteral,37,5
block_count,CreateShallowArrayLiteral,38,0
-block_count,CreateShallowArrayLiteral,39,2
-block_count,CreateShallowArrayLiteral,40,8
+block_count,CreateShallowArrayLiteral,39,3
+block_count,CreateShallowArrayLiteral,40,9
block_count,CreateShallowArrayLiteral,41,0
block_count,CreateShallowArrayLiteral,42,0
block_count,CreateShallowArrayLiteral,43,0
@@ -50460,8 +50475,8 @@
block_count,CreateEmptyArrayLiteral,9,0
block_count,CreateEmptyArrayLiteral,10,13
block_count,CreateEmptyArrayLiteral,11,13
-block_count,CreateShallowObjectLiteral,0,17
-block_count,CreateShallowObjectLiteral,1,17
+block_count,CreateShallowObjectLiteral,0,16
+block_count,CreateShallowObjectLiteral,1,16
block_count,CreateShallowObjectLiteral,2,0
block_count,CreateShallowObjectLiteral,3,16
block_count,CreateShallowObjectLiteral,4,16
@@ -50584,7 +50599,7 @@
block_count,CreateShallowObjectLiteral,121,16
block_count,CreateShallowObjectLiteral,122,16
block_count,CreateShallowObjectLiteral,123,41
-block_count,CreateShallowObjectLiteral,124,35
+block_count,CreateShallowObjectLiteral,124,34
block_count,CreateShallowObjectLiteral,125,6
block_count,CreateShallowObjectLiteral,126,0
block_count,CreateShallowObjectLiteral,127,0
@@ -50614,7 +50629,7 @@
block_count,CreateShallowObjectLiteral,151,0
block_count,CreateShallowObjectLiteral,152,0
block_count,CreateShallowObjectLiteral,153,0
-block_count,CreateShallowObjectLiteral,154,6
+block_count,CreateShallowObjectLiteral,154,5
block_count,CreateShallowObjectLiteral,155,28
block_count,CreateShallowObjectLiteral,156,6
block_count,CreateShallowObjectLiteral,157,41
@@ -50817,13 +50832,13 @@
block_count,NumberToString,54,1158
block_count,NumberToString,55,1182
block_count,NumberToString,56,22
-block_count,ToBoolean,0,16
-block_count,ToBoolean,1,15
+block_count,ToBoolean,0,14
+block_count,ToBoolean,1,14
block_count,ToBoolean,2,1
-block_count,ToBoolean,3,1
-block_count,ToBoolean,4,1
-block_count,ToBoolean,5,1
-block_count,ToBoolean,6,1
+block_count,ToBoolean,3,0
+block_count,ToBoolean,4,0
+block_count,ToBoolean,5,0
+block_count,ToBoolean,6,0
block_count,ToBoolean,7,0
block_count,ToBoolean,8,0
block_count,ToBoolean,9,0
@@ -50832,17 +50847,17 @@
block_count,ToBoolean,12,0
block_count,ToBoolean,13,0
block_count,ToBoolean,14,0
-block_count,ToBoolean,15,14
+block_count,ToBoolean,15,12
block_count,ToBoolean,16,0
block_count,ToBoolean,17,0
block_count,ToBoolean,18,0
block_count,ToBooleanForBaselineJump,0,439
block_count,ToBooleanForBaselineJump,1,407
-block_count,ToBooleanForBaselineJump,2,165
-block_count,ToBooleanForBaselineJump,3,72
-block_count,ToBooleanForBaselineJump,4,72
-block_count,ToBooleanForBaselineJump,5,72
-block_count,ToBooleanForBaselineJump,6,72
+block_count,ToBooleanForBaselineJump,2,164
+block_count,ToBooleanForBaselineJump,3,73
+block_count,ToBooleanForBaselineJump,4,73
+block_count,ToBooleanForBaselineJump,5,73
+block_count,ToBooleanForBaselineJump,6,73
block_count,ToBooleanForBaselineJump,7,0
block_count,ToBooleanForBaselineJump,8,0
block_count,ToBooleanForBaselineJump,9,0
@@ -50850,8 +50865,8 @@
block_count,ToBooleanForBaselineJump,11,0
block_count,ToBooleanForBaselineJump,12,0
block_count,ToBooleanForBaselineJump,13,0
-block_count,ToBooleanForBaselineJump,14,92
-block_count,ToBooleanForBaselineJump,15,241
+block_count,ToBooleanForBaselineJump,14,90
+block_count,ToBooleanForBaselineJump,15,242
block_count,ToBooleanForBaselineJump,16,32
block_count,ToBooleanForBaselineJump,17,19
block_count,ToBooleanForBaselineJump,18,12
@@ -51701,38 +51716,38 @@
block_count,DataViewPrototypeSetFloat64,119,0
block_count,DataViewPrototypeSetFloat64,120,0
block_count,DataViewPrototypeSetFloat64,121,0
-block_count,FunctionPrototypeHasInstance,0,49
+block_count,FunctionPrototypeHasInstance,0,48
block_count,FunctionPrototypeHasInstance,1,0
-block_count,FunctionPrototypeHasInstance,2,49
-block_count,FunctionPrototypeHasInstance,3,49
-block_count,FunctionPrototypeHasInstance,4,49
-block_count,FunctionPrototypeHasInstance,5,49
+block_count,FunctionPrototypeHasInstance,2,48
+block_count,FunctionPrototypeHasInstance,3,48
+block_count,FunctionPrototypeHasInstance,4,48
+block_count,FunctionPrototypeHasInstance,5,48
block_count,FunctionPrototypeHasInstance,6,0
-block_count,FunctionPrototypeHasInstance,7,49
+block_count,FunctionPrototypeHasInstance,7,48
block_count,FunctionPrototypeHasInstance,8,0
block_count,FunctionPrototypeHasInstance,9,0
block_count,FunctionPrototypeHasInstance,10,0
-block_count,FunctionPrototypeHasInstance,11,49
-block_count,FunctionPrototypeHasInstance,12,49
-block_count,FunctionPrototypeHasInstance,13,49
-block_count,FunctionPrototypeHasInstance,14,49
+block_count,FunctionPrototypeHasInstance,11,48
+block_count,FunctionPrototypeHasInstance,12,48
+block_count,FunctionPrototypeHasInstance,13,48
+block_count,FunctionPrototypeHasInstance,14,48
block_count,FunctionPrototypeHasInstance,15,1
-block_count,FunctionPrototypeHasInstance,16,47
-block_count,FunctionPrototypeHasInstance,17,49
-block_count,FunctionPrototypeHasInstance,18,158
-block_count,FunctionPrototypeHasInstance,19,156
+block_count,FunctionPrototypeHasInstance,16,46
+block_count,FunctionPrototypeHasInstance,17,48
+block_count,FunctionPrototypeHasInstance,18,157
+block_count,FunctionPrototypeHasInstance,19,154
block_count,FunctionPrototypeHasInstance,20,2
block_count,FunctionPrototypeHasInstance,21,2
block_count,FunctionPrototypeHasInstance,22,2
block_count,FunctionPrototypeHasInstance,23,0
block_count,FunctionPrototypeHasInstance,24,0
block_count,FunctionPrototypeHasInstance,25,0
-block_count,FunctionPrototypeHasInstance,26,158
-block_count,FunctionPrototypeHasInstance,27,130
-block_count,FunctionPrototypeHasInstance,28,109
+block_count,FunctionPrototypeHasInstance,26,157
+block_count,FunctionPrototypeHasInstance,27,129
+block_count,FunctionPrototypeHasInstance,28,108
block_count,FunctionPrototypeHasInstance,29,20
block_count,FunctionPrototypeHasInstance,30,28
-block_count,FunctionPrototypeHasInstance,31,49
+block_count,FunctionPrototypeHasInstance,31,48
block_count,FunctionPrototypeHasInstance,32,0
block_count,FunctionPrototypeHasInstance,33,0
block_count,FunctionPrototypeHasInstance,34,0
@@ -51809,9 +51824,9 @@
block_count,FastFunctionPrototypeBind,68,0
block_count,FastFunctionPrototypeBind,69,7
block_count,FastFunctionPrototypeBind,70,7
-block_count,ForInNext,0,31
+block_count,ForInNext,0,30
block_count,ForInNext,1,0
-block_count,ForInNext,2,31
+block_count,ForInNext,2,30
block_count,ForInNext,3,11
block_count,ForInNext,4,0
block_count,ForInNext,5,11
@@ -51819,8 +51834,8 @@
block_count,GetIteratorWithFeedback,0,0
block_count,GetIteratorWithFeedback,1,0
block_count,GetIteratorWithFeedback,2,0
-block_count,GetIteratorBaseline,0,15
-block_count,CallIteratorWithFeedback,0,16
+block_count,GetIteratorBaseline,0,14
+block_count,CallIteratorWithFeedback,0,15
block_count,CallIteratorWithFeedback,1,15
block_count,CallIteratorWithFeedback,2,0
block_count,CallIteratorWithFeedback,3,0
@@ -51888,13 +51903,13 @@
block_count,CallIteratorWithFeedback,65,0
block_count,CallIteratorWithFeedback,66,15
block_count,CallIteratorWithFeedback,67,0
-block_count,CallIteratorWithFeedback,68,16
-block_count,CallIteratorWithFeedback,69,16
+block_count,CallIteratorWithFeedback,68,15
+block_count,CallIteratorWithFeedback,69,15
block_count,CallIteratorWithFeedback,70,0
-block_count,CallIteratorWithFeedback,71,16
-block_count,CallIteratorWithFeedback,72,16
+block_count,CallIteratorWithFeedback,71,15
+block_count,CallIteratorWithFeedback,72,15
block_count,CallIteratorWithFeedback,73,0
-block_count,CallIteratorWithFeedback,74,16
+block_count,CallIteratorWithFeedback,74,15
block_count,MathAbs,0,0
block_count,MathAbs,1,0
block_count,MathAbs,2,0
@@ -52104,8 +52119,8 @@
block_count,MathMin,9,0
block_count,MathMin,10,2
block_count,MathMin,11,2
-block_count,MathMin,12,1
-block_count,MathMin,13,1
+block_count,MathMin,12,0
+block_count,MathMin,13,0
block_count,MathMin,14,0
block_count,MathMin,15,1
block_count,MathMin,16,2
@@ -52606,10 +52621,10 @@
block_count,NumberPrototypeToString,154,2
block_count,NumberPrototypeToString,155,2
block_count,NumberPrototypeToString,156,0
-block_count,NumberIsInteger,0,2
+block_count,NumberIsInteger,0,1
block_count,NumberIsInteger,1,0
-block_count,NumberIsInteger,2,2
-block_count,NumberIsInteger,3,2
+block_count,NumberIsInteger,2,1
+block_count,NumberIsInteger,3,1
block_count,NumberIsInteger,4,0
block_count,NumberIsInteger,5,0
block_count,NumberIsInteger,6,0
@@ -52715,7 +52730,7 @@
block_count,Add,19,0
block_count,Add,20,0
block_count,Add,21,0
-block_count,Add,22,6
+block_count,Add,22,7
block_count,Add,23,0
block_count,Add,24,0
block_count,Add,25,0
@@ -52734,8 +52749,8 @@
block_count,Add,38,0
block_count,Add,39,0
block_count,Add,40,0
-block_count,Add,41,6
-block_count,Add,42,6
+block_count,Add,41,7
+block_count,Add,42,7
block_count,Add,43,0
block_count,Add,44,0
block_count,Add,45,0
@@ -53130,14 +53145,14 @@
block_count,GreaterThanOrEqual,73,6
block_count,Equal,0,47
block_count,Equal,1,136
-block_count,Equal,2,134
+block_count,Equal,2,133
block_count,Equal,3,75
block_count,Equal,4,56
block_count,Equal,5,36
block_count,Equal,6,24
-block_count,Equal,7,19
-block_count,Equal,8,19
-block_count,Equal,9,19
+block_count,Equal,7,18
+block_count,Equal,8,18
+block_count,Equal,9,18
block_count,Equal,10,16
block_count,Equal,11,16
block_count,Equal,12,0
@@ -53212,7 +53227,7 @@
block_count,Equal,81,0
block_count,Equal,82,3
block_count,Equal,83,19
-block_count,Equal,84,38
+block_count,Equal,84,37
block_count,Equal,85,58
block_count,Equal,86,58
block_count,Equal,87,32
@@ -53230,8 +53245,8 @@
block_count,Equal,99,0
block_count,Equal,100,29
block_count,Equal,101,88
-block_count,Equal,102,28
-block_count,Equal,103,28
+block_count,Equal,102,27
+block_count,Equal,103,27
block_count,Equal,104,0
block_count,Equal,105,2
block_count,Equal,106,0
@@ -54738,14 +54753,14 @@
block_count,RegExpPrototypeExec,25,0
block_count,RegExpPrototypeExec,26,0
block_count,RegExpPrototypeExec,27,388
-block_count,RegExpPrototypeExec,28,401
-block_count,RegExpPrototypeExec,29,12
-block_count,RegExpPrototypeExec,30,12
+block_count,RegExpPrototypeExec,28,403
+block_count,RegExpPrototypeExec,29,14
+block_count,RegExpPrototypeExec,30,14
block_count,RegExpPrototypeExec,31,8
block_count,RegExpPrototypeExec,32,0
block_count,RegExpPrototypeExec,33,8
-block_count,RegExpPrototypeExec,34,3
-block_count,RegExpPrototypeExec,35,3
+block_count,RegExpPrototypeExec,34,5
+block_count,RegExpPrototypeExec,35,5
block_count,RegExpPrototypeExec,36,0
block_count,RegExpPrototypeExec,37,0
block_count,RegExpPrototypeExec,38,0
@@ -54763,7 +54778,7 @@
block_count,RegExpPrototypeExec,50,0
block_count,RegExpPrototypeExec,51,0
block_count,RegExpPrototypeExec,52,0
-block_count,RegExpPrototypeExec,53,12
+block_count,RegExpPrototypeExec,53,14
block_count,RegExpPrototypeExec,54,0
block_count,RegExpPrototypeExec,55,388
block_count,RegExpPrototypeExec,56,388
@@ -54848,14 +54863,14 @@
block_count,RegExpPrototypeExec,135,26
block_count,RegExpPrototypeExec,136,26
block_count,RegExpPrototypeExec,137,26
-block_count,RegExpPrototypeExec,138,28
-block_count,RegExpPrototypeExec,139,2
-block_count,RegExpPrototypeExec,140,2
+block_count,RegExpPrototypeExec,138,32
+block_count,RegExpPrototypeExec,139,6
+block_count,RegExpPrototypeExec,140,6
block_count,RegExpPrototypeExec,141,0
block_count,RegExpPrototypeExec,142,0
block_count,RegExpPrototypeExec,143,0
-block_count,RegExpPrototypeExec,144,2
-block_count,RegExpPrototypeExec,145,2
+block_count,RegExpPrototypeExec,144,6
+block_count,RegExpPrototypeExec,145,6
block_count,RegExpPrototypeExec,146,0
block_count,RegExpPrototypeExec,147,0
block_count,RegExpPrototypeExec,148,0
@@ -54873,7 +54888,7 @@
block_count,RegExpPrototypeExec,160,0
block_count,RegExpPrototypeExec,161,0
block_count,RegExpPrototypeExec,162,0
-block_count,RegExpPrototypeExec,163,2
+block_count,RegExpPrototypeExec,163,6
block_count,RegExpPrototypeExec,164,0
block_count,RegExpPrototypeExec,165,26
block_count,RegExpPrototypeExec,166,26
@@ -56132,14 +56147,14 @@
block_count,RegExpReplace,94,0
block_count,RegExpReplace,95,0
block_count,RegExpReplace,96,45
-block_count,RegExpReplace,97,45
-block_count,RegExpReplace,98,0
-block_count,RegExpReplace,99,0
+block_count,RegExpReplace,97,48
+block_count,RegExpReplace,98,3
+block_count,RegExpReplace,99,3
block_count,RegExpReplace,100,0
block_count,RegExpReplace,101,0
block_count,RegExpReplace,102,0
-block_count,RegExpReplace,103,0
-block_count,RegExpReplace,104,0
+block_count,RegExpReplace,103,2
+block_count,RegExpReplace,104,2
block_count,RegExpReplace,105,0
block_count,RegExpReplace,106,0
block_count,RegExpReplace,107,0
@@ -56157,7 +56172,7 @@
block_count,RegExpReplace,119,0
block_count,RegExpReplace,120,0
block_count,RegExpReplace,121,0
-block_count,RegExpReplace,122,0
+block_count,RegExpReplace,122,3
block_count,RegExpReplace,123,0
block_count,RegExpReplace,124,45
block_count,RegExpReplace,125,45
@@ -56370,14 +56385,14 @@
block_count,RegExpReplace,332,192
block_count,RegExpReplace,333,142
block_count,RegExpReplace,334,142
-block_count,RegExpReplace,335,145
-block_count,RegExpReplace,336,3
-block_count,RegExpReplace,337,3
+block_count,RegExpReplace,335,157
+block_count,RegExpReplace,336,14
+block_count,RegExpReplace,337,14
block_count,RegExpReplace,338,1
block_count,RegExpReplace,339,0
block_count,RegExpReplace,340,1
-block_count,RegExpReplace,341,2
-block_count,RegExpReplace,342,1
+block_count,RegExpReplace,341,13
+block_count,RegExpReplace,342,13
block_count,RegExpReplace,343,0
block_count,RegExpReplace,344,0
block_count,RegExpReplace,345,0
@@ -56395,7 +56410,7 @@
block_count,RegExpReplace,357,0
block_count,RegExpReplace,358,0
block_count,RegExpReplace,359,0
-block_count,RegExpReplace,360,3
+block_count,RegExpReplace,360,14
block_count,RegExpReplace,361,0
block_count,RegExpReplace,362,142
block_count,RegExpReplace,363,142
@@ -56892,14 +56907,14 @@
block_count,RegExpSplit,19,51
block_count,RegExpSplit,20,51
block_count,RegExpSplit,21,51
-block_count,RegExpSplit,22,52
-block_count,RegExpSplit,23,0
-block_count,RegExpSplit,24,0
+block_count,RegExpSplit,22,62
+block_count,RegExpSplit,23,11
+block_count,RegExpSplit,24,11
block_count,RegExpSplit,25,0
block_count,RegExpSplit,26,0
block_count,RegExpSplit,27,0
-block_count,RegExpSplit,28,0
-block_count,RegExpSplit,29,0
+block_count,RegExpSplit,28,11
+block_count,RegExpSplit,29,11
block_count,RegExpSplit,30,0
block_count,RegExpSplit,31,0
block_count,RegExpSplit,32,0
@@ -56917,7 +56932,7 @@
block_count,RegExpSplit,44,0
block_count,RegExpSplit,45,0
block_count,RegExpSplit,46,0
-block_count,RegExpSplit,47,0
+block_count,RegExpSplit,47,11
block_count,RegExpSplit,48,0
block_count,RegExpSplit,49,51
block_count,RegExpSplit,50,51
@@ -57393,31 +57408,31 @@
block_count,RegExpSplit,520,0
block_count,RegExpSplit,521,13
block_count,RegExpSplit,522,13
-block_count,RegExpPrototypeTest,0,137
+block_count,RegExpPrototypeTest,0,138
block_count,RegExpPrototypeTest,1,0
-block_count,RegExpPrototypeTest,2,137
-block_count,RegExpPrototypeTest,3,137
-block_count,RegExpPrototypeTest,4,137
-block_count,RegExpPrototypeTest,5,137
-block_count,RegExpPrototypeTest,6,137
+block_count,RegExpPrototypeTest,2,138
+block_count,RegExpPrototypeTest,3,138
+block_count,RegExpPrototypeTest,4,138
+block_count,RegExpPrototypeTest,5,138
+block_count,RegExpPrototypeTest,6,138
block_count,RegExpPrototypeTest,7,38
block_count,RegExpPrototypeTest,8,99
block_count,RegExpPrototypeTest,9,0
block_count,RegExpPrototypeTest,10,38
-block_count,RegExpPrototypeTest,11,137
-block_count,RegExpPrototypeTest,12,137
+block_count,RegExpPrototypeTest,11,138
+block_count,RegExpPrototypeTest,12,138
block_count,RegExpPrototypeTest,13,0
-block_count,RegExpPrototypeTest,14,137
+block_count,RegExpPrototypeTest,14,138
block_count,RegExpPrototypeTest,15,0
-block_count,RegExpPrototypeTest,16,137
+block_count,RegExpPrototypeTest,16,138
block_count,RegExpPrototypeTest,17,0
-block_count,RegExpPrototypeTest,18,137
+block_count,RegExpPrototypeTest,18,138
block_count,RegExpPrototypeTest,19,0
-block_count,RegExpPrototypeTest,20,137
+block_count,RegExpPrototypeTest,20,138
block_count,RegExpPrototypeTest,21,0
-block_count,RegExpPrototypeTest,22,137
+block_count,RegExpPrototypeTest,22,138
block_count,RegExpPrototypeTest,23,0
-block_count,RegExpPrototypeTest,24,137
+block_count,RegExpPrototypeTest,24,138
block_count,RegExpPrototypeTest,25,0
block_count,RegExpPrototypeTest,26,0
block_count,RegExpPrototypeTest,27,0
@@ -57446,17 +57461,17 @@
block_count,RegExpPrototypeTest,50,0
block_count,RegExpPrototypeTest,51,0
block_count,RegExpPrototypeTest,52,0
-block_count,RegExpPrototypeTest,53,137
-block_count,RegExpPrototypeTest,54,137
+block_count,RegExpPrototypeTest,53,138
+block_count,RegExpPrototypeTest,54,138
block_count,RegExpPrototypeTest,55,136
block_count,RegExpPrototypeTest,56,1
-block_count,RegExpPrototypeTest,57,137
-block_count,RegExpPrototypeTest,58,137
-block_count,RegExpPrototypeTest,59,137
+block_count,RegExpPrototypeTest,57,138
+block_count,RegExpPrototypeTest,58,138
+block_count,RegExpPrototypeTest,59,138
block_count,RegExpPrototypeTest,60,0
block_count,RegExpPrototypeTest,61,0
block_count,RegExpPrototypeTest,62,0
-block_count,RegExpPrototypeTest,63,137
+block_count,RegExpPrototypeTest,63,138
block_count,RegExpPrototypeTest,64,176
block_count,RegExpPrototypeTest,65,77
block_count,RegExpPrototypeTest,66,77
@@ -57486,7 +57501,7 @@
block_count,RegExpPrototypeTest,90,0
block_count,RegExpPrototypeTest,91,99
block_count,RegExpPrototypeTest,92,99
-block_count,RegExpPrototypeTest,93,137
+block_count,RegExpPrototypeTest,93,138
block_count,RegExpPrototypeTest,94,0
block_count,RegExpPrototypeTest,95,136
block_count,RegExpPrototypeTest,96,1
@@ -57524,7 +57539,7 @@
block_count,RegExpPrototypeTest,128,0
block_count,RegExpPrototypeTest,129,0
block_count,RegExpPrototypeTest,130,0
-block_count,RegExpPrototypeTest,131,137
+block_count,RegExpPrototypeTest,131,138
block_count,RegExpPrototypeTest,132,22
block_count,RegExpPrototypeTest,133,0
block_count,RegExpPrototypeTest,134,22
@@ -58412,33 +58427,33 @@
block_count,StringPrototypeIncludes,77,0
block_count,StringPrototypeIncludes,78,0
block_count,StringPrototypeIncludes,79,0
-block_count,StringPrototypeIndexOf,0,20
+block_count,StringPrototypeIndexOf,0,21
block_count,StringPrototypeIndexOf,1,0
-block_count,StringPrototypeIndexOf,2,20
-block_count,StringPrototypeIndexOf,3,20
-block_count,StringPrototypeIndexOf,4,20
+block_count,StringPrototypeIndexOf,2,21
+block_count,StringPrototypeIndexOf,3,21
+block_count,StringPrototypeIndexOf,4,21
block_count,StringPrototypeIndexOf,5,0
-block_count,StringPrototypeIndexOf,6,20
+block_count,StringPrototypeIndexOf,6,21
block_count,StringPrototypeIndexOf,7,0
-block_count,StringPrototypeIndexOf,8,20
+block_count,StringPrototypeIndexOf,8,21
block_count,StringPrototypeIndexOf,9,1
block_count,StringPrototypeIndexOf,10,0
block_count,StringPrototypeIndexOf,11,1
block_count,StringPrototypeIndexOf,12,19
-block_count,StringPrototypeIndexOf,13,20
-block_count,StringPrototypeIndexOf,14,20
+block_count,StringPrototypeIndexOf,13,21
+block_count,StringPrototypeIndexOf,14,21
block_count,StringPrototypeIndexOf,15,0
block_count,StringPrototypeIndexOf,16,0
block_count,StringPrototypeIndexOf,17,0
-block_count,StringPrototypeIndexOf,18,20
+block_count,StringPrototypeIndexOf,18,21
block_count,StringPrototypeIndexOf,19,0
-block_count,StringPrototypeIndexOf,20,20
-block_count,StringPrototypeIndexOf,21,20
+block_count,StringPrototypeIndexOf,20,21
+block_count,StringPrototypeIndexOf,21,21
block_count,StringPrototypeIndexOf,22,0
-block_count,StringPrototypeIndexOf,23,20
+block_count,StringPrototypeIndexOf,23,21
block_count,StringPrototypeIndexOf,24,0
block_count,StringPrototypeIndexOf,25,0
-block_count,StringPrototypeIndexOf,26,20
+block_count,StringPrototypeIndexOf,26,21
block_count,StringPrototypeIndexOf,27,19
block_count,StringPrototypeIndexOf,28,1
block_count,StringPrototypeIndexOf,29,1
@@ -58633,7 +58648,7 @@
block_count,StringPrototypeSlice,19,0
block_count,StringPrototypeSlice,20,36
block_count,StringPrototypeSlice,21,36
-block_count,StringPrototypeSlice,22,35
+block_count,StringPrototypeSlice,22,36
block_count,StringPrototypeSlice,23,0
block_count,StringPrototypeSlice,24,35
block_count,StringPrototypeSlice,25,0
@@ -58648,7 +58663,7 @@
block_count,StringPrototypeSlice,34,0
block_count,StringPrototypeSlice,35,0
block_count,StringPrototypeSlice,36,0
-block_count,StringPrototypeSlice,37,35
+block_count,StringPrototypeSlice,37,36
block_count,StringPrototypeSlice,38,36
block_count,StringPrototypeSlice,39,36
block_count,StringPrototypeSlice,40,25
@@ -58681,33 +58696,33 @@
block_count,StringPrototypeSlice,67,25
block_count,StringPrototypeSlice,68,36
block_count,StringPrototypeSlice,69,32
-block_count,StringPrototypeSlice,70,31
-block_count,StringPrototypeSlice,71,31
-block_count,StringPrototypeSlice,72,22
+block_count,StringPrototypeSlice,70,32
+block_count,StringPrototypeSlice,71,32
+block_count,StringPrototypeSlice,72,23
block_count,StringPrototypeSlice,73,36
-block_count,StringPrototypeSlice,74,14
-block_count,StringPrototypeSlice,75,14
-block_count,StringPrototypeSlice,76,9
+block_count,StringPrototypeSlice,74,12
+block_count,StringPrototypeSlice,75,12
+block_count,StringPrototypeSlice,76,10
block_count,StringPrototypeSlice,77,0
-block_count,StringPrototypeSlice,78,9
-block_count,StringPrototypeSlice,79,4
-block_count,StringPrototypeSlice,80,4
+block_count,StringPrototypeSlice,78,10
+block_count,StringPrototypeSlice,79,2
+block_count,StringPrototypeSlice,80,2
block_count,StringPrototypeSlice,81,0
-block_count,StringPrototypeSlice,82,14
+block_count,StringPrototypeSlice,82,12
block_count,StringPrototypeSlice,83,0
-block_count,StringPrototypeSlice,84,22
-block_count,StringPrototypeSlice,85,22
-block_count,StringPrototypeSlice,86,9
+block_count,StringPrototypeSlice,84,23
+block_count,StringPrototypeSlice,85,23
+block_count,StringPrototypeSlice,86,10
block_count,StringPrototypeSlice,87,2
block_count,StringPrototypeSlice,88,0
block_count,StringPrototypeSlice,89,2
block_count,StringPrototypeSlice,90,2
-block_count,StringPrototypeSlice,91,6
+block_count,StringPrototypeSlice,91,7
block_count,StringPrototypeSlice,92,0
-block_count,StringPrototypeSlice,93,6
-block_count,StringPrototypeSlice,94,6
-block_count,StringPrototypeSlice,95,12
-block_count,StringPrototypeSlice,96,12
+block_count,StringPrototypeSlice,93,7
+block_count,StringPrototypeSlice,94,7
+block_count,StringPrototypeSlice,95,13
+block_count,StringPrototypeSlice,96,13
block_count,StringPrototypeSlice,97,2
block_count,StringPrototypeSlice,98,2
block_count,StringPrototypeSlice,99,0
@@ -58740,7 +58755,7 @@
block_count,StringPrototypeSlice,126,1
block_count,StringPrototypeSlice,127,1
block_count,StringPrototypeSlice,128,0
-block_count,StringPrototypeSlice,129,0
+block_count,StringPrototypeSlice,129,1
block_count,StringPrototypeSlice,130,1
block_count,StringPrototypeSlice,131,0
block_count,StringPrototypeSlice,132,1
@@ -58786,7 +58801,7 @@
block_count,StringPrototypeSlice,172,3
block_count,StringPrototypeSlice,173,10
block_count,StringPrototypeSlice,174,0
-block_count,StringPrototypeSlice,175,12
+block_count,StringPrototypeSlice,175,13
block_count,StringPrototypeSlice,176,0
block_count,StringPrototypeSlice,177,0
block_count,StringPrototypeSlice,178,0
@@ -58872,16 +58887,16 @@
block_count,StringPrototypeSlice,258,0
block_count,StringPrototypeSlice,259,0
block_count,StringPrototypeSlice,260,9
-block_count,StringPrototypeSlice,261,13
-block_count,StringPrototypeSlice,262,4
-block_count,StringPrototypeSlice,263,4
+block_count,StringPrototypeSlice,261,11
+block_count,StringPrototypeSlice,262,2
+block_count,StringPrototypeSlice,263,2
block_count,StringPrototypeSlice,264,0
block_count,StringPrototypeSlice,265,0
block_count,StringPrototypeSlice,266,0
-block_count,StringPrototypeSlice,267,3
-block_count,StringPrototypeSlice,268,3
+block_count,StringPrototypeSlice,267,2
+block_count,StringPrototypeSlice,268,2
block_count,StringPrototypeSlice,269,0
-block_count,StringPrototypeSlice,270,4
+block_count,StringPrototypeSlice,270,2
block_count,StringPrototypeSlice,271,0
block_count,StringPrototypeSlice,272,0
block_count,StringPrototypeSlice,273,0
@@ -62186,13 +62201,13 @@
block_count,NewStrictArgumentsElements,9,0
block_count,NewStrictArgumentsElements,10,7
block_count,NewStrictArgumentsElements,11,22
-block_count,NewStrictArgumentsElements,12,15
-block_count,NewStrictArgumentsElements,13,15
-block_count,NewStrictArgumentsElements,14,15
-block_count,NewStrictArgumentsElements,15,15
+block_count,NewStrictArgumentsElements,12,14
+block_count,NewStrictArgumentsElements,13,14
+block_count,NewStrictArgumentsElements,14,14
+block_count,NewStrictArgumentsElements,15,14
block_count,NewStrictArgumentsElements,16,0
block_count,NewStrictArgumentsElements,17,0
-block_count,NewStrictArgumentsElements,18,15
+block_count,NewStrictArgumentsElements,18,14
block_count,NewStrictArgumentsElements,19,0
block_count,NewStrictArgumentsElements,20,7
block_count,NewStrictArgumentsElements,21,0
@@ -62213,7 +62228,7 @@
block_count,NewRestArgumentsElements,11,0
block_count,NewRestArgumentsElements,12,0
block_count,NewRestArgumentsElements,13,18
-block_count,NewRestArgumentsElements,14,56
+block_count,NewRestArgumentsElements,14,55
block_count,NewRestArgumentsElements,15,37
block_count,NewRestArgumentsElements,16,37
block_count,NewRestArgumentsElements,17,37
@@ -62360,27 +62375,27 @@
block_count,FastNewStrictArguments,30,0
block_count,FastNewStrictArguments,31,1
block_count,FastNewStrictArguments,32,1
-block_count,FastNewRestArguments,0,0
-block_count,FastNewRestArguments,1,0
-block_count,FastNewRestArguments,2,0
+block_count,FastNewRestArguments,0,1
+block_count,FastNewRestArguments,1,1
+block_count,FastNewRestArguments,2,1
block_count,FastNewRestArguments,3,0
-block_count,FastNewRestArguments,4,0
-block_count,FastNewRestArguments,5,0
+block_count,FastNewRestArguments,4,1
+block_count,FastNewRestArguments,5,1
block_count,FastNewRestArguments,6,0
-block_count,FastNewRestArguments,7,0
-block_count,FastNewRestArguments,8,0
+block_count,FastNewRestArguments,7,1
+block_count,FastNewRestArguments,8,1
block_count,FastNewRestArguments,9,0
-block_count,FastNewRestArguments,10,0
-block_count,FastNewRestArguments,11,0
-block_count,FastNewRestArguments,12,0
-block_count,FastNewRestArguments,13,0
-block_count,FastNewRestArguments,14,0
-block_count,FastNewRestArguments,15,0
+block_count,FastNewRestArguments,10,1
+block_count,FastNewRestArguments,11,1
+block_count,FastNewRestArguments,12,1
+block_count,FastNewRestArguments,13,1
+block_count,FastNewRestArguments,14,1
+block_count,FastNewRestArguments,15,1
block_count,FastNewRestArguments,16,0
-block_count,FastNewRestArguments,17,0
+block_count,FastNewRestArguments,17,1
block_count,FastNewRestArguments,18,0
block_count,FastNewRestArguments,19,0
-block_count,FastNewRestArguments,20,0
+block_count,FastNewRestArguments,20,1
block_count,FastNewRestArguments,21,2
block_count,FastNewRestArguments,22,1
block_count,FastNewRestArguments,23,1
@@ -62390,10 +62405,10 @@
block_count,FastNewRestArguments,27,0
block_count,FastNewRestArguments,28,1
block_count,FastNewRestArguments,29,0
-block_count,FastNewRestArguments,30,0
+block_count,FastNewRestArguments,30,1
block_count,FastNewRestArguments,31,0
-block_count,FastNewRestArguments,32,0
-block_count,FastNewRestArguments,33,0
+block_count,FastNewRestArguments,32,1
+block_count,FastNewRestArguments,33,1
block_count,FastNewRestArguments,34,0
block_count,FastNewRestArguments,35,0
block_count,FastNewRestArguments,36,0
@@ -62401,12 +62416,12 @@
block_count,FastNewRestArguments,38,0
block_count,FastNewRestArguments,39,0
block_count,FastNewRestArguments,40,0
-block_count,LoadFromContextCell,0,9
+block_count,LoadFromContextCell,0,8
block_count,LoadFromContextCell,1,0
-block_count,LoadFromContextCell,2,9
-block_count,LoadFromContextCell,3,9
-block_count,LoadFromContextCell,4,9
-block_count,LoadFromContextCell,5,9
+block_count,LoadFromContextCell,2,8
+block_count,LoadFromContextCell,3,8
+block_count,LoadFromContextCell,4,8
+block_count,LoadFromContextCell,5,8
block_count,LoadFromContextCell,6,1
block_count,LoadFromContextCell,7,0
block_count,LoadFromContextCell,8,0
@@ -62708,20 +62723,20 @@
block_count,StringSlowFlatten,22,0
block_count,StringSlowFlatten,23,0
block_count,StringSlowFlatten,24,0
-block_count,StringIndexOf,0,366
-block_count,StringIndexOf,1,366
+block_count,StringIndexOf,0,365
+block_count,StringIndexOf,1,365
block_count,StringIndexOf,2,0
-block_count,StringIndexOf,3,366
-block_count,StringIndexOf,4,366
+block_count,StringIndexOf,3,365
+block_count,StringIndexOf,4,365
block_count,StringIndexOf,5,0
block_count,StringIndexOf,6,0
block_count,StringIndexOf,7,0
-block_count,StringIndexOf,8,366
+block_count,StringIndexOf,8,365
block_count,StringIndexOf,9,182
-block_count,StringIndexOf,10,219
-block_count,StringIndexOf,11,56
-block_count,StringIndexOf,12,37
-block_count,StringIndexOf,13,35
+block_count,StringIndexOf,10,216
+block_count,StringIndexOf,11,53
+block_count,StringIndexOf,12,34
+block_count,StringIndexOf,13,33
block_count,StringIndexOf,14,1
block_count,StringIndexOf,15,0
block_count,StringIndexOf,16,0
@@ -62755,7 +62770,7 @@
block_count,StringIndexOf,44,0
block_count,StringIndexOf,45,0
block_count,StringIndexOf,46,1
-block_count,StringIndexOf,47,37
+block_count,StringIndexOf,47,34
block_count,StringIndexOf,48,18
block_count,StringIndexOf,49,18
block_count,StringIndexOf,50,18
@@ -63806,8 +63821,8 @@
block_count,StringFastLocaleCompare,0,1402
block_count,StringFastLocaleCompare,1,1402
block_count,StringFastLocaleCompare,2,1402
-block_count,StringFastLocaleCompare,3,1320
-block_count,StringFastLocaleCompare,4,1320
+block_count,StringFastLocaleCompare,3,1319
+block_count,StringFastLocaleCompare,4,1319
block_count,StringFastLocaleCompare,5,0
block_count,StringFastLocaleCompare,6,0
block_count,StringFastLocaleCompare,7,0
@@ -64018,16 +64033,16 @@
block_count,StringFastLocaleCompare,212,0
block_count,StringFastLocaleCompare,213,0
block_count,StringFastLocaleCompare,214,0
-block_count,StringFastLocaleCompare,215,1320
-block_count,StringFastLocaleCompare,216,1320
-block_count,StringFastLocaleCompare,217,1320
+block_count,StringFastLocaleCompare,215,1319
+block_count,StringFastLocaleCompare,216,1319
+block_count,StringFastLocaleCompare,217,1319
block_count,StringFastLocaleCompare,218,0
block_count,StringFastLocaleCompare,219,0
block_count,StringFastLocaleCompare,220,0
-block_count,StringFastLocaleCompare,221,1320
-block_count,StringFastLocaleCompare,222,1320
-block_count,StringFastLocaleCompare,223,1320
-block_count,StringFastLocaleCompare,224,1320
+block_count,StringFastLocaleCompare,221,1319
+block_count,StringFastLocaleCompare,222,1319
+block_count,StringFastLocaleCompare,223,1319
+block_count,StringFastLocaleCompare,224,1319
block_count,StringFastLocaleCompare,225,0
block_count,StringFastLocaleCompare,226,0
block_count,StringFastLocaleCompare,227,0
@@ -64123,13 +64138,13 @@
block_count,StringFastLocaleCompare,317,0
block_count,StringFastLocaleCompare,318,0
block_count,StringFastLocaleCompare,319,0
-block_count,StringFastLocaleCompare,320,1320
-block_count,StringFastLocaleCompare,321,1320
-block_count,StringFastLocaleCompare,322,1320
+block_count,StringFastLocaleCompare,320,1319
+block_count,StringFastLocaleCompare,321,1319
+block_count,StringFastLocaleCompare,322,1319
block_count,StringFastLocaleCompare,323,0
block_count,StringFastLocaleCompare,324,0
block_count,StringFastLocaleCompare,325,0
-block_count,StringFastLocaleCompare,326,1320
+block_count,StringFastLocaleCompare,326,1319
block_count,StringFastLocaleCompare,327,903
block_count,StringFastLocaleCompare,328,903
block_count,StringFastLocaleCompare,329,962
@@ -64142,12 +64157,12 @@
block_count,StringFastLocaleCompare,336,0
block_count,StringFastLocaleCompare,337,0
block_count,StringFastLocaleCompare,338,416
-block_count,StringFastLocaleCompare,339,1320
+block_count,StringFastLocaleCompare,339,1319
block_count,StringFastLocaleCompare,340,6462
-block_count,StringFastLocaleCompare,341,6452
-block_count,StringFastLocaleCompare,342,6452
-block_count,StringFastLocaleCompare,343,6396
-block_count,StringFastLocaleCompare,344,6396
+block_count,StringFastLocaleCompare,341,6451
+block_count,StringFastLocaleCompare,342,6451
+block_count,StringFastLocaleCompare,343,6395
+block_count,StringFastLocaleCompare,344,6395
block_count,StringFastLocaleCompare,345,5142
block_count,StringFastLocaleCompare,346,1253
block_count,StringFastLocaleCompare,347,825
@@ -64686,9 +64701,9 @@
block_count,StringPrototypeToLowerCaseIntl,7,0
block_count,StringPrototypeToLowerCaseIntl,8,7
block_count,StringToLowerCaseIntl,0,146
-block_count,StringToLowerCaseIntl,1,171
-block_count,StringToLowerCaseIntl,2,29
-block_count,StringToLowerCaseIntl,3,29
+block_count,StringToLowerCaseIntl,1,172
+block_count,StringToLowerCaseIntl,2,30
+block_count,StringToLowerCaseIntl,3,30
block_count,StringToLowerCaseIntl,4,25
block_count,StringToLowerCaseIntl,5,25
block_count,StringToLowerCaseIntl,6,0
@@ -64728,16 +64743,16 @@
block_count,StringToLowerCaseIntl,40,0
block_count,StringToLowerCaseIntl,41,0
block_count,StringToLowerCaseIntl,42,0
-block_count,WideHandler,0,61
-block_count,ExtraWideHandler,0,10
-block_count,LdarHandler,0,86
+block_count,WideHandler,0,62
+block_count,ExtraWideHandler,0,11
+block_count,LdarHandler,0,91
block_count,LdaZeroHandler,0,11
block_count,LdaZeroHandler,1,8
block_count,LdaZeroHandler,2,3
block_count,LdaSmiHandler,0,12
block_count,LdaSmiHandler,1,8
block_count,LdaSmiHandler,2,4
-block_count,LdaUndefinedHandler,0,7
+block_count,LdaUndefinedHandler,0,8
block_count,LdaUndefinedHandler,1,7
block_count,LdaUndefinedHandler,2,0
block_count,LdaNullHandler,0,1
@@ -64748,8 +64763,8 @@
block_count,LdaTheHoleHandler,2,0
block_count,LdaTrueHandler,0,2
block_count,LdaFalseHandler,0,2
-block_count,LdaConstantHandler,0,13
-block_count,LdaConstantHandler,1,5
+block_count,LdaConstantHandler,0,14
+block_count,LdaConstantHandler,1,6
block_count,LdaConstantHandler,2,7
block_count,LdaContextSlotNoCellHandler,0,0
block_count,LdaContextSlotNoCellHandler,1,0
@@ -64795,7 +64810,7 @@
block_count,LdaContextSlotHandler,28,0
block_count,LdaContextSlotHandler,29,0
block_count,LdaContextSlotHandler,30,0
-block_count,LdaImmutableContextSlotHandler,0,6
+block_count,LdaImmutableContextSlotHandler,0,7
block_count,LdaImmutableContextSlotHandler,1,4
block_count,LdaImmutableContextSlotHandler,2,5
block_count,LdaImmutableContextSlotHandler,3,5
@@ -64803,9 +64818,9 @@
block_count,LdaImmutableContextSlotHandler,5,4
block_count,LdaImmutableContextSlotHandler,6,0
block_count,LdaImmutableContextSlotHandler,7,2
-block_count,LdaImmutableContextSlotHandler,8,6
+block_count,LdaImmutableContextSlotHandler,8,7
block_count,LdaImmutableContextSlotHandler,9,0
-block_count,LdaImmutableContextSlotHandler,10,6
+block_count,LdaImmutableContextSlotHandler,10,7
block_count,LdaImmutableContextSlotHandler,11,1
block_count,LdaImmutableContextSlotHandler,12,5
block_count,LdaCurrentContextSlotNoCellHandler,0,5
@@ -64836,13 +64851,13 @@
block_count,LdaCurrentContextSlotHandler,20,0
block_count,LdaCurrentContextSlotHandler,21,0
block_count,LdaCurrentContextSlotHandler,22,1
-block_count,LdaImmutableCurrentContextSlotHandler,0,20
+block_count,LdaImmutableCurrentContextSlotHandler,0,21
block_count,LdaImmutableCurrentContextSlotHandler,1,0
-block_count,LdaImmutableCurrentContextSlotHandler,2,20
+block_count,LdaImmutableCurrentContextSlotHandler,2,21
block_count,LdaImmutableCurrentContextSlotHandler,3,4
-block_count,LdaImmutableCurrentContextSlotHandler,4,15
-block_count,StarHandler,0,19
-block_count,MovHandler,0,18
+block_count,LdaImmutableCurrentContextSlotHandler,4,16
+block_count,StarHandler,0,20
+block_count,MovHandler,0,19
block_count,PushContextHandler,0,2
block_count,PopContextHandler,0,0
block_count,TestReferenceEqualHandler,0,0
@@ -64917,10 +64932,10 @@
block_count,TestTypeOfHandler,50,1
block_count,LdaGlobalHandler,0,23
block_count,LdaGlobalHandler,1,13
-block_count,LdaGlobalHandler,2,12
-block_count,LdaGlobalHandler,3,12
-block_count,LdaGlobalHandler,4,12
-block_count,LdaGlobalHandler,5,3
+block_count,LdaGlobalHandler,2,13
+block_count,LdaGlobalHandler,3,13
+block_count,LdaGlobalHandler,4,13
+block_count,LdaGlobalHandler,5,4
block_count,LdaGlobalHandler,6,9
block_count,LdaGlobalHandler,7,0
block_count,LdaGlobalHandler,8,0
@@ -66116,31 +66131,31 @@
block_count,StaLookupSlotHandler,3,0
block_count,StaLookupSlotHandler,4,0
block_count,StaLookupSlotHandler,5,0
-block_count,GetNamedPropertyHandler,0,72
-block_count,GetNamedPropertyHandler,1,44
-block_count,GetNamedPropertyHandler,2,44
+block_count,GetNamedPropertyHandler,0,75
+block_count,GetNamedPropertyHandler,1,47
+block_count,GetNamedPropertyHandler,2,47
block_count,GetNamedPropertyHandler,3,0
-block_count,GetNamedPropertyHandler,4,44
-block_count,GetNamedPropertyHandler,5,5
+block_count,GetNamedPropertyHandler,4,47
+block_count,GetNamedPropertyHandler,5,6
block_count,GetNamedPropertyHandler,6,0
-block_count,GetNamedPropertyHandler,7,5
-block_count,GetNamedPropertyHandler,8,2
-block_count,GetNamedPropertyHandler,9,2
+block_count,GetNamedPropertyHandler,7,6
+block_count,GetNamedPropertyHandler,8,3
+block_count,GetNamedPropertyHandler,9,3
block_count,GetNamedPropertyHandler,10,5
block_count,GetNamedPropertyHandler,11,2
block_count,GetNamedPropertyHandler,12,2
block_count,GetNamedPropertyHandler,13,0
block_count,GetNamedPropertyHandler,14,2
-block_count,GetNamedPropertyHandler,15,39
-block_count,GetNamedPropertyHandler,16,41
-block_count,GetNamedPropertyHandler,17,14
-block_count,GetNamedPropertyHandler,18,14
-block_count,GetNamedPropertyHandler,19,13
-block_count,GetNamedPropertyHandler,20,13
-block_count,GetNamedPropertyHandler,21,13
+block_count,GetNamedPropertyHandler,15,41
+block_count,GetNamedPropertyHandler,16,44
+block_count,GetNamedPropertyHandler,17,15
+block_count,GetNamedPropertyHandler,18,15
+block_count,GetNamedPropertyHandler,19,14
+block_count,GetNamedPropertyHandler,20,14
+block_count,GetNamedPropertyHandler,21,14
block_count,GetNamedPropertyHandler,22,0
block_count,GetNamedPropertyHandler,23,0
-block_count,GetNamedPropertyHandler,24,13
+block_count,GetNamedPropertyHandler,24,14
block_count,GetNamedPropertyHandler,25,2
block_count,GetNamedPropertyHandler,26,0
block_count,GetNamedPropertyHandler,27,0
@@ -66212,25 +66227,25 @@
block_count,GetNamedPropertyHandler,93,0
block_count,GetNamedPropertyHandler,94,0
block_count,GetNamedPropertyHandler,95,2
-block_count,GetNamedPropertyHandler,96,10
-block_count,GetNamedPropertyHandler,97,13
-block_count,GetNamedPropertyHandler,98,13
-block_count,GetNamedPropertyHandler,99,12
-block_count,GetNamedPropertyHandler,100,12
+block_count,GetNamedPropertyHandler,96,11
+block_count,GetNamedPropertyHandler,97,14
+block_count,GetNamedPropertyHandler,98,14
+block_count,GetNamedPropertyHandler,99,13
+block_count,GetNamedPropertyHandler,100,13
block_count,GetNamedPropertyHandler,101,0
block_count,GetNamedPropertyHandler,102,0
-block_count,GetNamedPropertyHandler,103,13
+block_count,GetNamedPropertyHandler,103,14
block_count,GetNamedPropertyHandler,104,0
block_count,GetNamedPropertyHandler,105,1
block_count,GetNamedPropertyHandler,106,0
block_count,GetNamedPropertyHandler,107,0
block_count,GetNamedPropertyHandler,108,0
-block_count,GetNamedPropertyHandler,109,27
-block_count,GetNamedPropertyHandler,110,40
-block_count,GetNamedPropertyHandler,111,13
+block_count,GetNamedPropertyHandler,109,28
+block_count,GetNamedPropertyHandler,110,42
+block_count,GetNamedPropertyHandler,111,14
block_count,GetNamedPropertyHandler,112,3
block_count,GetNamedPropertyHandler,113,2
-block_count,GetNamedPropertyHandler,114,1
+block_count,GetNamedPropertyHandler,114,2
block_count,GetNamedPropertyHandler,115,0
block_count,GetNamedPropertyHandler,116,0
block_count,GetNamedPropertyHandler,117,0
@@ -66263,7 +66278,7 @@
block_count,GetNamedPropertyHandler,144,0
block_count,GetNamedPropertyHandler,145,0
block_count,GetNamedPropertyHandler,146,0
-block_count,GetNamedPropertyHandler,147,1
+block_count,GetNamedPropertyHandler,147,2
block_count,GetNamedPropertyHandler,148,0
block_count,GetNamedPropertyHandler,149,0
block_count,GetNamedPropertyHandler,150,0
@@ -66322,13 +66337,13 @@
block_count,GetNamedPropertyHandler,203,0
block_count,GetNamedPropertyHandler,204,0
block_count,GetNamedPropertyHandler,205,0
-block_count,GetNamedPropertyHandler,206,10
-block_count,GetNamedPropertyHandler,207,26
-block_count,GetNamedPropertyHandler,208,26
+block_count,GetNamedPropertyHandler,206,11
+block_count,GetNamedPropertyHandler,207,28
+block_count,GetNamedPropertyHandler,208,28
block_count,GetNamedPropertyHandler,209,5
-block_count,GetNamedPropertyHandler,210,21
-block_count,GetNamedPropertyHandler,211,26
-block_count,GetNamedPropertyHandler,212,25
+block_count,GetNamedPropertyHandler,210,22
+block_count,GetNamedPropertyHandler,211,28
+block_count,GetNamedPropertyHandler,212,26
block_count,GetNamedPropertyHandler,213,1
block_count,GetNamedPropertyHandler,214,1
block_count,GetNamedPropertyHandler,215,1
@@ -66376,13 +66391,13 @@
block_count,GetNamedPropertyHandler,257,1
block_count,GetNamedPropertyHandler,258,0
block_count,GetNamedPropertyHandler,259,27
-block_count,GetNamedPropertyHandler,260,72
-block_count,GetNamedPropertyHandler,261,20
-block_count,GetNamedPropertyHandler,262,52
+block_count,GetNamedPropertyHandler,260,75
+block_count,GetNamedPropertyHandler,261,21
+block_count,GetNamedPropertyHandler,262,54
block_count,GetNamedPropertyFromSuperHandler,0,0
-block_count,GetKeyedPropertyHandler,0,20
+block_count,GetKeyedPropertyHandler,0,22
block_count,GetKeyedPropertyHandler,1,9
-block_count,GetKeyedPropertyHandler,2,11
+block_count,GetKeyedPropertyHandler,2,12
block_count,GetEnumeratedKeyedPropertyHandler,0,1
block_count,SetNamedPropertyHandler,0,10
block_count,DefineNamedOwnPropertyHandler,0,3
@@ -66413,16 +66428,16 @@
block_count,AddHandler,20,0
block_count,AddHandler,21,4
block_count,AddHandler,22,4
-block_count,AddHandler,23,3
+block_count,AddHandler,23,4
block_count,AddHandler,24,0
-block_count,AddHandler,25,3
+block_count,AddHandler,25,4
block_count,AddHandler,26,0
block_count,AddHandler,27,4
block_count,AddHandler,28,0
block_count,AddHandler,29,0
block_count,AddHandler,30,0
block_count,AddHandler,31,0
-block_count,AddHandler,32,6
+block_count,AddHandler,32,7
block_count,AddHandler,33,3
block_count,AddHandler,34,3
block_count,AddHandler,35,3
@@ -66589,7 +66604,7 @@
block_count,AddHandler,196,3
block_count,AddHandler,197,11
block_count,AddHandler,198,6
-block_count,AddHandler,199,4
+block_count,AddHandler,199,5
block_count,SubHandler,0,1
block_count,SubHandler,1,0
block_count,SubHandler,2,0
@@ -66704,7 +66719,7 @@
block_count,SubHandler,111,0
block_count,SubHandler,112,0
block_count,MulHandler,0,4
-block_count,MulHandler,1,1
+block_count,MulHandler,1,2
block_count,MulHandler,2,1
block_count,MulHandler,3,1
block_count,MulHandler,4,0
@@ -66819,15 +66834,15 @@
block_count,MulHandler,113,0
block_count,MulHandler,114,0
block_count,MulHandler,115,0
-block_count,MulHandler,116,3
+block_count,MulHandler,116,4
block_count,MulHandler,117,3
block_count,MulHandler,118,0
block_count,MulHandler,119,3
block_count,MulHandler,120,0
-block_count,MulHandler,121,3
+block_count,MulHandler,121,4
block_count,MulHandler,122,0
-block_count,MulHandler,123,3
-block_count,MulHandler,124,3
+block_count,MulHandler,123,4
+block_count,MulHandler,124,4
block_count,MulHandler,125,4
block_count,MulHandler,126,3
block_count,MulHandler,127,1
@@ -67148,7 +67163,7 @@
block_count,ExpHandler,55,0
block_count,ExpHandler,56,0
block_count,ExpHandler,57,0
-block_count,BitwiseOrHandler,0,0
+block_count,BitwiseOrHandler,0,1
block_count,BitwiseOrHandler,1,0
block_count,BitwiseOrHandler,2,0
block_count,BitwiseOrHandler,3,0
@@ -67254,8 +67269,8 @@
block_count,BitwiseOrHandler,103,0
block_count,BitwiseOrHandler,104,0
block_count,BitwiseOrHandler,105,0
-block_count,BitwiseOrHandler,106,0
-block_count,BitwiseOrHandler,107,0
+block_count,BitwiseOrHandler,106,1
+block_count,BitwiseOrHandler,107,1
block_count,BitwiseOrHandler,108,0
block_count,BitwiseOrHandler,109,0
block_count,BitwiseOrHandler,110,0
@@ -67280,23 +67295,23 @@
block_count,BitwiseOrHandler,129,0
block_count,BitwiseOrHandler,130,0
block_count,BitwiseOrHandler,131,0
-block_count,BitwiseOrHandler,132,0
+block_count,BitwiseOrHandler,132,1
block_count,BitwiseOrHandler,133,0
block_count,BitwiseOrHandler,134,0
block_count,BitwiseOrHandler,135,0
block_count,BitwiseOrHandler,136,0
block_count,BitwiseOrHandler,137,0
-block_count,BitwiseOrHandler,138,0
+block_count,BitwiseOrHandler,138,1
block_count,BitwiseOrHandler,139,0
block_count,BitwiseOrHandler,140,0
-block_count,BitwiseOrHandler,141,0
+block_count,BitwiseOrHandler,141,1
block_count,BitwiseOrHandler,142,0
block_count,BitwiseOrHandler,143,0
block_count,BitwiseOrHandler,144,0
block_count,BitwiseOrHandler,145,0
-block_count,BitwiseOrHandler,146,0
-block_count,BitwiseOrHandler,147,0
-block_count,BitwiseXorHandler,0,0
+block_count,BitwiseOrHandler,146,1
+block_count,BitwiseOrHandler,147,1
+block_count,BitwiseXorHandler,0,1
block_count,BitwiseXorHandler,1,0
block_count,BitwiseXorHandler,2,0
block_count,BitwiseXorHandler,3,0
@@ -67402,7 +67417,7 @@
block_count,BitwiseXorHandler,103,0
block_count,BitwiseXorHandler,104,0
block_count,BitwiseXorHandler,105,0
-block_count,BitwiseXorHandler,106,0
+block_count,BitwiseXorHandler,106,1
block_count,BitwiseXorHandler,107,0
block_count,BitwiseXorHandler,108,0
block_count,BitwiseXorHandler,109,0
@@ -67428,22 +67443,22 @@
block_count,BitwiseXorHandler,129,0
block_count,BitwiseXorHandler,130,0
block_count,BitwiseXorHandler,131,0
-block_count,BitwiseXorHandler,132,0
+block_count,BitwiseXorHandler,132,1
block_count,BitwiseXorHandler,133,0
block_count,BitwiseXorHandler,134,0
block_count,BitwiseXorHandler,135,0
block_count,BitwiseXorHandler,136,0
block_count,BitwiseXorHandler,137,0
-block_count,BitwiseXorHandler,138,0
+block_count,BitwiseXorHandler,138,1
block_count,BitwiseXorHandler,139,0
block_count,BitwiseXorHandler,140,0
-block_count,BitwiseXorHandler,141,0
+block_count,BitwiseXorHandler,141,1
block_count,BitwiseXorHandler,142,0
block_count,BitwiseXorHandler,143,0
block_count,BitwiseXorHandler,144,0
block_count,BitwiseXorHandler,145,0
-block_count,BitwiseXorHandler,146,0
-block_count,BitwiseXorHandler,147,0
+block_count,BitwiseXorHandler,146,1
+block_count,BitwiseXorHandler,147,1
block_count,BitwiseAndHandler,0,0
block_count,BitwiseAndHandler,1,0
block_count,BitwiseAndHandler,2,0
@@ -68534,7 +68549,7 @@
block_count,BitwiseAndSmiHandler,32,0
block_count,BitwiseAndSmiHandler,33,0
block_count,BitwiseAndSmiHandler,34,0
-block_count,BitwiseAndSmiHandler,35,0
+block_count,BitwiseAndSmiHandler,35,1
block_count,BitwiseAndSmiHandler,36,1
block_count,BitwiseAndSmiHandler,37,0
block_count,BitwiseAndSmiHandler,38,0
@@ -68685,8 +68700,8 @@
block_count,ShiftRightLogicalSmiHandler,48,0
block_count,ShiftRightLogicalSmiHandler,49,0
block_count,ShiftRightLogicalSmiHandler,50,0
-block_count,IncHandler,0,11
-block_count,IncHandler,1,11
+block_count,IncHandler,0,12
+block_count,IncHandler,1,12
block_count,IncHandler,2,0
block_count,IncHandler,3,0
block_count,IncHandler,4,0
@@ -68703,21 +68718,21 @@
block_count,IncHandler,15,0
block_count,IncHandler,16,0
block_count,IncHandler,17,0
-block_count,IncHandler,18,11
-block_count,IncHandler,19,11
+block_count,IncHandler,18,12
+block_count,IncHandler,19,12
block_count,IncHandler,20,0
block_count,IncHandler,21,0
block_count,IncHandler,22,0
block_count,IncHandler,23,0
block_count,IncHandler,24,0
-block_count,IncHandler,25,11
+block_count,IncHandler,25,12
block_count,IncHandler,26,11
block_count,IncHandler,27,0
-block_count,IncHandler,28,10
+block_count,IncHandler,28,11
block_count,IncHandler,29,0
-block_count,IncHandler,30,11
+block_count,IncHandler,30,12
block_count,IncHandler,31,1
-block_count,IncHandler,32,10
+block_count,IncHandler,32,11
block_count,DecHandler,0,3
block_count,DecHandler,1,3
block_count,DecHandler,2,0
@@ -69144,7 +69159,7 @@
block_count,CallProperty0Handler,66,3
block_count,CallProperty0Handler,67,1
block_count,CallProperty0Handler,68,5
-block_count,CallProperty1Handler,0,12
+block_count,CallProperty1Handler,0,13
block_count,CallProperty1Handler,1,8
block_count,CallProperty1Handler,2,0
block_count,CallProperty1Handler,3,0
@@ -69212,7 +69227,7 @@
block_count,CallProperty1Handler,65,0
block_count,CallProperty1Handler,66,8
block_count,CallProperty1Handler,67,4
-block_count,CallProperty1Handler,68,12
+block_count,CallProperty1Handler,68,13
block_count,CallProperty2Handler,0,4
block_count,CallProperty2Handler,1,2
block_count,CallProperty2Handler,2,0
@@ -69486,7 +69501,7 @@
block_count,CallUndefinedReceiver1Handler,63,0
block_count,CallUndefinedReceiver1Handler,64,0
block_count,CallUndefinedReceiver1Handler,65,0
-block_count,CallUndefinedReceiver1Handler,66,1
+block_count,CallUndefinedReceiver1Handler,66,2
block_count,CallUndefinedReceiver1Handler,67,2
block_count,CallUndefinedReceiver1Handler,68,5
block_count,CallUndefinedReceiver2Handler,0,3
@@ -69924,7 +69939,7 @@
block_count,TestEqualHandler,104,0
block_count,TestEqualHandler,105,2
block_count,TestEqualHandler,106,0
-block_count,TestEqualHandler,107,1
+block_count,TestEqualHandler,107,2
block_count,TestEqualHandler,108,2
block_count,TestEqualHandler,109,0
block_count,TestEqualHandler,110,2
@@ -69969,7 +69984,7 @@
block_count,TestEqualHandler,149,0
block_count,TestEqualHandler,150,0
block_count,TestEqualHandler,151,0
-block_count,TestEqualHandler,152,0
+block_count,TestEqualHandler,152,1
block_count,TestEqualHandler,153,0
block_count,TestEqualHandler,154,0
block_count,TestEqualHandler,155,0
@@ -69997,10 +70012,10 @@
block_count,TestEqualHandler,177,0
block_count,TestEqualHandler,178,0
block_count,TestEqualHandler,179,0
-block_count,TestEqualHandler,180,0
+block_count,TestEqualHandler,180,1
block_count,TestEqualHandler,181,2
block_count,TestEqualHandler,182,5
-block_count,TestEqualHandler,183,4
+block_count,TestEqualHandler,183,5
block_count,TestEqualHandler,184,0
block_count,TestEqualHandler,185,4
block_count,TestEqualHandler,186,0
@@ -70012,7 +70027,7 @@
block_count,TestEqualStrictHandler,4,5
block_count,TestEqualStrictHandler,5,2
block_count,TestEqualStrictHandler,6,2
-block_count,TestEqualStrictHandler,7,0
+block_count,TestEqualStrictHandler,7,1
block_count,TestEqualStrictHandler,8,0
block_count,TestEqualStrictHandler,9,0
block_count,TestEqualStrictHandler,10,0
@@ -70065,17 +70080,17 @@
block_count,TestEqualStrictHandler,57,0
block_count,TestEqualStrictHandler,58,0
block_count,TestEqualStrictHandler,59,0
-block_count,TestEqualStrictHandler,60,2
+block_count,TestEqualStrictHandler,60,3
block_count,TestEqualStrictHandler,61,0
block_count,TestEqualStrictHandler,62,0
block_count,TestEqualStrictHandler,63,0
-block_count,TestEqualStrictHandler,64,2
+block_count,TestEqualStrictHandler,64,3
block_count,TestEqualStrictHandler,65,0
block_count,TestEqualStrictHandler,66,2
-block_count,TestEqualStrictHandler,67,2
+block_count,TestEqualStrictHandler,67,3
block_count,TestEqualStrictHandler,68,0
-block_count,TestEqualStrictHandler,69,2
-block_count,TestEqualStrictHandler,70,2
+block_count,TestEqualStrictHandler,69,3
+block_count,TestEqualStrictHandler,70,3
block_count,TestEqualStrictHandler,71,2
block_count,TestEqualStrictHandler,72,0
block_count,TestEqualStrictHandler,73,0
@@ -70105,7 +70120,7 @@
block_count,TestEqualStrictHandler,97,0
block_count,TestEqualStrictHandler,98,1
block_count,TestEqualStrictHandler,99,0
-block_count,TestEqualStrictHandler,100,0
+block_count,TestEqualStrictHandler,100,1
block_count,TestEqualStrictHandler,101,0
block_count,TestEqualStrictHandler,102,0
block_count,TestEqualStrictHandler,103,0
@@ -70134,15 +70149,15 @@
block_count,TestEqualStrictHandler,126,0
block_count,TestEqualStrictHandler,127,0
block_count,TestEqualStrictHandler,128,3
-block_count,TestEqualStrictHandler,129,0
+block_count,TestEqualStrictHandler,129,1
block_count,TestEqualStrictHandler,130,7
block_count,TestEqualStrictHandler,131,5
block_count,TestEqualStrictHandler,132,0
block_count,TestEqualStrictHandler,133,5
block_count,TestEqualStrictHandler,134,2
block_count,TestEqualStrictHandler,135,7
-block_count,TestLessThanHandler,0,10
-block_count,TestLessThanHandler,1,10
+block_count,TestLessThanHandler,0,11
+block_count,TestLessThanHandler,1,11
block_count,TestLessThanHandler,2,0
block_count,TestLessThanHandler,3,0
block_count,TestLessThanHandler,4,0
@@ -70271,7 +70286,7 @@
block_count,TestLessThanHandler,127,0
block_count,TestLessThanHandler,128,0
block_count,TestLessThanHandler,129,0
-block_count,TestLessThanHandler,130,10
+block_count,TestLessThanHandler,130,11
block_count,TestLessThanHandler,131,0
block_count,TestLessThanHandler,132,0
block_count,TestLessThanHandler,133,0
@@ -70288,7 +70303,7 @@
block_count,TestLessThanHandler,144,0
block_count,TestLessThanHandler,145,0
block_count,TestLessThanHandler,146,0
-block_count,TestLessThanHandler,147,10
+block_count,TestLessThanHandler,147,11
block_count,TestLessThanHandler,148,1
block_count,TestLessThanHandler,149,9
block_count,TestLessThanHandler,150,0
@@ -70304,12 +70319,12 @@
block_count,TestLessThanHandler,160,0
block_count,TestLessThanHandler,161,1
block_count,TestLessThanHandler,162,9
-block_count,TestLessThanHandler,163,10
-block_count,TestLessThanHandler,164,9
+block_count,TestLessThanHandler,163,11
+block_count,TestLessThanHandler,164,10
block_count,TestLessThanHandler,165,0
-block_count,TestLessThanHandler,166,9
+block_count,TestLessThanHandler,166,10
block_count,TestLessThanHandler,167,1
-block_count,TestLessThanHandler,168,10
+block_count,TestLessThanHandler,168,11
block_count,TestGreaterThanHandler,0,2
block_count,TestGreaterThanHandler,1,2
block_count,TestGreaterThanHandler,2,0
@@ -70440,7 +70455,7 @@
block_count,TestGreaterThanHandler,127,0
block_count,TestGreaterThanHandler,128,0
block_count,TestGreaterThanHandler,129,0
-block_count,TestGreaterThanHandler,130,1
+block_count,TestGreaterThanHandler,130,2
block_count,TestGreaterThanHandler,131,0
block_count,TestGreaterThanHandler,132,0
block_count,TestGreaterThanHandler,133,0
@@ -70457,7 +70472,7 @@
block_count,TestGreaterThanHandler,144,0
block_count,TestGreaterThanHandler,145,0
block_count,TestGreaterThanHandler,146,0
-block_count,TestGreaterThanHandler,147,1
+block_count,TestGreaterThanHandler,147,2
block_count,TestGreaterThanHandler,148,0
block_count,TestGreaterThanHandler,149,1
block_count,TestGreaterThanHandler,150,0
@@ -70471,7 +70486,7 @@
block_count,TestGreaterThanHandler,158,0
block_count,TestGreaterThanHandler,159,0
block_count,TestGreaterThanHandler,160,0
-block_count,TestGreaterThanHandler,161,0
+block_count,TestGreaterThanHandler,161,1
block_count,TestGreaterThanHandler,162,1
block_count,TestGreaterThanHandler,163,2
block_count,TestGreaterThanHandler,164,1
@@ -70479,8 +70494,8 @@
block_count,TestGreaterThanHandler,166,1
block_count,TestGreaterThanHandler,167,0
block_count,TestGreaterThanHandler,168,2
-block_count,TestLessThanOrEqualHandler,0,1
-block_count,TestLessThanOrEqualHandler,1,1
+block_count,TestLessThanOrEqualHandler,0,0
+block_count,TestLessThanOrEqualHandler,1,0
block_count,TestLessThanOrEqualHandler,2,0
block_count,TestLessThanOrEqualHandler,3,0
block_count,TestLessThanOrEqualHandler,4,0
@@ -70642,12 +70657,12 @@
block_count,TestLessThanOrEqualHandler,160,0
block_count,TestLessThanOrEqualHandler,161,0
block_count,TestLessThanOrEqualHandler,162,0
-block_count,TestLessThanOrEqualHandler,163,1
+block_count,TestLessThanOrEqualHandler,163,0
block_count,TestLessThanOrEqualHandler,164,0
block_count,TestLessThanOrEqualHandler,165,0
block_count,TestLessThanOrEqualHandler,166,0
block_count,TestLessThanOrEqualHandler,167,0
-block_count,TestLessThanOrEqualHandler,168,1
+block_count,TestLessThanOrEqualHandler,168,0
block_count,TestGreaterThanOrEqualHandler,0,1
block_count,TestGreaterThanOrEqualHandler,1,1
block_count,TestGreaterThanOrEqualHandler,2,0
@@ -70796,7 +70811,7 @@
block_count,TestGreaterThanOrEqualHandler,145,0
block_count,TestGreaterThanOrEqualHandler,146,0
block_count,TestGreaterThanOrEqualHandler,147,1
-block_count,TestGreaterThanOrEqualHandler,148,0
+block_count,TestGreaterThanOrEqualHandler,148,1
block_count,TestGreaterThanOrEqualHandler,149,0
block_count,TestGreaterThanOrEqualHandler,150,0
block_count,TestGreaterThanOrEqualHandler,151,0
@@ -70809,7 +70824,7 @@
block_count,TestGreaterThanOrEqualHandler,158,0
block_count,TestGreaterThanOrEqualHandler,159,0
block_count,TestGreaterThanOrEqualHandler,160,0
-block_count,TestGreaterThanOrEqualHandler,161,0
+block_count,TestGreaterThanOrEqualHandler,161,1
block_count,TestGreaterThanOrEqualHandler,162,0
block_count,TestGreaterThanOrEqualHandler,163,1
block_count,TestGreaterThanOrEqualHandler,164,1
@@ -71331,7 +71346,7 @@
block_count,CreateFunctionContextWithCellsHandler,58,1
block_count,CreateFunctionContextWithCellsHandler,59,0
block_count,CreateFunctionContextWithCellsHandler,60,1
-block_count,CreateFunctionContextWithCellsHandler,61,0
+block_count,CreateFunctionContextWithCellsHandler,61,1
block_count,CreateFunctionContextWithCellsHandler,62,0
block_count,CreateFunctionContextWithCellsHandler,63,1
block_count,CreateFunctionContextWithCellsHandler,64,1
@@ -71512,12 +71527,12 @@
block_count,CreateRestParameterHandler,36,0
block_count,CreateRestParameterHandler,37,0
block_count,CreateRestParameterHandler,38,0
-block_count,JumpLoopHandler,0,14
-block_count,JumpLoopHandler,1,12
+block_count,JumpLoopHandler,0,15
+block_count,JumpLoopHandler,1,13
block_count,JumpLoopHandler,2,1
block_count,JumpLoopHandler,3,0
block_count,JumpLoopHandler,4,1
-block_count,JumpLoopHandler,5,12
+block_count,JumpLoopHandler,5,13
block_count,JumpLoopHandler,6,0
block_count,JumpLoopHandler,7,0
block_count,JumpLoopHandler,8,0
@@ -71547,12 +71562,12 @@
block_count,JumpLoopHandler,32,0
block_count,JumpLoopHandler,33,0
block_count,JumpLoopHandler,34,0
-block_count,JumpLoopHandler,35,12
-block_count,JumpLoopHandler,36,12
+block_count,JumpLoopHandler,35,13
+block_count,JumpLoopHandler,36,13
block_count,JumpLoopHandler,37,0
-block_count,JumpLoopHandler,38,12
-block_count,JumpLoopHandler,39,12
-block_count,JumpLoopHandler,40,12
+block_count,JumpLoopHandler,38,13
+block_count,JumpLoopHandler,39,13
+block_count,JumpLoopHandler,40,13
block_count,JumpLoopHandler,41,0
block_count,JumpLoopHandler,42,0
block_count,JumpLoopHandler,43,0
@@ -71572,10 +71587,10 @@
block_count,JumpLoopHandler,57,0
block_count,JumpLoopHandler,58,0
block_count,JumpLoopHandler,59,0
-block_count,JumpLoopHandler,60,13
+block_count,JumpLoopHandler,60,14
block_count,JumpLoopHandler,61,0
-block_count,JumpLoopHandler,62,13
-block_count,JumpLoopHandler,63,13
+block_count,JumpLoopHandler,62,14
+block_count,JumpLoopHandler,63,14
block_count,JumpHandler,0,4
block_count,JumpConstantHandler,0,0
block_count,JumpIfUndefinedConstantHandler,0,0
@@ -71587,7 +71602,7 @@
block_count,JumpIfUndefinedOrNullConstantHandler,0,0
block_count,JumpIfUndefinedOrNullConstantHandler,1,0
block_count,JumpIfUndefinedOrNullConstantHandler,2,0
-block_count,JumpIfTrueConstantHandler,0,0
+block_count,JumpIfTrueConstantHandler,0,1
block_count,JumpIfTrueConstantHandler,1,0
block_count,JumpIfTrueConstantHandler,2,0
block_count,JumpIfFalseConstantHandler,0,0
@@ -71638,7 +71653,7 @@
block_count,JumpIfToBooleanFalseConstantHandler,18,0
block_count,JumpIfToBooleanFalseConstantHandler,19,0
block_count,JumpIfToBooleanFalseConstantHandler,20,0
-block_count,JumpIfToBooleanTrueHandler,0,5
+block_count,JumpIfToBooleanTrueHandler,0,6
block_count,JumpIfToBooleanTrueHandler,1,5
block_count,JumpIfToBooleanTrueHandler,2,2
block_count,JumpIfToBooleanTrueHandler,3,1
@@ -71659,8 +71674,8 @@
block_count,JumpIfToBooleanTrueHandler,18,0
block_count,JumpIfToBooleanTrueHandler,19,2
block_count,JumpIfToBooleanTrueHandler,20,3
-block_count,JumpIfToBooleanFalseHandler,0,12
-block_count,JumpIfToBooleanFalseHandler,1,9
+block_count,JumpIfToBooleanFalseHandler,0,13
+block_count,JumpIfToBooleanFalseHandler,1,10
block_count,JumpIfToBooleanFalseHandler,2,4
block_count,JumpIfToBooleanFalseHandler,3,3
block_count,JumpIfToBooleanFalseHandler,4,3
@@ -71674,18 +71689,18 @@
block_count,JumpIfToBooleanFalseHandler,12,0
block_count,JumpIfToBooleanFalseHandler,13,0
block_count,JumpIfToBooleanFalseHandler,14,1
-block_count,JumpIfToBooleanFalseHandler,15,4
-block_count,JumpIfToBooleanFalseHandler,16,2
+block_count,JumpIfToBooleanFalseHandler,15,5
+block_count,JumpIfToBooleanFalseHandler,16,3
block_count,JumpIfToBooleanFalseHandler,17,2
block_count,JumpIfToBooleanFalseHandler,18,0
block_count,JumpIfToBooleanFalseHandler,19,7
block_count,JumpIfToBooleanFalseHandler,20,5
block_count,JumpIfTrueHandler,0,6
-block_count,JumpIfTrueHandler,1,4
+block_count,JumpIfTrueHandler,1,5
block_count,JumpIfTrueHandler,2,1
-block_count,JumpIfFalseHandler,0,23
-block_count,JumpIfFalseHandler,1,13
-block_count,JumpIfFalseHandler,2,9
+block_count,JumpIfFalseHandler,0,25
+block_count,JumpIfFalseHandler,1,14
+block_count,JumpIfFalseHandler,2,10
block_count,JumpIfNullHandler,0,0
block_count,JumpIfNullHandler,1,0
block_count,JumpIfNullHandler,2,0
@@ -71791,9 +71806,9 @@
block_count,SetPendingMessageHandler,0,0
block_count,ThrowHandler,0,2
block_count,ReThrowHandler,0,0
-block_count,ReturnHandler,0,19
+block_count,ReturnHandler,0,20
block_count,ReturnHandler,1,0
-block_count,ReturnHandler,2,19
+block_count,ReturnHandler,2,20
block_count,ThrowReferenceErrorIfHoleHandler,0,1
block_count,ThrowReferenceErrorIfHoleHandler,1,1
block_count,ThrowReferenceErrorIfHoleHandler,2,0
@@ -71832,7 +71847,7 @@
block_count,ResumeGeneratorHandler,6,0
block_count,ResumeGeneratorHandler,7,0
block_count,GetIteratorHandler,0,0
-block_count,ShortStarHandler,0,54
+block_count,ShortStarHandler,0,56
block_count,LdarWideHandler,0,0
block_count,LdaSmiWideHandler,0,7
block_count,LdaConstantWideHandler,0,1
@@ -72587,7 +72602,7 @@
block_count,DefineKeyedOwnPropertyWideHandler,0,2
block_count,StaInArrayLiteralWideHandler,0,0
block_count,AddWideHandler,0,1
-block_count,AddWideHandler,1,0
+block_count,AddWideHandler,1,1
block_count,AddWideHandler,2,0
block_count,AddWideHandler,3,0
block_count,AddWideHandler,4,0
@@ -72607,13 +72622,13 @@
block_count,AddWideHandler,18,0
block_count,AddWideHandler,19,0
block_count,AddWideHandler,20,0
-block_count,AddWideHandler,21,0
-block_count,AddWideHandler,22,0
+block_count,AddWideHandler,21,1
+block_count,AddWideHandler,22,1
block_count,AddWideHandler,23,0
block_count,AddWideHandler,24,0
block_count,AddWideHandler,25,0
block_count,AddWideHandler,26,0
-block_count,AddWideHandler,27,0
+block_count,AddWideHandler,27,1
block_count,AddWideHandler,28,0
block_count,AddWideHandler,29,0
block_count,AddWideHandler,30,0
diff -Nru chromium-143.0.7499.109/v8/tools/builtins-pgo/profiles/x86-rl.profile chromium-143.0.7499.169/v8/tools/builtins-pgo/profiles/x86-rl.profile
--- chromium-143.0.7499.109/v8/tools/builtins-pgo/profiles/x86-rl.profile 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/v8/tools/builtins-pgo/profiles/x86-rl.profile 2025-12-17 23:05:18.000000000 +0000
@@ -8,7 +8,6 @@
block_hint,RecordWriteSaveFP,21,22,1
block_hint,RecordWriteSaveFP,28,27,0
block_hint,RecordWriteSaveFP,53,45,0
-block_hint,RecordWriteSaveFP,46,51,1
block_hint,RecordWriteSaveFP,48,47,0
block_hint,RecordWriteIgnoreFP,3,2,1
block_hint,RecordWriteIgnoreFP,4,9,1
@@ -195,6 +194,7 @@
block_hint,StringCompare,84,81,0
block_hint,StringSubstring,227,1,0
block_hint,StringSubstring,226,2,0
+block_hint,StringSubstring,191,3,0
block_hint,StringSubstring,7,8,1
block_hint,StringSubstring,23,18,0
block_hint,StringSubstring,109,29,0
@@ -1121,7 +1121,6 @@
block_hint,CreateArrayFromSlowBoilerplateHelper,156,80,0
block_hint,CreateArrayFromSlowBoilerplateHelper,82,154,0
block_hint,CreateArrayFromSlowBoilerplateHelper,86,85,1
-block_hint,CreateArrayFromSlowBoilerplateHelper,104,90,0
block_hint,CreateArrayFromSlowBoilerplateHelper,103,91,0
block_hint,CreateArrayFromSlowBoilerplateHelper,96,95,1
block_hint,CreateArrayFromSlowBoilerplateHelper,99,98,1
@@ -1298,7 +1297,6 @@
block_hint,GlobalIsNaN,6,9,1
block_hint,LoadIC,1,2,1
block_hint,LoadIC,5,6,0
-block_hint,LoadIC,34,7,1
block_hint,LoadIC,21,8,1
block_hint,LoadIC,23,22,0
block_hint,LoadIC,26,27,1
@@ -1364,7 +1362,6 @@
block_hint,LoadIC_Noninlined,1,2,1
block_hint,LoadIC_Noninlined,6,5,0
block_hint,LoadIC_Noninlined,19,18,0
-block_hint,LoadIC_Noninlined,21,24,1
block_hint,LoadIC_Noninlined,22,23,1
block_hint,LoadIC_Noninlined,27,28,1
block_hint,LoadIC_Noninlined,119,32,0
@@ -1686,6 +1683,7 @@
block_hint,StoreIC,371,370,0
block_hint,StoreIC_Megamorphic,1,2,1
block_hint,StoreIC_Megamorphic,5,4,0
+block_hint,StoreIC_Megamorphic,8,9,1
block_hint,StoreIC_Megamorphic,12,15,1
block_hint,StoreIC_Megamorphic,13,14,1
block_hint,StoreIC_Megamorphic,17,257,1
@@ -1850,6 +1848,7 @@
block_hint,LookupGlobalICBaseline,2,14,1
block_hint,LookupGlobalICBaseline,4,3,1
block_hint,LookupGlobalICBaseline,5,8,1
+block_hint,LookupGlobalICBaseline,6,7,1
block_hint,LookupGlobalICBaseline,10,13,1
block_hint,LookupGlobalICBaseline,11,12,0
block_hint,KeyedHasIC,1,2,1
@@ -2055,7 +2054,6 @@
block_hint,Add_Baseline,47,18,0
block_hint,Add_Baseline,33,20,1
block_hint,Add_Baseline,22,21,0
-block_hint,Add_Baseline,36,35,0
block_hint,Add_Baseline,41,37,0
block_hint,Add_Baseline,39,38,1
block_hint,Add_Baseline,44,43,1
@@ -2191,11 +2189,11 @@
block_hint,Equal_Baseline,66,67,0
block_hint,Equal_Baseline,72,71,1
block_hint,Equal_Baseline,79,80,0
-block_hint,Equal_Baseline,88,107,0
block_hint,Equal_Baseline,98,92,0
block_hint,Equal_Baseline,93,97,1
block_hint,Equal_Baseline,103,104,0
block_hint,Equal_Baseline,109,110,0
+block_hint,Equal_Baseline,139,125,0
block_hint,Equal_Baseline,130,129,0
block_hint,Equal_Baseline,133,132,1
block_hint,Equal_Baseline,136,137,0
@@ -3066,7 +3064,6 @@
block_hint,ArrayFrom,96,95,1
block_hint,ArrayFrom,99,98,1
block_hint,ArrayIsArray,2,1,1
-block_hint,ArrayIsArray,4,9,1
block_hint,ArrayIsArray,7,8,0
block_hint,LoadJoinElement_FastSmiOrObjectElements_0,2,1,1
block_hint,LoadJoinElement_FastSmiOrObjectElements_0,4,3,0
@@ -3540,6 +3537,7 @@
block_hint,ArrayPrototypeSplice,535,520,1
block_hint,ArrayPrototypeSplice,522,525,0
block_hint,ArrayPrototypeSplice,533,529,1
+block_hint,ArrayPrototypeSplice,567,556,0
block_hint,ArrayPrototypeSplice,602,601,0
block_hint,ArrayPrototypeSplice,605,608,0
block_hint,ArrayPrototypeSplice,611,610,1
@@ -5311,6 +5309,7 @@
block_hint,TestTypeOfHandler,46,41,0
block_hint,TestTypeOfHandler,44,45,0
block_hint,LdaGlobalHandler,284,1,0
+block_hint,LdaGlobalHandler,2,255,1
block_hint,LdaGlobalHandler,8,3,0
block_hint,LdaGlobalHandler,7,4,0
block_hint,LdaGlobalHandler,251,9,1
@@ -5352,8 +5351,6 @@
block_hint,GetNamedPropertyHandler,23,20,0
block_hint,GetNamedPropertyHandler,22,21,0
block_hint,GetNamedPropertyHandler,83,26,1
-block_hint,GetNamedPropertyHandler,27,28,1
-block_hint,GetNamedPropertyHandler,36,30,0
block_hint,GetNamedPropertyHandler,34,33,0
block_hint,GetNamedPropertyHandler,95,84,1
block_hint,GetNamedPropertyHandler,98,104,1
@@ -5395,7 +5392,6 @@
block_hint,MulHandler,35,36,1
block_hint,MulHandler,73,70,1
block_hint,MulHandler,79,76,0
-block_hint,MulHandler,78,77,1
block_hint,DivHandler,19,6,0
block_hint,DivHandler,10,9,0
block_hint,DivHandler,13,12,0
@@ -5642,6 +5638,7 @@
block_hint,TestGreaterThanHandler,102,90,1
block_hint,TestGreaterThanHandler,104,120,0
block_hint,TestGreaterThanHandler,139,138,1
+block_hint,TestLessThanOrEqualHandler,2,103,0
block_hint,TestLessThanOrEqualHandler,104,120,0
block_hint,TestLessThanOrEqualHandler,139,138,1
block_hint,TestGreaterThanOrEqualHandler,54,5,0
@@ -5787,12 +5784,6 @@
block_hint,GetNamedPropertyWideHandler,277,1,0
block_hint,GetNamedPropertyWideHandler,2,3,1
block_hint,GetNamedPropertyWideHandler,106,18,0
-block_hint,GetNamedPropertyWideHandler,23,20,0
-block_hint,GetNamedPropertyWideHandler,22,21,0
-block_hint,GetNamedPropertyWideHandler,98,104,1
-block_hint,GetNamedPropertyWideHandler,102,99,0
-block_hint,GetNamedPropertyWideHandler,101,100,0
-block_hint,GetNamedPropertyWideHandler,206,112,1
block_hint,GetNamedPropertyWideHandler,218,208,0
block_hint,AddWideHandler,2,5,0
block_hint,AddWideHandler,12,6,0
@@ -5808,7 +5799,6 @@
block_hint,MulWideHandler,83,82,0
block_hint,AddSmiWideHandler,9,1,0
block_hint,AddSmiWideHandler,8,2,0
-block_hint,AddSmiWideHandler,5,4,1
block_hint,MulSmiWideHandler,14,2,0
block_hint,MulSmiWideHandler,5,4,0
block_hint,MulSmiWideHandler,17,16,1
@@ -5850,6 +5840,7 @@
block_hint,TestEqualWideHandler,126,144,0
block_hint,TestEqualWideHandler,150,149,1
block_hint,TestLessThanWideHandler,104,120,0
+block_hint,TestLessThanWideHandler,139,138,1
block_hint,TestGreaterThanWideHandler,104,120,0
block_hint,TestGreaterThanWideHandler,139,138,1
block_hint,CreateRegExpLiteralWideHandler,10,1,1
@@ -5897,28 +5888,28 @@
block_hint,BitwiseAndSmiExtraWideHandler,27,26,0
block_hint,BitwiseAndSmiExtraWideHandler,41,38,1
block_hint,CallUndefinedReceiver1ExtraWideHandler,1,67,0
-builtin_count,RecordWriteSaveFP,1547
-builtin_count,RecordWriteIgnoreFP,0
+builtin_count,RecordWriteSaveFP,1534
+builtin_count,RecordWriteIgnoreFP,1
builtin_count,EphemeronKeyBarrierSaveFP,0
builtin_count,AdaptorWithBuiltinExitFrame0,116
builtin_count,AdaptorWithBuiltinExitFrame1,4
builtin_count,AdaptorWithBuiltinExitFrame2,0
builtin_count,AdaptorWithBuiltinExitFrame3,8
-builtin_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,416
-builtin_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,1458
+builtin_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,415
+builtin_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,1451
builtin_count,Call_ReceiverIsAny_Baseline_Compact,5
builtin_count,CallProxy,0
builtin_count,CallWithSpread,19
-builtin_count,CallWithSpread_Baseline,2
+builtin_count,CallWithSpread_Baseline,1
builtin_count,CallWithArrayLike,36
builtin_count,CallFunctionTemplate_Generic,1
builtin_count,ConstructWithSpread,0
builtin_count,ConstructWithSpread_Baseline,0
builtin_count,ConstructForwardAllArgs_Baseline,1
builtin_count,Construct_Baseline,125
-builtin_count,FastNewObject,341
+builtin_count,FastNewObject,339
builtin_count,FastNewClosure,101
-builtin_count,StringEqual,656
+builtin_count,StringEqual,655
builtin_count,StringGreaterThan,0
builtin_count,StringGreaterThanOrEqual,4
builtin_count,StringLessThan,483
@@ -5933,7 +5924,7 @@
builtin_count,MarkLazyDeoptimized,0
builtin_count,HandleApiCallOrConstruct,1
builtin_count,AllocateInYoungGeneration,4
-builtin_count,AllocateInOldGeneration,2
+builtin_count,AllocateInOldGeneration,1
builtin_count,CopyFastSmiOrObjectElements,17
builtin_count,GrowFastDoubleElements,383
builtin_count,GrowFastSmiOrObjectElements,351
@@ -5944,17 +5935,17 @@
builtin_count,Typeof,30
builtin_count,Typeof_Baseline,2
builtin_count,KeyedLoadIC_PolymorphicName,1
-builtin_count,KeyedStoreIC_Megamorphic,384
+builtin_count,KeyedStoreIC_Megamorphic,383
builtin_count,DefineKeyedOwnIC_Megamorphic,2
builtin_count,LoadGlobalIC_NoFeedback,16
builtin_count,LoadIC_FunctionPrototype,214
-builtin_count,LoadIC_StringLength,190
+builtin_count,LoadIC_StringLength,192
builtin_count,LoadIC_StringWrapperLength,0
builtin_count,LoadIC_NoFeedback,46
builtin_count,StoreIC_NoFeedback,6
builtin_count,DefineNamedOwnIC_NoFeedback,4
builtin_count,KeyedLoadIC_SloppyArguments,2
-builtin_count,StoreFastElementIC_InBounds,457
+builtin_count,StoreFastElementIC_InBounds,458
builtin_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,46
builtin_count,StoreFastElementIC_NoTransitionHandleCOW,0
builtin_count,ElementsTransitionAndStore_InBounds,1
@@ -5985,8 +5976,8 @@
builtin_count,ArrayIndexOfSmi,0
builtin_count,ArrayIndexOfSmiOrObject,144
builtin_count,ArrayIndexOf,26
-builtin_count,ArrayPrototypePop,14
-builtin_count,ArrayPrototypePush,344
+builtin_count,ArrayPrototypePop,13
+builtin_count,ArrayPrototypePush,225
builtin_count,CloneFastJSArray,196
builtin_count,CloneFastJSArrayFillingHoles,0
builtin_count,ExtractFastJSArray,206
@@ -6022,42 +6013,42 @@
builtin_count,CallIteratorWithFeedbackLazyDeoptContinuation,0
builtin_count,GlobalIsFinite,0
builtin_count,GlobalIsNaN,0
-builtin_count,LoadIC,583
+builtin_count,LoadIC,582
builtin_count,LoadIC_Megamorphic,10000
builtin_count,LoadIC_Noninlined,6
-builtin_count,LoadICTrampoline,337
-builtin_count,LoadICBaseline,5175
-builtin_count,LoadICTrampoline_Megamorphic,6109
+builtin_count,LoadICTrampoline,341
+builtin_count,LoadICBaseline,5153
+builtin_count,LoadICTrampoline_Megamorphic,6110
builtin_count,LoadSuperIC,5
builtin_count,LoadSuperICBaseline,5
-builtin_count,KeyedLoadIC,980
+builtin_count,KeyedLoadIC,987
builtin_count,EnumeratedKeyedLoadIC,7
-builtin_count,KeyedLoadIC_Megamorphic,2429
+builtin_count,KeyedLoadIC_Megamorphic,2427
builtin_count,KeyedLoadICTrampoline,1
-builtin_count,KeyedLoadICBaseline,911
+builtin_count,KeyedLoadICBaseline,918
builtin_count,EnumeratedKeyedLoadICBaseline,6
-builtin_count,KeyedLoadICTrampoline_Megamorphic,1199
+builtin_count,KeyedLoadICTrampoline_Megamorphic,1190
builtin_count,StoreGlobalIC,84
builtin_count,StoreGlobalICTrampoline,0
builtin_count,StoreGlobalICBaseline,6
-builtin_count,StoreIC,694
-builtin_count,StoreIC_Megamorphic,1298
-builtin_count,StoreICTrampoline,23
-builtin_count,StoreICTrampoline_Megamorphic,633
-builtin_count,StoreICBaseline,634
+builtin_count,StoreIC,691
+builtin_count,StoreIC_Megamorphic,1291
+builtin_count,StoreICTrampoline,24
+builtin_count,StoreICTrampoline_Megamorphic,634
+builtin_count,StoreICBaseline,631
builtin_count,DefineNamedOwnIC,81
builtin_count,DefineNamedOwnICBaseline,74
-builtin_count,KeyedStoreIC,490
+builtin_count,KeyedStoreIC,491
builtin_count,KeyedStoreICTrampoline,1
builtin_count,KeyedStoreICTrampoline_Megamorphic,299
-builtin_count,KeyedStoreICBaseline,443
+builtin_count,KeyedStoreICBaseline,444
builtin_count,DefineKeyedOwnIC,2
builtin_count,StoreInArrayLiteralIC,43
-builtin_count,StoreInArrayLiteralICBaseline,38
-builtin_count,LoadGlobalIC,1375
+builtin_count,StoreInArrayLiteralICBaseline,39
+builtin_count,LoadGlobalIC,1236
builtin_count,LoadGlobalICInsideTypeof,2
-builtin_count,LoadGlobalICTrampoline,444
-builtin_count,LoadGlobalICBaseline,904
+builtin_count,LoadGlobalICTrampoline,297
+builtin_count,LoadGlobalICBaseline,912
builtin_count,LoadGlobalICInsideTypeofTrampoline,0
builtin_count,LoadGlobalICInsideTypeofBaseline,2
builtin_count,LookupGlobalICBaseline,2
@@ -6083,40 +6074,40 @@
builtin_count,MapPrototypeValues,0
builtin_count,MapIteratorPrototypeNext,9
builtin_count,MapIteratorToList,0
-builtin_count,Add_Baseline,567
-builtin_count,AddSmi_Baseline,570
-builtin_count,Subtract_Baseline,124
-builtin_count,SubtractSmi_Baseline,78
-builtin_count,Multiply_Baseline,180
+builtin_count,Add_Baseline,572
+builtin_count,AddSmi_Baseline,573
+builtin_count,Subtract_Baseline,126
+builtin_count,SubtractSmi_Baseline,77
+builtin_count,Multiply_Baseline,185
builtin_count,MultiplySmi_Baseline,29
builtin_count,Divide_Baseline,15
builtin_count,DivideSmi_Baseline,5
builtin_count,Modulus_Baseline,2
builtin_count,ModulusSmi_Baseline,4
builtin_count,Exponentiate_Baseline,0
-builtin_count,BitwiseAnd_Baseline,31
-builtin_count,BitwiseAndSmi_Baseline,114
+builtin_count,BitwiseAnd_Baseline,32
+builtin_count,BitwiseAndSmi_Baseline,115
builtin_count,BitwiseOr_Baseline,59
builtin_count,BitwiseOrSmi_Baseline,286
-builtin_count,BitwiseXor_Baseline,40
+builtin_count,BitwiseXor_Baseline,41
builtin_count,BitwiseXorSmi_Baseline,1
builtin_count,ShiftLeft_Baseline,5
builtin_count,ShiftLeftSmi_Baseline,76
builtin_count,ShiftRight_Baseline,7
-builtin_count,ShiftRightSmi_Baseline,235
+builtin_count,ShiftRightSmi_Baseline,237
builtin_count,ShiftRightLogical_Baseline,1
builtin_count,ShiftRightLogicalSmi_Baseline,18
builtin_count,Add_LhsIsStringConstant_Internalize_Baseline,1
builtin_count,Add_RhsIsStringConstant_Internalize_Baseline,0
-builtin_count,Equal_Baseline,338
-builtin_count,StrictEqual_Baseline,514
-builtin_count,LessThan_Baseline,481
-builtin_count,GreaterThan_Baseline,166
+builtin_count,Equal_Baseline,337
+builtin_count,StrictEqual_Baseline,510
+builtin_count,LessThan_Baseline,475
+builtin_count,GreaterThan_Baseline,162
builtin_count,LessThanOrEqual_Baseline,62
builtin_count,GreaterThanOrEqual_Baseline,121
builtin_count,BitwiseNot_Baseline,6
builtin_count,Decrement_Baseline,56
-builtin_count,Increment_Baseline,324
+builtin_count,Increment_Baseline,322
builtin_count,Negate_Baseline,13
builtin_count,ObjectAssign,2
builtin_count,ObjectCreate,3
@@ -6125,16 +6116,16 @@
builtin_count,ObjectGetOwnPropertyNames,0
builtin_count,ObjectIs,0
builtin_count,ObjectKeys,15
-builtin_count,ObjectPrototypeHasOwnProperty,243
+builtin_count,ObjectPrototypeHasOwnProperty,242
builtin_count,ObjectToString,63
builtin_count,InstanceOf,11
-builtin_count,InstanceOf_Baseline,82
+builtin_count,InstanceOf_Baseline,81
builtin_count,ForInEnumerate,59
builtin_count,ForInPrepare,1
builtin_count,ForInFilter,223
builtin_count,RegExpConstructor,0
builtin_count,FindOrderedHashSetEntry,116
-builtin_count,SetConstructor,115
+builtin_count,SetConstructor,114
builtin_count,SetPrototypeHas,1
builtin_count,SetPrototypeAdd,72
builtin_count,SetPrototypeDelete,9
@@ -6144,12 +6135,12 @@
builtin_count,SetPrototypeValues,3
builtin_count,SetIteratorPrototypeNext,47
builtin_count,SetOrSetIteratorToList,0
-builtin_count,StringFromCharCode,30
+builtin_count,StringFromCharCode,31
builtin_count,StringPrototypeReplace,247
builtin_count,StringPrototypeSplit,54
builtin_count,TypedArrayConstructor,2
builtin_count,TypedArrayPrototypeByteLength,0
-builtin_count,TypedArrayPrototypeLength,15
+builtin_count,TypedArrayPrototypeLength,14
builtin_count,WasmToJsWrapperCSA,0
builtin_count,WeakMapConstructor,0
builtin_count,WeakMapLookupHashIndex,76
@@ -6167,9 +6158,9 @@
builtin_count,AsyncGeneratorAwait,7
builtin_count,AsyncGeneratorAwaitResolveClosure,7
builtin_count,AsyncGeneratorYieldWithAwaitResolveClosure,8
-builtin_count,StringAdd_CheckNone,7924
-builtin_count,SubString,1672
-builtin_count,GetProperty,503
+builtin_count,StringAdd_CheckNone,7919
+builtin_count,SubString,1671
+builtin_count,GetProperty,502
builtin_count,GetPropertyWithReceiver,17
builtin_count,SetProperty,0
builtin_count,CreateDataProperty,1
@@ -6184,7 +6175,7 @@
builtin_count,ArrayForEachLoopContinuation,0
builtin_count,ArrayForEach,2
builtin_count,ArrayFrom,0
-builtin_count,ArrayIsArray,6
+builtin_count,ArrayIsArray,5
builtin_count,LoadJoinElement_FastSmiOrObjectElements_0,654
builtin_count,JoinStackPush,0
builtin_count,JoinStackPop,0
@@ -6213,7 +6204,7 @@
builtin_count,ToString,74
builtin_count,StringPrototypeToString,19
builtin_count,StringPrototypeCharAt,17
-builtin_count,StringPrototypeCharCodeAt,66
+builtin_count,StringPrototypeCharCodeAt,65
builtin_count,StringPrototypeCodePointAt,0
builtin_count,StringPrototypeConcat,0
builtin_count,StringConstructor,33
@@ -6233,15 +6224,15 @@
builtin_count,StringToNumber,31
builtin_count,NonNumberToNumber,4
builtin_count,NonNumberToNumeric,5
-builtin_count,NumberToString,1220
+builtin_count,NumberToString,1219
builtin_count,ToBoolean,26
-builtin_count,ToBooleanForBaselineJump,1116
+builtin_count,ToBooleanForBaselineJump,1103
builtin_count,ToLength,2
builtin_count,ToName,48
builtin_count,ToObject,248
builtin_count,NonPrimitiveToPrimitive_Default,181
builtin_count,NonPrimitiveToPrimitive_Number,14
-builtin_count,NonPrimitiveToPrimitive_String,43
+builtin_count,NonPrimitiveToPrimitive_String,42
builtin_count,OrdinaryToPrimitive_Number,0
builtin_count,OrdinaryToPrimitive_Number_Inline,135
builtin_count,OrdinaryToPrimitive_String,0
@@ -6249,7 +6240,7 @@
builtin_count,DataViewPrototypeGetFloat64,0
builtin_count,DataViewPrototypeSetUint32,0
builtin_count,DataViewPrototypeSetFloat64,0
-builtin_count,FunctionPrototypeHasInstance,96
+builtin_count,FunctionPrototypeHasInstance,95
builtin_count,FastFunctionPrototypeBind,2
builtin_count,ForInNext,7
builtin_count,GetIteratorWithFeedback,0
@@ -6290,7 +6281,7 @@
builtin_count,LessThan,4
builtin_count,GreaterThanOrEqual,3
builtin_count,Equal,53
-builtin_count,StrictEqual,1398
+builtin_count,StrictEqual,1397
builtin_count,CreateObjectWithoutProperties,11
builtin_count,ObjectIsExtensible,0
builtin_count,ObjectPreventExtensions,0
@@ -6318,8 +6309,8 @@
builtin_count,ProxyPreventExtensions,0
builtin_count,ReflectGet,0
builtin_count,ReflectHas,0
-builtin_count,RegExpPrototypeExec,424
-builtin_count,RegExpMatchFast,1252
+builtin_count,RegExpPrototypeExec,423
+builtin_count,RegExpMatchFast,1251
builtin_count,RegExpReplace,199
builtin_count,RegExpPrototypeReplace,0
builtin_count,RegExpSearchFast,1
@@ -6341,7 +6332,7 @@
builtin_count,StringPrototypeIndexOf,5
builtin_count,StringPrototypeIterator,0
builtin_count,StringIteratorPrototypeNext,0
-builtin_count,StringPrototypeMatch,1252
+builtin_count,StringPrototypeMatch,1251
builtin_count,StringPrototypeSearch,1
builtin_count,StringRepeat,0
builtin_count,StringPrototypeSlice,11
@@ -6360,7 +6351,7 @@
builtin_count,FastNewSloppyArguments,5
builtin_count,FastNewStrictArguments,3
builtin_count,FastNewRestArguments,1
-builtin_count,LoadFromContextCell,31
+builtin_count,LoadFromContextCell,30
builtin_count,StoreCurrentContextElementBaseline,5
builtin_count,StoreContextElementBaseline,0
builtin_count,DetachContextCell,0
@@ -6373,21 +6364,21 @@
builtin_count,Store_FastObjectElements_0,243
builtin_count,Store_FastDoubleElements_0,0
builtin_count,SortCompareDefault,3
-builtin_count,SortCompareUserFn,753
+builtin_count,SortCompareUserFn,752
builtin_count,Copy,2
builtin_count,MergeAt,1
builtin_count,GallopLeft,1
builtin_count,GallopRight,1
builtin_count,ArrayTimSort,38
builtin_count,ArrayPrototypeSort,39
-builtin_count,StringFastLocaleCompare,1432
+builtin_count,StringFastLocaleCompare,1431
builtin_count,JSToWasmWrapper,0
builtin_count,JSToWasmHandleReturns,0
builtin_count,WasmTaggedNonSmiToInt32,0
builtin_count,WasmAllocateZeroedFixedArray,0
builtin_count,WasmTriggerTierUp,1
builtin_count,WasmStackGuard,0
-builtin_count,CallIndirectIC,2
+builtin_count,CallIndirectIC,1
builtin_count,CanUseSameAccessor_FastDoubleElements_0,0
builtin_count,CanUseSameAccessor_FastSmiElements_0,0
builtin_count,CanUseSameAccessor_FastObjectElements_0,38
@@ -6395,14 +6386,14 @@
builtin_count,StringToLowerCaseIntl,147
builtin_count,WideHandler,74
builtin_count,ExtraWideHandler,18
-builtin_count,LdarHandler,251
-builtin_count,LdaZeroHandler,28
-builtin_count,LdaSmiHandler,27
+builtin_count,LdarHandler,249
+builtin_count,LdaZeroHandler,27
+builtin_count,LdaSmiHandler,26
builtin_count,LdaUndefinedHandler,13
builtin_count,LdaNullHandler,2
builtin_count,LdaTheHoleHandler,0
builtin_count,LdaTrueHandler,4
-builtin_count,LdaFalseHandler,6
+builtin_count,LdaFalseHandler,5
builtin_count,LdaConstantHandler,23
builtin_count,LdaContextSlotNoCellHandler,1
builtin_count,LdaContextSlotHandler,0
@@ -6419,7 +6410,7 @@
builtin_count,TestNullHandler,0
builtin_count,TestUndefinedHandler,0
builtin_count,TestTypeOfHandler,1
-builtin_count,LdaGlobalHandler,55
+builtin_count,LdaGlobalHandler,54
builtin_count,LdaGlobalInsideTypeofHandler,0
builtin_count,StaGlobalHandler,2
builtin_count,StaContextSlotNoCellHandler,0
@@ -6429,7 +6420,7 @@
builtin_count,LdaLookupGlobalSlotHandler,1
builtin_count,LdaLookupGlobalSlotInsideTypeofHandler,0
builtin_count,StaLookupSlotHandler,0
-builtin_count,GetNamedPropertyHandler,166
+builtin_count,GetNamedPropertyHandler,163
builtin_count,GetNamedPropertyFromSuperHandler,0
builtin_count,GetKeyedPropertyHandler,66
builtin_count,GetEnumeratedKeyedPropertyHandler,1
@@ -6437,11 +6428,11 @@
builtin_count,DefineNamedOwnPropertyHandler,4
builtin_count,SetKeyedPropertyHandler,44
builtin_count,DefineKeyedOwnPropertyHandler,0
-builtin_count,StaInArrayLiteralHandler,3
+builtin_count,StaInArrayLiteralHandler,4
builtin_count,DefineKeyedOwnPropertyInLiteralHandler,0
builtin_count,AddHandler,37
-builtin_count,SubHandler,7
-builtin_count,MulHandler,16
+builtin_count,SubHandler,6
+builtin_count,MulHandler,15
builtin_count,DivHandler,1
builtin_count,ModHandler,0
builtin_count,ExpHandler,0
@@ -6461,7 +6452,7 @@
builtin_count,BitwiseXorSmiHandler,0
builtin_count,BitwiseAndSmiHandler,3
builtin_count,ShiftLeftSmiHandler,5
-builtin_count,ShiftRightSmiHandler,8
+builtin_count,ShiftRightSmiHandler,9
builtin_count,ShiftRightLogicalSmiHandler,1
builtin_count,IncHandler,46
builtin_count,DecHandler,10
@@ -6475,7 +6466,7 @@
builtin_count,FindNonDefaultConstructorOrConstructHandler,0
builtin_count,CallAnyReceiverHandler,0
builtin_count,CallPropertyHandler,4
-builtin_count,CallProperty0Handler,14
+builtin_count,CallProperty0Handler,13
builtin_count,CallProperty1Handler,29
builtin_count,CallProperty2Handler,7
builtin_count,CallUndefinedReceiverHandler,1
@@ -6529,9 +6520,9 @@
builtin_count,JumpIfToBooleanTrueConstantHandler,0
builtin_count,JumpIfToBooleanFalseConstantHandler,0
builtin_count,JumpIfToBooleanTrueHandler,13
-builtin_count,JumpIfToBooleanFalseHandler,33
+builtin_count,JumpIfToBooleanFalseHandler,32
builtin_count,JumpIfTrueHandler,13
-builtin_count,JumpIfFalseHandler,71
+builtin_count,JumpIfFalseHandler,69
builtin_count,JumpIfNullHandler,0
builtin_count,JumpIfNotNullHandler,0
builtin_count,JumpIfUndefinedHandler,1
@@ -6547,7 +6538,7 @@
builtin_count,SetPendingMessageHandler,0
builtin_count,ThrowHandler,2
builtin_count,ReThrowHandler,0
-builtin_count,ReturnHandler,44
+builtin_count,ReturnHandler,43
builtin_count,ThrowReferenceErrorIfHoleHandler,1
builtin_count,ThrowSuperNotCalledIfHoleHandler,0
builtin_count,ThrowSuperAlreadyCalledIfNotHoleHandler,0
@@ -6556,7 +6547,7 @@
builtin_count,SuspendGeneratorHandler,0
builtin_count,ResumeGeneratorHandler,0
builtin_count,GetIteratorHandler,0
-builtin_count,ShortStarHandler,125
+builtin_count,ShortStarHandler,124
builtin_count,LdarWideHandler,0
builtin_count,LdaSmiWideHandler,12
builtin_count,LdaConstantWideHandler,1
@@ -6654,22 +6645,22 @@
builtin_count,CallUndefinedReceiverExtraWideHandler,0
builtin_count,CallUndefinedReceiver1ExtraWideHandler,4
builtin_count,CallUndefinedReceiver2ExtraWideHandler,0
-block_count,RecordWriteSaveFP,0,1547
-block_count,RecordWriteSaveFP,1,1475
+block_count,RecordWriteSaveFP,0,1534
+block_count,RecordWriteSaveFP,1,1474
block_count,RecordWriteSaveFP,2,0
-block_count,RecordWriteSaveFP,3,1475
-block_count,RecordWriteSaveFP,4,1475
+block_count,RecordWriteSaveFP,3,1474
+block_count,RecordWriteSaveFP,4,1474
block_count,RecordWriteSaveFP,5,0
-block_count,RecordWriteSaveFP,6,1475
-block_count,RecordWriteSaveFP,7,1474
+block_count,RecordWriteSaveFP,6,1474
+block_count,RecordWriteSaveFP,7,1473
block_count,RecordWriteSaveFP,8,0
block_count,RecordWriteSaveFP,9,0
-block_count,RecordWriteSaveFP,10,1
-block_count,RecordWriteSaveFP,11,1475
-block_count,RecordWriteSaveFP,12,72
-block_count,RecordWriteSaveFP,13,51
-block_count,RecordWriteSaveFP,14,49
-block_count,RecordWriteSaveFP,15,49
+block_count,RecordWriteSaveFP,10,0
+block_count,RecordWriteSaveFP,11,1474
+block_count,RecordWriteSaveFP,12,59
+block_count,RecordWriteSaveFP,13,41
+block_count,RecordWriteSaveFP,14,39
+block_count,RecordWriteSaveFP,15,39
block_count,RecordWriteSaveFP,16,0
block_count,RecordWriteSaveFP,17,1
block_count,RecordWriteSaveFP,18,1
@@ -6679,9 +6670,9 @@
block_count,RecordWriteSaveFP,22,0
block_count,RecordWriteSaveFP,23,0
block_count,RecordWriteSaveFP,24,0
-block_count,RecordWriteSaveFP,25,20
-block_count,RecordWriteSaveFP,26,72
-block_count,RecordWriteSaveFP,27,72
+block_count,RecordWriteSaveFP,25,18
+block_count,RecordWriteSaveFP,26,59
+block_count,RecordWriteSaveFP,27,59
block_count,RecordWriteSaveFP,28,0
block_count,RecordWriteSaveFP,29,0
block_count,RecordWriteSaveFP,30,0
@@ -6698,22 +6689,22 @@
block_count,RecordWriteSaveFP,41,0
block_count,RecordWriteSaveFP,42,0
block_count,RecordWriteSaveFP,43,0
-block_count,RecordWriteSaveFP,44,72
-block_count,RecordWriteSaveFP,45,72
-block_count,RecordWriteSaveFP,46,70
-block_count,RecordWriteSaveFP,47,70
+block_count,RecordWriteSaveFP,44,59
+block_count,RecordWriteSaveFP,45,59
+block_count,RecordWriteSaveFP,46,57
+block_count,RecordWriteSaveFP,47,57
block_count,RecordWriteSaveFP,48,0
block_count,RecordWriteSaveFP,49,0
block_count,RecordWriteSaveFP,50,0
-block_count,RecordWriteSaveFP,51,1
-block_count,RecordWriteSaveFP,52,1
+block_count,RecordWriteSaveFP,51,2
+block_count,RecordWriteSaveFP,52,2
block_count,RecordWriteSaveFP,53,0
block_count,RecordWriteSaveFP,54,0
block_count,RecordWriteSaveFP,55,0
block_count,RecordWriteSaveFP,56,0
block_count,RecordWriteSaveFP,57,0
-block_count,RecordWriteSaveFP,58,72
-block_count,RecordWriteIgnoreFP,0,0
+block_count,RecordWriteSaveFP,58,59
+block_count,RecordWriteIgnoreFP,0,1
block_count,RecordWriteIgnoreFP,1,0
block_count,RecordWriteIgnoreFP,2,0
block_count,RecordWriteIgnoreFP,3,0
@@ -6786,16 +6777,16 @@
block_count,AdaptorWithBuiltinExitFrame3,1,6
block_count,AdaptorWithBuiltinExitFrame3,2,1
block_count,AdaptorWithBuiltinExitFrame3,3,8
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,0,416
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,1,416
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,2,91
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,3,79
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,4,79
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,5,79
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,0,415
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,1,415
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,2,90
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,3,78
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,4,78
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,5,78
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,6,0
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,7,79
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,8,79
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,9,79
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,7,78
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,8,78
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,9,78
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,10,0
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,11,0
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,12,0
@@ -6813,15 +6804,15 @@
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,24,0
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,25,0
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,26,0
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,27,79
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,28,79
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,29,79
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,27,78
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,28,78
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,29,78
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,30,0
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,31,0
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,32,0
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,33,0
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,34,0
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,35,78
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,35,77
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,36,0
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,37,0
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,38,0
@@ -6854,16 +6845,16 @@
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,65,12
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,66,324
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,67,0
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,68,416
-block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,0,1458
-block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,1,1458
-block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,2,86
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,68,415
+block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,0,1451
+block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,1,1451
+block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,2,87
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,3,32
-block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,4,32
-block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,5,32
+block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,4,31
+block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,5,31
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,6,0
-block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,7,32
-block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,8,32
+block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,7,31
+block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,8,31
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,9,25
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,10,6
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,11,0
@@ -6920,10 +6911,10 @@
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,62,0
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,63,0
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,64,0
-block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,65,53
-block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,66,1371
+block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,65,54
+block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,66,1364
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,67,0
-block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,68,1458
+block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,68,1451
block_count,Call_ReceiverIsAny_Baseline_Compact,0,5
block_count,Call_ReceiverIsAny_Baseline_Compact,1,5
block_count,Call_ReceiverIsAny_Baseline_Compact,2,0
@@ -7096,8 +7087,8 @@
block_count,CallWithSpread,62,0
block_count,CallWithSpread,63,0
block_count,CallWithSpread,64,14
-block_count,CallWithSpread_Baseline,0,2
-block_count,CallWithSpread_Baseline,1,2
+block_count,CallWithSpread_Baseline,0,1
+block_count,CallWithSpread_Baseline,1,1
block_count,CallWithSpread_Baseline,2,0
block_count,CallWithSpread_Baseline,3,0
block_count,CallWithSpread_Baseline,4,0
@@ -7164,22 +7155,22 @@
block_count,CallWithSpread_Baseline,65,0
block_count,CallWithSpread_Baseline,66,1
block_count,CallWithSpread_Baseline,67,0
-block_count,CallWithSpread_Baseline,68,2
-block_count,CallWithSpread_Baseline,69,2
+block_count,CallWithSpread_Baseline,68,1
+block_count,CallWithSpread_Baseline,69,1
block_count,CallWithSpread_Baseline,70,0
-block_count,CallWithSpread_Baseline,71,2
+block_count,CallWithSpread_Baseline,71,1
block_count,CallWithSpread_Baseline,72,0
-block_count,CallWithSpread_Baseline,73,2
+block_count,CallWithSpread_Baseline,73,1
block_count,CallWithSpread_Baseline,74,0
-block_count,CallWithSpread_Baseline,75,2
-block_count,CallWithSpread_Baseline,76,2
-block_count,CallWithSpread_Baseline,77,2
+block_count,CallWithSpread_Baseline,75,1
+block_count,CallWithSpread_Baseline,76,1
+block_count,CallWithSpread_Baseline,77,1
block_count,CallWithSpread_Baseline,78,0
block_count,CallWithSpread_Baseline,79,0
block_count,CallWithSpread_Baseline,80,0
block_count,CallWithSpread_Baseline,81,0
block_count,CallWithSpread_Baseline,82,0
-block_count,CallWithSpread_Baseline,83,2
+block_count,CallWithSpread_Baseline,83,1
block_count,CallWithSpread_Baseline,84,0
block_count,CallWithSpread_Baseline,85,0
block_count,CallWithSpread_Baseline,86,0
@@ -7228,7 +7219,7 @@
block_count,CallWithSpread_Baseline,129,0
block_count,CallWithSpread_Baseline,130,0
block_count,CallWithSpread_Baseline,131,0
-block_count,CallWithSpread_Baseline,132,2
+block_count,CallWithSpread_Baseline,132,1
block_count,CallWithArrayLike,0,36
block_count,CallWithArrayLike,1,36
block_count,CallWithArrayLike,2,0
@@ -7268,7 +7259,7 @@
block_count,CallWithArrayLike,36,0
block_count,CallWithArrayLike,37,0
block_count,CallWithArrayLike,38,32
-block_count,CallWithArrayLike,39,4
+block_count,CallWithArrayLike,39,3
block_count,CallWithArrayLike,40,36
block_count,CallWithArrayLike,41,0
block_count,CallWithArrayLike,42,0
@@ -7595,14 +7586,14 @@
block_count,Construct_Baseline,41,4
block_count,Construct_Baseline,42,3
block_count,Construct_Baseline,43,117
-block_count,Construct_Baseline,44,121
-block_count,FastNewObject,0,341
+block_count,Construct_Baseline,44,120
+block_count,FastNewObject,0,339
block_count,FastNewObject,1,0
-block_count,FastNewObject,2,341
-block_count,FastNewObject,3,341
-block_count,FastNewObject,4,339
-block_count,FastNewObject,5,339
-block_count,FastNewObject,6,339
+block_count,FastNewObject,2,339
+block_count,FastNewObject,3,339
+block_count,FastNewObject,4,336
+block_count,FastNewObject,5,336
+block_count,FastNewObject,6,336
block_count,FastNewObject,7,0
block_count,FastNewObject,8,0
block_count,FastNewObject,9,0
@@ -7628,25 +7619,25 @@
block_count,FastNewObject,29,0
block_count,FastNewObject,30,0
block_count,FastNewObject,31,0
-block_count,FastNewObject,32,339
-block_count,FastNewObject,33,338
+block_count,FastNewObject,32,336
+block_count,FastNewObject,33,336
block_count,FastNewObject,34,0
-block_count,FastNewObject,35,338
+block_count,FastNewObject,35,336
block_count,FastNewObject,36,0
block_count,FastNewObject,37,0
-block_count,FastNewObject,38,339
-block_count,FastNewObject,39,338
+block_count,FastNewObject,38,336
+block_count,FastNewObject,39,335
block_count,FastNewObject,40,1
-block_count,FastNewObject,41,337
+block_count,FastNewObject,41,334
block_count,FastNewObject,42,45
-block_count,FastNewObject,43,291
-block_count,FastNewObject,44,458
-block_count,FastNewObject,45,167
-block_count,FastNewObject,46,291
-block_count,FastNewObject,47,337
-block_count,FastNewObject,48,241
+block_count,FastNewObject,43,288
+block_count,FastNewObject,44,446
+block_count,FastNewObject,45,157
+block_count,FastNewObject,46,288
+block_count,FastNewObject,47,334
+block_count,FastNewObject,48,239
block_count,FastNewObject,49,95
-block_count,FastNewObject,50,338
+block_count,FastNewObject,50,335
block_count,FastNewObject,51,0
block_count,FastNewObject,52,0
block_count,FastNewObject,53,0
@@ -7691,19 +7682,19 @@
block_count,FastNewClosure,12,0
block_count,FastNewClosure,13,101
block_count,FastNewClosure,14,30
-block_count,FastNewClosure,15,71
-block_count,FastNewClosure,16,71
+block_count,FastNewClosure,15,70
+block_count,FastNewClosure,16,70
block_count,FastNewClosure,17,0
block_count,FastNewClosure,18,0
block_count,FastNewClosure,19,0
block_count,FastNewClosure,20,0
-block_count,FastNewClosure,21,71
+block_count,FastNewClosure,21,70
block_count,FastNewClosure,22,0
-block_count,FastNewClosure,23,71
+block_count,FastNewClosure,23,70
block_count,FastNewClosure,24,101
block_count,FastNewClosure,25,30
-block_count,FastNewClosure,26,71
-block_count,StringEqual,0,656
+block_count,FastNewClosure,26,70
+block_count,StringEqual,0,655
block_count,StringEqual,1,658
block_count,StringEqual,2,172
block_count,StringEqual,3,5
@@ -7995,7 +7986,7 @@
block_count,StringGreaterThanOrEqual,85,3
block_count,StringLessThan,0,483
block_count,StringLessThan,1,483
-block_count,StringLessThan,2,480
+block_count,StringLessThan,2,479
block_count,StringLessThan,3,0
block_count,StringLessThan,4,0
block_count,StringLessThan,5,0
@@ -8050,14 +8041,14 @@
block_count,StringLessThan,54,0
block_count,StringLessThan,55,0
block_count,StringLessThan,56,0
-block_count,StringLessThan,57,480
+block_count,StringLessThan,57,479
block_count,StringLessThan,58,223
block_count,StringLessThan,59,223
block_count,StringLessThan,60,0
-block_count,StringLessThan,61,257
-block_count,StringLessThan,62,257
+block_count,StringLessThan,61,256
+block_count,StringLessThan,62,256
block_count,StringLessThan,63,0
-block_count,StringLessThan,64,480
+block_count,StringLessThan,64,479
block_count,StringLessThan,65,20
block_count,StringLessThan,66,21
block_count,StringLessThan,67,20
@@ -8065,9 +8056,9 @@
block_count,StringLessThan,69,20
block_count,StringLessThan,70,0
block_count,StringLessThan,71,459
-block_count,StringLessThan,72,480
-block_count,StringLessThan,73,901
-block_count,StringLessThan,74,901
+block_count,StringLessThan,72,479
+block_count,StringLessThan,73,900
+block_count,StringLessThan,74,900
block_count,StringLessThan,75,421
block_count,StringLessThan,76,479
block_count,StringLessThan,77,229
@@ -8081,7 +8072,7 @@
block_count,StringLessThan,85,3
block_count,StringLessThanOrEqual,0,49
block_count,StringLessThanOrEqual,1,49
-block_count,StringLessThanOrEqual,2,45
+block_count,StringLessThanOrEqual,2,44
block_count,StringLessThanOrEqual,3,0
block_count,StringLessThanOrEqual,4,0
block_count,StringLessThanOrEqual,5,0
@@ -8136,26 +8127,26 @@
block_count,StringLessThanOrEqual,54,0
block_count,StringLessThanOrEqual,55,0
block_count,StringLessThanOrEqual,56,0
-block_count,StringLessThanOrEqual,57,45
+block_count,StringLessThanOrEqual,57,44
block_count,StringLessThanOrEqual,58,0
block_count,StringLessThanOrEqual,59,0
block_count,StringLessThanOrEqual,60,0
-block_count,StringLessThanOrEqual,61,45
-block_count,StringLessThanOrEqual,62,45
+block_count,StringLessThanOrEqual,61,44
+block_count,StringLessThanOrEqual,62,44
block_count,StringLessThanOrEqual,63,0
-block_count,StringLessThanOrEqual,64,45
+block_count,StringLessThanOrEqual,64,44
block_count,StringLessThanOrEqual,65,0
block_count,StringLessThanOrEqual,66,0
block_count,StringLessThanOrEqual,67,0
block_count,StringLessThanOrEqual,68,0
block_count,StringLessThanOrEqual,69,0
block_count,StringLessThanOrEqual,70,0
-block_count,StringLessThanOrEqual,71,45
-block_count,StringLessThanOrEqual,72,45
-block_count,StringLessThanOrEqual,73,45
-block_count,StringLessThanOrEqual,74,45
+block_count,StringLessThanOrEqual,71,44
+block_count,StringLessThanOrEqual,72,44
+block_count,StringLessThanOrEqual,73,44
+block_count,StringLessThanOrEqual,74,44
block_count,StringLessThanOrEqual,75,0
-block_count,StringLessThanOrEqual,76,45
+block_count,StringLessThanOrEqual,76,44
block_count,StringLessThanOrEqual,77,8
block_count,StringLessThanOrEqual,78,36
block_count,StringLessThanOrEqual,79,0
@@ -8255,28 +8246,28 @@
block_count,StringSubstring,1,511
block_count,StringSubstring,2,511
block_count,StringSubstring,3,456
-block_count,StringSubstring,4,197
-block_count,StringSubstring,5,395
-block_count,StringSubstring,6,10
-block_count,StringSubstring,7,10
+block_count,StringSubstring,4,195
+block_count,StringSubstring,5,391
+block_count,StringSubstring,6,9
+block_count,StringSubstring,7,9
block_count,StringSubstring,8,0
block_count,StringSubstring,9,180
block_count,StringSubstring,10,6
-block_count,StringSubstring,11,197
+block_count,StringSubstring,11,195
block_count,StringSubstring,12,0
-block_count,StringSubstring,13,197
+block_count,StringSubstring,13,195
block_count,StringSubstring,14,0
-block_count,StringSubstring,15,258
+block_count,StringSubstring,15,260
block_count,StringSubstring,16,456
block_count,StringSubstring,17,201
block_count,StringSubstring,18,5
block_count,StringSubstring,19,0
block_count,StringSubstring,20,5
block_count,StringSubstring,21,5
-block_count,StringSubstring,22,196
+block_count,StringSubstring,22,195
block_count,StringSubstring,23,0
-block_count,StringSubstring,24,196
-block_count,StringSubstring,25,196
+block_count,StringSubstring,24,195
+block_count,StringSubstring,25,195
block_count,StringSubstring,26,255
block_count,StringSubstring,27,255
block_count,StringSubstring,28,38
@@ -8306,7 +8297,7 @@
block_count,StringSubstring,52,5
block_count,StringSubstring,53,0
block_count,StringSubstring,54,5
-block_count,StringSubstring,55,14
+block_count,StringSubstring,55,15
block_count,StringSubstring,56,9
block_count,StringSubstring,57,5
block_count,StringSubstring,58,5
@@ -8349,7 +8340,7 @@
block_count,StringSubstring,95,216
block_count,StringSubstring,96,0
block_count,StringSubstring,97,216
-block_count,StringSubstring,98,495
+block_count,StringSubstring,98,494
block_count,StringSubstring,99,278
block_count,StringSubstring,100,216
block_count,StringSubstring,101,216
@@ -8441,16 +8432,16 @@
block_count,StringSubstring,187,0
block_count,StringSubstring,188,0
block_count,StringSubstring,189,55
-block_count,StringSubstring,190,6
-block_count,StringSubstring,191,12
+block_count,StringSubstring,190,5
+block_count,StringSubstring,191,10
block_count,StringSubstring,192,4
block_count,StringSubstring,193,4
block_count,StringSubstring,194,0
block_count,StringSubstring,195,1
block_count,StringSubstring,196,0
-block_count,StringSubstring,197,6
+block_count,StringSubstring,197,5
block_count,StringSubstring,198,0
-block_count,StringSubstring,199,6
+block_count,StringSubstring,199,5
block_count,StringSubstring,200,0
block_count,StringSubstring,201,0
block_count,StringSubstring,202,0
@@ -8537,9 +8528,9 @@
block_count,AllocateInYoungGeneration,0,4
block_count,AllocateInYoungGeneration,1,0
block_count,AllocateInYoungGeneration,2,4
-block_count,AllocateInOldGeneration,0,2
+block_count,AllocateInOldGeneration,0,1
block_count,AllocateInOldGeneration,1,0
-block_count,AllocateInOldGeneration,2,2
+block_count,AllocateInOldGeneration,2,1
block_count,CopyFastSmiOrObjectElements,0,17
block_count,CopyFastSmiOrObjectElements,1,17
block_count,CopyFastSmiOrObjectElements,2,0
@@ -8589,7 +8580,7 @@
block_count,GrowFastDoubleElements,10,383
block_count,GrowFastDoubleElements,11,383
block_count,GrowFastDoubleElements,12,49
-block_count,GrowFastDoubleElements,13,334
+block_count,GrowFastDoubleElements,13,333
block_count,GrowFastDoubleElements,14,383
block_count,GrowFastDoubleElements,15,0
block_count,GrowFastDoubleElements,16,383
@@ -8597,19 +8588,19 @@
block_count,GrowFastDoubleElements,18,383
block_count,GrowFastDoubleElements,19,0
block_count,GrowFastDoubleElements,20,383
-block_count,GrowFastDoubleElements,21,4377
-block_count,GrowFastDoubleElements,22,3993
+block_count,GrowFastDoubleElements,21,4375
+block_count,GrowFastDoubleElements,22,3991
block_count,GrowFastDoubleElements,23,383
block_count,GrowFastDoubleElements,24,383
block_count,GrowFastDoubleElements,25,102
block_count,GrowFastDoubleElements,26,281
block_count,GrowFastDoubleElements,27,383
block_count,GrowFastDoubleElements,28,164
-block_count,GrowFastDoubleElements,29,4894
-block_count,GrowFastDoubleElements,30,4894
+block_count,GrowFastDoubleElements,29,4891
+block_count,GrowFastDoubleElements,30,4891
block_count,GrowFastDoubleElements,31,0
-block_count,GrowFastDoubleElements,32,4894
-block_count,GrowFastDoubleElements,33,4730
+block_count,GrowFastDoubleElements,32,4891
+block_count,GrowFastDoubleElements,33,4727
block_count,GrowFastDoubleElements,34,164
block_count,GrowFastDoubleElements,35,219
block_count,GrowFastDoubleElements,36,0
@@ -8630,16 +8621,16 @@
block_count,GrowFastSmiOrObjectElements,11,350
block_count,GrowFastSmiOrObjectElements,12,0
block_count,GrowFastSmiOrObjectElements,13,350
-block_count,GrowFastSmiOrObjectElements,14,4632
-block_count,GrowFastSmiOrObjectElements,15,4281
+block_count,GrowFastSmiOrObjectElements,14,4637
+block_count,GrowFastSmiOrObjectElements,15,4286
block_count,GrowFastSmiOrObjectElements,16,350
block_count,GrowFastSmiOrObjectElements,17,350
block_count,GrowFastSmiOrObjectElements,18,17
block_count,GrowFastSmiOrObjectElements,19,333
block_count,GrowFastSmiOrObjectElements,20,350
block_count,GrowFastSmiOrObjectElements,21,46
-block_count,GrowFastSmiOrObjectElements,22,7148
-block_count,GrowFastSmiOrObjectElements,23,7102
+block_count,GrowFastSmiOrObjectElements,22,7169
+block_count,GrowFastSmiOrObjectElements,23,7123
block_count,GrowFastSmiOrObjectElements,24,46
block_count,GrowFastSmiOrObjectElements,25,304
block_count,GrowFastSmiOrObjectElements,26,0
@@ -9089,9 +9080,9 @@
block_count,KeyedLoadIC_PolymorphicName,259,0
block_count,KeyedLoadIC_PolymorphicName,260,0
block_count,KeyedLoadIC_PolymorphicName,261,0
-block_count,KeyedStoreIC_Megamorphic,0,384
-block_count,KeyedStoreIC_Megamorphic,1,384
-block_count,KeyedStoreIC_Megamorphic,2,384
+block_count,KeyedStoreIC_Megamorphic,0,383
+block_count,KeyedStoreIC_Megamorphic,1,383
+block_count,KeyedStoreIC_Megamorphic,2,383
block_count,KeyedStoreIC_Megamorphic,3,305
block_count,KeyedStoreIC_Megamorphic,4,304
block_count,KeyedStoreIC_Megamorphic,5,0
@@ -9106,12 +9097,12 @@
block_count,KeyedStoreIC_Megamorphic,14,304
block_count,KeyedStoreIC_Megamorphic,15,256
block_count,KeyedStoreIC_Megamorphic,16,256
-block_count,KeyedStoreIC_Megamorphic,17,241
+block_count,KeyedStoreIC_Megamorphic,17,240
block_count,KeyedStoreIC_Megamorphic,18,0
block_count,KeyedStoreIC_Megamorphic,19,0
block_count,KeyedStoreIC_Megamorphic,20,0
-block_count,KeyedStoreIC_Megamorphic,21,241
-block_count,KeyedStoreIC_Megamorphic,22,190
+block_count,KeyedStoreIC_Megamorphic,21,240
+block_count,KeyedStoreIC_Megamorphic,22,189
block_count,KeyedStoreIC_Megamorphic,23,51
block_count,KeyedStoreIC_Megamorphic,24,3
block_count,KeyedStoreIC_Megamorphic,25,3
@@ -9119,7 +9110,7 @@
block_count,KeyedStoreIC_Megamorphic,27,0
block_count,KeyedStoreIC_Megamorphic,28,0
block_count,KeyedStoreIC_Megamorphic,29,47
-block_count,KeyedStoreIC_Megamorphic,30,14
+block_count,KeyedStoreIC_Megamorphic,30,15
block_count,KeyedStoreIC_Megamorphic,31,0
block_count,KeyedStoreIC_Megamorphic,32,48
block_count,KeyedStoreIC_Megamorphic,33,0
@@ -9151,9 +9142,9 @@
block_count,KeyedStoreIC_Megamorphic,59,1
block_count,KeyedStoreIC_Megamorphic,60,0
block_count,KeyedStoreIC_Megamorphic,61,0
-block_count,KeyedStoreIC_Megamorphic,62,163
+block_count,KeyedStoreIC_Megamorphic,62,162
block_count,KeyedStoreIC_Megamorphic,63,0
-block_count,KeyedStoreIC_Megamorphic,64,163
+block_count,KeyedStoreIC_Megamorphic,64,162
block_count,KeyedStoreIC_Megamorphic,65,8
block_count,KeyedStoreIC_Megamorphic,66,154
block_count,KeyedStoreIC_Megamorphic,67,344
@@ -9201,9 +9192,9 @@
block_count,KeyedStoreIC_Megamorphic,109,0
block_count,KeyedStoreIC_Megamorphic,110,0
block_count,KeyedStoreIC_Megamorphic,111,0
-block_count,KeyedStoreIC_Megamorphic,112,54
+block_count,KeyedStoreIC_Megamorphic,112,53
block_count,KeyedStoreIC_Megamorphic,113,0
-block_count,KeyedStoreIC_Megamorphic,114,48
+block_count,KeyedStoreIC_Megamorphic,114,47
block_count,KeyedStoreIC_Megamorphic,115,47
block_count,KeyedStoreIC_Megamorphic,116,47
block_count,KeyedStoreIC_Megamorphic,117,0
@@ -9226,11 +9217,11 @@
block_count,KeyedStoreIC_Megamorphic,134,52
block_count,KeyedStoreIC_Megamorphic,135,52
block_count,KeyedStoreIC_Megamorphic,136,0
-block_count,KeyedStoreIC_Megamorphic,137,48
+block_count,KeyedStoreIC_Megamorphic,137,47
block_count,KeyedStoreIC_Megamorphic,138,47
block_count,KeyedStoreIC_Megamorphic,139,0
-block_count,KeyedStoreIC_Megamorphic,140,48
-block_count,KeyedStoreIC_Megamorphic,141,48
+block_count,KeyedStoreIC_Megamorphic,140,47
+block_count,KeyedStoreIC_Megamorphic,141,47
block_count,KeyedStoreIC_Megamorphic,142,0
block_count,KeyedStoreIC_Megamorphic,143,0
block_count,KeyedStoreIC_Megamorphic,144,0
@@ -9268,14 +9259,14 @@
block_count,KeyedStoreIC_Megamorphic,176,11
block_count,KeyedStoreIC_Megamorphic,177,0
block_count,KeyedStoreIC_Megamorphic,178,11
-block_count,KeyedStoreIC_Megamorphic,179,98
-block_count,KeyedStoreIC_Megamorphic,180,98
+block_count,KeyedStoreIC_Megamorphic,179,97
+block_count,KeyedStoreIC_Megamorphic,180,97
block_count,KeyedStoreIC_Megamorphic,181,0
-block_count,KeyedStoreIC_Megamorphic,182,98
-block_count,KeyedStoreIC_Megamorphic,183,52
+block_count,KeyedStoreIC_Megamorphic,182,97
+block_count,KeyedStoreIC_Megamorphic,183,51
block_count,KeyedStoreIC_Megamorphic,184,46
-block_count,KeyedStoreIC_Megamorphic,185,98
-block_count,KeyedStoreIC_Megamorphic,186,87
+block_count,KeyedStoreIC_Megamorphic,185,97
+block_count,KeyedStoreIC_Megamorphic,186,85
block_count,KeyedStoreIC_Megamorphic,187,11
block_count,KeyedStoreIC_Megamorphic,188,11
block_count,KeyedStoreIC_Megamorphic,189,11
@@ -9995,7 +9986,7 @@
block_count,KeyedStoreIC_Megamorphic,903,0
block_count,KeyedStoreIC_Megamorphic,904,78
block_count,KeyedStoreIC_Megamorphic,905,79
-block_count,KeyedStoreIC_Megamorphic,906,131
+block_count,KeyedStoreIC_Megamorphic,906,130
block_count,KeyedStoreIC_Megamorphic,907,1
block_count,KeyedStoreIC_Megamorphic,908,0
block_count,KeyedStoreIC_Megamorphic,909,0
@@ -11618,8 +11609,8 @@
block_count,LoadGlobalIC_NoFeedback,3,0
block_count,LoadGlobalIC_NoFeedback,4,16
block_count,LoadGlobalIC_NoFeedback,5,370
-block_count,LoadGlobalIC_NoFeedback,6,360
-block_count,LoadGlobalIC_NoFeedback,7,360
+block_count,LoadGlobalIC_NoFeedback,6,359
+block_count,LoadGlobalIC_NoFeedback,7,359
block_count,LoadGlobalIC_NoFeedback,8,1
block_count,LoadGlobalIC_NoFeedback,9,1
block_count,LoadGlobalIC_NoFeedback,10,0
@@ -11688,7 +11679,7 @@
block_count,LoadIC_FunctionPrototype,2,1
block_count,LoadIC_FunctionPrototype,3,212
block_count,LoadIC_FunctionPrototype,4,0
-block_count,LoadIC_StringLength,0,190
+block_count,LoadIC_StringLength,0,192
block_count,LoadIC_StringWrapperLength,0,0
block_count,LoadIC_NoFeedback,0,46
block_count,LoadIC_NoFeedback,1,46
@@ -11748,7 +11739,7 @@
block_count,LoadIC_NoFeedback,55,34
block_count,LoadIC_NoFeedback,56,10
block_count,LoadIC_NoFeedback,57,4
-block_count,LoadIC_NoFeedback,58,5
+block_count,LoadIC_NoFeedback,58,4
block_count,LoadIC_NoFeedback,59,14
block_count,LoadIC_NoFeedback,60,7
block_count,LoadIC_NoFeedback,61,7
@@ -12813,26 +12804,26 @@
block_count,KeyedLoadIC_SloppyArguments,20,0
block_count,KeyedLoadIC_SloppyArguments,21,0
block_count,KeyedLoadIC_SloppyArguments,22,0
-block_count,StoreFastElementIC_InBounds,0,457
+block_count,StoreFastElementIC_InBounds,0,458
block_count,StoreFastElementIC_InBounds,1,0
-block_count,StoreFastElementIC_InBounds,2,12
-block_count,StoreFastElementIC_InBounds,3,12
+block_count,StoreFastElementIC_InBounds,2,11
+block_count,StoreFastElementIC_InBounds,3,11
block_count,StoreFastElementIC_InBounds,4,0
block_count,StoreFastElementIC_InBounds,5,0
block_count,StoreFastElementIC_InBounds,6,0
block_count,StoreFastElementIC_InBounds,7,0
block_count,StoreFastElementIC_InBounds,8,0
-block_count,StoreFastElementIC_InBounds,9,12
-block_count,StoreFastElementIC_InBounds,10,12
+block_count,StoreFastElementIC_InBounds,9,11
+block_count,StoreFastElementIC_InBounds,10,11
block_count,StoreFastElementIC_InBounds,11,0
-block_count,StoreFastElementIC_InBounds,12,12
+block_count,StoreFastElementIC_InBounds,12,11
block_count,StoreFastElementIC_InBounds,13,0
-block_count,StoreFastElementIC_InBounds,14,12
-block_count,StoreFastElementIC_InBounds,15,12
+block_count,StoreFastElementIC_InBounds,14,11
+block_count,StoreFastElementIC_InBounds,15,11
block_count,StoreFastElementIC_InBounds,16,0
-block_count,StoreFastElementIC_InBounds,17,12
+block_count,StoreFastElementIC_InBounds,17,11
block_count,StoreFastElementIC_InBounds,18,0
-block_count,StoreFastElementIC_InBounds,19,12
+block_count,StoreFastElementIC_InBounds,19,11
block_count,StoreFastElementIC_InBounds,20,0
block_count,StoreFastElementIC_InBounds,21,14
block_count,StoreFastElementIC_InBounds,22,14
@@ -12936,22 +12927,22 @@
block_count,StoreFastElementIC_InBounds,120,0
block_count,StoreFastElementIC_InBounds,121,0
block_count,StoreFastElementIC_InBounds,122,0
-block_count,StoreFastElementIC_InBounds,123,14
-block_count,StoreFastElementIC_InBounds,124,14
+block_count,StoreFastElementIC_InBounds,123,15
+block_count,StoreFastElementIC_InBounds,124,15
block_count,StoreFastElementIC_InBounds,125,0
block_count,StoreFastElementIC_InBounds,126,0
block_count,StoreFastElementIC_InBounds,127,0
block_count,StoreFastElementIC_InBounds,128,0
block_count,StoreFastElementIC_InBounds,129,0
-block_count,StoreFastElementIC_InBounds,130,14
-block_count,StoreFastElementIC_InBounds,131,14
+block_count,StoreFastElementIC_InBounds,130,15
+block_count,StoreFastElementIC_InBounds,131,15
block_count,StoreFastElementIC_InBounds,132,0
-block_count,StoreFastElementIC_InBounds,133,14
-block_count,StoreFastElementIC_InBounds,134,14
+block_count,StoreFastElementIC_InBounds,133,15
+block_count,StoreFastElementIC_InBounds,134,15
block_count,StoreFastElementIC_InBounds,135,0
-block_count,StoreFastElementIC_InBounds,136,14
+block_count,StoreFastElementIC_InBounds,136,15
block_count,StoreFastElementIC_InBounds,137,0
-block_count,StoreFastElementIC_InBounds,138,14
+block_count,StoreFastElementIC_InBounds,138,15
block_count,StoreFastElementIC_InBounds,139,0
block_count,StoreFastElementIC_InBounds,140,0
block_count,StoreFastElementIC_InBounds,141,0
@@ -13031,27 +13022,27 @@
block_count,StoreFastElementIC_InBounds,215,21
block_count,StoreFastElementIC_InBounds,216,0
block_count,StoreFastElementIC_InBounds,217,21
-block_count,StoreFastElementIC_InBounds,218,63
+block_count,StoreFastElementIC_InBounds,218,64
block_count,StoreFastElementIC_InBounds,219,0
block_count,StoreFastElementIC_InBounds,220,0
block_count,StoreFastElementIC_InBounds,221,0
block_count,StoreFastElementIC_InBounds,222,0
block_count,StoreFastElementIC_InBounds,223,0
-block_count,StoreFastElementIC_InBounds,224,63
-block_count,StoreFastElementIC_InBounds,225,63
-block_count,StoreFastElementIC_InBounds,226,63
+block_count,StoreFastElementIC_InBounds,224,64
+block_count,StoreFastElementIC_InBounds,225,64
+block_count,StoreFastElementIC_InBounds,226,64
block_count,StoreFastElementIC_InBounds,227,0
block_count,StoreFastElementIC_InBounds,228,0
block_count,StoreFastElementIC_InBounds,229,0
block_count,StoreFastElementIC_InBounds,230,0
block_count,StoreFastElementIC_InBounds,231,0
block_count,StoreFastElementIC_InBounds,232,0
-block_count,StoreFastElementIC_InBounds,233,63
-block_count,StoreFastElementIC_InBounds,234,63
-block_count,StoreFastElementIC_InBounds,235,63
-block_count,StoreFastElementIC_InBounds,236,63
+block_count,StoreFastElementIC_InBounds,233,64
+block_count,StoreFastElementIC_InBounds,234,64
+block_count,StoreFastElementIC_InBounds,235,64
+block_count,StoreFastElementIC_InBounds,236,64
block_count,StoreFastElementIC_InBounds,237,0
-block_count,StoreFastElementIC_InBounds,238,63
+block_count,StoreFastElementIC_InBounds,238,64
block_count,StoreFastElementIC_InBounds,239,0
block_count,StoreFastElementIC_InBounds,240,0
block_count,StoreFastElementIC_InBounds,241,0
@@ -13127,27 +13118,27 @@
block_count,StoreFastElementIC_InBounds,311,0
block_count,StoreFastElementIC_InBounds,312,0
block_count,StoreFastElementIC_InBounds,313,0
-block_count,StoreFastElementIC_InBounds,314,4
+block_count,StoreFastElementIC_InBounds,314,3
block_count,StoreFastElementIC_InBounds,315,0
block_count,StoreFastElementIC_InBounds,316,0
block_count,StoreFastElementIC_InBounds,317,0
block_count,StoreFastElementIC_InBounds,318,0
block_count,StoreFastElementIC_InBounds,319,0
-block_count,StoreFastElementIC_InBounds,320,4
-block_count,StoreFastElementIC_InBounds,321,4
-block_count,StoreFastElementIC_InBounds,322,4
-block_count,StoreFastElementIC_InBounds,323,1
-block_count,StoreFastElementIC_InBounds,324,1
+block_count,StoreFastElementIC_InBounds,320,3
+block_count,StoreFastElementIC_InBounds,321,3
+block_count,StoreFastElementIC_InBounds,322,3
+block_count,StoreFastElementIC_InBounds,323,0
+block_count,StoreFastElementIC_InBounds,324,0
block_count,StoreFastElementIC_InBounds,325,0
block_count,StoreFastElementIC_InBounds,326,0
block_count,StoreFastElementIC_InBounds,327,0
-block_count,StoreFastElementIC_InBounds,328,1
-block_count,StoreFastElementIC_InBounds,329,2
-block_count,StoreFastElementIC_InBounds,330,4
-block_count,StoreFastElementIC_InBounds,331,4
-block_count,StoreFastElementIC_InBounds,332,4
+block_count,StoreFastElementIC_InBounds,328,0
+block_count,StoreFastElementIC_InBounds,329,3
+block_count,StoreFastElementIC_InBounds,330,3
+block_count,StoreFastElementIC_InBounds,331,3
+block_count,StoreFastElementIC_InBounds,332,3
block_count,StoreFastElementIC_InBounds,333,0
-block_count,StoreFastElementIC_InBounds,334,4
+block_count,StoreFastElementIC_InBounds,334,3
block_count,StoreFastElementIC_InBounds,335,0
block_count,StoreFastElementIC_InBounds,336,0
block_count,StoreFastElementIC_InBounds,337,0
@@ -13157,27 +13148,27 @@
block_count,StoreFastElementIC_InBounds,341,0
block_count,StoreFastElementIC_InBounds,342,0
block_count,StoreFastElementIC_InBounds,343,0
-block_count,StoreFastElementIC_InBounds,344,196
+block_count,StoreFastElementIC_InBounds,344,197
block_count,StoreFastElementIC_InBounds,345,0
block_count,StoreFastElementIC_InBounds,346,0
block_count,StoreFastElementIC_InBounds,347,0
block_count,StoreFastElementIC_InBounds,348,0
block_count,StoreFastElementIC_InBounds,349,0
-block_count,StoreFastElementIC_InBounds,350,196
-block_count,StoreFastElementIC_InBounds,351,196
-block_count,StoreFastElementIC_InBounds,352,196
+block_count,StoreFastElementIC_InBounds,350,197
+block_count,StoreFastElementIC_InBounds,351,197
+block_count,StoreFastElementIC_InBounds,352,197
block_count,StoreFastElementIC_InBounds,353,6
block_count,StoreFastElementIC_InBounds,354,6
block_count,StoreFastElementIC_InBounds,355,0
block_count,StoreFastElementIC_InBounds,356,0
block_count,StoreFastElementIC_InBounds,357,0
block_count,StoreFastElementIC_InBounds,358,6
-block_count,StoreFastElementIC_InBounds,359,190
-block_count,StoreFastElementIC_InBounds,360,196
-block_count,StoreFastElementIC_InBounds,361,196
-block_count,StoreFastElementIC_InBounds,362,196
+block_count,StoreFastElementIC_InBounds,359,191
+block_count,StoreFastElementIC_InBounds,360,197
+block_count,StoreFastElementIC_InBounds,361,197
+block_count,StoreFastElementIC_InBounds,362,197
block_count,StoreFastElementIC_InBounds,363,0
-block_count,StoreFastElementIC_InBounds,364,196
+block_count,StoreFastElementIC_InBounds,364,197
block_count,StoreFastElementIC_InBounds,365,0
block_count,StoreFastElementIC_InBounds,366,0
block_count,StoreFastElementIC_InBounds,367,0
@@ -14614,7 +14605,7 @@
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,665,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,666,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,667,2
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,668,1
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,668,2
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,669,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,670,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,671,0
@@ -14643,7 +14634,7 @@
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,694,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,695,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,696,0
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,697,2
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,697,3
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,698,3
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,699,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,700,3
@@ -19440,14 +19431,14 @@
block_count,ArrayConstructorImpl,2,4
block_count,ArrayConstructorImpl,3,2
block_count,ArrayConstructorImpl,4,0
-block_count,ArrayConstructorImpl,5,1
+block_count,ArrayConstructorImpl,5,2
block_count,ArrayConstructorImpl,6,0
block_count,ArrayConstructorImpl,7,0
block_count,ArrayConstructorImpl,8,0
-block_count,ArrayConstructorImpl,9,1
-block_count,ArrayConstructorImpl,10,1
+block_count,ArrayConstructorImpl,9,2
+block_count,ArrayConstructorImpl,10,2
block_count,ArrayConstructorImpl,11,0
-block_count,ArrayConstructorImpl,12,1
+block_count,ArrayConstructorImpl,12,2
block_count,ArrayConstructorImpl,13,1
block_count,ArrayConstructorImpl,14,1
block_count,ArrayConstructorImpl,15,0
@@ -19916,7 +19907,7 @@
block_count,ArrayIncludesSmiOrObject,26,0
block_count,ArrayIncludesSmiOrObject,27,0
block_count,ArrayIncludesSmiOrObject,28,18
-block_count,ArrayIncludesSmiOrObject,29,51
+block_count,ArrayIncludesSmiOrObject,29,50
block_count,ArrayIncludesSmiOrObject,30,35
block_count,ArrayIncludesSmiOrObject,31,35
block_count,ArrayIncludesSmiOrObject,32,32
@@ -20258,14 +20249,14 @@
block_count,ArrayIndexOfSmiOrObject,25,0
block_count,ArrayIndexOfSmiOrObject,26,0
block_count,ArrayIndexOfSmiOrObject,27,116
-block_count,ArrayIndexOfSmiOrObject,28,1765
-block_count,ArrayIndexOfSmiOrObject,29,1677
-block_count,ArrayIndexOfSmiOrObject,30,1677
-block_count,ArrayIndexOfSmiOrObject,31,1663
-block_count,ArrayIndexOfSmiOrObject,32,1663
+block_count,ArrayIndexOfSmiOrObject,28,1763
+block_count,ArrayIndexOfSmiOrObject,29,1676
+block_count,ArrayIndexOfSmiOrObject,30,1676
+block_count,ArrayIndexOfSmiOrObject,31,1662
+block_count,ArrayIndexOfSmiOrObject,32,1662
block_count,ArrayIndexOfSmiOrObject,33,0
-block_count,ArrayIndexOfSmiOrObject,34,1663
-block_count,ArrayIndexOfSmiOrObject,35,1386
+block_count,ArrayIndexOfSmiOrObject,34,1662
+block_count,ArrayIndexOfSmiOrObject,35,1385
block_count,ArrayIndexOfSmiOrObject,36,277
block_count,ArrayIndexOfSmiOrObject,37,228
block_count,ArrayIndexOfSmiOrObject,38,42
@@ -20369,7 +20360,7 @@
block_count,ArrayIndexOfSmiOrObject,136,0
block_count,ArrayIndexOfSmiOrObject,137,13
block_count,ArrayIndexOfSmiOrObject,138,0
-block_count,ArrayIndexOfSmiOrObject,139,1648
+block_count,ArrayIndexOfSmiOrObject,139,1647
block_count,ArrayIndexOfSmiOrObject,140,87
block_count,ArrayIndexOfSmiOrObject,141,0
block_count,ArrayIndexOfSmiOrObject,142,0
@@ -20433,21 +20424,21 @@
block_count,ArrayIndexOf,40,0
block_count,ArrayIndexOf,41,0
block_count,ArrayIndexOf,42,0
-block_count,ArrayPrototypePop,0,14
+block_count,ArrayPrototypePop,0,13
block_count,ArrayPrototypePop,1,0
-block_count,ArrayPrototypePop,2,14
-block_count,ArrayPrototypePop,3,14
-block_count,ArrayPrototypePop,4,14
-block_count,ArrayPrototypePop,5,14
-block_count,ArrayPrototypePop,6,14
+block_count,ArrayPrototypePop,2,13
+block_count,ArrayPrototypePop,3,13
+block_count,ArrayPrototypePop,4,13
+block_count,ArrayPrototypePop,5,13
+block_count,ArrayPrototypePop,6,13
block_count,ArrayPrototypePop,7,0
-block_count,ArrayPrototypePop,8,14
-block_count,ArrayPrototypePop,9,14
-block_count,ArrayPrototypePop,10,14
-block_count,ArrayPrototypePop,11,14
+block_count,ArrayPrototypePop,8,13
+block_count,ArrayPrototypePop,9,13
+block_count,ArrayPrototypePop,10,13
+block_count,ArrayPrototypePop,11,13
block_count,ArrayPrototypePop,12,0
-block_count,ArrayPrototypePop,13,14
-block_count,ArrayPrototypePop,14,14
+block_count,ArrayPrototypePop,13,13
+block_count,ArrayPrototypePop,14,13
block_count,ArrayPrototypePop,15,13
block_count,ArrayPrototypePop,16,13
block_count,ArrayPrototypePop,17,12
@@ -20473,26 +20464,26 @@
block_count,ArrayPrototypePop,37,0
block_count,ArrayPrototypePop,38,0
block_count,ArrayPrototypePop,39,1
-block_count,ArrayPrototypePush,0,344
+block_count,ArrayPrototypePush,0,225
block_count,ArrayPrototypePush,1,0
-block_count,ArrayPrototypePush,2,344
-block_count,ArrayPrototypePush,3,344
-block_count,ArrayPrototypePush,4,344
-block_count,ArrayPrototypePush,5,344
-block_count,ArrayPrototypePush,6,344
+block_count,ArrayPrototypePush,2,225
+block_count,ArrayPrototypePush,3,225
+block_count,ArrayPrototypePush,4,225
+block_count,ArrayPrototypePush,5,225
+block_count,ArrayPrototypePush,6,225
block_count,ArrayPrototypePush,7,0
-block_count,ArrayPrototypePush,8,344
-block_count,ArrayPrototypePush,9,344
-block_count,ArrayPrototypePush,10,344
+block_count,ArrayPrototypePush,8,225
+block_count,ArrayPrototypePush,9,225
+block_count,ArrayPrototypePush,10,225
block_count,ArrayPrototypePush,11,0
-block_count,ArrayPrototypePush,12,344
-block_count,ArrayPrototypePush,13,344
+block_count,ArrayPrototypePush,12,225
+block_count,ArrayPrototypePush,13,225
block_count,ArrayPrototypePush,14,0
-block_count,ArrayPrototypePush,15,344
-block_count,ArrayPrototypePush,16,344
-block_count,ArrayPrototypePush,17,34
-block_count,ArrayPrototypePush,18,34
-block_count,ArrayPrototypePush,19,33
+block_count,ArrayPrototypePush,15,225
+block_count,ArrayPrototypePush,16,225
+block_count,ArrayPrototypePush,17,31
+block_count,ArrayPrototypePush,18,31
+block_count,ArrayPrototypePush,19,31
block_count,ArrayPrototypePush,20,0
block_count,ArrayPrototypePush,21,0
block_count,ArrayPrototypePush,22,0
@@ -20515,23 +20506,23 @@
block_count,ArrayPrototypePush,39,0
block_count,ArrayPrototypePush,40,0
block_count,ArrayPrototypePush,41,76
-block_count,ArrayPrototypePush,42,75
+block_count,ArrayPrototypePush,42,76
block_count,ArrayPrototypePush,43,0
block_count,ArrayPrototypePush,44,0
block_count,ArrayPrototypePush,45,0
block_count,ArrayPrototypePush,46,0
block_count,ArrayPrototypePush,47,0
-block_count,ArrayPrototypePush,48,34
-block_count,ArrayPrototypePush,49,34
-block_count,ArrayPrototypePush,50,34
-block_count,ArrayPrototypePush,51,33
-block_count,ArrayPrototypePush,52,33
+block_count,ArrayPrototypePush,48,31
+block_count,ArrayPrototypePush,49,31
+block_count,ArrayPrototypePush,50,32
+block_count,ArrayPrototypePush,51,31
+block_count,ArrayPrototypePush,52,31
block_count,ArrayPrototypePush,53,0
-block_count,ArrayPrototypePush,54,33
+block_count,ArrayPrototypePush,54,31
block_count,ArrayPrototypePush,55,0
block_count,ArrayPrototypePush,56,0
block_count,ArrayPrototypePush,57,0
-block_count,ArrayPrototypePush,58,33
+block_count,ArrayPrototypePush,58,31
block_count,ArrayPrototypePush,59,0
block_count,ArrayPrototypePush,60,0
block_count,ArrayPrototypePush,61,0
@@ -20540,8 +20531,8 @@
block_count,ArrayPrototypePush,64,0
block_count,ArrayPrototypePush,65,0
block_count,ArrayPrototypePush,66,0
-block_count,ArrayPrototypePush,67,310
-block_count,ArrayPrototypePush,68,308
+block_count,ArrayPrototypePush,67,193
+block_count,ArrayPrototypePush,68,190
block_count,ArrayPrototypePush,69,2
block_count,ArrayPrototypePush,70,2
block_count,ArrayPrototypePush,71,2
@@ -20606,46 +20597,46 @@
block_count,ArrayPrototypePush,130,0
block_count,ArrayPrototypePush,131,0
block_count,ArrayPrototypePush,132,0
-block_count,ArrayPrototypePush,133,308
-block_count,ArrayPrototypePush,134,308
-block_count,ArrayPrototypePush,135,283
-block_count,ArrayPrototypePush,136,25
-block_count,ArrayPrototypePush,137,25
-block_count,ArrayPrototypePush,138,25
-block_count,ArrayPrototypePush,139,25
+block_count,ArrayPrototypePush,133,191
+block_count,ArrayPrototypePush,134,190
+block_count,ArrayPrototypePush,135,165
+block_count,ArrayPrototypePush,136,24
+block_count,ArrayPrototypePush,137,24
+block_count,ArrayPrototypePush,138,24
+block_count,ArrayPrototypePush,139,24
block_count,ArrayPrototypePush,140,0
-block_count,ArrayPrototypePush,141,25
+block_count,ArrayPrototypePush,141,24
block_count,ArrayPrototypePush,142,0
block_count,ArrayPrototypePush,143,0
-block_count,ArrayPrototypePush,144,25
+block_count,ArrayPrototypePush,144,24
block_count,ArrayPrototypePush,145,0
-block_count,ArrayPrototypePush,146,25
+block_count,ArrayPrototypePush,146,24
block_count,ArrayPrototypePush,147,0
-block_count,ArrayPrototypePush,148,25
-block_count,ArrayPrototypePush,149,250
-block_count,ArrayPrototypePush,150,225
-block_count,ArrayPrototypePush,151,25
-block_count,ArrayPrototypePush,152,25
+block_count,ArrayPrototypePush,148,24
+block_count,ArrayPrototypePush,149,242
+block_count,ArrayPrototypePush,150,217
+block_count,ArrayPrototypePush,151,24
+block_count,ArrayPrototypePush,152,24
block_count,ArrayPrototypePush,153,1
block_count,ArrayPrototypePush,154,23
-block_count,ArrayPrototypePush,155,25
-block_count,ArrayPrototypePush,156,2
-block_count,ArrayPrototypePush,157,181
-block_count,ArrayPrototypePush,158,178
-block_count,ArrayPrototypePush,159,2
-block_count,ArrayPrototypePush,160,23
-block_count,ArrayPrototypePush,161,25
+block_count,ArrayPrototypePush,155,24
+block_count,ArrayPrototypePush,156,1
+block_count,ArrayPrototypePush,157,155
+block_count,ArrayPrototypePush,158,153
+block_count,ArrayPrototypePush,159,1
+block_count,ArrayPrototypePush,160,22
+block_count,ArrayPrototypePush,161,24
block_count,ArrayPrototypePush,162,0
block_count,ArrayPrototypePush,163,0
-block_count,ArrayPrototypePush,164,308
-block_count,ArrayPrototypePush,165,307
-block_count,ArrayPrototypePush,166,318
-block_count,ArrayPrototypePush,167,318
-block_count,ArrayPrototypePush,168,10
-block_count,ArrayPrototypePush,169,307
+block_count,ArrayPrototypePush,164,190
+block_count,ArrayPrototypePush,165,190
+block_count,ArrayPrototypePush,166,200
+block_count,ArrayPrototypePush,167,200
+block_count,ArrayPrototypePush,168,9
+block_count,ArrayPrototypePush,169,190
block_count,ArrayPrototypePush,170,0
block_count,ArrayPrototypePush,171,0
-block_count,ArrayPrototypePush,172,308
+block_count,ArrayPrototypePush,172,190
block_count,ArrayPrototypePush,173,0
block_count,ArrayPrototypePush,174,0
block_count,ArrayPrototypePush,175,0
@@ -20969,8 +20960,8 @@
block_count,ExtractFastJSArray,29,0
block_count,ExtractFastJSArray,30,0
block_count,ExtractFastJSArray,31,0
-block_count,ExtractFastJSArray,32,3
-block_count,ExtractFastJSArray,33,3
+block_count,ExtractFastJSArray,32,4
+block_count,ExtractFastJSArray,33,4
block_count,ExtractFastJSArray,34,0
block_count,ExtractFastJSArray,35,0
block_count,ExtractFastJSArray,36,0
@@ -21273,14 +21264,14 @@
block_count,CreateObjectFromSlowBoilerplateHelper,91,47
block_count,CreateObjectFromSlowBoilerplateHelper,92,0
block_count,CreateObjectFromSlowBoilerplateHelper,93,47
-block_count,CreateObjectFromSlowBoilerplateHelper,94,47
+block_count,CreateObjectFromSlowBoilerplateHelper,94,46
block_count,CreateObjectFromSlowBoilerplateHelper,95,0
block_count,CreateObjectFromSlowBoilerplateHelper,96,0
block_count,CreateObjectFromSlowBoilerplateHelper,97,0
block_count,CreateObjectFromSlowBoilerplateHelper,98,0
block_count,CreateObjectFromSlowBoilerplateHelper,99,47
block_count,CreateObjectFromSlowBoilerplateHelper,100,0
-block_count,CreateObjectFromSlowBoilerplateHelper,101,47
+block_count,CreateObjectFromSlowBoilerplateHelper,101,46
block_count,CreateObjectFromSlowBoilerplateHelper,102,47
block_count,CreateObjectFromSlowBoilerplateHelper,103,47
block_count,CreateObjectFromSlowBoilerplateHelper,104,47
@@ -21705,7 +21696,7 @@
block_count,ArrayIteratorPrototypeNext,217,0
block_count,ArrayIteratorPrototypeNext,218,0
block_count,ArrayIteratorPrototypeNext,219,0
-block_count,ArrayIteratorPrototypeNext,220,3
+block_count,ArrayIteratorPrototypeNext,220,4
block_count,ArrayIteratorPrototypeNext,221,43
block_count,ArrayIteratorPrototypeNext,222,0
block_count,ArrayIteratorPrototypeNext,223,0
@@ -22030,11 +22021,11 @@
block_count,CreateGeneratorObject,21,1
block_count,CreateGeneratorObject,22,0
block_count,CreateGeneratorObject,23,1
-block_count,CreateGeneratorObject,24,8
+block_count,CreateGeneratorObject,24,9
block_count,CreateGeneratorObject,25,7
block_count,CreateGeneratorObject,26,1
block_count,CreateGeneratorObject,27,1
-block_count,CreateGeneratorObject,28,0
+block_count,CreateGeneratorObject,28,1
block_count,CreateGeneratorObject,29,0
block_count,CreateGeneratorObject,30,1
block_count,CreateGeneratorObject,31,1
@@ -22048,7 +22039,7 @@
block_count,CreateGeneratorObject,39,1
block_count,CreateGeneratorObject,40,0
block_count,CreateGeneratorObject,41,1
-block_count,CreateGeneratorObject,42,4
+block_count,CreateGeneratorObject,42,5
block_count,CreateGeneratorObject,43,3
block_count,CreateGeneratorObject,44,1
block_count,CreateGeneratorObject,45,1
@@ -22131,14 +22122,14 @@
block_count,SuspendGeneratorBaseline,9,0
block_count,SuspendGeneratorBaseline,10,4
block_count,SuspendGeneratorBaseline,11,4
-block_count,SuspendGeneratorBaseline,12,75
+block_count,SuspendGeneratorBaseline,12,76
block_count,SuspendGeneratorBaseline,13,71
block_count,SuspendGeneratorBaseline,14,4
block_count,ResumeGeneratorBaseline,0,4
block_count,ResumeGeneratorBaseline,1,0
block_count,ResumeGeneratorBaseline,2,4
block_count,ResumeGeneratorBaseline,3,4
-block_count,ResumeGeneratorBaseline,4,75
+block_count,ResumeGeneratorBaseline,4,76
block_count,ResumeGeneratorBaseline,5,71
block_count,ResumeGeneratorBaseline,6,4
block_count,CallIteratorWithFeedbackLazyDeoptContinuation,0,0
@@ -22167,14 +22158,14 @@
block_count,GlobalIsNaN,8,0
block_count,GlobalIsNaN,9,0
block_count,GlobalIsNaN,10,0
-block_count,LoadIC,0,583
-block_count,LoadIC,1,583
+block_count,LoadIC,0,582
+block_count,LoadIC,1,582
block_count,LoadIC,2,0
-block_count,LoadIC,3,583
-block_count,LoadIC,4,290
+block_count,LoadIC,3,582
+block_count,LoadIC,4,288
block_count,LoadIC,5,0
-block_count,LoadIC,6,290
-block_count,LoadIC,7,3
+block_count,LoadIC,6,288
+block_count,LoadIC,7,12
block_count,LoadIC,8,0
block_count,LoadIC,9,0
block_count,LoadIC,10,0
@@ -22188,35 +22179,35 @@
block_count,LoadIC,18,0
block_count,LoadIC,19,0
block_count,LoadIC,20,0
-block_count,LoadIC,21,3
-block_count,LoadIC,22,3
+block_count,LoadIC,21,12
+block_count,LoadIC,22,12
block_count,LoadIC,23,0
-block_count,LoadIC,24,3
-block_count,LoadIC,25,3
-block_count,LoadIC,26,3
+block_count,LoadIC,24,12
+block_count,LoadIC,25,8
+block_count,LoadIC,26,8
block_count,LoadIC,27,0
-block_count,LoadIC,28,0
-block_count,LoadIC,29,0
-block_count,LoadIC,30,0
-block_count,LoadIC,31,0
+block_count,LoadIC,28,3
+block_count,LoadIC,29,3
+block_count,LoadIC,30,3
+block_count,LoadIC,31,3
block_count,LoadIC,32,0
block_count,LoadIC,33,0
-block_count,LoadIC,34,286
-block_count,LoadIC,35,381
-block_count,LoadIC,36,94
-block_count,LoadIC,37,94
+block_count,LoadIC,34,276
+block_count,LoadIC,35,349
+block_count,LoadIC,36,73
+block_count,LoadIC,37,73
block_count,LoadIC,38,0
-block_count,LoadIC,39,286
-block_count,LoadIC,40,293
-block_count,LoadIC,41,583
-block_count,LoadIC,42,288
-block_count,LoadIC,43,288
-block_count,LoadIC,44,86
+block_count,LoadIC,39,276
+block_count,LoadIC,40,294
+block_count,LoadIC,41,582
+block_count,LoadIC,42,287
+block_count,LoadIC,43,287
+block_count,LoadIC,44,85
block_count,LoadIC,45,85
block_count,LoadIC,46,85
block_count,LoadIC,47,0
block_count,LoadIC,48,0
-block_count,LoadIC,49,86
+block_count,LoadIC,49,85
block_count,LoadIC,50,19
block_count,LoadIC,51,19
block_count,LoadIC,52,19
@@ -22227,7 +22218,7 @@
block_count,LoadIC,57,16
block_count,LoadIC,58,14
block_count,LoadIC,59,1
-block_count,LoadIC,60,17
+block_count,LoadIC,60,18
block_count,LoadIC,61,0
block_count,LoadIC,62,0
block_count,LoadIC,63,0
@@ -22287,24 +22278,24 @@
block_count,LoadIC,117,0
block_count,LoadIC,118,0
block_count,LoadIC,119,0
-block_count,LoadIC,120,66
-block_count,LoadIC,121,84
-block_count,LoadIC,122,84
+block_count,LoadIC,120,65
+block_count,LoadIC,121,83
+block_count,LoadIC,122,83
block_count,LoadIC,123,65
block_count,LoadIC,124,65
block_count,LoadIC,125,0
-block_count,LoadIC,126,19
-block_count,LoadIC,127,84
+block_count,LoadIC,126,18
+block_count,LoadIC,127,83
block_count,LoadIC,128,0
block_count,LoadIC,129,202
block_count,LoadIC,130,0
block_count,LoadIC,131,0
block_count,LoadIC,132,0
block_count,LoadIC,133,295
-block_count,LoadIC,134,379
-block_count,LoadIC,135,274
-block_count,LoadIC,136,209
-block_count,LoadIC,137,190
+block_count,LoadIC,134,378
+block_count,LoadIC,135,272
+block_count,LoadIC,136,207
+block_count,LoadIC,137,189
block_count,LoadIC,138,11
block_count,LoadIC,139,11
block_count,LoadIC,140,1
@@ -22338,22 +22329,22 @@
block_count,LoadIC,168,0
block_count,LoadIC,169,10
block_count,LoadIC,170,0
-block_count,LoadIC,171,178
-block_count,LoadIC,172,178
+block_count,LoadIC,171,177
+block_count,LoadIC,172,177
block_count,LoadIC,173,0
-block_count,LoadIC,174,178
-block_count,LoadIC,175,178
-block_count,LoadIC,176,273
-block_count,LoadIC,177,273
-block_count,LoadIC,178,95
-block_count,LoadIC,179,178
+block_count,LoadIC,174,177
+block_count,LoadIC,175,177
+block_count,LoadIC,176,271
+block_count,LoadIC,177,271
+block_count,LoadIC,178,94
+block_count,LoadIC,179,177
block_count,LoadIC,180,0
block_count,LoadIC,181,0
block_count,LoadIC,182,0
block_count,LoadIC,183,0
-block_count,LoadIC,184,178
+block_count,LoadIC,184,177
block_count,LoadIC,185,0
-block_count,LoadIC,186,178
+block_count,LoadIC,186,177
block_count,LoadIC,187,0
block_count,LoadIC,188,0
block_count,LoadIC,189,0
@@ -22393,15 +22384,15 @@
block_count,LoadIC,223,0
block_count,LoadIC,224,0
block_count,LoadIC,225,0
-block_count,LoadIC,226,178
-block_count,LoadIC,227,19
+block_count,LoadIC,226,177
+block_count,LoadIC,227,18
block_count,LoadIC,228,65
-block_count,LoadIC,229,104
-block_count,LoadIC,230,104
+block_count,LoadIC,229,105
+block_count,LoadIC,230,105
block_count,LoadIC,231,2
-block_count,LoadIC,232,102
-block_count,LoadIC,233,104
-block_count,LoadIC,234,104
+block_count,LoadIC,232,103
+block_count,LoadIC,233,105
+block_count,LoadIC,234,105
block_count,LoadIC,235,0
block_count,LoadIC,236,0
block_count,LoadIC,237,0
@@ -22469,24 +22460,24 @@
block_count,LoadIC_Megamorphic,4,10000
block_count,LoadIC_Megamorphic,5,0
block_count,LoadIC_Megamorphic,6,10000
-block_count,LoadIC_Megamorphic,7,8363
-block_count,LoadIC_Megamorphic,8,8340
-block_count,LoadIC_Megamorphic,9,23
-block_count,LoadIC_Megamorphic,10,1636
-block_count,LoadIC_Megamorphic,11,1659
-block_count,LoadIC_Megamorphic,12,1650
-block_count,LoadIC_Megamorphic,13,1648
+block_count,LoadIC_Megamorphic,7,8367
+block_count,LoadIC_Megamorphic,8,8346
+block_count,LoadIC_Megamorphic,9,21
+block_count,LoadIC_Megamorphic,10,1632
+block_count,LoadIC_Megamorphic,11,1653
+block_count,LoadIC_Megamorphic,12,1644
+block_count,LoadIC_Megamorphic,13,1642
block_count,LoadIC_Megamorphic,14,1
block_count,LoadIC_Megamorphic,15,9
block_count,LoadIC_Megamorphic,16,9988
-block_count,LoadIC_Megamorphic,17,3699
-block_count,LoadIC_Megamorphic,18,3699
-block_count,LoadIC_Megamorphic,19,3621
-block_count,LoadIC_Megamorphic,20,3621
-block_count,LoadIC_Megamorphic,21,3621
+block_count,LoadIC_Megamorphic,17,3700
+block_count,LoadIC_Megamorphic,18,3700
+block_count,LoadIC_Megamorphic,19,3620
+block_count,LoadIC_Megamorphic,20,3620
+block_count,LoadIC_Megamorphic,21,3620
block_count,LoadIC_Megamorphic,22,0
block_count,LoadIC_Megamorphic,23,0
-block_count,LoadIC_Megamorphic,24,3621
+block_count,LoadIC_Megamorphic,24,3620
block_count,LoadIC_Megamorphic,25,7
block_count,LoadIC_Megamorphic,26,4
block_count,LoadIC_Megamorphic,27,4
@@ -22558,24 +22549,24 @@
block_count,LoadIC_Megamorphic,93,0
block_count,LoadIC_Megamorphic,94,3
block_count,LoadIC_Megamorphic,95,3613
-block_count,LoadIC_Megamorphic,96,3621
-block_count,LoadIC_Megamorphic,97,3619
-block_count,LoadIC_Megamorphic,98,2851
-block_count,LoadIC_Megamorphic,99,2851
+block_count,LoadIC_Megamorphic,96,3620
+block_count,LoadIC_Megamorphic,97,3618
+block_count,LoadIC_Megamorphic,98,2850
+block_count,LoadIC_Megamorphic,99,2850
block_count,LoadIC_Megamorphic,100,0
-block_count,LoadIC_Megamorphic,101,767
-block_count,LoadIC_Megamorphic,102,3619
+block_count,LoadIC_Megamorphic,101,768
+block_count,LoadIC_Megamorphic,102,3618
block_count,LoadIC_Megamorphic,103,1
-block_count,LoadIC_Megamorphic,104,77
+block_count,LoadIC_Megamorphic,104,79
block_count,LoadIC_Megamorphic,105,0
block_count,LoadIC_Megamorphic,106,0
block_count,LoadIC_Megamorphic,107,0
-block_count,LoadIC_Megamorphic,108,6289
-block_count,LoadIC_Megamorphic,109,9909
-block_count,LoadIC_Megamorphic,110,4343
-block_count,LoadIC_Megamorphic,111,2284
-block_count,LoadIC_Megamorphic,112,1517
-block_count,LoadIC_Megamorphic,113,1515
+block_count,LoadIC_Megamorphic,108,6288
+block_count,LoadIC_Megamorphic,109,9907
+block_count,LoadIC_Megamorphic,110,4342
+block_count,LoadIC_Megamorphic,111,2285
+block_count,LoadIC_Megamorphic,112,1516
+block_count,LoadIC_Megamorphic,113,1514
block_count,LoadIC_Megamorphic,114,724
block_count,LoadIC_Megamorphic,115,9
block_count,LoadIC_Megamorphic,116,9
@@ -22606,7 +22597,7 @@
block_count,LoadIC_Megamorphic,141,0
block_count,LoadIC_Megamorphic,142,0
block_count,LoadIC_Megamorphic,143,0
-block_count,LoadIC_Megamorphic,144,715
+block_count,LoadIC_Megamorphic,144,714
block_count,LoadIC_Megamorphic,145,790
block_count,LoadIC_Megamorphic,146,1
block_count,LoadIC_Megamorphic,147,1
@@ -22664,14 +22655,14 @@
block_count,LoadIC_Megamorphic,199,0
block_count,LoadIC_Megamorphic,200,0
block_count,LoadIC_Megamorphic,201,1
-block_count,LoadIC_Megamorphic,202,767
-block_count,LoadIC_Megamorphic,203,2058
-block_count,LoadIC_Megamorphic,204,5565
-block_count,LoadIC_Megamorphic,205,5565
+block_count,LoadIC_Megamorphic,202,768
+block_count,LoadIC_Megamorphic,203,2057
+block_count,LoadIC_Megamorphic,204,5564
+block_count,LoadIC_Megamorphic,205,5564
block_count,LoadIC_Megamorphic,206,290
block_count,LoadIC_Megamorphic,207,5274
-block_count,LoadIC_Megamorphic,208,5565
-block_count,LoadIC_Megamorphic,209,5544
+block_count,LoadIC_Megamorphic,208,5564
+block_count,LoadIC_Megamorphic,209,5543
block_count,LoadIC_Megamorphic,210,20
block_count,LoadIC_Megamorphic,211,20
block_count,LoadIC_Megamorphic,212,20
@@ -23016,18 +23007,18 @@
block_count,LoadIC_Noninlined,281,0
block_count,LoadIC_Noninlined,282,0
block_count,LoadIC_Noninlined,283,1
-block_count,LoadICTrampoline,0,337
-block_count,LoadICTrampoline,1,337
+block_count,LoadICTrampoline,0,341
+block_count,LoadICTrampoline,1,341
block_count,LoadICTrampoline,2,0
-block_count,LoadICTrampoline,3,337
-block_count,LoadICBaseline,0,5175
-block_count,LoadICBaseline,1,5173
+block_count,LoadICTrampoline,3,341
+block_count,LoadICBaseline,0,5153
+block_count,LoadICBaseline,1,5151
block_count,LoadICBaseline,2,1
-block_count,LoadICBaseline,3,5175
-block_count,LoadICBaseline,4,1222
+block_count,LoadICBaseline,3,5153
+block_count,LoadICBaseline,4,1218
block_count,LoadICBaseline,5,0
-block_count,LoadICBaseline,6,1222
-block_count,LoadICBaseline,7,295
+block_count,LoadICBaseline,6,1218
+block_count,LoadICBaseline,7,291
block_count,LoadICBaseline,8,1
block_count,LoadICBaseline,9,1
block_count,LoadICBaseline,10,0
@@ -23041,36 +23032,36 @@
block_count,LoadICBaseline,18,0
block_count,LoadICBaseline,19,0
block_count,LoadICBaseline,20,0
-block_count,LoadICBaseline,21,293
-block_count,LoadICBaseline,22,293
+block_count,LoadICBaseline,21,290
+block_count,LoadICBaseline,22,290
block_count,LoadICBaseline,23,0
-block_count,LoadICBaseline,24,293
-block_count,LoadICBaseline,25,247
-block_count,LoadICBaseline,26,246
-block_count,LoadICBaseline,27,1
+block_count,LoadICBaseline,24,290
+block_count,LoadICBaseline,25,244
+block_count,LoadICBaseline,26,244
+block_count,LoadICBaseline,27,0
block_count,LoadICBaseline,28,45
-block_count,LoadICBaseline,29,46
-block_count,LoadICBaseline,30,44
-block_count,LoadICBaseline,31,44
+block_count,LoadICBaseline,29,45
+block_count,LoadICBaseline,30,43
+block_count,LoadICBaseline,31,43
block_count,LoadICBaseline,32,0
block_count,LoadICBaseline,33,2
block_count,LoadICBaseline,34,926
-block_count,LoadICBaseline,35,1626
-block_count,LoadICBaseline,36,700
-block_count,LoadICBaseline,37,699
+block_count,LoadICBaseline,35,1630
+block_count,LoadICBaseline,36,704
+block_count,LoadICBaseline,37,704
block_count,LoadICBaseline,38,0
-block_count,LoadICBaseline,39,926
-block_count,LoadICBaseline,40,3952
-block_count,LoadICBaseline,41,5170
-block_count,LoadICBaseline,42,1667
-block_count,LoadICBaseline,43,1658
-block_count,LoadICBaseline,44,1537
-block_count,LoadICBaseline,45,1537
-block_count,LoadICBaseline,46,1536
+block_count,LoadICBaseline,39,925
+block_count,LoadICBaseline,40,3934
+block_count,LoadICBaseline,41,5147
+block_count,LoadICBaseline,42,1658
+block_count,LoadICBaseline,43,1649
+block_count,LoadICBaseline,44,1528
+block_count,LoadICBaseline,45,1528
+block_count,LoadICBaseline,46,1528
block_count,LoadICBaseline,47,0
block_count,LoadICBaseline,48,0
-block_count,LoadICBaseline,49,1537
-block_count,LoadICBaseline,50,189
+block_count,LoadICBaseline,49,1528
+block_count,LoadICBaseline,50,187
block_count,LoadICBaseline,51,18
block_count,LoadICBaseline,52,18
block_count,LoadICBaseline,53,0
@@ -23080,7 +23071,7 @@
block_count,LoadICBaseline,57,36
block_count,LoadICBaseline,58,36
block_count,LoadICBaseline,59,0
-block_count,LoadICBaseline,60,18
+block_count,LoadICBaseline,60,17
block_count,LoadICBaseline,61,0
block_count,LoadICBaseline,62,0
block_count,LoadICBaseline,63,0
@@ -23127,7 +23118,7 @@
block_count,LoadICBaseline,104,0
block_count,LoadICBaseline,105,0
block_count,LoadICBaseline,106,0
-block_count,LoadICBaseline,107,171
+block_count,LoadICBaseline,107,169
block_count,LoadICBaseline,108,0
block_count,LoadICBaseline,109,0
block_count,LoadICBaseline,110,0
@@ -23139,26 +23130,26 @@
block_count,LoadICBaseline,116,0
block_count,LoadICBaseline,117,0
block_count,LoadICBaseline,118,0
-block_count,LoadICBaseline,119,171
-block_count,LoadICBaseline,120,1347
-block_count,LoadICBaseline,121,1536
-block_count,LoadICBaseline,122,1536
-block_count,LoadICBaseline,123,1467
-block_count,LoadICBaseline,124,1467
+block_count,LoadICBaseline,119,169
+block_count,LoadICBaseline,120,1340
+block_count,LoadICBaseline,121,1528
+block_count,LoadICBaseline,122,1527
+block_count,LoadICBaseline,123,1459
+block_count,LoadICBaseline,124,1459
block_count,LoadICBaseline,125,0
block_count,LoadICBaseline,126,68
-block_count,LoadICBaseline,127,1536
+block_count,LoadICBaseline,127,1527
block_count,LoadICBaseline,128,0
block_count,LoadICBaseline,129,121
block_count,LoadICBaseline,130,8
block_count,LoadICBaseline,131,8
block_count,LoadICBaseline,132,0
-block_count,LoadICBaseline,133,3502
-block_count,LoadICBaseline,134,5039
-block_count,LoadICBaseline,135,1600
-block_count,LoadICBaseline,136,389
-block_count,LoadICBaseline,137,320
-block_count,LoadICBaseline,138,256
+block_count,LoadICBaseline,133,3489
+block_count,LoadICBaseline,134,5016
+block_count,LoadICBaseline,135,1591
+block_count,LoadICBaseline,136,387
+block_count,LoadICBaseline,137,319
+block_count,LoadICBaseline,138,255
block_count,LoadICBaseline,139,2
block_count,LoadICBaseline,140,1
block_count,LoadICBaseline,141,1
@@ -23190,7 +23181,7 @@
block_count,LoadICBaseline,167,0
block_count,LoadICBaseline,168,0
block_count,LoadICBaseline,169,1
-block_count,LoadICBaseline,170,254
+block_count,LoadICBaseline,170,253
block_count,LoadICBaseline,171,63
block_count,LoadICBaseline,172,63
block_count,LoadICBaseline,173,0
@@ -23248,19 +23239,19 @@
block_count,LoadICBaseline,225,0
block_count,LoadICBaseline,226,63
block_count,LoadICBaseline,227,68
-block_count,LoadICBaseline,228,1211
-block_count,LoadICBaseline,229,3438
-block_count,LoadICBaseline,230,3438
-block_count,LoadICBaseline,231,916
-block_count,LoadICBaseline,232,2521
-block_count,LoadICBaseline,233,3438
-block_count,LoadICBaseline,234,3267
-block_count,LoadICBaseline,235,171
-block_count,LoadICBaseline,236,171
-block_count,LoadICBaseline,237,171
+block_count,LoadICBaseline,228,1204
+block_count,LoadICBaseline,229,3425
+block_count,LoadICBaseline,230,3425
+block_count,LoadICBaseline,231,910
+block_count,LoadICBaseline,232,2514
+block_count,LoadICBaseline,233,3425
+block_count,LoadICBaseline,234,3250
+block_count,LoadICBaseline,235,174
+block_count,LoadICBaseline,236,174
+block_count,LoadICBaseline,237,174
block_count,LoadICBaseline,238,0
-block_count,LoadICBaseline,239,171
-block_count,LoadICBaseline,240,171
+block_count,LoadICBaseline,239,174
+block_count,LoadICBaseline,240,174
block_count,LoadICBaseline,241,0
block_count,LoadICBaseline,242,0
block_count,LoadICBaseline,243,0
@@ -23315,10 +23306,10 @@
block_count,LoadICBaseline,292,0
block_count,LoadICBaseline,293,0
block_count,LoadICBaseline,294,5
-block_count,LoadICTrampoline_Megamorphic,0,6109
-block_count,LoadICTrampoline_Megamorphic,1,6109
+block_count,LoadICTrampoline_Megamorphic,0,6110
+block_count,LoadICTrampoline_Megamorphic,1,6110
block_count,LoadICTrampoline_Megamorphic,2,0
-block_count,LoadICTrampoline_Megamorphic,3,6109
+block_count,LoadICTrampoline_Megamorphic,3,6110
block_count,LoadSuperIC,0,5
block_count,LoadSuperIC,1,5
block_count,LoadSuperIC,2,5
@@ -23911,16 +23902,16 @@
block_count,LoadSuperIC,589,0
block_count,LoadSuperIC,590,0
block_count,LoadSuperICBaseline,0,5
-block_count,KeyedLoadIC,0,980
-block_count,KeyedLoadIC,1,980
+block_count,KeyedLoadIC,0,987
+block_count,KeyedLoadIC,1,987
block_count,KeyedLoadIC,2,0
-block_count,KeyedLoadIC,3,980
-block_count,KeyedLoadIC,4,980
-block_count,KeyedLoadIC,5,978
-block_count,KeyedLoadIC,6,94
+block_count,KeyedLoadIC,3,987
+block_count,KeyedLoadIC,4,987
+block_count,KeyedLoadIC,5,984
+block_count,KeyedLoadIC,6,96
block_count,KeyedLoadIC,7,0
-block_count,KeyedLoadIC,8,94
-block_count,KeyedLoadIC,9,52
+block_count,KeyedLoadIC,8,96
+block_count,KeyedLoadIC,9,51
block_count,KeyedLoadIC,10,2
block_count,KeyedLoadIC,11,1
block_count,KeyedLoadIC,12,0
@@ -23958,15 +23949,15 @@
block_count,KeyedLoadIC,44,1
block_count,KeyedLoadIC,45,1
block_count,KeyedLoadIC,46,0
-block_count,KeyedLoadIC,47,50
-block_count,KeyedLoadIC,48,42
-block_count,KeyedLoadIC,49,82
-block_count,KeyedLoadIC,50,40
-block_count,KeyedLoadIC,51,40
+block_count,KeyedLoadIC,47,49
+block_count,KeyedLoadIC,48,45
+block_count,KeyedLoadIC,49,89
+block_count,KeyedLoadIC,50,43
+block_count,KeyedLoadIC,51,43
block_count,KeyedLoadIC,52,0
-block_count,KeyedLoadIC,53,42
-block_count,KeyedLoadIC,54,883
-block_count,KeyedLoadIC,55,925
+block_count,KeyedLoadIC,53,45
+block_count,KeyedLoadIC,54,887
+block_count,KeyedLoadIC,55,932
block_count,KeyedLoadIC,56,2
block_count,KeyedLoadIC,57,2
block_count,KeyedLoadIC,58,0
@@ -24058,10 +24049,10 @@
block_count,KeyedLoadIC,144,0
block_count,KeyedLoadIC,145,0
block_count,KeyedLoadIC,146,0
-block_count,KeyedLoadIC,147,923
-block_count,KeyedLoadIC,148,923
-block_count,KeyedLoadIC,149,8
-block_count,KeyedLoadIC,150,7
+block_count,KeyedLoadIC,147,930
+block_count,KeyedLoadIC,148,930
+block_count,KeyedLoadIC,149,9
+block_count,KeyedLoadIC,150,8
block_count,KeyedLoadIC,151,0
block_count,KeyedLoadIC,152,0
block_count,KeyedLoadIC,153,0
@@ -24250,17 +24241,17 @@
block_count,KeyedLoadIC,336,0
block_count,KeyedLoadIC,337,0
block_count,KeyedLoadIC,338,0
-block_count,KeyedLoadIC,339,7
+block_count,KeyedLoadIC,339,8
block_count,KeyedLoadIC,340,0
block_count,KeyedLoadIC,341,0
block_count,KeyedLoadIC,342,0
block_count,KeyedLoadIC,343,0
block_count,KeyedLoadIC,344,0
-block_count,KeyedLoadIC,345,7
-block_count,KeyedLoadIC,346,7
-block_count,KeyedLoadIC,347,7
+block_count,KeyedLoadIC,345,8
+block_count,KeyedLoadIC,346,8
+block_count,KeyedLoadIC,347,8
block_count,KeyedLoadIC,348,3
-block_count,KeyedLoadIC,349,6
+block_count,KeyedLoadIC,349,7
block_count,KeyedLoadIC,350,3
block_count,KeyedLoadIC,351,3
block_count,KeyedLoadIC,352,0
@@ -24280,16 +24271,16 @@
block_count,KeyedLoadIC,366,0
block_count,KeyedLoadIC,367,0
block_count,KeyedLoadIC,368,4
-block_count,KeyedLoadIC,369,7
-block_count,KeyedLoadIC,370,7
+block_count,KeyedLoadIC,369,8
+block_count,KeyedLoadIC,370,8
block_count,KeyedLoadIC,371,0
-block_count,KeyedLoadIC,372,7
-block_count,KeyedLoadIC,373,7
+block_count,KeyedLoadIC,372,8
+block_count,KeyedLoadIC,373,8
block_count,KeyedLoadIC,374,0
block_count,KeyedLoadIC,375,0
block_count,KeyedLoadIC,376,0
block_count,KeyedLoadIC,377,0
-block_count,KeyedLoadIC,378,7
+block_count,KeyedLoadIC,378,8
block_count,KeyedLoadIC,379,0
block_count,KeyedLoadIC,380,0
block_count,KeyedLoadIC,381,0
@@ -24298,8 +24289,8 @@
block_count,KeyedLoadIC,384,0
block_count,KeyedLoadIC,385,0
block_count,KeyedLoadIC,386,0
-block_count,KeyedLoadIC,387,914
-block_count,KeyedLoadIC,388,915
+block_count,KeyedLoadIC,387,921
+block_count,KeyedLoadIC,388,922
block_count,KeyedLoadIC,389,0
block_count,KeyedLoadIC,390,0
block_count,KeyedLoadIC,391,0
@@ -24310,40 +24301,40 @@
block_count,KeyedLoadIC,396,0
block_count,KeyedLoadIC,397,0
block_count,KeyedLoadIC,398,0
-block_count,KeyedLoadIC,399,915
-block_count,KeyedLoadIC,400,915
-block_count,KeyedLoadIC,401,915
-block_count,KeyedLoadIC,402,576
+block_count,KeyedLoadIC,399,921
+block_count,KeyedLoadIC,400,921
+block_count,KeyedLoadIC,401,922
+block_count,KeyedLoadIC,402,582
block_count,KeyedLoadIC,403,10
-block_count,KeyedLoadIC,404,565
-block_count,KeyedLoadIC,405,576
+block_count,KeyedLoadIC,404,571
+block_count,KeyedLoadIC,405,582
block_count,KeyedLoadIC,406,1
-block_count,KeyedLoadIC,407,574
+block_count,KeyedLoadIC,407,580
block_count,KeyedLoadIC,408,0
block_count,KeyedLoadIC,409,39
-block_count,KeyedLoadIC,410,281
+block_count,KeyedLoadIC,410,280
block_count,KeyedLoadIC,411,0
block_count,KeyedLoadIC,412,0
block_count,KeyedLoadIC,413,0
block_count,KeyedLoadIC,414,0
-block_count,KeyedLoadIC,415,320
-block_count,KeyedLoadIC,416,27
-block_count,KeyedLoadIC,417,103
+block_count,KeyedLoadIC,415,319
+block_count,KeyedLoadIC,416,28
+block_count,KeyedLoadIC,417,105
block_count,KeyedLoadIC,418,0
block_count,KeyedLoadIC,419,0
block_count,KeyedLoadIC,420,0
-block_count,KeyedLoadIC,421,130
-block_count,KeyedLoadIC,422,124
+block_count,KeyedLoadIC,421,133
+block_count,KeyedLoadIC,422,127
block_count,KeyedLoadIC,423,5
-block_count,KeyedLoadIC,424,40
+block_count,KeyedLoadIC,424,42
block_count,KeyedLoadIC,425,0
-block_count,KeyedLoadIC,426,40
-block_count,KeyedLoadIC,427,40
-block_count,KeyedLoadIC,428,83
-block_count,KeyedLoadIC,429,83
+block_count,KeyedLoadIC,426,42
+block_count,KeyedLoadIC,427,42
+block_count,KeyedLoadIC,428,85
+block_count,KeyedLoadIC,429,84
block_count,KeyedLoadIC,430,0
-block_count,KeyedLoadIC,431,83
-block_count,KeyedLoadIC,432,83
+block_count,KeyedLoadIC,431,84
+block_count,KeyedLoadIC,432,84
block_count,KeyedLoadIC,433,0
block_count,KeyedLoadIC,434,339
block_count,KeyedLoadIC,435,339
@@ -24427,7 +24418,7 @@
block_count,KeyedLoadIC,513,0
block_count,KeyedLoadIC,514,0
block_count,KeyedLoadIC,515,193
-block_count,KeyedLoadIC,516,189
+block_count,KeyedLoadIC,516,190
block_count,KeyedLoadIC,517,3
block_count,KeyedLoadIC,518,0
block_count,KeyedLoadIC,519,3
@@ -24513,7 +24504,7 @@
block_count,KeyedLoadIC,599,0
block_count,KeyedLoadIC,600,0
block_count,KeyedLoadIC,601,2
-block_count,KeyedLoadIC,602,53
+block_count,KeyedLoadIC,602,52
block_count,KeyedLoadIC,603,0
block_count,KeyedLoadIC,604,0
block_count,EnumeratedKeyedLoadIC,0,7
@@ -25147,55 +25138,55 @@
block_count,EnumeratedKeyedLoadIC,628,3
block_count,EnumeratedKeyedLoadIC,629,0
block_count,EnumeratedKeyedLoadIC,630,0
-block_count,KeyedLoadIC_Megamorphic,0,2429
-block_count,KeyedLoadIC_Megamorphic,1,2429
-block_count,KeyedLoadIC_Megamorphic,2,2429
-block_count,KeyedLoadIC_Megamorphic,3,2104
-block_count,KeyedLoadIC_Megamorphic,4,2101
+block_count,KeyedLoadIC_Megamorphic,0,2427
+block_count,KeyedLoadIC_Megamorphic,1,2427
+block_count,KeyedLoadIC_Megamorphic,2,2427
+block_count,KeyedLoadIC_Megamorphic,3,2103
+block_count,KeyedLoadIC_Megamorphic,4,2099
block_count,KeyedLoadIC_Megamorphic,5,3
block_count,KeyedLoadIC_Megamorphic,6,0
block_count,KeyedLoadIC_Megamorphic,7,3
-block_count,KeyedLoadIC_Megamorphic,8,2101
-block_count,KeyedLoadIC_Megamorphic,9,2099
+block_count,KeyedLoadIC_Megamorphic,8,2099
+block_count,KeyedLoadIC_Megamorphic,9,2098
block_count,KeyedLoadIC_Megamorphic,10,48
-block_count,KeyedLoadIC_Megamorphic,11,43
+block_count,KeyedLoadIC_Megamorphic,11,42
block_count,KeyedLoadIC_Megamorphic,12,5
-block_count,KeyedLoadIC_Megamorphic,13,2051
-block_count,KeyedLoadIC_Megamorphic,14,2051
-block_count,KeyedLoadIC_Megamorphic,15,1953
-block_count,KeyedLoadIC_Megamorphic,16,1953
-block_count,KeyedLoadIC_Megamorphic,17,1831
+block_count,KeyedLoadIC_Megamorphic,13,2049
+block_count,KeyedLoadIC_Megamorphic,14,2049
+block_count,KeyedLoadIC_Megamorphic,15,1952
+block_count,KeyedLoadIC_Megamorphic,16,1952
+block_count,KeyedLoadIC_Megamorphic,17,1826
block_count,KeyedLoadIC_Megamorphic,18,0
block_count,KeyedLoadIC_Megamorphic,19,0
block_count,KeyedLoadIC_Megamorphic,20,0
-block_count,KeyedLoadIC_Megamorphic,21,1831
-block_count,KeyedLoadIC_Megamorphic,22,1732
+block_count,KeyedLoadIC_Megamorphic,21,1826
+block_count,KeyedLoadIC_Megamorphic,22,1726
block_count,KeyedLoadIC_Megamorphic,23,99
-block_count,KeyedLoadIC_Megamorphic,24,121
+block_count,KeyedLoadIC_Megamorphic,24,125
block_count,KeyedLoadIC_Megamorphic,25,0
block_count,KeyedLoadIC_Megamorphic,26,97
-block_count,KeyedLoadIC_Megamorphic,27,43
-block_count,KeyedLoadIC_Megamorphic,28,43
-block_count,KeyedLoadIC_Megamorphic,29,43
+block_count,KeyedLoadIC_Megamorphic,27,42
+block_count,KeyedLoadIC_Megamorphic,28,42
+block_count,KeyedLoadIC_Megamorphic,29,42
block_count,KeyedLoadIC_Megamorphic,30,0
block_count,KeyedLoadIC_Megamorphic,31,0
block_count,KeyedLoadIC_Megamorphic,32,0
-block_count,KeyedLoadIC_Megamorphic,33,43
-block_count,KeyedLoadIC_Megamorphic,34,43
+block_count,KeyedLoadIC_Megamorphic,33,42
+block_count,KeyedLoadIC_Megamorphic,34,42
block_count,KeyedLoadIC_Megamorphic,35,0
block_count,KeyedLoadIC_Megamorphic,36,0
block_count,KeyedLoadIC_Megamorphic,37,0
-block_count,KeyedLoadIC_Megamorphic,38,43
-block_count,KeyedLoadIC_Megamorphic,39,43
-block_count,KeyedLoadIC_Megamorphic,40,43
-block_count,KeyedLoadIC_Megamorphic,41,43
-block_count,KeyedLoadIC_Megamorphic,42,43
+block_count,KeyedLoadIC_Megamorphic,38,42
+block_count,KeyedLoadIC_Megamorphic,39,42
+block_count,KeyedLoadIC_Megamorphic,40,42
+block_count,KeyedLoadIC_Megamorphic,41,42
+block_count,KeyedLoadIC_Megamorphic,42,42
block_count,KeyedLoadIC_Megamorphic,43,0
block_count,KeyedLoadIC_Megamorphic,44,0
block_count,KeyedLoadIC_Megamorphic,45,0
-block_count,KeyedLoadIC_Megamorphic,46,43
+block_count,KeyedLoadIC_Megamorphic,46,42
block_count,KeyedLoadIC_Megamorphic,47,0
-block_count,KeyedLoadIC_Megamorphic,48,43
+block_count,KeyedLoadIC_Megamorphic,48,42
block_count,KeyedLoadIC_Megamorphic,49,0
block_count,KeyedLoadIC_Megamorphic,50,0
block_count,KeyedLoadIC_Megamorphic,51,0
@@ -25334,8 +25325,8 @@
block_count,KeyedLoadIC_Megamorphic,184,0
block_count,KeyedLoadIC_Megamorphic,185,57
block_count,KeyedLoadIC_Megamorphic,186,57
-block_count,KeyedLoadIC_Megamorphic,187,143
-block_count,KeyedLoadIC_Megamorphic,188,143
+block_count,KeyedLoadIC_Megamorphic,187,142
+block_count,KeyedLoadIC_Megamorphic,188,142
block_count,KeyedLoadIC_Megamorphic,189,85
block_count,KeyedLoadIC_Megamorphic,190,85
block_count,KeyedLoadIC_Megamorphic,191,85
@@ -25369,16 +25360,16 @@
block_count,KeyedLoadIC_Megamorphic,219,0
block_count,KeyedLoadIC_Megamorphic,220,85
block_count,KeyedLoadIC_Megamorphic,221,30
-block_count,KeyedLoadIC_Megamorphic,222,55
-block_count,KeyedLoadIC_Megamorphic,223,330
-block_count,KeyedLoadIC_Megamorphic,224,330
-block_count,KeyedLoadIC_Megamorphic,225,330
-block_count,KeyedLoadIC_Megamorphic,226,275
-block_count,KeyedLoadIC_Megamorphic,227,55
+block_count,KeyedLoadIC_Megamorphic,222,54
+block_count,KeyedLoadIC_Megamorphic,223,329
+block_count,KeyedLoadIC_Megamorphic,224,329
+block_count,KeyedLoadIC_Megamorphic,225,329
+block_count,KeyedLoadIC_Megamorphic,226,274
+block_count,KeyedLoadIC_Megamorphic,227,54
block_count,KeyedLoadIC_Megamorphic,228,0
block_count,KeyedLoadIC_Megamorphic,229,0
block_count,KeyedLoadIC_Megamorphic,230,85
-block_count,KeyedLoadIC_Megamorphic,231,55
+block_count,KeyedLoadIC_Megamorphic,231,54
block_count,KeyedLoadIC_Megamorphic,232,30
block_count,KeyedLoadIC_Megamorphic,233,30
block_count,KeyedLoadIC_Megamorphic,234,0
@@ -25495,10 +25486,10 @@
block_count,KeyedLoadIC_Megamorphic,345,0
block_count,KeyedLoadIC_Megamorphic,346,0
block_count,KeyedLoadIC_Megamorphic,347,1
-block_count,KeyedLoadIC_Megamorphic,348,1860
-block_count,KeyedLoadIC_Megamorphic,349,1860
+block_count,KeyedLoadIC_Megamorphic,348,1859
+block_count,KeyedLoadIC_Megamorphic,349,1859
block_count,KeyedLoadIC_Megamorphic,350,1184
-block_count,KeyedLoadIC_Megamorphic,351,1036
+block_count,KeyedLoadIC_Megamorphic,351,1035
block_count,KeyedLoadIC_Megamorphic,352,50
block_count,KeyedLoadIC_Megamorphic,353,50
block_count,KeyedLoadIC_Megamorphic,354,0
@@ -25507,10 +25498,10 @@
block_count,KeyedLoadIC_Megamorphic,357,320
block_count,KeyedLoadIC_Megamorphic,358,0
block_count,KeyedLoadIC_Megamorphic,359,320
-block_count,KeyedLoadIC_Megamorphic,360,171
+block_count,KeyedLoadIC_Megamorphic,360,170
block_count,KeyedLoadIC_Megamorphic,361,149
block_count,KeyedLoadIC_Megamorphic,362,320
-block_count,KeyedLoadIC_Megamorphic,363,270
+block_count,KeyedLoadIC_Megamorphic,363,269
block_count,KeyedLoadIC_Megamorphic,364,50
block_count,KeyedLoadIC_Megamorphic,365,50
block_count,KeyedLoadIC_Megamorphic,366,50
@@ -25520,26 +25511,26 @@
block_count,KeyedLoadIC_Megamorphic,370,50
block_count,KeyedLoadIC_Megamorphic,371,0
block_count,KeyedLoadIC_Megamorphic,372,50
-block_count,KeyedLoadIC_Megamorphic,373,50
+block_count,KeyedLoadIC_Megamorphic,373,49
block_count,KeyedLoadIC_Megamorphic,374,0
block_count,KeyedLoadIC_Megamorphic,375,0
block_count,KeyedLoadIC_Megamorphic,376,0
-block_count,KeyedLoadIC_Megamorphic,377,985
+block_count,KeyedLoadIC_Megamorphic,377,984
block_count,KeyedLoadIC_Megamorphic,378,0
-block_count,KeyedLoadIC_Megamorphic,379,985
+block_count,KeyedLoadIC_Megamorphic,379,984
block_count,KeyedLoadIC_Megamorphic,380,498
block_count,KeyedLoadIC_Megamorphic,381,486
-block_count,KeyedLoadIC_Megamorphic,382,1197
-block_count,KeyedLoadIC_Megamorphic,383,1048
-block_count,KeyedLoadIC_Megamorphic,384,906
-block_count,KeyedLoadIC_Megamorphic,385,710
+block_count,KeyedLoadIC_Megamorphic,382,1196
+block_count,KeyedLoadIC_Megamorphic,383,1047
+block_count,KeyedLoadIC_Megamorphic,384,905
+block_count,KeyedLoadIC_Megamorphic,385,709
block_count,KeyedLoadIC_Megamorphic,386,196
block_count,KeyedLoadIC_Megamorphic,387,142
block_count,KeyedLoadIC_Megamorphic,388,148
block_count,KeyedLoadIC_Megamorphic,389,694
block_count,KeyedLoadIC_Megamorphic,390,170
block_count,KeyedLoadIC_Megamorphic,391,524
-block_count,KeyedLoadIC_Megamorphic,392,511
+block_count,KeyedLoadIC_Megamorphic,392,510
block_count,KeyedLoadIC_Megamorphic,393,13
block_count,KeyedLoadIC_Megamorphic,394,354
block_count,KeyedLoadIC_Megamorphic,395,2
@@ -25548,7 +25539,7 @@
block_count,KeyedLoadIC_Megamorphic,398,0
block_count,KeyedLoadIC_Megamorphic,399,69
block_count,KeyedLoadIC_Megamorphic,400,282
-block_count,KeyedLoadIC_Megamorphic,401,48
+block_count,KeyedLoadIC_Megamorphic,401,47
block_count,KeyedLoadIC_Megamorphic,402,234
block_count,KeyedLoadIC_Megamorphic,403,48
block_count,KeyedLoadIC_Megamorphic,404,0
@@ -25561,13 +25552,13 @@
block_count,KeyedLoadIC_Megamorphic,411,830
block_count,KeyedLoadIC_Megamorphic,412,0
block_count,KeyedLoadIC_Megamorphic,413,830
-block_count,KeyedLoadIC_Megamorphic,414,699
-block_count,KeyedLoadIC_Megamorphic,415,696
-block_count,KeyedLoadIC_Megamorphic,416,3
-block_count,KeyedLoadIC_Megamorphic,417,131
-block_count,KeyedLoadIC_Megamorphic,418,134
-block_count,KeyedLoadIC_Megamorphic,419,112
-block_count,KeyedLoadIC_Megamorphic,420,112
+block_count,KeyedLoadIC_Megamorphic,414,692
+block_count,KeyedLoadIC_Megamorphic,415,690
+block_count,KeyedLoadIC_Megamorphic,416,1
+block_count,KeyedLoadIC_Megamorphic,417,137
+block_count,KeyedLoadIC_Megamorphic,418,139
+block_count,KeyedLoadIC_Megamorphic,419,118
+block_count,KeyedLoadIC_Megamorphic,420,117
block_count,KeyedLoadIC_Megamorphic,421,0
block_count,KeyedLoadIC_Megamorphic,422,21
block_count,KeyedLoadIC_Megamorphic,423,808
@@ -25832,18 +25823,18 @@
block_count,KeyedLoadIC_Megamorphic,682,0
block_count,KeyedLoadIC_Megamorphic,683,675
block_count,KeyedLoadIC_Megamorphic,684,675
-block_count,KeyedLoadIC_Megamorphic,685,1110
+block_count,KeyedLoadIC_Megamorphic,685,1109
block_count,KeyedLoadIC_Megamorphic,686,1033
block_count,KeyedLoadIC_Megamorphic,687,434
-block_count,KeyedLoadIC_Megamorphic,688,599
+block_count,KeyedLoadIC_Megamorphic,688,598
block_count,KeyedLoadIC_Megamorphic,689,76
block_count,KeyedLoadIC_Megamorphic,690,0
block_count,KeyedLoadIC_Megamorphic,691,0
block_count,KeyedLoadIC_Megamorphic,692,0
-block_count,KeyedLoadIC_Megamorphic,693,599
+block_count,KeyedLoadIC_Megamorphic,693,598
block_count,KeyedLoadIC_Megamorphic,694,0
-block_count,KeyedLoadIC_Megamorphic,695,599
-block_count,KeyedLoadIC_Megamorphic,696,953
+block_count,KeyedLoadIC_Megamorphic,695,598
+block_count,KeyedLoadIC_Megamorphic,696,952
block_count,KeyedLoadIC_Megamorphic,697,2
block_count,KeyedLoadIC_Megamorphic,698,0
block_count,KeyedLoadIC_Megamorphic,699,0
@@ -25883,7 +25874,7 @@
block_count,KeyedLoadIC_Megamorphic,733,2
block_count,KeyedLoadIC_Megamorphic,734,0
block_count,KeyedLoadIC_Megamorphic,735,2
-block_count,KeyedLoadIC_Megamorphic,736,950
+block_count,KeyedLoadIC_Megamorphic,736,949
block_count,KeyedLoadIC_Megamorphic,737,76
block_count,KeyedLoadIC_Megamorphic,738,0
block_count,KeyedLoadIC_Megamorphic,739,0
@@ -25931,7 +25922,7 @@
block_count,KeyedLoadIC_Megamorphic,781,380
block_count,KeyedLoadIC_Megamorphic,782,380
block_count,KeyedLoadIC_Megamorphic,783,380
-block_count,KeyedLoadIC_Megamorphic,784,317
+block_count,KeyedLoadIC_Megamorphic,784,316
block_count,KeyedLoadIC_Megamorphic,785,63
block_count,KeyedLoadIC_Megamorphic,786,0
block_count,KeyedLoadIC_Megamorphic,787,0
@@ -26054,14 +26045,14 @@
block_count,KeyedLoadIC_Megamorphic,904,0
block_count,KeyedLoadIC_Megamorphic,905,324
block_count,KeyedLoadIC_Megamorphic,906,328
-block_count,KeyedLoadIC_Megamorphic,907,426
+block_count,KeyedLoadIC_Megamorphic,907,425
block_count,KeyedLoadIC_Megamorphic,908,416
block_count,KeyedLoadIC_Megamorphic,909,404
block_count,KeyedLoadIC_Megamorphic,910,76
block_count,KeyedLoadIC_Megamorphic,911,328
block_count,KeyedLoadIC_Megamorphic,912,404
block_count,KeyedLoadIC_Megamorphic,913,9
-block_count,KeyedLoadIC_Megamorphic,914,395
+block_count,KeyedLoadIC_Megamorphic,914,394
block_count,KeyedLoadIC_Megamorphic,915,0
block_count,KeyedLoadIC_Megamorphic,916,0
block_count,KeyedLoadIC_Megamorphic,917,321
@@ -26260,12 +26251,12 @@
block_count,KeyedLoadICTrampoline,1,1
block_count,KeyedLoadICTrampoline,2,0
block_count,KeyedLoadICTrampoline,3,1
-block_count,KeyedLoadICBaseline,0,911
+block_count,KeyedLoadICBaseline,0,918
block_count,EnumeratedKeyedLoadICBaseline,0,6
-block_count,KeyedLoadICTrampoline_Megamorphic,0,1199
-block_count,KeyedLoadICTrampoline_Megamorphic,1,1199
+block_count,KeyedLoadICTrampoline_Megamorphic,0,1190
+block_count,KeyedLoadICTrampoline_Megamorphic,1,1190
block_count,KeyedLoadICTrampoline_Megamorphic,2,0
-block_count,KeyedLoadICTrampoline_Megamorphic,3,1199
+block_count,KeyedLoadICTrampoline_Megamorphic,3,1190
block_count,StoreGlobalIC,0,84
block_count,StoreGlobalIC,1,84
block_count,StoreGlobalIC,2,84
@@ -26730,12 +26721,12 @@
block_count,StoreGlobalICTrampoline,2,0
block_count,StoreGlobalICTrampoline,3,0
block_count,StoreGlobalICBaseline,0,6
-block_count,StoreIC,0,694
-block_count,StoreIC,1,694
+block_count,StoreIC,0,691
+block_count,StoreIC,1,691
block_count,StoreIC,2,0
-block_count,StoreIC,3,694
-block_count,StoreIC,4,694
-block_count,StoreIC,5,687
+block_count,StoreIC,3,691
+block_count,StoreIC,4,691
+block_count,StoreIC,5,684
block_count,StoreIC,6,204
block_count,StoreIC,7,0
block_count,StoreIC,8,204
@@ -26745,23 +26736,23 @@
block_count,StoreIC,12,42
block_count,StoreIC,13,0
block_count,StoreIC,14,42
-block_count,StoreIC,15,39
-block_count,StoreIC,16,38
+block_count,StoreIC,15,38
+block_count,StoreIC,16,37
block_count,StoreIC,17,0
-block_count,StoreIC,18,2
-block_count,StoreIC,19,3
-block_count,StoreIC,20,3
-block_count,StoreIC,21,2
+block_count,StoreIC,18,4
+block_count,StoreIC,19,4
+block_count,StoreIC,20,4
+block_count,StoreIC,21,4
block_count,StoreIC,22,0
block_count,StoreIC,23,0
block_count,StoreIC,24,161
-block_count,StoreIC,25,247
-block_count,StoreIC,26,86
-block_count,StoreIC,27,85
+block_count,StoreIC,25,248
+block_count,StoreIC,26,87
+block_count,StoreIC,27,86
block_count,StoreIC,28,0
-block_count,StoreIC,29,160
-block_count,StoreIC,30,483
-block_count,StoreIC,31,686
+block_count,StoreIC,29,161
+block_count,StoreIC,30,479
+block_count,StoreIC,31,683
block_count,StoreIC,32,243
block_count,StoreIC,33,9
block_count,StoreIC,34,9
@@ -26894,9 +26885,9 @@
block_count,StoreIC,161,0
block_count,StoreIC,162,234
block_count,StoreIC,163,234
-block_count,StoreIC,164,230
-block_count,StoreIC,165,230
-block_count,StoreIC,166,230
+block_count,StoreIC,164,229
+block_count,StoreIC,165,229
+block_count,StoreIC,166,229
block_count,StoreIC,167,229
block_count,StoreIC,168,0
block_count,StoreIC,169,0
@@ -26918,14 +26909,14 @@
block_count,StoreIC,185,34
block_count,StoreIC,186,143
block_count,StoreIC,187,0
-block_count,StoreIC,188,6
-block_count,StoreIC,189,3
-block_count,StoreIC,190,3
+block_count,StoreIC,188,7
+block_count,StoreIC,189,4
+block_count,StoreIC,190,4
block_count,StoreIC,191,0
block_count,StoreIC,192,3
-block_count,StoreIC,193,39
+block_count,StoreIC,193,38
block_count,StoreIC,194,0
-block_count,StoreIC,195,39
+block_count,StoreIC,195,38
block_count,StoreIC,196,229
block_count,StoreIC,197,46
block_count,StoreIC,198,0
@@ -27000,48 +26991,48 @@
block_count,StoreIC,267,0
block_count,StoreIC,268,0
block_count,StoreIC,269,0
-block_count,StoreIC,270,442
-block_count,StoreIC,271,14
-block_count,StoreIC,272,14
-block_count,StoreIC,273,14
-block_count,StoreIC,274,14
-block_count,StoreIC,275,14
-block_count,StoreIC,276,14
+block_count,StoreIC,270,439
+block_count,StoreIC,271,13
+block_count,StoreIC,272,13
+block_count,StoreIC,273,13
+block_count,StoreIC,274,13
+block_count,StoreIC,275,13
+block_count,StoreIC,276,13
block_count,StoreIC,277,0
-block_count,StoreIC,278,14
-block_count,StoreIC,279,14
+block_count,StoreIC,278,13
+block_count,StoreIC,279,13
block_count,StoreIC,280,14
block_count,StoreIC,281,14
block_count,StoreIC,282,0
-block_count,StoreIC,283,14
+block_count,StoreIC,283,13
block_count,StoreIC,284,0
block_count,StoreIC,285,0
block_count,StoreIC,286,0
block_count,StoreIC,287,0
-block_count,StoreIC,288,14
-block_count,StoreIC,289,14
+block_count,StoreIC,288,13
+block_count,StoreIC,289,13
block_count,StoreIC,290,0
-block_count,StoreIC,291,14
+block_count,StoreIC,291,13
block_count,StoreIC,292,0
block_count,StoreIC,293,0
block_count,StoreIC,294,0
block_count,StoreIC,295,0
block_count,StoreIC,296,0
-block_count,StoreIC,297,428
-block_count,StoreIC,298,408
-block_count,StoreIC,299,408
-block_count,StoreIC,300,39
-block_count,StoreIC,301,36
-block_count,StoreIC,302,36
+block_count,StoreIC,297,425
+block_count,StoreIC,298,405
+block_count,StoreIC,299,405
+block_count,StoreIC,300,40
+block_count,StoreIC,301,37
+block_count,StoreIC,302,37
block_count,StoreIC,303,0
block_count,StoreIC,304,3
-block_count,StoreIC,305,39
+block_count,StoreIC,305,40
block_count,StoreIC,306,0
-block_count,StoreIC,307,39
+block_count,StoreIC,307,40
block_count,StoreIC,308,6
block_count,StoreIC,309,33
-block_count,StoreIC,310,39
-block_count,StoreIC,311,39
+block_count,StoreIC,310,40
+block_count,StoreIC,311,40
block_count,StoreIC,312,0
block_count,StoreIC,313,0
block_count,StoreIC,314,0
@@ -27055,30 +27046,30 @@
block_count,StoreIC,322,0
block_count,StoreIC,323,0
block_count,StoreIC,324,0
-block_count,StoreIC,325,194
-block_count,StoreIC,326,194
-block_count,StoreIC,327,194
+block_count,StoreIC,325,192
+block_count,StoreIC,326,192
+block_count,StoreIC,327,192
block_count,StoreIC,328,11
block_count,StoreIC,329,0
block_count,StoreIC,330,11
-block_count,StoreIC,331,182
+block_count,StoreIC,331,180
block_count,StoreIC,332,0
-block_count,StoreIC,333,194
-block_count,StoreIC,334,44
-block_count,StoreIC,335,150
-block_count,StoreIC,336,194
-block_count,StoreIC,337,194
+block_count,StoreIC,333,192
+block_count,StoreIC,334,42
+block_count,StoreIC,335,149
+block_count,StoreIC,336,192
+block_count,StoreIC,337,192
block_count,StoreIC,338,0
block_count,StoreIC,339,0
block_count,StoreIC,340,0
block_count,StoreIC,341,0
-block_count,StoreIC,342,168
+block_count,StoreIC,342,167
block_count,StoreIC,343,0
-block_count,StoreIC,344,168
-block_count,StoreIC,345,29
-block_count,StoreIC,346,139
-block_count,StoreIC,347,168
-block_count,StoreIC,348,168
+block_count,StoreIC,344,167
+block_count,StoreIC,345,28
+block_count,StoreIC,346,138
+block_count,StoreIC,347,167
+block_count,StoreIC,348,167
block_count,StoreIC,349,0
block_count,StoreIC,350,0
block_count,StoreIC,351,0
@@ -27105,24 +27096,24 @@
block_count,StoreIC,372,6
block_count,StoreIC,373,0
block_count,StoreIC,374,1
-block_count,StoreIC_Megamorphic,0,1298
-block_count,StoreIC_Megamorphic,1,1298
+block_count,StoreIC_Megamorphic,0,1291
+block_count,StoreIC_Megamorphic,1,1291
block_count,StoreIC_Megamorphic,2,0
-block_count,StoreIC_Megamorphic,3,1298
-block_count,StoreIC_Megamorphic,4,1298
+block_count,StoreIC_Megamorphic,3,1291
+block_count,StoreIC_Megamorphic,4,1291
block_count,StoreIC_Megamorphic,5,0
-block_count,StoreIC_Megamorphic,6,1298
-block_count,StoreIC_Megamorphic,7,1203
-block_count,StoreIC_Megamorphic,8,1165
-block_count,StoreIC_Megamorphic,9,38
-block_count,StoreIC_Megamorphic,10,94
-block_count,StoreIC_Megamorphic,11,132
-block_count,StoreIC_Megamorphic,12,132
-block_count,StoreIC_Megamorphic,13,130
+block_count,StoreIC_Megamorphic,6,1291
+block_count,StoreIC_Megamorphic,7,1095
+block_count,StoreIC_Megamorphic,8,1083
+block_count,StoreIC_Megamorphic,9,11
+block_count,StoreIC_Megamorphic,10,196
+block_count,StoreIC_Megamorphic,11,207
+block_count,StoreIC_Megamorphic,12,206
+block_count,StoreIC_Megamorphic,13,205
block_count,StoreIC_Megamorphic,14,1
block_count,StoreIC_Megamorphic,15,0
-block_count,StoreIC_Megamorphic,16,1295
-block_count,StoreIC_Megamorphic,17,509
+block_count,StoreIC_Megamorphic,16,1288
+block_count,StoreIC_Megamorphic,17,502
block_count,StoreIC_Megamorphic,18,1
block_count,StoreIC_Megamorphic,19,1
block_count,StoreIC_Megamorphic,20,1
@@ -27252,41 +27243,41 @@
block_count,StoreIC_Megamorphic,144,0
block_count,StoreIC_Megamorphic,145,0
block_count,StoreIC_Megamorphic,146,0
-block_count,StoreIC_Megamorphic,147,507
-block_count,StoreIC_Megamorphic,148,507
-block_count,StoreIC_Megamorphic,149,304
-block_count,StoreIC_Megamorphic,150,304
-block_count,StoreIC_Megamorphic,151,304
-block_count,StoreIC_Megamorphic,152,304
+block_count,StoreIC_Megamorphic,147,501
+block_count,StoreIC_Megamorphic,148,501
+block_count,StoreIC_Megamorphic,149,298
+block_count,StoreIC_Megamorphic,150,298
+block_count,StoreIC_Megamorphic,151,298
+block_count,StoreIC_Megamorphic,152,298
block_count,StoreIC_Megamorphic,153,0
block_count,StoreIC_Megamorphic,154,0
-block_count,StoreIC_Megamorphic,155,304
-block_count,StoreIC_Megamorphic,156,304
+block_count,StoreIC_Megamorphic,155,298
+block_count,StoreIC_Megamorphic,156,298
block_count,StoreIC_Megamorphic,157,0
block_count,StoreIC_Megamorphic,158,0
block_count,StoreIC_Megamorphic,159,0
-block_count,StoreIC_Megamorphic,160,304
-block_count,StoreIC_Megamorphic,161,192
-block_count,StoreIC_Megamorphic,162,192
+block_count,StoreIC_Megamorphic,160,298
+block_count,StoreIC_Megamorphic,161,189
+block_count,StoreIC_Megamorphic,162,189
block_count,StoreIC_Megamorphic,163,0
block_count,StoreIC_Megamorphic,164,0
block_count,StoreIC_Megamorphic,165,0
-block_count,StoreIC_Megamorphic,166,192
-block_count,StoreIC_Megamorphic,167,192
+block_count,StoreIC_Megamorphic,166,189
+block_count,StoreIC_Megamorphic,167,189
block_count,StoreIC_Megamorphic,168,55
block_count,StoreIC_Megamorphic,169,0
block_count,StoreIC_Megamorphic,170,55
-block_count,StoreIC_Megamorphic,171,137
+block_count,StoreIC_Megamorphic,171,134
block_count,StoreIC_Megamorphic,172,0
block_count,StoreIC_Megamorphic,173,0
block_count,StoreIC_Megamorphic,174,0
block_count,StoreIC_Megamorphic,175,0
block_count,StoreIC_Megamorphic,176,0
block_count,StoreIC_Megamorphic,177,0
-block_count,StoreIC_Megamorphic,178,112
+block_count,StoreIC_Megamorphic,178,109
block_count,StoreIC_Megamorphic,179,0
-block_count,StoreIC_Megamorphic,180,112
-block_count,StoreIC_Megamorphic,181,304
+block_count,StoreIC_Megamorphic,180,109
+block_count,StoreIC_Megamorphic,181,298
block_count,StoreIC_Megamorphic,182,29
block_count,StoreIC_Megamorphic,183,0
block_count,StoreIC_Megamorphic,184,0
@@ -27331,8 +27322,8 @@
block_count,StoreIC_Megamorphic,223,13
block_count,StoreIC_Megamorphic,224,16
block_count,StoreIC_Megamorphic,225,29
-block_count,StoreIC_Megamorphic,226,274
-block_count,StoreIC_Megamorphic,227,274
+block_count,StoreIC_Megamorphic,226,269
+block_count,StoreIC_Megamorphic,227,269
block_count,StoreIC_Megamorphic,228,0
block_count,StoreIC_Megamorphic,229,0
block_count,StoreIC_Megamorphic,230,0
@@ -27342,9 +27333,9 @@
block_count,StoreIC_Megamorphic,234,0
block_count,StoreIC_Megamorphic,235,0
block_count,StoreIC_Megamorphic,236,0
-block_count,StoreIC_Megamorphic,237,203
-block_count,StoreIC_Megamorphic,238,203
-block_count,StoreIC_Megamorphic,239,203
+block_count,StoreIC_Megamorphic,237,202
+block_count,StoreIC_Megamorphic,238,202
+block_count,StoreIC_Megamorphic,239,202
block_count,StoreIC_Megamorphic,240,0
block_count,StoreIC_Megamorphic,241,0
block_count,StoreIC_Megamorphic,242,0
@@ -27354,7 +27345,7 @@
block_count,StoreIC_Megamorphic,246,0
block_count,StoreIC_Megamorphic,247,0
block_count,StoreIC_Megamorphic,248,0
-block_count,StoreIC_Megamorphic,249,203
+block_count,StoreIC_Megamorphic,249,202
block_count,StoreIC_Megamorphic,250,0
block_count,StoreIC_Megamorphic,251,0
block_count,StoreIC_Megamorphic,252,0
@@ -27387,9 +27378,9 @@
block_count,StoreIC_Megamorphic,279,0
block_count,StoreIC_Megamorphic,280,0
block_count,StoreIC_Megamorphic,281,0
-block_count,StoreIC_Megamorphic,282,786
-block_count,StoreIC_Megamorphic,283,786
-block_count,StoreIC_Megamorphic,284,786
+block_count,StoreIC_Megamorphic,282,785
+block_count,StoreIC_Megamorphic,283,785
+block_count,StoreIC_Megamorphic,284,785
block_count,StoreIC_Megamorphic,285,5
block_count,StoreIC_Megamorphic,286,5
block_count,StoreIC_Megamorphic,287,5
@@ -27415,19 +27406,19 @@
block_count,StoreIC_Megamorphic,307,0
block_count,StoreIC_Megamorphic,308,0
block_count,StoreIC_Megamorphic,309,0
-block_count,StoreIC_Megamorphic,310,447
-block_count,StoreIC_Megamorphic,311,447
-block_count,StoreIC_Megamorphic,312,447
+block_count,StoreIC_Megamorphic,310,446
+block_count,StoreIC_Megamorphic,311,446
+block_count,StoreIC_Megamorphic,312,446
block_count,StoreIC_Megamorphic,313,1
block_count,StoreIC_Megamorphic,314,0
block_count,StoreIC_Megamorphic,315,1
block_count,StoreIC_Megamorphic,316,445
block_count,StoreIC_Megamorphic,317,0
-block_count,StoreIC_Megamorphic,318,447
+block_count,StoreIC_Megamorphic,318,446
block_count,StoreIC_Megamorphic,319,2
-block_count,StoreIC_Megamorphic,320,445
-block_count,StoreIC_Megamorphic,321,447
-block_count,StoreIC_Megamorphic,322,447
+block_count,StoreIC_Megamorphic,320,444
+block_count,StoreIC_Megamorphic,321,446
+block_count,StoreIC_Megamorphic,322,446
block_count,StoreIC_Megamorphic,323,0
block_count,StoreIC_Megamorphic,324,0
block_count,StoreIC_Megamorphic,325,0
@@ -27463,21 +27454,21 @@
block_count,StoreIC_Megamorphic,355,0
block_count,StoreIC_Megamorphic,356,0
block_count,StoreIC_Megamorphic,357,2
-block_count,StoreICTrampoline,0,23
-block_count,StoreICTrampoline,1,23
+block_count,StoreICTrampoline,0,24
+block_count,StoreICTrampoline,1,24
block_count,StoreICTrampoline,2,0
-block_count,StoreICTrampoline,3,23
-block_count,StoreICTrampoline_Megamorphic,0,633
-block_count,StoreICTrampoline_Megamorphic,1,633
+block_count,StoreICTrampoline,3,24
+block_count,StoreICTrampoline_Megamorphic,0,634
+block_count,StoreICTrampoline_Megamorphic,1,634
block_count,StoreICTrampoline_Megamorphic,2,0
-block_count,StoreICTrampoline_Megamorphic,3,633
-block_count,StoreICBaseline,0,634
+block_count,StoreICTrampoline_Megamorphic,3,634
+block_count,StoreICBaseline,0,631
block_count,DefineNamedOwnIC,0,81
block_count,DefineNamedOwnIC,1,81
block_count,DefineNamedOwnIC,2,0
block_count,DefineNamedOwnIC,3,81
block_count,DefineNamedOwnIC,4,81
-block_count,DefineNamedOwnIC,5,76
+block_count,DefineNamedOwnIC,5,77
block_count,DefineNamedOwnIC,6,0
block_count,DefineNamedOwnIC,7,0
block_count,DefineNamedOwnIC,8,0
@@ -27795,7 +27786,7 @@
block_count,DefineNamedOwnIC,320,9
block_count,DefineNamedOwnIC,321,0
block_count,DefineNamedOwnIC,322,9
-block_count,DefineNamedOwnIC,323,51
+block_count,DefineNamedOwnIC,323,52
block_count,DefineNamedOwnIC,324,0
block_count,DefineNamedOwnIC,325,61
block_count,DefineNamedOwnIC,326,0
@@ -27840,15 +27831,15 @@
block_count,DefineNamedOwnIC,365,0
block_count,DefineNamedOwnIC,366,0
block_count,DefineNamedOwnICBaseline,0,74
-block_count,KeyedStoreIC,0,490
-block_count,KeyedStoreIC,1,490
+block_count,KeyedStoreIC,0,491
+block_count,KeyedStoreIC,1,491
block_count,KeyedStoreIC,2,0
-block_count,KeyedStoreIC,3,490
-block_count,KeyedStoreIC,4,490
-block_count,KeyedStoreIC,5,488
-block_count,KeyedStoreIC,6,43
+block_count,KeyedStoreIC,3,491
+block_count,KeyedStoreIC,4,491
+block_count,KeyedStoreIC,5,489
+block_count,KeyedStoreIC,6,44
block_count,KeyedStoreIC,7,0
-block_count,KeyedStoreIC,8,43
+block_count,KeyedStoreIC,8,44
block_count,KeyedStoreIC,9,23
block_count,KeyedStoreIC,10,0
block_count,KeyedStoreIC,11,0
@@ -27858,24 +27849,24 @@
block_count,KeyedStoreIC,15,0
block_count,KeyedStoreIC,16,0
block_count,KeyedStoreIC,17,0
-block_count,KeyedStoreIC,18,23
-block_count,KeyedStoreIC,19,19
-block_count,KeyedStoreIC,20,35
+block_count,KeyedStoreIC,18,22
+block_count,KeyedStoreIC,19,20
+block_count,KeyedStoreIC,20,36
block_count,KeyedStoreIC,21,15
block_count,KeyedStoreIC,22,15
block_count,KeyedStoreIC,23,0
-block_count,KeyedStoreIC,24,19
-block_count,KeyedStoreIC,25,444
-block_count,KeyedStoreIC,26,465
-block_count,KeyedStoreIC,27,463
-block_count,KeyedStoreIC,28,463
-block_count,KeyedStoreIC,29,103
-block_count,KeyedStoreIC,30,103
-block_count,KeyedStoreIC,31,103
+block_count,KeyedStoreIC,24,20
+block_count,KeyedStoreIC,25,445
+block_count,KeyedStoreIC,26,466
+block_count,KeyedStoreIC,27,465
+block_count,KeyedStoreIC,28,464
+block_count,KeyedStoreIC,29,104
+block_count,KeyedStoreIC,30,104
+block_count,KeyedStoreIC,31,104
block_count,KeyedStoreIC,32,0
block_count,KeyedStoreIC,33,0
-block_count,KeyedStoreIC,34,103
-block_count,KeyedStoreIC,35,103
+block_count,KeyedStoreIC,34,104
+block_count,KeyedStoreIC,35,104
block_count,KeyedStoreIC,36,1
block_count,KeyedStoreIC,37,1
block_count,KeyedStoreIC,38,1
@@ -28031,7 +28022,7 @@
block_count,KeyedStoreIC,188,0
block_count,KeyedStoreIC,189,0
block_count,KeyedStoreIC,190,0
-block_count,KeyedStoreIC,191,359
+block_count,KeyedStoreIC,191,360
block_count,KeyedStoreIC,192,0
block_count,KeyedStoreIC,193,0
block_count,KeyedStoreIC,194,0
@@ -28281,7 +28272,7 @@
block_count,KeyedStoreICTrampoline_Megamorphic,1,299
block_count,KeyedStoreICTrampoline_Megamorphic,2,0
block_count,KeyedStoreICTrampoline_Megamorphic,3,299
-block_count,KeyedStoreICBaseline,0,443
+block_count,KeyedStoreICBaseline,0,444
block_count,DefineKeyedOwnIC,0,2
block_count,DefineKeyedOwnIC,1,2
block_count,DefineKeyedOwnIC,2,0
@@ -28716,7 +28707,7 @@
block_count,StoreInArrayLiteralIC,2,0
block_count,StoreInArrayLiteralIC,3,43
block_count,StoreInArrayLiteralIC,4,43
-block_count,StoreInArrayLiteralIC,5,41
+block_count,StoreInArrayLiteralIC,5,42
block_count,StoreInArrayLiteralIC,6,2
block_count,StoreInArrayLiteralIC,7,0
block_count,StoreInArrayLiteralIC,8,2
@@ -28730,24 +28721,24 @@
block_count,StoreInArrayLiteralIC,16,0
block_count,StoreInArrayLiteralIC,17,2
block_count,StoreInArrayLiteralIC,18,39
-block_count,StoreInArrayLiteralIC,19,41
-block_count,StoreInArrayLiteralIC,20,41
+block_count,StoreInArrayLiteralIC,19,42
+block_count,StoreInArrayLiteralIC,20,42
block_count,StoreInArrayLiteralIC,21,0
block_count,StoreInArrayLiteralIC,22,0
block_count,StoreInArrayLiteralIC,23,0
block_count,StoreInArrayLiteralIC,24,0
block_count,StoreInArrayLiteralIC,25,0
-block_count,StoreInArrayLiteralIC,26,41
+block_count,StoreInArrayLiteralIC,26,42
block_count,StoreInArrayLiteralIC,27,0
block_count,StoreInArrayLiteralIC,28,1
block_count,StoreInArrayLiteralIC,29,0
block_count,StoreInArrayLiteralIC,30,0
-block_count,StoreInArrayLiteralICBaseline,0,38
-block_count,LoadGlobalIC,0,1375
-block_count,LoadGlobalIC,1,1375
-block_count,LoadGlobalIC,2,1265
-block_count,LoadGlobalIC,3,1265
-block_count,LoadGlobalIC,4,1265
+block_count,StoreInArrayLiteralICBaseline,0,39
+block_count,LoadGlobalIC,0,1236
+block_count,LoadGlobalIC,1,1236
+block_count,LoadGlobalIC,2,1127
+block_count,LoadGlobalIC,3,1127
+block_count,LoadGlobalIC,4,1127
block_count,LoadGlobalIC,5,0
block_count,LoadGlobalIC,6,0
block_count,LoadGlobalIC,7,0
@@ -29164,11 +29155,11 @@
block_count,LoadGlobalICInsideTypeof,196,0
block_count,LoadGlobalICInsideTypeof,197,0
block_count,LoadGlobalICInsideTypeof,198,0
-block_count,LoadGlobalICTrampoline,0,444
-block_count,LoadGlobalICTrampoline,1,444
+block_count,LoadGlobalICTrampoline,0,297
+block_count,LoadGlobalICTrampoline,1,297
block_count,LoadGlobalICTrampoline,2,0
-block_count,LoadGlobalICTrampoline,3,444
-block_count,LoadGlobalICBaseline,0,904
+block_count,LoadGlobalICTrampoline,3,297
+block_count,LoadGlobalICBaseline,0,912
block_count,LoadGlobalICInsideTypeofTrampoline,0,0
block_count,LoadGlobalICInsideTypeofTrampoline,1,0
block_count,LoadGlobalICInsideTypeofTrampoline,2,0
@@ -29209,7 +29200,7 @@
block_count,KeyedHasIC,6,728
block_count,KeyedHasIC,7,0
block_count,KeyedHasIC,8,728
-block_count,KeyedHasIC,9,728
+block_count,KeyedHasIC,9,727
block_count,KeyedHasIC,10,1
block_count,KeyedHasIC,11,1
block_count,KeyedHasIC,12,0
@@ -29467,77 +29458,77 @@
block_count,KeyedHasIC_Megamorphic,2,0
block_count,KeyedHasIC_Megamorphic,3,726
block_count,KeyedHasIC_Megamorphic,4,726
-block_count,KeyedHasIC_Megamorphic,5,725
-block_count,KeyedHasIC_Megamorphic,6,725
+block_count,KeyedHasIC_Megamorphic,5,724
+block_count,KeyedHasIC_Megamorphic,6,724
block_count,KeyedHasIC_Megamorphic,7,0
block_count,KeyedHasIC_Megamorphic,8,0
block_count,KeyedHasIC_Megamorphic,9,0
-block_count,KeyedHasIC_Megamorphic,10,725
-block_count,KeyedHasIC_Megamorphic,11,723
+block_count,KeyedHasIC_Megamorphic,10,724
+block_count,KeyedHasIC_Megamorphic,11,722
block_count,KeyedHasIC_Megamorphic,12,0
block_count,KeyedHasIC_Megamorphic,13,0
block_count,KeyedHasIC_Megamorphic,14,0
-block_count,KeyedHasIC_Megamorphic,15,723
-block_count,KeyedHasIC_Megamorphic,16,723
-block_count,KeyedHasIC_Megamorphic,17,723
-block_count,KeyedHasIC_Megamorphic,18,723
-block_count,KeyedHasIC_Megamorphic,19,723
+block_count,KeyedHasIC_Megamorphic,15,722
+block_count,KeyedHasIC_Megamorphic,16,722
+block_count,KeyedHasIC_Megamorphic,17,722
+block_count,KeyedHasIC_Megamorphic,18,722
+block_count,KeyedHasIC_Megamorphic,19,722
block_count,KeyedHasIC_Megamorphic,20,0
block_count,KeyedHasIC_Megamorphic,21,0
block_count,KeyedHasIC_Megamorphic,22,0
-block_count,KeyedHasIC_Megamorphic,23,723
-block_count,KeyedHasIC_Megamorphic,24,722
+block_count,KeyedHasIC_Megamorphic,23,722
+block_count,KeyedHasIC_Megamorphic,24,721
block_count,KeyedHasIC_Megamorphic,25,1
block_count,KeyedHasIC_Megamorphic,26,0
block_count,KeyedHasIC_Megamorphic,27,0
block_count,KeyedHasIC_Megamorphic,28,0
block_count,KeyedHasIC_Megamorphic,29,1
block_count,KeyedHasIC_Megamorphic,30,723
-block_count,KeyedHasIC_Megamorphic,31,2861
-block_count,KeyedHasIC_Megamorphic,32,2861
-block_count,KeyedHasIC_Megamorphic,33,2858
-block_count,KeyedHasIC_Megamorphic,34,2737
-block_count,KeyedHasIC_Megamorphic,35,721
-block_count,KeyedHasIC_Megamorphic,36,721
+block_count,KeyedHasIC_Megamorphic,31,2860
+block_count,KeyedHasIC_Megamorphic,32,2860
+block_count,KeyedHasIC_Megamorphic,33,2856
+block_count,KeyedHasIC_Megamorphic,34,2735
+block_count,KeyedHasIC_Megamorphic,35,720
+block_count,KeyedHasIC_Megamorphic,36,720
block_count,KeyedHasIC_Megamorphic,37,0
-block_count,KeyedHasIC_Megamorphic,38,721
-block_count,KeyedHasIC_Megamorphic,39,4326
-block_count,KeyedHasIC_Megamorphic,40,4326
+block_count,KeyedHasIC_Megamorphic,38,720
+block_count,KeyedHasIC_Megamorphic,39,4323
+block_count,KeyedHasIC_Megamorphic,40,4323
block_count,KeyedHasIC_Megamorphic,41,0
-block_count,KeyedHasIC_Megamorphic,42,4326
+block_count,KeyedHasIC_Megamorphic,42,4323
block_count,KeyedHasIC_Megamorphic,43,1421
-block_count,KeyedHasIC_Megamorphic,44,2904
-block_count,KeyedHasIC_Megamorphic,45,4326
-block_count,KeyedHasIC_Megamorphic,46,3605
-block_count,KeyedHasIC_Megamorphic,47,721
-block_count,KeyedHasIC_Megamorphic,48,721
-block_count,KeyedHasIC_Megamorphic,49,721
-block_count,KeyedHasIC_Megamorphic,50,721
+block_count,KeyedHasIC_Megamorphic,44,2902
+block_count,KeyedHasIC_Megamorphic,45,4323
+block_count,KeyedHasIC_Megamorphic,46,3602
+block_count,KeyedHasIC_Megamorphic,47,720
+block_count,KeyedHasIC_Megamorphic,48,720
+block_count,KeyedHasIC_Megamorphic,49,720
+block_count,KeyedHasIC_Megamorphic,50,720
block_count,KeyedHasIC_Megamorphic,51,0
-block_count,KeyedHasIC_Megamorphic,52,721
+block_count,KeyedHasIC_Megamorphic,52,720
block_count,KeyedHasIC_Megamorphic,53,0
block_count,KeyedHasIC_Megamorphic,54,0
block_count,KeyedHasIC_Megamorphic,55,0
block_count,KeyedHasIC_Megamorphic,56,0
block_count,KeyedHasIC_Megamorphic,57,0
-block_count,KeyedHasIC_Megamorphic,58,721
+block_count,KeyedHasIC_Megamorphic,58,720
block_count,KeyedHasIC_Megamorphic,59,0
-block_count,KeyedHasIC_Megamorphic,60,2016
+block_count,KeyedHasIC_Megamorphic,60,2015
block_count,KeyedHasIC_Megamorphic,61,0
-block_count,KeyedHasIC_Megamorphic,62,2016
+block_count,KeyedHasIC_Megamorphic,62,2015
block_count,KeyedHasIC_Megamorphic,63,489
-block_count,KeyedHasIC_Megamorphic,64,1526
-block_count,KeyedHasIC_Megamorphic,65,7563
-block_count,KeyedHasIC_Megamorphic,66,7560
-block_count,KeyedHasIC_Megamorphic,67,7558
-block_count,KeyedHasIC_Megamorphic,68,6036
-block_count,KeyedHasIC_Megamorphic,69,1521
+block_count,KeyedHasIC_Megamorphic,64,1525
+block_count,KeyedHasIC_Megamorphic,65,7558
+block_count,KeyedHasIC_Megamorphic,66,7555
+block_count,KeyedHasIC_Megamorphic,67,7553
+block_count,KeyedHasIC_Megamorphic,68,6033
+block_count,KeyedHasIC_Megamorphic,69,1520
block_count,KeyedHasIC_Megamorphic,70,2
block_count,KeyedHasIC_Megamorphic,71,2
-block_count,KeyedHasIC_Megamorphic,72,2011
-block_count,KeyedHasIC_Megamorphic,73,1009
-block_count,KeyedHasIC_Megamorphic,74,1001
-block_count,KeyedHasIC_Megamorphic,75,1001
+block_count,KeyedHasIC_Megamorphic,72,2009
+block_count,KeyedHasIC_Megamorphic,73,1008
+block_count,KeyedHasIC_Megamorphic,74,1000
+block_count,KeyedHasIC_Megamorphic,75,1000
block_count,KeyedHasIC_Megamorphic,76,0
block_count,KeyedHasIC_Megamorphic,77,121
block_count,KeyedHasIC_Megamorphic,78,3
@@ -29578,8 +29569,8 @@
block_count,KeyedHasIC_Megamorphic,113,0
block_count,KeyedHasIC_Megamorphic,114,0
block_count,KeyedHasIC_Megamorphic,115,0
-block_count,KeyedHasIC_Megamorphic,116,2853
-block_count,KeyedHasIC_Megamorphic,117,2853
+block_count,KeyedHasIC_Megamorphic,116,2852
+block_count,KeyedHasIC_Megamorphic,117,2852
block_count,KeyedHasIC_Megamorphic,118,0
block_count,KeyedHasIC_Megamorphic,119,0
block_count,KeyedHasIC_Megamorphic,120,0
@@ -29617,13 +29608,13 @@
block_count,KeyedHasIC_Megamorphic,152,0
block_count,KeyedHasIC_Megamorphic,153,0
block_count,KeyedHasIC_Megamorphic,154,0
-block_count,KeyedHasIC_Megamorphic,155,2853
+block_count,KeyedHasIC_Megamorphic,155,2852
block_count,KeyedHasIC_Megamorphic,156,4
block_count,KeyedHasIC_Megamorphic,157,4
block_count,KeyedHasIC_Megamorphic,158,0
-block_count,KeyedHasIC_Megamorphic,159,2848
-block_count,KeyedHasIC_Megamorphic,160,2853
-block_count,KeyedHasIC_Megamorphic,161,2137
+block_count,KeyedHasIC_Megamorphic,159,2847
+block_count,KeyedHasIC_Megamorphic,160,2852
+block_count,KeyedHasIC_Megamorphic,161,2136
block_count,KeyedHasIC_Megamorphic,162,715
block_count,KeyedHasIC_Megamorphic,163,1
block_count,KeyedHasIC_Megamorphic,164,1
@@ -29742,14 +29733,14 @@
block_count,KeyedHasIC_Megamorphic,277,1
block_count,AddLhsIsStringConstantInternalizeWithVector,0,725
block_count,AddLhsIsStringConstantInternalizeWithVector,1,725
-block_count,AddLhsIsStringConstantInternalizeWithVector,2,725
+block_count,AddLhsIsStringConstantInternalizeWithVector,2,724
block_count,AddLhsIsStringConstantInternalizeWithVector,3,0
-block_count,AddLhsIsStringConstantInternalizeWithVector,4,725
+block_count,AddLhsIsStringConstantInternalizeWithVector,4,724
block_count,AddLhsIsStringConstantInternalizeWithVector,5,0
-block_count,AddLhsIsStringConstantInternalizeWithVector,6,725
-block_count,AddLhsIsStringConstantInternalizeWithVector,7,725
+block_count,AddLhsIsStringConstantInternalizeWithVector,6,724
+block_count,AddLhsIsStringConstantInternalizeWithVector,7,724
block_count,AddLhsIsStringConstantInternalizeWithVector,8,0
-block_count,AddLhsIsStringConstantInternalizeWithVector,9,724
+block_count,AddLhsIsStringConstantInternalizeWithVector,9,723
block_count,AddLhsIsStringConstantInternalizeWithVector,10,0
block_count,AddLhsIsStringConstantInternalizeWithVector,11,0
block_count,AddLhsIsStringConstantInternalizeWithVector,12,0
@@ -29769,20 +29760,20 @@
block_count,AddLhsIsStringConstantInternalizeWithVector,26,0
block_count,AddLhsIsStringConstantInternalizeWithVector,27,0
block_count,AddLhsIsStringConstantInternalizeWithVector,28,0
-block_count,AddLhsIsStringConstantInternalizeWithVector,29,724
-block_count,AddLhsIsStringConstantInternalizeWithVector,30,724
-block_count,AddLhsIsStringConstantInternalizeWithVector,31,724
-block_count,AddLhsIsStringConstantInternalizeWithVector,32,740
-block_count,AddLhsIsStringConstantInternalizeWithVector,33,740
+block_count,AddLhsIsStringConstantInternalizeWithVector,29,723
+block_count,AddLhsIsStringConstantInternalizeWithVector,30,723
+block_count,AddLhsIsStringConstantInternalizeWithVector,31,723
+block_count,AddLhsIsStringConstantInternalizeWithVector,32,739
+block_count,AddLhsIsStringConstantInternalizeWithVector,33,739
block_count,AddLhsIsStringConstantInternalizeWithVector,34,15
-block_count,AddLhsIsStringConstantInternalizeWithVector,35,724
+block_count,AddLhsIsStringConstantInternalizeWithVector,35,723
block_count,AddLhsIsStringConstantInternalizeWithVector,36,0
block_count,AddLhsIsStringConstantInternalizeWithVector,37,0
block_count,AddLhsIsStringConstantInternalizeWithVector,38,0
block_count,AddLhsIsStringConstantInternalizeWithVector,39,0
-block_count,AddLhsIsStringConstantInternalizeWithVector,40,724
+block_count,AddLhsIsStringConstantInternalizeWithVector,40,723
block_count,AddLhsIsStringConstantInternalizeWithVector,41,0
-block_count,AddLhsIsStringConstantInternalizeWithVector,42,724
+block_count,AddLhsIsStringConstantInternalizeWithVector,42,723
block_count,AddLhsIsStringConstantInternalizeWithVector,43,0
block_count,AddLhsIsStringConstantInternalizeWithVector,44,0
block_count,AddLhsIsStringConstantInternalizeWithVector,45,0
@@ -30068,8 +30059,8 @@
block_count,IterableToListMayPreserveHoles,14,0
block_count,IterableToListMayPreserveHoles,15,0
block_count,FindOrderedHashMapEntry,0,393
-block_count,FindOrderedHashMapEntry,1,391
-block_count,FindOrderedHashMapEntry,2,391
+block_count,FindOrderedHashMapEntry,1,390
+block_count,FindOrderedHashMapEntry,2,390
block_count,FindOrderedHashMapEntry,3,131
block_count,FindOrderedHashMapEntry,4,131
block_count,FindOrderedHashMapEntry,5,67
@@ -30084,13 +30075,13 @@
block_count,FindOrderedHashMapEntry,14,57
block_count,FindOrderedHashMapEntry,15,63
block_count,FindOrderedHashMapEntry,16,131
-block_count,FindOrderedHashMapEntry,17,267
-block_count,FindOrderedHashMapEntry,18,160
-block_count,FindOrderedHashMapEntry,19,160
-block_count,FindOrderedHashMapEntry,20,136
+block_count,FindOrderedHashMapEntry,17,224
+block_count,FindOrderedHashMapEntry,18,117
+block_count,FindOrderedHashMapEntry,19,117
+block_count,FindOrderedHashMapEntry,20,93
block_count,FindOrderedHashMapEntry,21,23
block_count,FindOrderedHashMapEntry,22,0
-block_count,FindOrderedHashMapEntry,23,136
+block_count,FindOrderedHashMapEntry,23,93
block_count,FindOrderedHashMapEntry,24,107
block_count,FindOrderedHashMapEntry,25,0
block_count,FindOrderedHashMapEntry,26,0
@@ -30106,17 +30097,17 @@
block_count,FindOrderedHashMapEntry,36,0
block_count,FindOrderedHashMapEntry,37,0
block_count,FindOrderedHashMapEntry,38,259
-block_count,FindOrderedHashMapEntry,39,82
+block_count,FindOrderedHashMapEntry,39,81
block_count,FindOrderedHashMapEntry,40,8
-block_count,FindOrderedHashMapEntry,41,73
+block_count,FindOrderedHashMapEntry,41,72
block_count,FindOrderedHashMapEntry,42,177
block_count,FindOrderedHashMapEntry,43,259
block_count,FindOrderedHashMapEntry,44,259
block_count,FindOrderedHashMapEntry,45,0
block_count,FindOrderedHashMapEntry,46,259
block_count,FindOrderedHashMapEntry,47,327
-block_count,FindOrderedHashMapEntry,48,285
-block_count,FindOrderedHashMapEntry,49,285
+block_count,FindOrderedHashMapEntry,48,284
+block_count,FindOrderedHashMapEntry,49,284
block_count,FindOrderedHashMapEntry,50,67
block_count,FindOrderedHashMapEntry,51,217
block_count,FindOrderedHashMapEntry,52,0
@@ -30565,13 +30556,13 @@
block_count,MapPrototypeSet,20,42
block_count,MapPrototypeSet,21,46
block_count,MapPrototypeSet,22,46
-block_count,MapPrototypeSet,23,78
+block_count,MapPrototypeSet,23,77
block_count,MapPrototypeSet,24,43
block_count,MapPrototypeSet,25,43
-block_count,MapPrototypeSet,26,32
+block_count,MapPrototypeSet,26,31
block_count,MapPrototypeSet,27,11
block_count,MapPrototypeSet,28,0
-block_count,MapPrototypeSet,29,32
+block_count,MapPrototypeSet,29,31
block_count,MapPrototypeSet,30,34
block_count,MapPrototypeSet,31,0
block_count,MapPrototypeSet,32,0
@@ -30953,26 +30944,26 @@
block_count,MapIteratorToList,54,0
block_count,MapIteratorToList,55,0
block_count,MapIteratorToList,56,0
-block_count,Add_Baseline,0,567
-block_count,Add_Baseline,1,331
+block_count,Add_Baseline,0,572
+block_count,Add_Baseline,1,330
block_count,Add_Baseline,2,5
block_count,Add_Baseline,3,5
block_count,Add_Baseline,4,0
-block_count,Add_Baseline,5,326
-block_count,Add_Baseline,6,325
+block_count,Add_Baseline,5,325
+block_count,Add_Baseline,6,324
block_count,Add_Baseline,7,0
-block_count,Add_Baseline,8,325
-block_count,Add_Baseline,9,325
+block_count,Add_Baseline,8,324
+block_count,Add_Baseline,9,324
block_count,Add_Baseline,10,0
-block_count,Add_Baseline,11,235
-block_count,Add_Baseline,12,140
-block_count,Add_Baseline,13,121
-block_count,Add_Baseline,14,121
+block_count,Add_Baseline,11,242
+block_count,Add_Baseline,12,146
+block_count,Add_Baseline,13,124
+block_count,Add_Baseline,14,124
block_count,Add_Baseline,15,0
-block_count,Add_Baseline,16,19
-block_count,Add_Baseline,17,94
-block_count,Add_Baseline,18,94
-block_count,Add_Baseline,19,88
+block_count,Add_Baseline,16,21
+block_count,Add_Baseline,17,95
+block_count,Add_Baseline,18,95
+block_count,Add_Baseline,19,89
block_count,Add_Baseline,20,0
block_count,Add_Baseline,21,0
block_count,Add_Baseline,22,0
@@ -30986,7 +30977,7 @@
block_count,Add_Baseline,30,0
block_count,Add_Baseline,31,0
block_count,Add_Baseline,32,0
-block_count,Add_Baseline,33,87
+block_count,Add_Baseline,33,88
block_count,Add_Baseline,34,7
block_count,Add_Baseline,35,7
block_count,Add_Baseline,36,0
@@ -30995,10 +30986,10 @@
block_count,Add_Baseline,39,0
block_count,Add_Baseline,40,0
block_count,Add_Baseline,41,0
-block_count,Add_Baseline,42,80
+block_count,Add_Baseline,42,81
block_count,Add_Baseline,43,0
-block_count,Add_Baseline,44,80
-block_count,Add_Baseline,45,80
+block_count,Add_Baseline,44,81
+block_count,Add_Baseline,45,81
block_count,Add_Baseline,46,6
block_count,Add_Baseline,47,0
block_count,Add_Baseline,48,0
@@ -31014,19 +31005,19 @@
block_count,Add_Baseline,58,0
block_count,Add_Baseline,59,14
block_count,Add_Baseline,60,14
-block_count,Add_Baseline,61,146
+block_count,Add_Baseline,61,152
block_count,Add_Baseline,62,0
-block_count,Add_Baseline,63,146
-block_count,Add_Baseline,64,146
+block_count,Add_Baseline,63,152
+block_count,Add_Baseline,64,152
block_count,Add_Baseline,65,0
-block_count,Add_Baseline,66,146
-block_count,Add_Baseline,67,146
-block_count,AddSmi_Baseline,0,570
-block_count,AddSmi_Baseline,1,568
-block_count,AddSmi_Baseline,2,568
+block_count,Add_Baseline,66,152
+block_count,Add_Baseline,67,152
+block_count,AddSmi_Baseline,0,573
+block_count,AddSmi_Baseline,1,570
+block_count,AddSmi_Baseline,2,570
block_count,AddSmi_Baseline,3,0
-block_count,AddSmi_Baseline,4,567
-block_count,AddSmi_Baseline,5,568
+block_count,AddSmi_Baseline,4,570
+block_count,AddSmi_Baseline,5,570
block_count,AddSmi_Baseline,6,0
block_count,AddSmi_Baseline,7,2
block_count,AddSmi_Baseline,8,2
@@ -31080,10 +31071,10 @@
block_count,AddSmi_Baseline,56,0
block_count,AddSmi_Baseline,57,2
block_count,AddSmi_Baseline,58,2
-block_count,Subtract_Baseline,0,124
-block_count,Subtract_Baseline,1,64
-block_count,Subtract_Baseline,2,5
-block_count,Subtract_Baseline,3,5
+block_count,Subtract_Baseline,0,126
+block_count,Subtract_Baseline,1,65
+block_count,Subtract_Baseline,2,6
+block_count,Subtract_Baseline,3,6
block_count,Subtract_Baseline,4,0
block_count,Subtract_Baseline,5,59
block_count,Subtract_Baseline,6,59
@@ -31095,10 +31086,10 @@
block_count,Subtract_Baseline,12,0
block_count,Subtract_Baseline,13,59
block_count,Subtract_Baseline,14,59
-block_count,Subtract_Baseline,15,59
-block_count,Subtract_Baseline,16,59
-block_count,Subtract_Baseline,17,56
-block_count,Subtract_Baseline,18,56
+block_count,Subtract_Baseline,15,61
+block_count,Subtract_Baseline,16,61
+block_count,Subtract_Baseline,17,57
+block_count,Subtract_Baseline,18,57
block_count,Subtract_Baseline,19,0
block_count,Subtract_Baseline,20,3
block_count,Subtract_Baseline,21,0
@@ -31130,46 +31121,46 @@
block_count,Subtract_Baseline,47,0
block_count,Subtract_Baseline,48,0
block_count,Subtract_Baseline,49,0
-block_count,Subtract_Baseline,50,65
+block_count,Subtract_Baseline,50,67
block_count,Subtract_Baseline,51,0
-block_count,Subtract_Baseline,52,65
-block_count,Subtract_Baseline,53,65
+block_count,Subtract_Baseline,52,67
+block_count,Subtract_Baseline,53,67
block_count,Subtract_Baseline,54,0
-block_count,Subtract_Baseline,55,65
-block_count,Subtract_Baseline,56,65
-block_count,SubtractSmi_Baseline,0,78
-block_count,SubtractSmi_Baseline,1,58
-block_count,SubtractSmi_Baseline,2,58
+block_count,Subtract_Baseline,55,67
+block_count,Subtract_Baseline,56,67
+block_count,SubtractSmi_Baseline,0,77
+block_count,SubtractSmi_Baseline,1,59
+block_count,SubtractSmi_Baseline,2,59
block_count,SubtractSmi_Baseline,3,0
block_count,SubtractSmi_Baseline,4,0
block_count,SubtractSmi_Baseline,5,0
block_count,SubtractSmi_Baseline,6,0
-block_count,SubtractSmi_Baseline,7,58
+block_count,SubtractSmi_Baseline,7,59
block_count,SubtractSmi_Baseline,8,0
block_count,SubtractSmi_Baseline,9,58
-block_count,SubtractSmi_Baseline,10,58
-block_count,SubtractSmi_Baseline,11,19
-block_count,SubtractSmi_Baseline,12,19
+block_count,SubtractSmi_Baseline,10,59
+block_count,SubtractSmi_Baseline,11,18
+block_count,SubtractSmi_Baseline,12,18
block_count,SubtractSmi_Baseline,13,0
-block_count,SubtractSmi_Baseline,14,19
-block_count,SubtractSmi_Baseline,15,19
+block_count,SubtractSmi_Baseline,14,18
+block_count,SubtractSmi_Baseline,15,18
block_count,SubtractSmi_Baseline,16,0
-block_count,SubtractSmi_Baseline,17,19
-block_count,SubtractSmi_Baseline,18,19
-block_count,Multiply_Baseline,0,180
-block_count,Multiply_Baseline,1,29
+block_count,SubtractSmi_Baseline,17,18
+block_count,SubtractSmi_Baseline,18,18
+block_count,Multiply_Baseline,0,185
+block_count,Multiply_Baseline,1,30
block_count,Multiply_Baseline,2,14
block_count,Multiply_Baseline,3,14
block_count,Multiply_Baseline,4,0
-block_count,Multiply_Baseline,5,14
-block_count,Multiply_Baseline,6,14
-block_count,Multiply_Baseline,7,11
-block_count,Multiply_Baseline,8,11
+block_count,Multiply_Baseline,5,15
+block_count,Multiply_Baseline,6,15
+block_count,Multiply_Baseline,7,12
+block_count,Multiply_Baseline,8,12
block_count,Multiply_Baseline,9,0
block_count,Multiply_Baseline,10,0
block_count,Multiply_Baseline,11,0
block_count,Multiply_Baseline,12,0
-block_count,Multiply_Baseline,13,11
+block_count,Multiply_Baseline,13,12
block_count,Multiply_Baseline,14,2
block_count,Multiply_Baseline,15,2
block_count,Multiply_Baseline,16,0
@@ -31177,19 +31168,19 @@
block_count,Multiply_Baseline,18,0
block_count,Multiply_Baseline,19,0
block_count,Multiply_Baseline,20,0
-block_count,Multiply_Baseline,21,14
+block_count,Multiply_Baseline,21,15
block_count,Multiply_Baseline,22,0
block_count,Multiply_Baseline,23,14
-block_count,Multiply_Baseline,24,14
+block_count,Multiply_Baseline,24,15
block_count,Multiply_Baseline,25,0
-block_count,Multiply_Baseline,26,14
-block_count,Multiply_Baseline,27,14
-block_count,Multiply_Baseline,28,150
-block_count,Multiply_Baseline,29,150
-block_count,Multiply_Baseline,30,142
-block_count,Multiply_Baseline,31,142
+block_count,Multiply_Baseline,26,15
+block_count,Multiply_Baseline,27,15
+block_count,Multiply_Baseline,28,155
+block_count,Multiply_Baseline,29,155
+block_count,Multiply_Baseline,30,145
+block_count,Multiply_Baseline,31,145
block_count,Multiply_Baseline,32,0
-block_count,Multiply_Baseline,33,8
+block_count,Multiply_Baseline,33,10
block_count,Multiply_Baseline,34,0
block_count,Multiply_Baseline,35,0
block_count,Multiply_Baseline,36,0
@@ -31221,16 +31212,16 @@
block_count,Multiply_Baseline,62,0
block_count,Multiply_Baseline,63,0
block_count,Multiply_Baseline,64,0
-block_count,Multiply_Baseline,65,165
+block_count,Multiply_Baseline,65,169
block_count,Multiply_Baseline,66,0
-block_count,Multiply_Baseline,67,165
-block_count,Multiply_Baseline,68,165
+block_count,Multiply_Baseline,67,169
+block_count,Multiply_Baseline,68,169
block_count,Multiply_Baseline,69,0
-block_count,Multiply_Baseline,70,165
-block_count,Multiply_Baseline,71,165
+block_count,Multiply_Baseline,70,169
+block_count,Multiply_Baseline,71,169
block_count,MultiplySmi_Baseline,0,29
block_count,MultiplySmi_Baseline,1,24
-block_count,MultiplySmi_Baseline,2,24
+block_count,MultiplySmi_Baseline,2,23
block_count,MultiplySmi_Baseline,3,16
block_count,MultiplySmi_Baseline,4,16
block_count,MultiplySmi_Baseline,5,0
@@ -31247,19 +31238,19 @@
block_count,MultiplySmi_Baseline,16,0
block_count,MultiplySmi_Baseline,17,24
block_count,MultiplySmi_Baseline,18,0
-block_count,MultiplySmi_Baseline,19,24
+block_count,MultiplySmi_Baseline,19,23
block_count,MultiplySmi_Baseline,20,24
block_count,MultiplySmi_Baseline,21,0
block_count,MultiplySmi_Baseline,22,24
block_count,MultiplySmi_Baseline,23,24
-block_count,MultiplySmi_Baseline,24,4
-block_count,MultiplySmi_Baseline,25,4
+block_count,MultiplySmi_Baseline,24,5
+block_count,MultiplySmi_Baseline,25,5
block_count,MultiplySmi_Baseline,26,0
-block_count,MultiplySmi_Baseline,27,4
-block_count,MultiplySmi_Baseline,28,4
+block_count,MultiplySmi_Baseline,27,5
+block_count,MultiplySmi_Baseline,28,5
block_count,MultiplySmi_Baseline,29,0
-block_count,MultiplySmi_Baseline,30,4
-block_count,MultiplySmi_Baseline,31,4
+block_count,MultiplySmi_Baseline,30,5
+block_count,MultiplySmi_Baseline,31,5
block_count,MultiplySmi_Baseline,32,0
block_count,MultiplySmi_Baseline,33,0
block_count,MultiplySmi_Baseline,34,0
@@ -31375,7 +31366,7 @@
block_count,DivideSmi_Baseline,10,0
block_count,DivideSmi_Baseline,11,0
block_count,DivideSmi_Baseline,12,3
-block_count,DivideSmi_Baseline,13,0
+block_count,DivideSmi_Baseline,13,1
block_count,DivideSmi_Baseline,14,2
block_count,DivideSmi_Baseline,15,0
block_count,DivideSmi_Baseline,16,2
@@ -31464,8 +31455,8 @@
block_count,Modulus_Baseline,67,0
block_count,Modulus_Baseline,68,0
block_count,ModulusSmi_Baseline,0,4
-block_count,ModulusSmi_Baseline,1,3
-block_count,ModulusSmi_Baseline,2,3
+block_count,ModulusSmi_Baseline,1,4
+block_count,ModulusSmi_Baseline,2,4
block_count,ModulusSmi_Baseline,3,0
block_count,ModulusSmi_Baseline,4,0
block_count,ModulusSmi_Baseline,5,0
@@ -31475,15 +31466,15 @@
block_count,ModulusSmi_Baseline,9,0
block_count,ModulusSmi_Baseline,10,0
block_count,ModulusSmi_Baseline,11,0
-block_count,ModulusSmi_Baseline,12,3
+block_count,ModulusSmi_Baseline,12,4
block_count,ModulusSmi_Baseline,13,0
-block_count,ModulusSmi_Baseline,14,3
+block_count,ModulusSmi_Baseline,14,4
block_count,ModulusSmi_Baseline,15,0
-block_count,ModulusSmi_Baseline,16,3
-block_count,ModulusSmi_Baseline,17,3
+block_count,ModulusSmi_Baseline,16,4
+block_count,ModulusSmi_Baseline,17,4
block_count,ModulusSmi_Baseline,18,0
-block_count,ModulusSmi_Baseline,19,3
-block_count,ModulusSmi_Baseline,20,3
+block_count,ModulusSmi_Baseline,19,4
+block_count,ModulusSmi_Baseline,20,4
block_count,ModulusSmi_Baseline,21,0
block_count,ModulusSmi_Baseline,22,0
block_count,ModulusSmi_Baseline,23,0
@@ -31571,8 +31562,8 @@
block_count,Exponentiate_Baseline,46,0
block_count,Exponentiate_Baseline,47,0
block_count,Exponentiate_Baseline,48,0
-block_count,BitwiseAnd_Baseline,0,31
-block_count,BitwiseAnd_Baseline,1,25
+block_count,BitwiseAnd_Baseline,0,32
+block_count,BitwiseAnd_Baseline,1,26
block_count,BitwiseAnd_Baseline,2,5
block_count,BitwiseAnd_Baseline,3,5
block_count,BitwiseAnd_Baseline,4,0
@@ -31615,7 +31606,7 @@
block_count,BitwiseAnd_Baseline,41,0
block_count,BitwiseAnd_Baseline,42,0
block_count,BitwiseAnd_Baseline,43,5
-block_count,BitwiseAnd_Baseline,44,31
+block_count,BitwiseAnd_Baseline,44,32
block_count,BitwiseAnd_Baseline,45,23
block_count,BitwiseAnd_Baseline,46,8
block_count,BitwiseAnd_Baseline,47,8
@@ -31637,20 +31628,20 @@
block_count,BitwiseAnd_Baseline,63,0
block_count,BitwiseAnd_Baseline,64,0
block_count,BitwiseAnd_Baseline,65,7
-block_count,BitwiseAnd_Baseline,66,31
-block_count,BitwiseAnd_Baseline,67,27
+block_count,BitwiseAnd_Baseline,66,32
+block_count,BitwiseAnd_Baseline,67,28
block_count,BitwiseAnd_Baseline,68,4
block_count,BitwiseAnd_Baseline,69,0
block_count,BitwiseAnd_Baseline,70,4
block_count,BitwiseAnd_Baseline,71,4
-block_count,BitwiseAnd_Baseline,72,31
+block_count,BitwiseAnd_Baseline,72,32
block_count,BitwiseAnd_Baseline,73,4
-block_count,BitwiseAnd_Baseline,74,27
-block_count,BitwiseAnd_Baseline,75,31
+block_count,BitwiseAnd_Baseline,74,28
+block_count,BitwiseAnd_Baseline,75,32
block_count,BitwiseAnd_Baseline,76,0
-block_count,BitwiseAnd_Baseline,77,31
-block_count,BitwiseAnd_Baseline,78,31
-block_count,BitwiseAndSmi_Baseline,0,114
+block_count,BitwiseAnd_Baseline,77,32
+block_count,BitwiseAnd_Baseline,78,32
+block_count,BitwiseAndSmi_Baseline,0,115
block_count,BitwiseAndSmi_Baseline,1,6
block_count,BitwiseAndSmi_Baseline,2,6
block_count,BitwiseAndSmi_Baseline,3,1
@@ -31681,10 +31672,10 @@
block_count,BitwiseAndSmi_Baseline,28,0
block_count,BitwiseAndSmi_Baseline,29,6
block_count,BitwiseAndSmi_Baseline,30,6
-block_count,BitwiseAndSmi_Baseline,31,107
-block_count,BitwiseAndSmi_Baseline,32,114
+block_count,BitwiseAndSmi_Baseline,31,108
+block_count,BitwiseAndSmi_Baseline,32,115
block_count,BitwiseAndSmi_Baseline,33,0
-block_count,BitwiseAndSmi_Baseline,34,114
+block_count,BitwiseAndSmi_Baseline,34,115
block_count,BitwiseOr_Baseline,0,59
block_count,BitwiseOr_Baseline,1,54
block_count,BitwiseOr_Baseline,2,4
@@ -31799,7 +31790,7 @@
block_count,BitwiseOrSmi_Baseline,32,286
block_count,BitwiseOrSmi_Baseline,33,0
block_count,BitwiseOrSmi_Baseline,34,286
-block_count,BitwiseXor_Baseline,0,40
+block_count,BitwiseXor_Baseline,0,41
block_count,BitwiseXor_Baseline,1,22
block_count,BitwiseXor_Baseline,2,18
block_count,BitwiseXor_Baseline,3,18
@@ -31843,10 +31834,10 @@
block_count,BitwiseXor_Baseline,41,0
block_count,BitwiseXor_Baseline,42,0
block_count,BitwiseXor_Baseline,43,18
-block_count,BitwiseXor_Baseline,44,40
-block_count,BitwiseXor_Baseline,45,18
-block_count,BitwiseXor_Baseline,46,21
-block_count,BitwiseXor_Baseline,47,21
+block_count,BitwiseXor_Baseline,44,41
+block_count,BitwiseXor_Baseline,45,19
+block_count,BitwiseXor_Baseline,46,22
+block_count,BitwiseXor_Baseline,47,22
block_count,BitwiseXor_Baseline,48,0
block_count,BitwiseXor_Baseline,49,0
block_count,BitwiseXor_Baseline,50,0
@@ -31864,20 +31855,20 @@
block_count,BitwiseXor_Baseline,62,0
block_count,BitwiseXor_Baseline,63,0
block_count,BitwiseXor_Baseline,64,0
-block_count,BitwiseXor_Baseline,65,21
-block_count,BitwiseXor_Baseline,66,40
+block_count,BitwiseXor_Baseline,65,22
+block_count,BitwiseXor_Baseline,66,41
block_count,BitwiseXor_Baseline,67,25
block_count,BitwiseXor_Baseline,68,15
block_count,BitwiseXor_Baseline,69,0
block_count,BitwiseXor_Baseline,70,15
block_count,BitwiseXor_Baseline,71,15
-block_count,BitwiseXor_Baseline,72,40
+block_count,BitwiseXor_Baseline,72,41
block_count,BitwiseXor_Baseline,73,15
block_count,BitwiseXor_Baseline,74,25
-block_count,BitwiseXor_Baseline,75,40
+block_count,BitwiseXor_Baseline,75,41
block_count,BitwiseXor_Baseline,76,0
-block_count,BitwiseXor_Baseline,77,40
-block_count,BitwiseXor_Baseline,78,40
+block_count,BitwiseXor_Baseline,77,41
+block_count,BitwiseXor_Baseline,78,41
block_count,BitwiseXorSmi_Baseline,0,1
block_count,BitwiseXorSmi_Baseline,1,0
block_count,BitwiseXorSmi_Baseline,2,0
@@ -32115,7 +32106,7 @@
block_count,ShiftRight_Baseline,76,0
block_count,ShiftRight_Baseline,77,7
block_count,ShiftRight_Baseline,78,7
-block_count,ShiftRightSmi_Baseline,0,235
+block_count,ShiftRightSmi_Baseline,0,237
block_count,ShiftRightSmi_Baseline,1,5
block_count,ShiftRightSmi_Baseline,2,5
block_count,ShiftRightSmi_Baseline,3,0
@@ -32146,10 +32137,10 @@
block_count,ShiftRightSmi_Baseline,28,0
block_count,ShiftRightSmi_Baseline,29,5
block_count,ShiftRightSmi_Baseline,30,5
-block_count,ShiftRightSmi_Baseline,31,230
-block_count,ShiftRightSmi_Baseline,32,235
+block_count,ShiftRightSmi_Baseline,31,231
+block_count,ShiftRightSmi_Baseline,32,237
block_count,ShiftRightSmi_Baseline,33,0
-block_count,ShiftRightSmi_Baseline,34,235
+block_count,ShiftRightSmi_Baseline,34,237
block_count,ShiftRightLogical_Baseline,0,1
block_count,ShiftRightLogical_Baseline,1,1
block_count,ShiftRightLogical_Baseline,2,0
@@ -32227,8 +32218,8 @@
block_count,ShiftRightLogical_Baseline,74,0
block_count,ShiftRightLogical_Baseline,75,1
block_count,ShiftRightLogicalSmi_Baseline,0,18
-block_count,ShiftRightLogicalSmi_Baseline,1,8
-block_count,ShiftRightLogicalSmi_Baseline,2,8
+block_count,ShiftRightLogicalSmi_Baseline,1,9
+block_count,ShiftRightLogicalSmi_Baseline,2,9
block_count,ShiftRightLogicalSmi_Baseline,3,0
block_count,ShiftRightLogicalSmi_Baseline,4,0
block_count,ShiftRightLogicalSmi_Baseline,5,0
@@ -32246,17 +32237,17 @@
block_count,ShiftRightLogicalSmi_Baseline,17,0
block_count,ShiftRightLogicalSmi_Baseline,18,0
block_count,ShiftRightLogicalSmi_Baseline,19,0
-block_count,ShiftRightLogicalSmi_Baseline,20,8
-block_count,ShiftRightLogicalSmi_Baseline,21,8
-block_count,ShiftRightLogicalSmi_Baseline,22,8
+block_count,ShiftRightLogicalSmi_Baseline,20,9
+block_count,ShiftRightLogicalSmi_Baseline,21,9
+block_count,ShiftRightLogicalSmi_Baseline,22,9
block_count,ShiftRightLogicalSmi_Baseline,23,0
block_count,ShiftRightLogicalSmi_Baseline,24,0
block_count,ShiftRightLogicalSmi_Baseline,25,0
block_count,ShiftRightLogicalSmi_Baseline,26,0
-block_count,ShiftRightLogicalSmi_Baseline,27,8
+block_count,ShiftRightLogicalSmi_Baseline,27,9
block_count,ShiftRightLogicalSmi_Baseline,28,0
-block_count,ShiftRightLogicalSmi_Baseline,29,8
-block_count,ShiftRightLogicalSmi_Baseline,30,8
+block_count,ShiftRightLogicalSmi_Baseline,29,9
+block_count,ShiftRightLogicalSmi_Baseline,30,9
block_count,ShiftRightLogicalSmi_Baseline,31,9
block_count,ShiftRightLogicalSmi_Baseline,32,8
block_count,ShiftRightLogicalSmi_Baseline,33,0
@@ -32366,8 +32357,8 @@
block_count,Add_RhsIsStringConstant_Internalize_Baseline,45,0
block_count,Add_RhsIsStringConstant_Internalize_Baseline,46,0
block_count,Add_RhsIsStringConstant_Internalize_Baseline,47,0
-block_count,Equal_Baseline,0,338
-block_count,Equal_Baseline,1,342
+block_count,Equal_Baseline,0,337
+block_count,Equal_Baseline,1,341
block_count,Equal_Baseline,2,259
block_count,Equal_Baseline,3,61
block_count,Equal_Baseline,4,58
@@ -32384,7 +32375,7 @@
block_count,Equal_Baseline,15,0
block_count,Equal_Baseline,16,0
block_count,Equal_Baseline,17,0
-block_count,Equal_Baseline,18,14
+block_count,Equal_Baseline,18,13
block_count,Equal_Baseline,19,0
block_count,Equal_Baseline,20,0
block_count,Equal_Baseline,21,0
@@ -32453,7 +32444,7 @@
block_count,Equal_Baseline,84,35
block_count,Equal_Baseline,85,2
block_count,Equal_Baseline,86,3
-block_count,Equal_Baseline,87,198
+block_count,Equal_Baseline,87,197
block_count,Equal_Baseline,88,4
block_count,Equal_Baseline,89,0
block_count,Equal_Baseline,90,0
@@ -32511,22 +32502,22 @@
block_count,Equal_Baseline,142,66
block_count,Equal_Baseline,143,85
block_count,Equal_Baseline,144,217
-block_count,Equal_Baseline,145,338
+block_count,Equal_Baseline,145,337
block_count,Equal_Baseline,146,0
-block_count,Equal_Baseline,147,338
-block_count,StrictEqual_Baseline,0,514
-block_count,StrictEqual_Baseline,1,427
-block_count,StrictEqual_Baseline,2,296
-block_count,StrictEqual_Baseline,3,296
-block_count,StrictEqual_Baseline,4,295
-block_count,StrictEqual_Baseline,5,145
-block_count,StrictEqual_Baseline,6,145
-block_count,StrictEqual_Baseline,7,66
-block_count,StrictEqual_Baseline,8,52
+block_count,Equal_Baseline,147,337
+block_count,StrictEqual_Baseline,0,510
+block_count,StrictEqual_Baseline,1,423
+block_count,StrictEqual_Baseline,2,294
+block_count,StrictEqual_Baseline,3,294
+block_count,StrictEqual_Baseline,4,292
+block_count,StrictEqual_Baseline,5,140
+block_count,StrictEqual_Baseline,6,140
+block_count,StrictEqual_Baseline,7,63
+block_count,StrictEqual_Baseline,8,49
block_count,StrictEqual_Baseline,9,0
-block_count,StrictEqual_Baseline,10,52
+block_count,StrictEqual_Baseline,10,49
block_count,StrictEqual_Baseline,11,0
-block_count,StrictEqual_Baseline,12,52
+block_count,StrictEqual_Baseline,12,49
block_count,StrictEqual_Baseline,13,13
block_count,StrictEqual_Baseline,14,7
block_count,StrictEqual_Baseline,15,5
@@ -32534,28 +32525,28 @@
block_count,StrictEqual_Baseline,17,0
block_count,StrictEqual_Baseline,18,1
block_count,StrictEqual_Baseline,19,6
-block_count,StrictEqual_Baseline,20,78
-block_count,StrictEqual_Baseline,21,78
+block_count,StrictEqual_Baseline,20,77
+block_count,StrictEqual_Baseline,21,77
block_count,StrictEqual_Baseline,22,0
block_count,StrictEqual_Baseline,23,0
block_count,StrictEqual_Baseline,24,0
-block_count,StrictEqual_Baseline,25,77
+block_count,StrictEqual_Baseline,25,76
block_count,StrictEqual_Baseline,26,0
block_count,StrictEqual_Baseline,27,0
block_count,StrictEqual_Baseline,28,0
block_count,StrictEqual_Baseline,29,0
-block_count,StrictEqual_Baseline,30,149
+block_count,StrictEqual_Baseline,30,151
block_count,StrictEqual_Baseline,31,0
block_count,StrictEqual_Baseline,32,0
block_count,StrictEqual_Baseline,33,0
-block_count,StrictEqual_Baseline,34,149
-block_count,StrictEqual_Baseline,35,40
+block_count,StrictEqual_Baseline,34,151
+block_count,StrictEqual_Baseline,35,42
block_count,StrictEqual_Baseline,36,109
-block_count,StrictEqual_Baseline,37,149
+block_count,StrictEqual_Baseline,37,151
block_count,StrictEqual_Baseline,38,0
-block_count,StrictEqual_Baseline,39,148
-block_count,StrictEqual_Baseline,40,149
-block_count,StrictEqual_Baseline,41,104
+block_count,StrictEqual_Baseline,39,150
+block_count,StrictEqual_Baseline,40,151
+block_count,StrictEqual_Baseline,41,106
block_count,StrictEqual_Baseline,42,44
block_count,StrictEqual_Baseline,43,1
block_count,StrictEqual_Baseline,44,0
@@ -32567,15 +32558,15 @@
block_count,StrictEqual_Baseline,50,0
block_count,StrictEqual_Baseline,51,0
block_count,StrictEqual_Baseline,52,0
-block_count,StrictEqual_Baseline,53,130
+block_count,StrictEqual_Baseline,53,129
block_count,StrictEqual_Baseline,54,1
block_count,StrictEqual_Baseline,55,0
block_count,StrictEqual_Baseline,56,0
block_count,StrictEqual_Baseline,57,0
block_count,StrictEqual_Baseline,58,0
-block_count,StrictEqual_Baseline,59,129
+block_count,StrictEqual_Baseline,59,128
block_count,StrictEqual_Baseline,60,3
-block_count,StrictEqual_Baseline,61,87
+block_count,StrictEqual_Baseline,61,86
block_count,StrictEqual_Baseline,62,39
block_count,StrictEqual_Baseline,63,39
block_count,StrictEqual_Baseline,64,22
@@ -32594,15 +32585,15 @@
block_count,StrictEqual_Baseline,77,0
block_count,StrictEqual_Baseline,78,0
block_count,StrictEqual_Baseline,79,0
-block_count,StrictEqual_Baseline,80,47
-block_count,StrictEqual_Baseline,81,277
-block_count,StrictEqual_Baseline,82,87
-block_count,StrictEqual_Baseline,83,514
+block_count,StrictEqual_Baseline,80,46
+block_count,StrictEqual_Baseline,81,272
+block_count,StrictEqual_Baseline,82,86
+block_count,StrictEqual_Baseline,83,510
block_count,StrictEqual_Baseline,84,0
-block_count,StrictEqual_Baseline,85,514
-block_count,LessThan_Baseline,0,481
-block_count,LessThan_Baseline,1,481
-block_count,LessThan_Baseline,2,42
+block_count,StrictEqual_Baseline,85,510
+block_count,LessThan_Baseline,0,475
+block_count,LessThan_Baseline,1,475
+block_count,LessThan_Baseline,2,41
block_count,LessThan_Baseline,3,10
block_count,LessThan_Baseline,4,0
block_count,LessThan_Baseline,5,0
@@ -32689,7 +32680,7 @@
block_count,LessThan_Baseline,86,0
block_count,LessThan_Baseline,87,0
block_count,LessThan_Baseline,88,9
-block_count,LessThan_Baseline,89,32
+block_count,LessThan_Baseline,89,31
block_count,LessThan_Baseline,90,0
block_count,LessThan_Baseline,91,0
block_count,LessThan_Baseline,92,0
@@ -32702,8 +32693,8 @@
block_count,LessThan_Baseline,99,0
block_count,LessThan_Baseline,100,0
block_count,LessThan_Baseline,101,0
-block_count,LessThan_Baseline,102,32
-block_count,LessThan_Baseline,103,438
+block_count,LessThan_Baseline,102,31
+block_count,LessThan_Baseline,103,434
block_count,LessThan_Baseline,104,1
block_count,LessThan_Baseline,105,0
block_count,LessThan_Baseline,106,0
@@ -32720,25 +32711,25 @@
block_count,LessThan_Baseline,117,0
block_count,LessThan_Baseline,118,0
block_count,LessThan_Baseline,119,1
-block_count,LessThan_Baseline,120,436
+block_count,LessThan_Baseline,120,432
block_count,LessThan_Baseline,121,114
-block_count,LessThan_Baseline,122,321
+block_count,LessThan_Baseline,122,318
block_count,LessThan_Baseline,123,0
block_count,LessThan_Baseline,124,0
block_count,LessThan_Baseline,125,0
block_count,LessThan_Baseline,126,0
block_count,LessThan_Baseline,127,0
block_count,LessThan_Baseline,128,0
-block_count,LessThan_Baseline,129,43
-block_count,LessThan_Baseline,130,34
-block_count,LessThan_Baseline,131,8
-block_count,LessThan_Baseline,132,149
-block_count,LessThan_Baseline,133,330
-block_count,LessThan_Baseline,134,481
+block_count,LessThan_Baseline,129,42
+block_count,LessThan_Baseline,130,33
+block_count,LessThan_Baseline,131,9
+block_count,LessThan_Baseline,132,148
+block_count,LessThan_Baseline,133,327
+block_count,LessThan_Baseline,134,475
block_count,LessThan_Baseline,135,0
-block_count,LessThan_Baseline,136,481
-block_count,GreaterThan_Baseline,0,166
-block_count,GreaterThan_Baseline,1,166
+block_count,LessThan_Baseline,136,475
+block_count,GreaterThan_Baseline,0,162
+block_count,GreaterThan_Baseline,1,163
block_count,GreaterThan_Baseline,2,15
block_count,GreaterThan_Baseline,3,9
block_count,GreaterThan_Baseline,4,0
@@ -32810,7 +32801,7 @@
block_count,GreaterThan_Baseline,70,0
block_count,GreaterThan_Baseline,71,0
block_count,GreaterThan_Baseline,72,0
-block_count,GreaterThan_Baseline,73,8
+block_count,GreaterThan_Baseline,73,9
block_count,GreaterThan_Baseline,74,0
block_count,GreaterThan_Baseline,75,0
block_count,GreaterThan_Baseline,76,0
@@ -32840,7 +32831,7 @@
block_count,GreaterThan_Baseline,100,0
block_count,GreaterThan_Baseline,101,0
block_count,GreaterThan_Baseline,102,5
-block_count,GreaterThan_Baseline,103,151
+block_count,GreaterThan_Baseline,103,147
block_count,GreaterThan_Baseline,104,0
block_count,GreaterThan_Baseline,105,0
block_count,GreaterThan_Baseline,106,0
@@ -32857,9 +32848,9 @@
block_count,GreaterThan_Baseline,117,0
block_count,GreaterThan_Baseline,118,0
block_count,GreaterThan_Baseline,119,0
-block_count,GreaterThan_Baseline,120,151
-block_count,GreaterThan_Baseline,121,96
-block_count,GreaterThan_Baseline,122,54
+block_count,GreaterThan_Baseline,120,147
+block_count,GreaterThan_Baseline,121,94
+block_count,GreaterThan_Baseline,122,53
block_count,GreaterThan_Baseline,123,0
block_count,GreaterThan_Baseline,124,0
block_count,GreaterThan_Baseline,125,0
@@ -32869,11 +32860,11 @@
block_count,GreaterThan_Baseline,129,14
block_count,GreaterThan_Baseline,130,8
block_count,GreaterThan_Baseline,131,6
-block_count,GreaterThan_Baseline,132,105
-block_count,GreaterThan_Baseline,133,61
-block_count,GreaterThan_Baseline,134,166
+block_count,GreaterThan_Baseline,132,102
+block_count,GreaterThan_Baseline,133,60
+block_count,GreaterThan_Baseline,134,162
block_count,GreaterThan_Baseline,135,0
-block_count,GreaterThan_Baseline,136,166
+block_count,GreaterThan_Baseline,136,162
block_count,LessThanOrEqual_Baseline,0,62
block_count,LessThanOrEqual_Baseline,1,62
block_count,LessThanOrEqual_Baseline,2,6
@@ -32963,7 +32954,7 @@
block_count,LessThanOrEqual_Baseline,86,0
block_count,LessThanOrEqual_Baseline,87,0
block_count,LessThanOrEqual_Baseline,88,2
-block_count,LessThanOrEqual_Baseline,89,3
+block_count,LessThanOrEqual_Baseline,89,4
block_count,LessThanOrEqual_Baseline,90,0
block_count,LessThanOrEqual_Baseline,91,0
block_count,LessThanOrEqual_Baseline,92,0
@@ -32976,7 +32967,7 @@
block_count,LessThanOrEqual_Baseline,99,0
block_count,LessThanOrEqual_Baseline,100,0
block_count,LessThanOrEqual_Baseline,101,0
-block_count,LessThanOrEqual_Baseline,102,3
+block_count,LessThanOrEqual_Baseline,102,4
block_count,LessThanOrEqual_Baseline,103,56
block_count,LessThanOrEqual_Baseline,104,1
block_count,LessThanOrEqual_Baseline,105,0
@@ -33013,8 +33004,8 @@
block_count,LessThanOrEqual_Baseline,136,62
block_count,GreaterThanOrEqual_Baseline,0,121
block_count,GreaterThanOrEqual_Baseline,1,121
-block_count,GreaterThanOrEqual_Baseline,2,13
-block_count,GreaterThanOrEqual_Baseline,3,9
+block_count,GreaterThanOrEqual_Baseline,2,14
+block_count,GreaterThanOrEqual_Baseline,3,10
block_count,GreaterThanOrEqual_Baseline,4,0
block_count,GreaterThanOrEqual_Baseline,5,0
block_count,GreaterThanOrEqual_Baseline,6,0
@@ -33084,7 +33075,7 @@
block_count,GreaterThanOrEqual_Baseline,70,0
block_count,GreaterThanOrEqual_Baseline,71,0
block_count,GreaterThanOrEqual_Baseline,72,0
-block_count,GreaterThanOrEqual_Baseline,73,8
+block_count,GreaterThanOrEqual_Baseline,73,9
block_count,GreaterThanOrEqual_Baseline,74,0
block_count,GreaterThanOrEqual_Baseline,75,0
block_count,GreaterThanOrEqual_Baseline,76,0
@@ -33099,8 +33090,8 @@
block_count,GreaterThanOrEqual_Baseline,85,0
block_count,GreaterThanOrEqual_Baseline,86,0
block_count,GreaterThanOrEqual_Baseline,87,0
-block_count,GreaterThanOrEqual_Baseline,88,8
-block_count,GreaterThanOrEqual_Baseline,89,4
+block_count,GreaterThanOrEqual_Baseline,88,9
+block_count,GreaterThanOrEqual_Baseline,89,3
block_count,GreaterThanOrEqual_Baseline,90,0
block_count,GreaterThanOrEqual_Baseline,91,0
block_count,GreaterThanOrEqual_Baseline,92,0
@@ -33113,8 +33104,8 @@
block_count,GreaterThanOrEqual_Baseline,99,0
block_count,GreaterThanOrEqual_Baseline,100,0
block_count,GreaterThanOrEqual_Baseline,101,0
-block_count,GreaterThanOrEqual_Baseline,102,4
-block_count,GreaterThanOrEqual_Baseline,103,108
+block_count,GreaterThanOrEqual_Baseline,102,3
+block_count,GreaterThanOrEqual_Baseline,103,107
block_count,GreaterThanOrEqual_Baseline,104,0
block_count,GreaterThanOrEqual_Baseline,105,0
block_count,GreaterThanOrEqual_Baseline,106,0
@@ -33131,20 +33122,20 @@
block_count,GreaterThanOrEqual_Baseline,117,0
block_count,GreaterThanOrEqual_Baseline,118,0
block_count,GreaterThanOrEqual_Baseline,119,0
-block_count,GreaterThanOrEqual_Baseline,120,107
-block_count,GreaterThanOrEqual_Baseline,121,63
-block_count,GreaterThanOrEqual_Baseline,122,44
+block_count,GreaterThanOrEqual_Baseline,120,106
+block_count,GreaterThanOrEqual_Baseline,121,62
+block_count,GreaterThanOrEqual_Baseline,122,43
block_count,GreaterThanOrEqual_Baseline,123,0
block_count,GreaterThanOrEqual_Baseline,124,0
block_count,GreaterThanOrEqual_Baseline,125,0
block_count,GreaterThanOrEqual_Baseline,126,0
block_count,GreaterThanOrEqual_Baseline,127,0
block_count,GreaterThanOrEqual_Baseline,128,0
-block_count,GreaterThanOrEqual_Baseline,129,13
+block_count,GreaterThanOrEqual_Baseline,129,14
block_count,GreaterThanOrEqual_Baseline,130,6
-block_count,GreaterThanOrEqual_Baseline,131,6
-block_count,GreaterThanOrEqual_Baseline,132,70
-block_count,GreaterThanOrEqual_Baseline,133,51
+block_count,GreaterThanOrEqual_Baseline,131,7
+block_count,GreaterThanOrEqual_Baseline,132,69
+block_count,GreaterThanOrEqual_Baseline,133,50
block_count,GreaterThanOrEqual_Baseline,134,121
block_count,GreaterThanOrEqual_Baseline,135,0
block_count,GreaterThanOrEqual_Baseline,136,121
@@ -33209,8 +33200,8 @@
block_count,Decrement_Baseline,23,56
block_count,Decrement_Baseline,24,0
block_count,Decrement_Baseline,25,56
-block_count,Increment_Baseline,0,324
-block_count,Increment_Baseline,1,324
+block_count,Increment_Baseline,0,322
+block_count,Increment_Baseline,1,322
block_count,Increment_Baseline,2,0
block_count,Increment_Baseline,3,0
block_count,Increment_Baseline,4,0
@@ -33225,16 +33216,16 @@
block_count,Increment_Baseline,13,0
block_count,Increment_Baseline,14,0
block_count,Increment_Baseline,15,0
-block_count,Increment_Baseline,16,324
-block_count,Increment_Baseline,17,324
+block_count,Increment_Baseline,16,322
+block_count,Increment_Baseline,17,322
block_count,Increment_Baseline,18,0
block_count,Increment_Baseline,19,0
block_count,Increment_Baseline,20,0
block_count,Increment_Baseline,21,0
block_count,Increment_Baseline,22,0
-block_count,Increment_Baseline,23,324
+block_count,Increment_Baseline,23,322
block_count,Increment_Baseline,24,0
-block_count,Increment_Baseline,25,324
+block_count,Increment_Baseline,25,322
block_count,Negate_Baseline,0,13
block_count,Negate_Baseline,1,13
block_count,Negate_Baseline,2,11
@@ -34177,11 +34168,11 @@
block_count,ObjectKeys,48,0
block_count,ObjectKeys,49,0
block_count,ObjectKeys,50,0
-block_count,ObjectPrototypeHasOwnProperty,0,243
+block_count,ObjectPrototypeHasOwnProperty,0,242
block_count,ObjectPrototypeHasOwnProperty,1,0
-block_count,ObjectPrototypeHasOwnProperty,2,243
-block_count,ObjectPrototypeHasOwnProperty,3,243
-block_count,ObjectPrototypeHasOwnProperty,4,243
+block_count,ObjectPrototypeHasOwnProperty,2,242
+block_count,ObjectPrototypeHasOwnProperty,3,242
+block_count,ObjectPrototypeHasOwnProperty,4,242
block_count,ObjectPrototypeHasOwnProperty,5,242
block_count,ObjectPrototypeHasOwnProperty,6,242
block_count,ObjectPrototypeHasOwnProperty,7,0
@@ -34201,7 +34192,7 @@
block_count,ObjectPrototypeHasOwnProperty,21,0
block_count,ObjectPrototypeHasOwnProperty,22,0
block_count,ObjectPrototypeHasOwnProperty,23,191
-block_count,ObjectPrototypeHasOwnProperty,24,188
+block_count,ObjectPrototypeHasOwnProperty,24,187
block_count,ObjectPrototypeHasOwnProperty,25,3
block_count,ObjectPrototypeHasOwnProperty,26,0
block_count,ObjectPrototypeHasOwnProperty,27,0
@@ -34249,7 +34240,7 @@
block_count,ObjectPrototypeHasOwnProperty,69,147
block_count,ObjectPrototypeHasOwnProperty,70,0
block_count,ObjectPrototypeHasOwnProperty,71,147
-block_count,ObjectPrototypeHasOwnProperty,72,163
+block_count,ObjectPrototypeHasOwnProperty,72,162
block_count,ObjectPrototypeHasOwnProperty,73,114
block_count,ObjectPrototypeHasOwnProperty,74,65
block_count,ObjectPrototypeHasOwnProperty,75,15
@@ -34475,8 +34466,8 @@
block_count,InstanceOf,34,0
block_count,InstanceOf,35,0
block_count,InstanceOf,36,11
-block_count,InstanceOf_Baseline,0,82
-block_count,InstanceOf_Baseline,1,82
+block_count,InstanceOf_Baseline,0,81
+block_count,InstanceOf_Baseline,1,81
block_count,InstanceOf_Baseline,2,2
block_count,InstanceOf_Baseline,3,0
block_count,InstanceOf_Baseline,4,0
@@ -34495,14 +34486,14 @@
block_count,InstanceOf_Baseline,17,0
block_count,InstanceOf_Baseline,18,0
block_count,InstanceOf_Baseline,19,2
-block_count,InstanceOf_Baseline,20,80
+block_count,InstanceOf_Baseline,20,79
block_count,InstanceOf_Baseline,21,0
-block_count,InstanceOf_Baseline,22,82
-block_count,InstanceOf_Baseline,23,82
+block_count,InstanceOf_Baseline,22,81
+block_count,InstanceOf_Baseline,23,81
block_count,InstanceOf_Baseline,24,0
-block_count,InstanceOf_Baseline,25,82
+block_count,InstanceOf_Baseline,25,81
block_count,InstanceOf_Baseline,26,0
-block_count,InstanceOf_Baseline,27,82
+block_count,InstanceOf_Baseline,27,81
block_count,InstanceOf_Baseline,28,0
block_count,InstanceOf_Baseline,29,0
block_count,InstanceOf_Baseline,30,0
@@ -34533,7 +34524,7 @@
block_count,InstanceOf_Baseline,55,0
block_count,InstanceOf_Baseline,56,0
block_count,InstanceOf_Baseline,57,0
-block_count,InstanceOf_Baseline,58,82
+block_count,InstanceOf_Baseline,58,81
block_count,InstanceOf_Baseline,59,0
block_count,InstanceOf_Baseline,60,0
block_count,ForInEnumerate,0,59
@@ -35206,16 +35197,16 @@
block_count,FindOrderedHashSetEntry,91,0
block_count,FindOrderedHashSetEntry,92,0
block_count,FindOrderedHashSetEntry,93,0
-block_count,SetConstructor,0,115
+block_count,SetConstructor,0,114
block_count,SetConstructor,1,0
-block_count,SetConstructor,2,115
-block_count,SetConstructor,3,115
+block_count,SetConstructor,2,114
+block_count,SetConstructor,3,114
block_count,SetConstructor,4,30
block_count,SetConstructor,5,84
-block_count,SetConstructor,6,115
-block_count,SetConstructor,7,115
+block_count,SetConstructor,6,114
+block_count,SetConstructor,7,114
block_count,SetConstructor,8,0
-block_count,SetConstructor,9,115
+block_count,SetConstructor,9,114
block_count,SetConstructor,10,0
block_count,SetConstructor,11,0
block_count,SetConstructor,12,0
@@ -35297,25 +35288,25 @@
block_count,SetConstructor,88,0
block_count,SetConstructor,89,0
block_count,SetConstructor,90,0
-block_count,SetConstructor,91,115
-block_count,SetConstructor,92,115
+block_count,SetConstructor,91,114
+block_count,SetConstructor,92,114
block_count,SetConstructor,93,0
-block_count,SetConstructor,94,115
+block_count,SetConstructor,94,114
block_count,SetConstructor,95,0
block_count,SetConstructor,96,0
-block_count,SetConstructor,97,115
+block_count,SetConstructor,97,114
block_count,SetConstructor,98,0
-block_count,SetConstructor,99,115
-block_count,SetConstructor,100,115
+block_count,SetConstructor,99,114
+block_count,SetConstructor,100,114
block_count,SetConstructor,101,0
block_count,SetConstructor,102,0
block_count,SetConstructor,103,0
block_count,SetConstructor,104,0
-block_count,SetConstructor,105,115
+block_count,SetConstructor,105,114
block_count,SetConstructor,106,0
-block_count,SetConstructor,107,115
-block_count,SetConstructor,108,115
-block_count,SetConstructor,109,115
+block_count,SetConstructor,107,114
+block_count,SetConstructor,108,114
+block_count,SetConstructor,109,114
block_count,SetConstructor,110,22
block_count,SetConstructor,111,0
block_count,SetConstructor,112,22
@@ -35639,13 +35630,13 @@
block_count,SetPrototypeAdd,20,50
block_count,SetPrototypeAdd,21,71
block_count,SetPrototypeAdd,22,71
-block_count,SetPrototypeAdd,23,101
+block_count,SetPrototypeAdd,23,100
block_count,SetPrototypeAdd,24,31
-block_count,SetPrototypeAdd,25,31
+block_count,SetPrototypeAdd,25,30
block_count,SetPrototypeAdd,26,29
block_count,SetPrototypeAdd,27,1
block_count,SetPrototypeAdd,28,0
-block_count,SetPrototypeAdd,29,30
+block_count,SetPrototypeAdd,29,29
block_count,SetPrototypeAdd,30,69
block_count,SetPrototypeAdd,31,0
block_count,SetPrototypeAdd,32,0
@@ -35985,10 +35976,10 @@
block_count,SetOrSetIteratorToList,54,0
block_count,SetOrSetIteratorToList,55,0
block_count,SetOrSetIteratorToList,56,0
-block_count,StringFromCharCode,0,30
+block_count,StringFromCharCode,0,31
block_count,StringFromCharCode,1,0
-block_count,StringFromCharCode,2,30
-block_count,StringFromCharCode,3,30
+block_count,StringFromCharCode,2,31
+block_count,StringFromCharCode,3,31
block_count,StringFromCharCode,4,8
block_count,StringFromCharCode,5,8
block_count,StringFromCharCode,6,8
@@ -36059,8 +36050,8 @@
block_count,StringFromCharCode,71,0
block_count,StringFromCharCode,72,0
block_count,StringFromCharCode,73,0
-block_count,StringFromCharCode,74,22
-block_count,StringFromCharCode,75,18
+block_count,StringFromCharCode,74,23
+block_count,StringFromCharCode,75,19
block_count,StringFromCharCode,76,3
block_count,StringFromCharCode,77,3
block_count,StringFromCharCode,78,2
@@ -36070,7 +36061,7 @@
block_count,StringFromCharCode,82,0
block_count,StringFromCharCode,83,2
block_count,StringFromCharCode,84,1
-block_count,StringFromCharCode,85,22
+block_count,StringFromCharCode,85,23
block_count,StringFromCharCode,86,0
block_count,StringFromCharCode,87,0
block_count,StringFromCharCode,88,0
@@ -36123,7 +36114,7 @@
block_count,StringPrototypeReplace,44,48
block_count,StringPrototypeReplace,45,0
block_count,StringPrototypeReplace,46,48
-block_count,StringPrototypeReplace,47,48
+block_count,StringPrototypeReplace,47,47
block_count,StringPrototypeReplace,48,0
block_count,StringPrototypeReplace,49,0
block_count,StringPrototypeReplace,50,0
@@ -36337,7 +36328,7 @@
block_count,StringPrototypeSplit,173,38
block_count,StringPrototypeSplit,174,422
block_count,StringPrototypeSplit,175,422
-block_count,StringPrototypeSplit,176,384
+block_count,StringPrototypeSplit,176,383
block_count,StringPrototypeSplit,177,38
block_count,StringPrototypeSplit,178,0
block_count,StringPrototypeSplit,179,0
@@ -36376,17 +36367,17 @@
block_count,TypedArrayPrototypeByteLength,10,0
block_count,TypedArrayPrototypeByteLength,11,0
block_count,TypedArrayPrototypeByteLength,12,0
-block_count,TypedArrayPrototypeLength,0,15
+block_count,TypedArrayPrototypeLength,0,14
block_count,TypedArrayPrototypeLength,1,0
-block_count,TypedArrayPrototypeLength,2,15
-block_count,TypedArrayPrototypeLength,3,15
-block_count,TypedArrayPrototypeLength,4,15
+block_count,TypedArrayPrototypeLength,2,14
+block_count,TypedArrayPrototypeLength,3,14
+block_count,TypedArrayPrototypeLength,4,14
block_count,TypedArrayPrototypeLength,5,0
-block_count,TypedArrayPrototypeLength,6,15
-block_count,TypedArrayPrototypeLength,7,15
-block_count,TypedArrayPrototypeLength,8,15
-block_count,TypedArrayPrototypeLength,9,15
-block_count,TypedArrayPrototypeLength,10,15
+block_count,TypedArrayPrototypeLength,6,14
+block_count,TypedArrayPrototypeLength,7,14
+block_count,TypedArrayPrototypeLength,8,14
+block_count,TypedArrayPrototypeLength,9,14
+block_count,TypedArrayPrototypeLength,10,14
block_count,TypedArrayPrototypeLength,11,0
block_count,TypedArrayPrototypeLength,12,0
block_count,TypedArrayPrototypeLength,13,0
@@ -36407,8 +36398,8 @@
block_count,TypedArrayPrototypeLength,28,0
block_count,TypedArrayPrototypeLength,29,0
block_count,TypedArrayPrototypeLength,30,0
-block_count,TypedArrayPrototypeLength,31,15
-block_count,TypedArrayPrototypeLength,32,15
+block_count,TypedArrayPrototypeLength,31,14
+block_count,TypedArrayPrototypeLength,32,14
block_count,WasmToJsWrapperCSA,0,0
block_count,WasmToJsWrapperCSA,1,0
block_count,WasmToJsWrapperCSA,2,0
@@ -37155,9 +37146,9 @@
block_count,WeakMapLookupHashIndex,30,0
block_count,WeakMapLookupHashIndex,31,74
block_count,WeakMapLookupHashIndex,32,74
-block_count,WeakMapLookupHashIndex,33,113
-block_count,WeakMapLookupHashIndex,34,113
-block_count,WeakMapLookupHashIndex,35,39
+block_count,WeakMapLookupHashIndex,33,110
+block_count,WeakMapLookupHashIndex,34,109
+block_count,WeakMapLookupHashIndex,35,36
block_count,WeakMapLookupHashIndex,36,73
block_count,WeakMapLookupHashIndex,37,0
block_count,WeakMapPrototypeGet,0,38
@@ -37701,26 +37692,26 @@
block_count,AsyncGeneratorYieldWithAwaitResolveClosure,3,8
block_count,AsyncGeneratorYieldWithAwaitResolveClosure,4,0
block_count,AsyncGeneratorYieldWithAwaitResolveClosure,5,8
-block_count,StringAdd_CheckNone,0,7924
-block_count,StringAdd_CheckNone,1,7499
-block_count,StringAdd_CheckNone,2,7450
-block_count,StringAdd_CheckNone,3,7450
-block_count,StringAdd_CheckNone,4,5995
-block_count,StringAdd_CheckNone,5,5962
-block_count,StringAdd_CheckNone,6,33
-block_count,StringAdd_CheckNone,7,5995
-block_count,StringAdd_CheckNone,8,5984
+block_count,StringAdd_CheckNone,0,7919
+block_count,StringAdd_CheckNone,1,7494
+block_count,StringAdd_CheckNone,2,7446
+block_count,StringAdd_CheckNone,3,7446
+block_count,StringAdd_CheckNone,4,5992
+block_count,StringAdd_CheckNone,5,5959
+block_count,StringAdd_CheckNone,6,32
+block_count,StringAdd_CheckNone,7,5992
+block_count,StringAdd_CheckNone,8,5980
block_count,StringAdd_CheckNone,9,11
-block_count,StringAdd_CheckNone,10,5995
+block_count,StringAdd_CheckNone,10,5992
block_count,StringAdd_CheckNone,11,2
-block_count,StringAdd_CheckNone,12,5992
-block_count,StringAdd_CheckNone,13,5995
+block_count,StringAdd_CheckNone,12,5989
+block_count,StringAdd_CheckNone,13,5992
block_count,StringAdd_CheckNone,14,0
-block_count,StringAdd_CheckNone,15,5995
-block_count,StringAdd_CheckNone,16,5995
-block_count,StringAdd_CheckNone,17,1455
-block_count,StringAdd_CheckNone,18,1481
-block_count,StringAdd_CheckNone,19,1480
+block_count,StringAdd_CheckNone,15,5991
+block_count,StringAdd_CheckNone,16,5992
+block_count,StringAdd_CheckNone,17,1454
+block_count,StringAdd_CheckNone,18,1480
+block_count,StringAdd_CheckNone,19,1479
block_count,StringAdd_CheckNone,20,25
block_count,StringAdd_CheckNone,21,1
block_count,StringAdd_CheckNone,22,0
@@ -37745,37 +37736,37 @@
block_count,StringAdd_CheckNone,41,0
block_count,StringAdd_CheckNone,42,0
block_count,StringAdd_CheckNone,43,25
-block_count,StringAdd_CheckNone,44,1454
-block_count,StringAdd_CheckNone,45,1445
-block_count,StringAdd_CheckNone,46,1445
-block_count,StringAdd_CheckNone,47,1445
+block_count,StringAdd_CheckNone,44,1453
+block_count,StringAdd_CheckNone,45,1444
+block_count,StringAdd_CheckNone,46,1444
+block_count,StringAdd_CheckNone,47,1444
block_count,StringAdd_CheckNone,48,0
-block_count,StringAdd_CheckNone,49,1445
+block_count,StringAdd_CheckNone,49,1444
block_count,StringAdd_CheckNone,50,0
block_count,StringAdd_CheckNone,51,0
-block_count,StringAdd_CheckNone,52,1445
+block_count,StringAdd_CheckNone,52,1444
block_count,StringAdd_CheckNone,53,0
-block_count,StringAdd_CheckNone,54,1445
-block_count,StringAdd_CheckNone,55,839
-block_count,StringAdd_CheckNone,56,606
-block_count,StringAdd_CheckNone,57,1477
+block_count,StringAdd_CheckNone,54,1444
+block_count,StringAdd_CheckNone,55,838
+block_count,StringAdd_CheckNone,56,605
+block_count,StringAdd_CheckNone,57,1476
block_count,StringAdd_CheckNone,58,870
-block_count,StringAdd_CheckNone,59,606
-block_count,StringAdd_CheckNone,60,1445
+block_count,StringAdd_CheckNone,59,605
+block_count,StringAdd_CheckNone,60,1444
block_count,StringAdd_CheckNone,61,358
-block_count,StringAdd_CheckNone,62,1086
-block_count,StringAdd_CheckNone,63,1445
+block_count,StringAdd_CheckNone,62,1085
+block_count,StringAdd_CheckNone,63,1444
block_count,StringAdd_CheckNone,64,0
-block_count,StringAdd_CheckNone,65,1445
-block_count,StringAdd_CheckNone,66,1024
-block_count,StringAdd_CheckNone,67,421
+block_count,StringAdd_CheckNone,65,1444
+block_count,StringAdd_CheckNone,66,1023
+block_count,StringAdd_CheckNone,67,420
block_count,StringAdd_CheckNone,68,534
block_count,StringAdd_CheckNone,69,113
-block_count,StringAdd_CheckNone,70,421
-block_count,StringAdd_CheckNone,71,1445
+block_count,StringAdd_CheckNone,70,420
+block_count,StringAdd_CheckNone,71,1444
block_count,StringAdd_CheckNone,72,348
block_count,StringAdd_CheckNone,73,1096
-block_count,StringAdd_CheckNone,74,1445
+block_count,StringAdd_CheckNone,74,1444
block_count,StringAdd_CheckNone,75,0
block_count,StringAdd_CheckNone,76,9
block_count,StringAdd_CheckNone,77,9
@@ -37815,23 +37806,23 @@
block_count,StringAdd_CheckNone,111,0
block_count,StringAdd_CheckNone,112,48
block_count,StringAdd_CheckNone,113,425
-block_count,SubString,0,1672
-block_count,SubString,1,1440
-block_count,SubString,2,1326
-block_count,SubString,3,1054
+block_count,SubString,0,1671
+block_count,SubString,1,1439
+block_count,SubString,2,1325
+block_count,SubString,3,1053
block_count,SubString,4,197
block_count,SubString,5,395
block_count,SubString,6,65
block_count,SubString,7,65
block_count,SubString,8,0
-block_count,SubString,9,124
+block_count,SubString,9,123
block_count,SubString,10,7
block_count,SubString,11,197
block_count,SubString,12,0
block_count,SubString,13,197
block_count,SubString,14,0
-block_count,SubString,15,856
-block_count,SubString,16,1054
+block_count,SubString,15,855
+block_count,SubString,16,1053
block_count,SubString,17,457
block_count,SubString,18,1
block_count,SubString,19,0
@@ -38040,17 +38031,17 @@
block_count,SubString,222,113
block_count,SubString,223,231
block_count,SubString,224,231
-block_count,GetProperty,0,503
-block_count,GetProperty,1,503
+block_count,GetProperty,0,502
+block_count,GetProperty,1,502
block_count,GetProperty,2,0
-block_count,GetProperty,3,502
-block_count,GetProperty,4,498
-block_count,GetProperty,5,498
-block_count,GetProperty,6,498
+block_count,GetProperty,3,501
+block_count,GetProperty,4,497
+block_count,GetProperty,5,497
+block_count,GetProperty,6,497
block_count,GetProperty,7,0
block_count,GetProperty,8,0
block_count,GetProperty,9,0
-block_count,GetProperty,10,498
+block_count,GetProperty,10,497
block_count,GetProperty,11,358
block_count,GetProperty,12,0
block_count,GetProperty,13,0
@@ -38069,12 +38060,12 @@
block_count,GetProperty,26,0
block_count,GetProperty,27,0
block_count,GetProperty,28,0
-block_count,GetProperty,29,139
-block_count,GetProperty,30,498
-block_count,GetProperty,31,1302
-block_count,GetProperty,32,1302
-block_count,GetProperty,33,1301
-block_count,GetProperty,34,1278
+block_count,GetProperty,29,138
+block_count,GetProperty,30,497
+block_count,GetProperty,31,1300
+block_count,GetProperty,32,1300
+block_count,GetProperty,33,1299
+block_count,GetProperty,34,1276
block_count,GetProperty,35,44
block_count,GetProperty,36,44
block_count,GetProperty,37,0
@@ -38100,29 +38091,29 @@
block_count,GetProperty,57,44
block_count,GetProperty,58,0
block_count,GetProperty,59,0
-block_count,GetProperty,60,1234
+block_count,GetProperty,60,1232
block_count,GetProperty,61,0
-block_count,GetProperty,62,1234
-block_count,GetProperty,63,58
-block_count,GetProperty,64,1176
-block_count,GetProperty,65,3032
-block_count,GetProperty,66,2720
-block_count,GetProperty,67,2598
-block_count,GetProperty,68,1856
-block_count,GetProperty,69,742
+block_count,GetProperty,62,1232
+block_count,GetProperty,63,57
+block_count,GetProperty,64,1174
+block_count,GetProperty,65,3026
+block_count,GetProperty,66,2715
+block_count,GetProperty,67,2593
+block_count,GetProperty,68,1852
+block_count,GetProperty,69,740
block_count,GetProperty,70,122
-block_count,GetProperty,71,311
-block_count,GetProperty,72,800
-block_count,GetProperty,73,477
-block_count,GetProperty,74,323
-block_count,GetProperty,75,313
+block_count,GetProperty,71,310
+block_count,GetProperty,72,798
+block_count,GetProperty,73,476
+block_count,GetProperty,74,322
+block_count,GetProperty,75,312
block_count,GetProperty,76,9
-block_count,GetProperty,77,488
+block_count,GetProperty,77,487
block_count,GetProperty,78,2
-block_count,GetProperty,79,486
-block_count,GetProperty,80,472
+block_count,GetProperty,79,485
+block_count,GetProperty,80,471
block_count,GetProperty,81,0
-block_count,GetProperty,82,472
+block_count,GetProperty,82,471
block_count,GetProperty,83,13
block_count,GetProperty,84,0
block_count,GetProperty,85,13
@@ -38130,7 +38121,7 @@
block_count,GetProperty,87,0
block_count,GetProperty,88,0
block_count,GetProperty,89,0
-block_count,GetProperty,90,488
+block_count,GetProperty,90,487
block_count,GetProperty,91,22
block_count,GetProperty,92,0
block_count,GetProperty,93,0
@@ -38173,8 +38164,8 @@
block_count,GetProperty,130,0
block_count,GetProperty,131,0
block_count,GetProperty,132,0
-block_count,GetProperty,133,814
-block_count,GetProperty,134,812
+block_count,GetProperty,133,812
+block_count,GetProperty,134,811
block_count,GetProperty,135,1
block_count,GetProperty,136,0
block_count,GetProperty,137,1
@@ -38212,10 +38203,10 @@
block_count,GetProperty,169,0
block_count,GetProperty,170,0
block_count,GetProperty,171,0
-block_count,GetProperty,172,814
-block_count,GetProperty,173,804
+block_count,GetProperty,172,812
+block_count,GetProperty,173,802
block_count,GetProperty,174,9
-block_count,GetProperty,175,488
+block_count,GetProperty,175,487
block_count,GetProperty,176,2
block_count,GetProperty,177,2
block_count,GetProperty,178,0
@@ -38255,7 +38246,7 @@
block_count,GetProperty,212,0
block_count,GetProperty,213,0
block_count,GetProperty,214,0
-block_count,GetProperty,215,486
+block_count,GetProperty,215,485
block_count,GetProperty,216,0
block_count,GetProperty,217,4
block_count,GetProperty,218,0
@@ -41728,10 +41719,10 @@
block_count,ArrayFrom,208,0
block_count,ArrayFrom,209,0
block_count,ArrayFrom,210,0
-block_count,ArrayIsArray,0,6
+block_count,ArrayIsArray,0,5
block_count,ArrayIsArray,1,0
-block_count,ArrayIsArray,2,6
-block_count,ArrayIsArray,3,6
+block_count,ArrayIsArray,2,5
+block_count,ArrayIsArray,3,5
block_count,ArrayIsArray,4,5
block_count,ArrayIsArray,5,3
block_count,ArrayIsArray,6,2
@@ -42952,7 +42943,7 @@
block_count,ArrayPrototypeJoinImpl,1081,105
block_count,ArrayPrototypeJoinImpl,1082,0
block_count,ArrayPrototypeJoinImpl,1083,105
-block_count,ArrayPrototypeJoinImpl,1084,760
+block_count,ArrayPrototypeJoinImpl,1084,759
block_count,ArrayPrototypeJoinImpl,1085,654
block_count,ArrayPrototypeJoinImpl,1086,654
block_count,ArrayPrototypeJoinImpl,1087,654
@@ -42981,8 +42972,8 @@
block_count,ArrayPrototypeJoinImpl,1110,654
block_count,ArrayPrototypeJoinImpl,1111,654
block_count,ArrayPrototypeJoinImpl,1112,534
-block_count,ArrayPrototypeJoinImpl,1113,510
-block_count,ArrayPrototypeJoinImpl,1114,510
+block_count,ArrayPrototypeJoinImpl,1113,509
+block_count,ArrayPrototypeJoinImpl,1114,509
block_count,ArrayPrototypeJoinImpl,1115,0
block_count,ArrayPrototypeJoinImpl,1116,24
block_count,ArrayPrototypeJoinImpl,1117,0
@@ -43363,9 +43354,9 @@
block_count,ArrayPrototypeJoinImpl,1492,0
block_count,ArrayPrototypeJoinImpl,1493,0
block_count,ArrayPrototypeJoinImpl,1494,0
-block_count,ArrayPrototypeJoinImpl,1495,544
+block_count,ArrayPrototypeJoinImpl,1495,543
block_count,ArrayPrototypeJoinImpl,1496,105
-block_count,ArrayPrototypeJoinImpl,1497,649
+block_count,ArrayPrototypeJoinImpl,1497,648
block_count,ArrayPrototypeJoinImpl,1498,654
block_count,ArrayPrototypeJoinImpl,1499,654
block_count,ArrayPrototypeJoinImpl,1500,654
@@ -44261,7 +44252,7 @@
block_count,ArrayMap,76,7
block_count,ArrayMap,77,0
block_count,ArrayMap,78,10
-block_count,ArrayMap,79,37
+block_count,ArrayMap,79,38
block_count,ArrayMap,80,27
block_count,ArrayMap,81,27
block_count,ArrayMap,82,27
@@ -44394,7 +44385,7 @@
block_count,ArrayMap,209,0
block_count,ArrayMap,210,0
block_count,ArrayMap,211,10
-block_count,ArrayMap,212,3
+block_count,ArrayMap,212,4
block_count,ArrayMap,213,6
block_count,ArrayMap,214,6
block_count,ArrayMap,215,6
@@ -45086,7 +45077,7 @@
block_count,ArrayPrototypeShift,43,197
block_count,ArrayPrototypeShift,44,197
block_count,ArrayPrototypeShift,45,196
-block_count,ArrayPrototypeShift,46,196
+block_count,ArrayPrototypeShift,46,195
block_count,ArrayPrototypeShift,47,192
block_count,ArrayPrototypeShift,48,192
block_count,ArrayPrototypeShift,49,192
@@ -46239,10 +46230,10 @@
block_count,ArrayPrototypeSplice,521,0
block_count,ArrayPrototypeSplice,522,2
block_count,ArrayPrototypeSplice,523,638
-block_count,ArrayPrototypeSplice,524,636
+block_count,ArrayPrototypeSplice,524,635
block_count,ArrayPrototypeSplice,525,219
block_count,ArrayPrototypeSplice,526,416
-block_count,ArrayPrototypeSplice,527,636
+block_count,ArrayPrototypeSplice,527,635
block_count,ArrayPrototypeSplice,528,2
block_count,ArrayPrototypeSplice,529,0
block_count,ArrayPrototypeSplice,530,0
@@ -46831,7 +46822,7 @@
block_count,BooleanPrototypeToString,9,0
block_count,ToString,0,74
block_count,ToString,1,113
-block_count,ToString,2,103
+block_count,ToString,2,102
block_count,ToString,3,83
block_count,ToString,4,39
block_count,ToString,5,39
@@ -47103,32 +47094,32 @@
block_count,StringPrototypeCharAt,45,0
block_count,StringPrototypeCharAt,46,17
block_count,StringPrototypeCharAt,47,0
-block_count,StringPrototypeCharCodeAt,0,66
+block_count,StringPrototypeCharCodeAt,0,65
block_count,StringPrototypeCharCodeAt,1,0
-block_count,StringPrototypeCharCodeAt,2,66
-block_count,StringPrototypeCharCodeAt,3,66
-block_count,StringPrototypeCharCodeAt,4,66
+block_count,StringPrototypeCharCodeAt,2,65
+block_count,StringPrototypeCharCodeAt,3,65
+block_count,StringPrototypeCharCodeAt,4,65
block_count,StringPrototypeCharCodeAt,5,0
block_count,StringPrototypeCharCodeAt,6,0
block_count,StringPrototypeCharCodeAt,7,0
-block_count,StringPrototypeCharCodeAt,8,66
+block_count,StringPrototypeCharCodeAt,8,65
block_count,StringPrototypeCharCodeAt,9,0
-block_count,StringPrototypeCharCodeAt,10,66
-block_count,StringPrototypeCharCodeAt,11,66
+block_count,StringPrototypeCharCodeAt,10,65
+block_count,StringPrototypeCharCodeAt,11,65
block_count,StringPrototypeCharCodeAt,12,0
-block_count,StringPrototypeCharCodeAt,13,66
-block_count,StringPrototypeCharCodeAt,14,66
-block_count,StringPrototypeCharCodeAt,15,66
-block_count,StringPrototypeCharCodeAt,16,28
-block_count,StringPrototypeCharCodeAt,17,56
-block_count,StringPrototypeCharCodeAt,18,27
+block_count,StringPrototypeCharCodeAt,13,65
+block_count,StringPrototypeCharCodeAt,14,65
+block_count,StringPrototypeCharCodeAt,15,65
+block_count,StringPrototypeCharCodeAt,16,27
+block_count,StringPrototypeCharCodeAt,17,55
+block_count,StringPrototypeCharCodeAt,18,26
block_count,StringPrototypeCharCodeAt,19,26
block_count,StringPrototypeCharCodeAt,20,0
-block_count,StringPrototypeCharCodeAt,21,0
+block_count,StringPrototypeCharCodeAt,21,1
block_count,StringPrototypeCharCodeAt,22,0
-block_count,StringPrototypeCharCodeAt,23,28
+block_count,StringPrototypeCharCodeAt,23,27
block_count,StringPrototypeCharCodeAt,24,0
-block_count,StringPrototypeCharCodeAt,25,28
+block_count,StringPrototypeCharCodeAt,25,27
block_count,StringPrototypeCharCodeAt,26,0
block_count,StringPrototypeCharCodeAt,27,0
block_count,StringPrototypeCharCodeAt,28,0
@@ -47139,10 +47130,10 @@
block_count,StringPrototypeCharCodeAt,33,0
block_count,StringPrototypeCharCodeAt,34,0
block_count,StringPrototypeCharCodeAt,35,0
-block_count,StringPrototypeCharCodeAt,36,38
-block_count,StringPrototypeCharCodeAt,37,66
-block_count,StringPrototypeCharCodeAt,38,66
-block_count,StringPrototypeCharCodeAt,39,14
+block_count,StringPrototypeCharCodeAt,36,37
+block_count,StringPrototypeCharCodeAt,37,64
+block_count,StringPrototypeCharCodeAt,38,64
+block_count,StringPrototypeCharCodeAt,39,12
block_count,StringPrototypeCharCodeAt,40,52
block_count,StringPrototypeCharCodeAt,41,0
block_count,StringPrototypeCodePointAt,0,0
@@ -47789,9 +47780,9 @@
block_count,StringAddConvertRight,216,0
block_count,StringAddConvertRight,217,0
block_count,StringAddConvertRight,218,14
-block_count,StringAddConvertRight,219,15
+block_count,StringAddConvertRight,219,14
block_count,StringAddConvertRight,220,0
-block_count,StringAddConvertRight,221,15
+block_count,StringAddConvertRight,221,14
block_count,StringCharAt,0,9
block_count,StringCharAt,1,1
block_count,StringCharAt,2,3
@@ -47838,7 +47829,7 @@
block_count,FastNewFunctionContextFunction,10,69
block_count,FastNewFunctionContextFunction,11,0
block_count,FastNewFunctionContextFunction,12,69
-block_count,FastNewFunctionContextFunction,13,913
+block_count,FastNewFunctionContextFunction,13,912
block_count,FastNewFunctionContextFunction,14,843
block_count,FastNewFunctionContextFunction,15,69
block_count,FastNewFunctionContextFunction,16,69
@@ -47905,7 +47896,7 @@
block_count,FastNewFunctionContextFunctionWithCells,58,25
block_count,FastNewFunctionContextFunctionWithCells,59,0
block_count,FastNewFunctionContextFunctionWithCells,60,25
-block_count,FastNewFunctionContextFunctionWithCells,61,21
+block_count,FastNewFunctionContextFunctionWithCells,61,22
block_count,FastNewFunctionContextFunctionWithCells,62,3
block_count,FastNewFunctionContextFunctionWithCells,63,25
block_count,FastNewFunctionContextFunctionWithCells,64,25
@@ -47927,7 +47918,7 @@
block_count,CreateShallowArrayLiteral,2,0
block_count,CreateShallowArrayLiteral,3,20
block_count,CreateShallowArrayLiteral,4,20
-block_count,CreateShallowArrayLiteral,5,18
+block_count,CreateShallowArrayLiteral,5,17
block_count,CreateShallowArrayLiteral,6,13
block_count,CreateShallowArrayLiteral,7,13
block_count,CreateShallowArrayLiteral,8,13
@@ -47962,7 +47953,7 @@
block_count,CreateShallowArrayLiteral,37,13
block_count,CreateShallowArrayLiteral,38,0
block_count,CreateShallowArrayLiteral,39,4
-block_count,CreateShallowArrayLiteral,40,18
+block_count,CreateShallowArrayLiteral,40,17
block_count,CreateShallowArrayLiteral,41,2
block_count,CreateShallowArrayLiteral,42,2
block_count,CreateShallowArrayLiteral,43,0
@@ -47970,10 +47961,10 @@
block_count,CreateShallowArrayLiteral,45,0
block_count,CreateShallowArrayLiteral,46,2
block_count,CreateShallowArrayLiteral,47,1
-block_count,CreateShallowArrayLiteral,48,0
+block_count,CreateShallowArrayLiteral,48,1
block_count,CreateShallowArrayLiteral,49,2
block_count,CreateShallowArrayLiteral,50,2
-block_count,CreateShallowArrayLiteral,51,0
+block_count,CreateShallowArrayLiteral,51,1
block_count,CreateShallowArrayLiteral,52,1
block_count,CreateShallowArrayLiteral,53,2
block_count,CreateShallowArrayLiteral,54,0
@@ -48017,14 +48008,14 @@
block_count,CreateShallowObjectLiteral,0,32
block_count,CreateShallowObjectLiteral,1,32
block_count,CreateShallowObjectLiteral,2,0
-block_count,CreateShallowObjectLiteral,3,31
-block_count,CreateShallowObjectLiteral,4,31
-block_count,CreateShallowObjectLiteral,5,31
-block_count,CreateShallowObjectLiteral,6,31
+block_count,CreateShallowObjectLiteral,3,32
+block_count,CreateShallowObjectLiteral,4,32
+block_count,CreateShallowObjectLiteral,5,32
+block_count,CreateShallowObjectLiteral,6,32
block_count,CreateShallowObjectLiteral,7,0
-block_count,CreateShallowObjectLiteral,8,31
+block_count,CreateShallowObjectLiteral,8,32
block_count,CreateShallowObjectLiteral,9,0
-block_count,CreateShallowObjectLiteral,10,31
+block_count,CreateShallowObjectLiteral,10,32
block_count,CreateShallowObjectLiteral,11,0
block_count,CreateShallowObjectLiteral,12,0
block_count,CreateShallowObjectLiteral,13,0
@@ -48066,7 +48057,7 @@
block_count,CreateShallowObjectLiteral,49,0
block_count,CreateShallowObjectLiteral,50,0
block_count,CreateShallowObjectLiteral,51,0
-block_count,CreateShallowObjectLiteral,52,31
+block_count,CreateShallowObjectLiteral,52,32
block_count,CreateShallowObjectLiteral,53,0
block_count,CreateShallowObjectLiteral,54,0
block_count,CreateShallowObjectLiteral,55,0
@@ -48134,17 +48125,17 @@
block_count,CreateShallowObjectLiteral,117,0
block_count,CreateShallowObjectLiteral,118,0
block_count,CreateShallowObjectLiteral,119,0
-block_count,CreateShallowObjectLiteral,120,31
-block_count,CreateShallowObjectLiteral,121,31
-block_count,CreateShallowObjectLiteral,122,31
+block_count,CreateShallowObjectLiteral,120,32
+block_count,CreateShallowObjectLiteral,121,32
+block_count,CreateShallowObjectLiteral,122,32
block_count,CreateShallowObjectLiteral,123,0
-block_count,CreateShallowObjectLiteral,124,31
+block_count,CreateShallowObjectLiteral,124,32
block_count,CreateShallowObjectLiteral,125,0
block_count,CreateShallowObjectLiteral,126,0
-block_count,CreateShallowObjectLiteral,127,31
-block_count,CreateShallowObjectLiteral,128,31
-block_count,CreateShallowObjectLiteral,129,92
-block_count,CreateShallowObjectLiteral,130,83
+block_count,CreateShallowObjectLiteral,127,32
+block_count,CreateShallowObjectLiteral,128,32
+block_count,CreateShallowObjectLiteral,129,93
+block_count,CreateShallowObjectLiteral,130,84
block_count,CreateShallowObjectLiteral,131,16
block_count,CreateShallowObjectLiteral,132,0
block_count,CreateShallowObjectLiteral,133,0
@@ -48178,7 +48169,7 @@
block_count,CreateShallowObjectLiteral,161,67
block_count,CreateShallowObjectLiteral,162,8
block_count,CreateShallowObjectLiteral,163,92
-block_count,CreateShallowObjectLiteral,164,60
+block_count,CreateShallowObjectLiteral,164,61
block_count,CreateShallowObjectLiteral,165,31
block_count,CreateShallowObjectLiteral,166,0
block_count,CreateShallowObjectLiteral,167,0
@@ -48316,7 +48307,7 @@
block_count,NonNumberToNumeric,19,2
block_count,NonNumberToNumeric,20,5
block_count,NonNumberToNumeric,21,5
-block_count,NumberToString,0,1220
+block_count,NumberToString,0,1219
block_count,NumberToString,1,47
block_count,NumberToString,2,47
block_count,NumberToString,3,0
@@ -48330,13 +48321,13 @@
block_count,NumberToString,11,47
block_count,NumberToString,12,47
block_count,NumberToString,13,20
-block_count,NumberToString,14,27
+block_count,NumberToString,14,26
block_count,NumberToString,15,2
block_count,NumberToString,16,24
block_count,NumberToString,17,0
-block_count,NumberToString,18,1172
-block_count,NumberToString,19,1172
-block_count,NumberToString,20,967
+block_count,NumberToString,18,1171
+block_count,NumberToString,19,1171
+block_count,NumberToString,20,966
block_count,NumberToString,21,205
block_count,NumberToString,22,205
block_count,NumberToString,23,0
@@ -48383,11 +48374,11 @@
block_count,NumberToString,64,0
block_count,NumberToString,65,0
block_count,NumberToString,66,0
-block_count,NumberToString,67,1172
-block_count,NumberToString,68,1197
+block_count,NumberToString,67,1171
+block_count,NumberToString,68,1196
block_count,NumberToString,69,23
block_count,ToBoolean,0,26
-block_count,ToBoolean,1,26
+block_count,ToBoolean,1,25
block_count,ToBoolean,2,23
block_count,ToBoolean,3,22
block_count,ToBoolean,4,22
@@ -48407,24 +48398,24 @@
block_count,ToBoolean,18,0
block_count,ToBoolean,19,0
block_count,ToBoolean,20,0
-block_count,ToBooleanForBaselineJump,0,1116
-block_count,ToBooleanForBaselineJump,1,1030
-block_count,ToBooleanForBaselineJump,2,626
-block_count,ToBooleanForBaselineJump,3,393
-block_count,ToBooleanForBaselineJump,4,392
-block_count,ToBooleanForBaselineJump,5,189
-block_count,ToBooleanForBaselineJump,6,188
-block_count,ToBooleanForBaselineJump,7,188
+block_count,ToBooleanForBaselineJump,0,1103
+block_count,ToBooleanForBaselineJump,1,1018
+block_count,ToBooleanForBaselineJump,2,618
+block_count,ToBooleanForBaselineJump,3,386
+block_count,ToBooleanForBaselineJump,4,386
+block_count,ToBooleanForBaselineJump,5,187
+block_count,ToBooleanForBaselineJump,6,185
+block_count,ToBooleanForBaselineJump,7,185
block_count,ToBooleanForBaselineJump,8,0
block_count,ToBooleanForBaselineJump,9,0
block_count,ToBooleanForBaselineJump,10,0
block_count,ToBooleanForBaselineJump,11,1
block_count,ToBooleanForBaselineJump,12,0
block_count,ToBooleanForBaselineJump,13,1
-block_count,ToBooleanForBaselineJump,14,203
+block_count,ToBooleanForBaselineJump,14,199
block_count,ToBooleanForBaselineJump,15,0
-block_count,ToBooleanForBaselineJump,16,232
-block_count,ToBooleanForBaselineJump,17,404
+block_count,ToBooleanForBaselineJump,16,231
+block_count,ToBooleanForBaselineJump,17,399
block_count,ToBooleanForBaselineJump,18,85
block_count,ToBooleanForBaselineJump,19,52
block_count,ToBooleanForBaselineJump,20,33
@@ -48477,10 +48468,10 @@
block_count,ToName,0,48
block_count,ToName,1,91
block_count,ToName,2,89
-block_count,ToName,3,43
-block_count,ToName,4,43
-block_count,ToName,5,43
-block_count,ToName,6,43
+block_count,ToName,3,42
+block_count,ToName,4,42
+block_count,ToName,5,42
+block_count,ToName,6,42
block_count,ToName,7,0
block_count,ToName,8,0
block_count,ToName,9,0
@@ -48620,16 +48611,16 @@
block_count,NonPrimitiveToPrimitive_Default,10,181
block_count,NonPrimitiveToPrimitive_Default,11,0
block_count,NonPrimitiveToPrimitive_Default,12,181
-block_count,NonPrimitiveToPrimitive_Default,13,61
+block_count,NonPrimitiveToPrimitive_Default,13,60
block_count,NonPrimitiveToPrimitive_Default,14,120
-block_count,NonPrimitiveToPrimitive_Default,15,61
+block_count,NonPrimitiveToPrimitive_Default,15,60
block_count,NonPrimitiveToPrimitive_Default,16,0
-block_count,NonPrimitiveToPrimitive_Default,17,61
-block_count,NonPrimitiveToPrimitive_Default,18,61
+block_count,NonPrimitiveToPrimitive_Default,17,60
+block_count,NonPrimitiveToPrimitive_Default,18,60
block_count,NonPrimitiveToPrimitive_Default,19,0
block_count,NonPrimitiveToPrimitive_Default,20,0
block_count,NonPrimitiveToPrimitive_Default,21,0
-block_count,NonPrimitiveToPrimitive_Default,22,61
+block_count,NonPrimitiveToPrimitive_Default,22,60
block_count,NonPrimitiveToPrimitive_Default,23,59
block_count,NonPrimitiveToPrimitive_Default,24,1
block_count,NonPrimitiveToPrimitive_Default,25,59
@@ -48729,7 +48720,7 @@
block_count,NonPrimitiveToPrimitive_Number,35,0
block_count,NonPrimitiveToPrimitive_Number,36,43
block_count,NonPrimitiveToPrimitive_Number,37,14
-block_count,NonPrimitiveToPrimitive_String,0,43
+block_count,NonPrimitiveToPrimitive_String,0,42
block_count,NonPrimitiveToPrimitive_String,1,0
block_count,NonPrimitiveToPrimitive_String,2,0
block_count,NonPrimitiveToPrimitive_String,3,0
@@ -48739,42 +48730,42 @@
block_count,NonPrimitiveToPrimitive_String,7,0
block_count,NonPrimitiveToPrimitive_String,8,0
block_count,NonPrimitiveToPrimitive_String,9,0
-block_count,NonPrimitiveToPrimitive_String,10,43
+block_count,NonPrimitiveToPrimitive_String,10,42
block_count,NonPrimitiveToPrimitive_String,11,0
-block_count,NonPrimitiveToPrimitive_String,12,43
-block_count,NonPrimitiveToPrimitive_String,13,43
+block_count,NonPrimitiveToPrimitive_String,12,42
+block_count,NonPrimitiveToPrimitive_String,13,42
block_count,NonPrimitiveToPrimitive_String,14,0
-block_count,NonPrimitiveToPrimitive_String,15,43
+block_count,NonPrimitiveToPrimitive_String,15,42
block_count,NonPrimitiveToPrimitive_String,16,0
-block_count,NonPrimitiveToPrimitive_String,17,43
-block_count,NonPrimitiveToPrimitive_String,18,43
+block_count,NonPrimitiveToPrimitive_String,17,42
+block_count,NonPrimitiveToPrimitive_String,18,42
block_count,NonPrimitiveToPrimitive_String,19,0
block_count,NonPrimitiveToPrimitive_String,20,0
block_count,NonPrimitiveToPrimitive_String,21,0
-block_count,NonPrimitiveToPrimitive_String,22,43
-block_count,NonPrimitiveToPrimitive_String,23,43
+block_count,NonPrimitiveToPrimitive_String,22,42
+block_count,NonPrimitiveToPrimitive_String,23,42
block_count,NonPrimitiveToPrimitive_String,24,0
-block_count,NonPrimitiveToPrimitive_String,25,43
-block_count,NonPrimitiveToPrimitive_String,26,43
+block_count,NonPrimitiveToPrimitive_String,25,42
+block_count,NonPrimitiveToPrimitive_String,26,42
block_count,NonPrimitiveToPrimitive_String,27,0
-block_count,NonPrimitiveToPrimitive_String,28,43
+block_count,NonPrimitiveToPrimitive_String,28,42
block_count,NonPrimitiveToPrimitive_String,29,0
block_count,NonPrimitiveToPrimitive_String,30,0
block_count,NonPrimitiveToPrimitive_String,31,0
block_count,NonPrimitiveToPrimitive_String,32,0
block_count,NonPrimitiveToPrimitive_String,33,0
-block_count,NonPrimitiveToPrimitive_String,34,43
-block_count,NonPrimitiveToPrimitive_String,35,43
+block_count,NonPrimitiveToPrimitive_String,34,42
+block_count,NonPrimitiveToPrimitive_String,35,42
block_count,NonPrimitiveToPrimitive_String,36,0
-block_count,NonPrimitiveToPrimitive_String,37,43
-block_count,NonPrimitiveToPrimitive_String,38,43
-block_count,NonPrimitiveToPrimitive_String,39,43
+block_count,NonPrimitiveToPrimitive_String,37,42
+block_count,NonPrimitiveToPrimitive_String,38,42
+block_count,NonPrimitiveToPrimitive_String,39,42
block_count,NonPrimitiveToPrimitive_String,40,0
block_count,NonPrimitiveToPrimitive_String,41,0
block_count,NonPrimitiveToPrimitive_String,42,0
block_count,NonPrimitiveToPrimitive_String,43,0
block_count,NonPrimitiveToPrimitive_String,44,0
-block_count,NonPrimitiveToPrimitive_String,45,43
+block_count,NonPrimitiveToPrimitive_String,45,42
block_count,NonPrimitiveToPrimitive_String,46,0
block_count,NonPrimitiveToPrimitive_String,47,0
block_count,NonPrimitiveToPrimitive_String,48,0
@@ -49274,10 +49265,10 @@
block_count,DataViewPrototypeSetFloat64,114,0
block_count,DataViewPrototypeSetFloat64,115,0
block_count,DataViewPrototypeSetFloat64,116,0
-block_count,FunctionPrototypeHasInstance,0,96
+block_count,FunctionPrototypeHasInstance,0,95
block_count,FunctionPrototypeHasInstance,1,0
-block_count,FunctionPrototypeHasInstance,2,96
-block_count,FunctionPrototypeHasInstance,3,96
+block_count,FunctionPrototypeHasInstance,2,95
+block_count,FunctionPrototypeHasInstance,3,95
block_count,FunctionPrototypeHasInstance,4,95
block_count,FunctionPrototypeHasInstance,5,95
block_count,FunctionPrototypeHasInstance,6,0
@@ -49292,17 +49283,17 @@
block_count,FunctionPrototypeHasInstance,15,5
block_count,FunctionPrototypeHasInstance,16,90
block_count,FunctionPrototypeHasInstance,17,95
-block_count,FunctionPrototypeHasInstance,18,321
-block_count,FunctionPrototypeHasInstance,19,314
-block_count,FunctionPrototypeHasInstance,20,7
-block_count,FunctionPrototypeHasInstance,21,7
-block_count,FunctionPrototypeHasInstance,22,7
+block_count,FunctionPrototypeHasInstance,18,318
+block_count,FunctionPrototypeHasInstance,19,312
+block_count,FunctionPrototypeHasInstance,20,6
+block_count,FunctionPrototypeHasInstance,21,6
+block_count,FunctionPrototypeHasInstance,22,6
block_count,FunctionPrototypeHasInstance,23,0
block_count,FunctionPrototypeHasInstance,24,0
block_count,FunctionPrototypeHasInstance,25,0
-block_count,FunctionPrototypeHasInstance,26,321
-block_count,FunctionPrototypeHasInstance,27,261
-block_count,FunctionPrototypeHasInstance,28,225
+block_count,FunctionPrototypeHasInstance,26,318
+block_count,FunctionPrototypeHasInstance,27,259
+block_count,FunctionPrototypeHasInstance,28,223
block_count,FunctionPrototypeHasInstance,29,36
block_count,FunctionPrototypeHasInstance,30,59
block_count,FunctionPrototypeHasInstance,31,95
@@ -49544,7 +49535,7 @@
block_count,MathFloor,15,0
block_count,MathFloor,16,3
block_count,MathFloor,17,3
-block_count,MathFloor,18,1
+block_count,MathFloor,18,2
block_count,MathFloor,19,1
block_count,MathFloor,20,0
block_count,MathFloor,21,3
@@ -49880,13 +49871,13 @@
block_count,MathSin,1,0
block_count,MathSin,2,1
block_count,MathSin,3,1
-block_count,MathSin,4,0
-block_count,MathSin,5,0
+block_count,MathSin,4,1
+block_count,MathSin,5,1
block_count,MathSin,6,0
-block_count,MathSin,7,0
+block_count,MathSin,7,1
block_count,MathSin,8,0
block_count,MathSin,9,1
-block_count,MathSin,10,0
+block_count,MathSin,10,1
block_count,MathSin,11,0
block_count,MathSin,12,1
block_count,MathSin,13,0
@@ -50324,7 +50315,7 @@
block_count,Add,50,0
block_count,Add,51,0
block_count,Add,52,0
-block_count,Add,53,15
+block_count,Add,53,14
block_count,Add,54,0
block_count,Add,55,0
block_count,Add,56,0
@@ -50715,7 +50706,7 @@
block_count,Equal,55,3
block_count,Equal,56,19
block_count,Equal,57,41
-block_count,Equal,58,62
+block_count,Equal,58,61
block_count,Equal,59,61
block_count,Equal,60,34
block_count,Equal,61,4
@@ -50744,20 +50735,20 @@
block_count,Equal,84,1
block_count,Equal,85,2
block_count,Equal,86,46
-block_count,StrictEqual,0,1398
-block_count,StrictEqual,1,1235
-block_count,StrictEqual,2,1205
-block_count,StrictEqual,3,1156
+block_count,StrictEqual,0,1397
+block_count,StrictEqual,1,1234
+block_count,StrictEqual,2,1204
+block_count,StrictEqual,3,1155
block_count,StrictEqual,4,1128
block_count,StrictEqual,5,172
block_count,StrictEqual,6,172
block_count,StrictEqual,7,0
block_count,StrictEqual,8,0
block_count,StrictEqual,9,0
-block_count,StrictEqual,10,956
+block_count,StrictEqual,10,955
block_count,StrictEqual,11,50
-block_count,StrictEqual,12,906
-block_count,StrictEqual,13,541
+block_count,StrictEqual,12,905
+block_count,StrictEqual,13,540
block_count,StrictEqual,14,364
block_count,StrictEqual,15,27
block_count,StrictEqual,16,48
@@ -52183,34 +52174,34 @@
block_count,ReflectHas,3,0
block_count,ReflectHas,4,0
block_count,ReflectHas,5,0
-block_count,RegExpPrototypeExec,0,424
+block_count,RegExpPrototypeExec,0,423
block_count,RegExpPrototypeExec,1,0
-block_count,RegExpPrototypeExec,2,424
-block_count,RegExpPrototypeExec,3,424
-block_count,RegExpPrototypeExec,4,424
-block_count,RegExpPrototypeExec,5,424
-block_count,RegExpPrototypeExec,6,424
+block_count,RegExpPrototypeExec,2,423
+block_count,RegExpPrototypeExec,3,423
+block_count,RegExpPrototypeExec,4,423
+block_count,RegExpPrototypeExec,5,423
+block_count,RegExpPrototypeExec,6,423
block_count,RegExpPrototypeExec,7,0
-block_count,RegExpPrototypeExec,8,424
+block_count,RegExpPrototypeExec,8,423
block_count,RegExpPrototypeExec,9,0
block_count,RegExpPrototypeExec,10,0
-block_count,RegExpPrototypeExec,11,424
+block_count,RegExpPrototypeExec,11,423
block_count,RegExpPrototypeExec,12,0
-block_count,RegExpPrototypeExec,13,424
+block_count,RegExpPrototypeExec,13,423
block_count,RegExpPrototypeExec,14,0
-block_count,RegExpPrototypeExec,15,424
+block_count,RegExpPrototypeExec,15,423
block_count,RegExpPrototypeExec,16,0
-block_count,RegExpPrototypeExec,17,424
-block_count,RegExpPrototypeExec,18,397
+block_count,RegExpPrototypeExec,17,423
+block_count,RegExpPrototypeExec,18,396
block_count,RegExpPrototypeExec,19,331
block_count,RegExpPrototypeExec,20,65
-block_count,RegExpPrototypeExec,21,397
-block_count,RegExpPrototypeExec,22,397
-block_count,RegExpPrototypeExec,23,397
+block_count,RegExpPrototypeExec,21,396
+block_count,RegExpPrototypeExec,22,396
+block_count,RegExpPrototypeExec,23,396
block_count,RegExpPrototypeExec,24,0
block_count,RegExpPrototypeExec,25,0
block_count,RegExpPrototypeExec,26,0
-block_count,RegExpPrototypeExec,27,397
+block_count,RegExpPrototypeExec,27,396
block_count,RegExpPrototypeExec,28,12
block_count,RegExpPrototypeExec,29,25
block_count,RegExpPrototypeExec,30,3
@@ -52242,7 +52233,7 @@
block_count,RegExpPrototypeExec,56,0
block_count,RegExpPrototypeExec,57,384
block_count,RegExpPrototypeExec,58,396
-block_count,RegExpPrototypeExec,59,397
+block_count,RegExpPrototypeExec,59,396
block_count,RegExpPrototypeExec,60,0
block_count,RegExpPrototypeExec,61,331
block_count,RegExpPrototypeExec,62,65
@@ -52297,8 +52288,8 @@
block_count,RegExpPrototypeExec,111,150
block_count,RegExpPrototypeExec,112,0
block_count,RegExpPrototypeExec,113,150
-block_count,RegExpPrototypeExec,114,991
-block_count,RegExpPrototypeExec,115,840
+block_count,RegExpPrototypeExec,114,990
+block_count,RegExpPrototypeExec,115,839
block_count,RegExpPrototypeExec,116,150
block_count,RegExpPrototypeExec,117,150
block_count,RegExpPrototypeExec,118,150
@@ -52506,7 +52497,7 @@
block_count,RegExpPrototypeExec,320,172
block_count,RegExpPrototypeExec,321,74
block_count,RegExpPrototypeExec,322,97
-block_count,RegExpPrototypeExec,323,471
+block_count,RegExpPrototypeExec,323,470
block_count,RegExpPrototypeExec,324,373
block_count,RegExpPrototypeExec,325,97
block_count,RegExpPrototypeExec,326,172
@@ -52514,10 +52505,10 @@
block_count,RegExpPrototypeExec,328,88
block_count,RegExpPrototypeExec,329,172
block_count,RegExpPrototypeExec,330,97
-block_count,RegExpPrototypeExec,331,858
-block_count,RegExpPrototypeExec,332,352
+block_count,RegExpPrototypeExec,331,857
+block_count,RegExpPrototypeExec,332,351
block_count,RegExpPrototypeExec,333,506
-block_count,RegExpPrototypeExec,334,858
+block_count,RegExpPrototypeExec,334,857
block_count,RegExpPrototypeExec,335,760
block_count,RegExpPrototypeExec,336,97
block_count,RegExpPrototypeExec,337,0
@@ -52631,8 +52622,8 @@
block_count,RegExpPrototypeExec,445,0
block_count,RegExpPrototypeExec,446,172
block_count,RegExpPrototypeExec,447,251
-block_count,RegExpPrototypeExec,448,424
-block_count,RegExpMatchFast,0,1252
+block_count,RegExpPrototypeExec,448,423
+block_count,RegExpMatchFast,0,1251
block_count,RegExpMatchFast,1,2
block_count,RegExpMatchFast,2,0
block_count,RegExpMatchFast,3,0
@@ -53110,16 +53101,16 @@
block_count,RegExpMatchFast,475,0
block_count,RegExpMatchFast,476,0
block_count,RegExpMatchFast,477,1249
-block_count,RegExpMatchFast,478,1092
-block_count,RegExpMatchFast,479,2185
+block_count,RegExpMatchFast,478,1091
+block_count,RegExpMatchFast,479,2183
block_count,RegExpMatchFast,480,0
block_count,RegExpMatchFast,481,0
block_count,RegExpMatchFast,482,0
block_count,RegExpMatchFast,483,1071
block_count,RegExpMatchFast,484,20
-block_count,RegExpMatchFast,485,1092
+block_count,RegExpMatchFast,485,1091
block_count,RegExpMatchFast,486,0
-block_count,RegExpMatchFast,487,1092
+block_count,RegExpMatchFast,487,1091
block_count,RegExpMatchFast,488,0
block_count,RegExpMatchFast,489,0
block_count,RegExpMatchFast,490,0
@@ -53353,9 +53344,9 @@
block_count,RegExpMatchFast,718,0
block_count,RegExpMatchFast,719,0
block_count,RegExpMatchFast,720,194
-block_count,RegExpMatchFast,721,194
+block_count,RegExpMatchFast,721,193
block_count,RegExpMatchFast,722,0
-block_count,RegExpMatchFast,723,194
+block_count,RegExpMatchFast,723,193
block_count,RegExpMatchFast,724,0
block_count,RegExpMatchFast,725,0
block_count,RegExpMatchFast,726,194
@@ -53570,10 +53561,10 @@
block_count,RegExpReplace,36,0
block_count,RegExpReplace,37,0
block_count,RegExpReplace,38,3
-block_count,RegExpReplace,39,797
-block_count,RegExpReplace,40,797
-block_count,RegExpReplace,41,797
-block_count,RegExpReplace,42,794
+block_count,RegExpReplace,39,796
+block_count,RegExpReplace,40,796
+block_count,RegExpReplace,41,796
+block_count,RegExpReplace,42,793
block_count,RegExpReplace,43,398
block_count,RegExpReplace,44,0
block_count,RegExpReplace,45,0
@@ -53591,7 +53582,7 @@
block_count,RegExpReplace,57,395
block_count,RegExpReplace,58,0
block_count,RegExpReplace,59,0
-block_count,RegExpReplace,60,794
+block_count,RegExpReplace,60,793
block_count,RegExpReplace,61,3
block_count,RegExpReplace,62,0
block_count,RegExpReplace,63,0
@@ -53860,19 +53851,19 @@
block_count,RegExpReplace,326,0
block_count,RegExpReplace,327,32
block_count,RegExpReplace,328,13
-block_count,RegExpReplace,329,138
+block_count,RegExpReplace,329,137
block_count,RegExpReplace,330,85
block_count,RegExpReplace,331,52
-block_count,RegExpReplace,332,138
+block_count,RegExpReplace,332,137
block_count,RegExpReplace,333,0
-block_count,RegExpReplace,334,138
-block_count,RegExpReplace,335,138
-block_count,RegExpReplace,336,138
-block_count,RegExpReplace,337,138
+block_count,RegExpReplace,334,137
+block_count,RegExpReplace,335,137
+block_count,RegExpReplace,336,137
+block_count,RegExpReplace,337,137
block_count,RegExpReplace,338,0
block_count,RegExpReplace,339,0
block_count,RegExpReplace,340,0
-block_count,RegExpReplace,341,138
+block_count,RegExpReplace,341,137
block_count,RegExpReplace,342,196
block_count,RegExpReplace,343,145
block_count,RegExpReplace,344,145
@@ -54095,7 +54086,7 @@
block_count,RegExpReplace,561,0
block_count,RegExpReplace,562,0
block_count,RegExpReplace,563,50
-block_count,RegExpReplace,564,138
+block_count,RegExpReplace,564,137
block_count,RegExpReplace,565,50
block_count,RegExpReplace,566,0
block_count,RegExpReplace,567,50
@@ -54113,10 +54104,10 @@
block_count,RegExpReplace,579,50
block_count,RegExpReplace,580,0
block_count,RegExpReplace,581,87
-block_count,RegExpReplace,582,138
-block_count,RegExpReplace,583,138
+block_count,RegExpReplace,582,137
+block_count,RegExpReplace,583,137
block_count,RegExpReplace,584,0
-block_count,RegExpReplace,585,138
+block_count,RegExpReplace,585,137
block_count,RegExpReplace,586,0
block_count,RegExpPrototypeReplace,0,0
block_count,RegExpPrototypeReplace,1,0
@@ -54411,16 +54402,16 @@
block_count,RegExpSplit,19,52
block_count,RegExpSplit,20,52
block_count,RegExpSplit,21,52
-block_count,RegExpSplit,22,0
-block_count,RegExpSplit,23,1
-block_count,RegExpSplit,24,0
-block_count,RegExpSplit,25,0
+block_count,RegExpSplit,22,1
+block_count,RegExpSplit,23,2
+block_count,RegExpSplit,24,1
+block_count,RegExpSplit,25,1
block_count,RegExpSplit,26,0
block_count,RegExpSplit,27,0
block_count,RegExpSplit,28,0
-block_count,RegExpSplit,29,0
+block_count,RegExpSplit,29,1
block_count,RegExpSplit,30,0
-block_count,RegExpSplit,31,0
+block_count,RegExpSplit,31,1
block_count,RegExpSplit,32,0
block_count,RegExpSplit,33,0
block_count,RegExpSplit,34,0
@@ -54455,7 +54446,7 @@
block_count,RegExpSplit,63,0
block_count,RegExpSplit,64,52
block_count,RegExpSplit,65,0
-block_count,RegExpSplit,66,52
+block_count,RegExpSplit,66,51
block_count,RegExpSplit,67,52
block_count,RegExpSplit,68,52
block_count,RegExpSplit,69,0
@@ -54971,7 +54962,7 @@
block_count,RegExpPrototypeTest,52,0
block_count,RegExpPrototypeTest,53,104
block_count,RegExpPrototypeTest,54,104
-block_count,RegExpPrototypeTest,55,104
+block_count,RegExpPrototypeTest,55,103
block_count,RegExpPrototypeTest,56,0
block_count,RegExpPrototypeTest,57,104
block_count,RegExpPrototypeTest,58,104
@@ -55009,25 +55000,25 @@
block_count,RegExpPrototypeTest,90,39
block_count,RegExpPrototypeTest,91,0
block_count,RegExpPrototypeTest,92,0
-block_count,RegExpPrototypeTest,93,41
+block_count,RegExpPrototypeTest,93,40
block_count,RegExpPrototypeTest,94,65
block_count,RegExpPrototypeTest,95,104
block_count,RegExpPrototypeTest,96,0
-block_count,RegExpPrototypeTest,97,104
+block_count,RegExpPrototypeTest,97,103
block_count,RegExpPrototypeTest,98,0
block_count,RegExpPrototypeTest,99,0
block_count,RegExpPrototypeTest,100,0
block_count,RegExpPrototypeTest,101,0
-block_count,RegExpPrototypeTest,102,104
-block_count,RegExpPrototypeTest,103,104
+block_count,RegExpPrototypeTest,102,103
+block_count,RegExpPrototypeTest,103,103
block_count,RegExpPrototypeTest,104,0
block_count,RegExpPrototypeTest,105,0
block_count,RegExpPrototypeTest,106,0
-block_count,RegExpPrototypeTest,107,104
+block_count,RegExpPrototypeTest,107,103
block_count,RegExpPrototypeTest,108,0
block_count,RegExpPrototypeTest,109,103
-block_count,RegExpPrototypeTest,110,104
-block_count,RegExpPrototypeTest,111,104
+block_count,RegExpPrototypeTest,110,103
+block_count,RegExpPrototypeTest,111,103
block_count,RegExpPrototypeTest,112,0
block_count,RegExpPrototypeTest,113,0
block_count,RegExpPrototypeTest,114,0
@@ -55043,9 +55034,9 @@
block_count,RegExpPrototypeTest,124,0
block_count,RegExpPrototypeTest,125,0
block_count,RegExpPrototypeTest,126,0
-block_count,RegExpPrototypeTest,127,104
+block_count,RegExpPrototypeTest,127,103
block_count,RegExpPrototypeTest,128,13
-block_count,RegExpPrototypeTest,129,90
+block_count,RegExpPrototypeTest,129,89
block_count,RegExpPrototypeTest,130,0
block_count,RegExpPrototypeTest,131,0
block_count,RegExpPrototypeTest,132,0
@@ -55076,10 +55067,10 @@
block_count,RegExpPrototypeTest,157,14
block_count,RegExpPrototypeTest,158,0
block_count,RegExpPrototypeTest,159,14
-block_count,RegExpPrototypeTest,160,90
-block_count,RegExpPrototypeTest,161,90
+block_count,RegExpPrototypeTest,160,89
+block_count,RegExpPrototypeTest,161,89
block_count,RegExpPrototypeTest,162,0
-block_count,RegExpPrototypeTest,163,90
+block_count,RegExpPrototypeTest,163,89
block_count,RegExpPrototypeTestFast,0,444
block_count,RegExpPrototypeTestFast,1,444
block_count,RegExpPrototypeTestFast,2,438
@@ -55177,8 +55168,8 @@
block_count,RegExpPrototypeTestFast,94,132
block_count,RegExpPrototypeTestFast,95,0
block_count,RegExpPrototypeTestFast,96,132
-block_count,RegExpPrototypeTestFast,97,1712
-block_count,RegExpPrototypeTestFast,98,1579
+block_count,RegExpPrototypeTestFast,97,1710
+block_count,RegExpPrototypeTestFast,98,1578
block_count,RegExpPrototypeTestFast,99,132
block_count,RegExpPrototypeTestFast,100,132
block_count,RegExpPrototypeTestFast,101,132
@@ -56093,27 +56084,27 @@
block_count,StringIteratorPrototypeNext,86,0
block_count,StringIteratorPrototypeNext,87,0
block_count,StringIteratorPrototypeNext,88,0
-block_count,StringPrototypeMatch,0,1252
+block_count,StringPrototypeMatch,0,1251
block_count,StringPrototypeMatch,1,0
-block_count,StringPrototypeMatch,2,1252
-block_count,StringPrototypeMatch,3,1252
-block_count,StringPrototypeMatch,4,1252
-block_count,StringPrototypeMatch,5,1252
-block_count,StringPrototypeMatch,6,1252
-block_count,StringPrototypeMatch,7,1252
-block_count,StringPrototypeMatch,8,1252
+block_count,StringPrototypeMatch,2,1251
+block_count,StringPrototypeMatch,3,1251
+block_count,StringPrototypeMatch,4,1251
+block_count,StringPrototypeMatch,5,1251
+block_count,StringPrototypeMatch,6,1251
+block_count,StringPrototypeMatch,7,1251
+block_count,StringPrototypeMatch,8,1251
block_count,StringPrototypeMatch,9,0
-block_count,StringPrototypeMatch,10,1252
+block_count,StringPrototypeMatch,10,1251
block_count,StringPrototypeMatch,11,0
-block_count,StringPrototypeMatch,12,1252
+block_count,StringPrototypeMatch,12,1251
block_count,StringPrototypeMatch,13,0
-block_count,StringPrototypeMatch,14,1252
+block_count,StringPrototypeMatch,14,1251
block_count,StringPrototypeMatch,15,0
-block_count,StringPrototypeMatch,16,1252
+block_count,StringPrototypeMatch,16,1251
block_count,StringPrototypeMatch,17,0
-block_count,StringPrototypeMatch,18,1252
+block_count,StringPrototypeMatch,18,1251
block_count,StringPrototypeMatch,19,0
-block_count,StringPrototypeMatch,20,1252
+block_count,StringPrototypeMatch,20,1251
block_count,StringPrototypeSearch,0,1
block_count,StringPrototypeSearch,1,0
block_count,StringPrototypeSearch,2,1
@@ -56211,16 +56202,16 @@
block_count,StringPrototypeSlice,66,10
block_count,StringPrototypeSlice,67,10
block_count,StringPrototypeSlice,68,7
-block_count,StringPrototypeSlice,69,5
-block_count,StringPrototypeSlice,70,10
-block_count,StringPrototypeSlice,71,1
-block_count,StringPrototypeSlice,72,1
+block_count,StringPrototypeSlice,69,4
+block_count,StringPrototypeSlice,70,9
+block_count,StringPrototypeSlice,71,0
+block_count,StringPrototypeSlice,72,0
block_count,StringPrototypeSlice,73,0
block_count,StringPrototypeSlice,74,3
block_count,StringPrototypeSlice,75,0
-block_count,StringPrototypeSlice,76,5
+block_count,StringPrototypeSlice,76,4
block_count,StringPrototypeSlice,77,0
-block_count,StringPrototypeSlice,78,5
+block_count,StringPrototypeSlice,78,4
block_count,StringPrototypeSlice,79,0
block_count,StringPrototypeSlice,80,2
block_count,StringPrototypeSlice,81,7
@@ -56262,7 +56253,7 @@
block_count,StringPrototypeSlice,117,0
block_count,StringPrototypeSlice,118,0
block_count,StringPrototypeSlice,119,0
-block_count,StringPrototypeSlice,120,1
+block_count,StringPrototypeSlice,120,0
block_count,StringPrototypeSlice,121,0
block_count,StringPrototypeSlice,122,0
block_count,StringPrototypeSlice,123,0
@@ -56398,7 +56389,7 @@
block_count,StringPrototypeSlice,253,0
block_count,StringPrototypeSlice,254,2
block_count,StringPrototypeSlice,255,1
-block_count,StringPrototypeSlice,256,3
+block_count,StringPrototypeSlice,256,2
block_count,StringPrototypeSlice,257,1
block_count,StringPrototypeSlice,258,1
block_count,StringPrototypeSlice,259,0
@@ -57049,7 +57040,7 @@
block_count,StringPrototypeSubstring,53,2
block_count,StringPrototypeSubstring,54,2
block_count,StringPrototypeSubstring,55,2
-block_count,StringPrototypeSubstring,56,1
+block_count,StringPrototypeSubstring,56,2
block_count,StringPrototypeSubstring,57,0
block_count,StringPrototypeSubstring,58,1
block_count,StringPrototypeSubstring,59,0
@@ -57062,7 +57053,7 @@
block_count,StringPrototypeSubstring,66,0
block_count,StringPrototypeSubstring,67,0
block_count,StringPrototypeSubstring,68,1
-block_count,StringPrototypeSubstring,69,1
+block_count,StringPrototypeSubstring,69,2
block_count,StringPrototypeSubstring,70,0
block_count,StringPrototypeSubstring,71,0
block_count,StringPrototypeSubstring,72,0
@@ -58617,7 +58608,7 @@
block_count,CreateTypedArray,676,0
block_count,CreateTypedArray,677,19
block_count,CreateTypedArray,678,77
-block_count,CreateTypedArray,679,58
+block_count,CreateTypedArray,679,57
block_count,CreateTypedArray,680,19
block_count,CreateTypedArray,681,19
block_count,CreateTypedArray,682,19
@@ -59586,7 +59577,7 @@
block_count,NewRestArgumentsElements,10,0
block_count,NewRestArgumentsElements,11,0
block_count,NewRestArgumentsElements,12,13
-block_count,NewRestArgumentsElements,13,41
+block_count,NewRestArgumentsElements,13,40
block_count,NewRestArgumentsElements,14,27
block_count,NewRestArgumentsElements,15,27
block_count,NewRestArgumentsElements,16,27
@@ -59647,11 +59638,11 @@
block_count,FastNewSloppyArguments,45,0
block_count,FastNewSloppyArguments,46,2
block_count,FastNewSloppyArguments,47,8
-block_count,FastNewSloppyArguments,48,5
-block_count,FastNewSloppyArguments,49,5
-block_count,FastNewSloppyArguments,50,5
+block_count,FastNewSloppyArguments,48,6
+block_count,FastNewSloppyArguments,49,6
+block_count,FastNewSloppyArguments,50,6
block_count,FastNewSloppyArguments,51,0
-block_count,FastNewSloppyArguments,52,5
+block_count,FastNewSloppyArguments,52,6
block_count,FastNewSloppyArguments,53,0
block_count,FastNewSloppyArguments,54,2
block_count,FastNewSloppyArguments,55,0
@@ -59750,11 +59741,11 @@
block_count,FastNewRestArguments,18,0
block_count,FastNewRestArguments,19,1
block_count,FastNewRestArguments,20,4
-block_count,FastNewRestArguments,21,3
-block_count,FastNewRestArguments,22,3
-block_count,FastNewRestArguments,23,3
+block_count,FastNewRestArguments,21,2
+block_count,FastNewRestArguments,22,2
+block_count,FastNewRestArguments,23,2
block_count,FastNewRestArguments,24,0
-block_count,FastNewRestArguments,25,3
+block_count,FastNewRestArguments,25,2
block_count,FastNewRestArguments,26,0
block_count,FastNewRestArguments,27,1
block_count,FastNewRestArguments,28,0
@@ -59768,12 +59759,12 @@
block_count,FastNewRestArguments,36,0
block_count,FastNewRestArguments,37,0
block_count,FastNewRestArguments,38,0
-block_count,LoadFromContextCell,0,31
+block_count,LoadFromContextCell,0,30
block_count,LoadFromContextCell,1,0
-block_count,LoadFromContextCell,2,31
-block_count,LoadFromContextCell,3,31
-block_count,LoadFromContextCell,4,31
-block_count,LoadFromContextCell,5,31
+block_count,LoadFromContextCell,2,30
+block_count,LoadFromContextCell,3,30
+block_count,LoadFromContextCell,4,30
+block_count,LoadFromContextCell,5,30
block_count,LoadFromContextCell,6,8
block_count,LoadFromContextCell,7,0
block_count,LoadFromContextCell,8,0
@@ -59803,7 +59794,7 @@
block_count,StoreCurrentContextElementBaseline,14,5
block_count,StoreCurrentContextElementBaseline,15,4
block_count,StoreCurrentContextElementBaseline,16,4
-block_count,StoreCurrentContextElementBaseline,17,4
+block_count,StoreCurrentContextElementBaseline,17,3
block_count,StoreCurrentContextElementBaseline,18,3
block_count,StoreCurrentContextElementBaseline,19,0
block_count,StoreCurrentContextElementBaseline,20,0
@@ -60086,10 +60077,10 @@
block_count,StringIndexOf,7,0
block_count,StringIndexOf,8,371
block_count,StringIndexOf,9,184
-block_count,StringIndexOf,10,213
-block_count,StringIndexOf,11,48
-block_count,StringIndexOf,12,29
-block_count,StringIndexOf,13,27
+block_count,StringIndexOf,10,214
+block_count,StringIndexOf,11,49
+block_count,StringIndexOf,12,30
+block_count,StringIndexOf,13,29
block_count,StringIndexOf,14,1
block_count,StringIndexOf,15,0
block_count,StringIndexOf,16,0
@@ -60119,7 +60110,7 @@
block_count,StringIndexOf,40,0
block_count,StringIndexOf,41,0
block_count,StringIndexOf,42,1
-block_count,StringIndexOf,43,29
+block_count,StringIndexOf,43,30
block_count,StringIndexOf,44,19
block_count,StringIndexOf,45,19
block_count,StringIndexOf,46,19
@@ -60274,14 +60265,14 @@
block_count,SortCompareDefault,9,3
block_count,SortCompareDefault,10,0
block_count,SortCompareDefault,11,3
-block_count,SortCompareUserFn,0,753
+block_count,SortCompareUserFn,0,752
block_count,SortCompareUserFn,1,0
block_count,SortCompareUserFn,2,0
block_count,SortCompareUserFn,3,0
block_count,SortCompareUserFn,4,0
-block_count,SortCompareUserFn,5,753
-block_count,SortCompareUserFn,6,753
-block_count,SortCompareUserFn,7,753
+block_count,SortCompareUserFn,5,752
+block_count,SortCompareUserFn,6,752
+block_count,SortCompareUserFn,7,752
block_count,Copy,0,2
block_count,Copy,1,1
block_count,Copy,2,141
@@ -60457,7 +60448,7 @@
block_count,MergeAt,155,112
block_count,MergeAt,156,112
block_count,MergeAt,157,0
-block_count,MergeAt,158,112
+block_count,MergeAt,158,111
block_count,MergeAt,159,112
block_count,MergeAt,160,0
block_count,MergeAt,161,0
@@ -60800,26 +60791,26 @@
block_count,ArrayTimSort,108,46
block_count,ArrayTimSort,109,46
block_count,ArrayTimSort,110,243
-block_count,ArrayTimSort,111,197
-block_count,ArrayTimSort,112,197
+block_count,ArrayTimSort,111,196
+block_count,ArrayTimSort,112,196
block_count,ArrayTimSort,113,3
block_count,ArrayTimSort,114,193
-block_count,ArrayTimSort,115,197
+block_count,ArrayTimSort,115,196
block_count,ArrayTimSort,116,0
block_count,ArrayTimSort,117,0
block_count,ArrayTimSort,118,0
-block_count,ArrayTimSort,119,197
+block_count,ArrayTimSort,119,196
block_count,ArrayTimSort,120,92
block_count,ArrayTimSort,121,104
block_count,ArrayTimSort,122,92
block_count,ArrayTimSort,123,104
-block_count,ArrayTimSort,124,197
+block_count,ArrayTimSort,124,196
block_count,ArrayTimSort,125,0
block_count,ArrayTimSort,126,46
block_count,ArrayTimSort,127,520
-block_count,ArrayTimSort,128,474
-block_count,ArrayTimSort,129,474
-block_count,ArrayTimSort,130,474
+block_count,ArrayTimSort,128,473
+block_count,ArrayTimSort,129,473
+block_count,ArrayTimSort,130,473
block_count,ArrayTimSort,131,0
block_count,ArrayTimSort,132,0
block_count,ArrayTimSort,133,46
@@ -60890,8 +60881,8 @@
block_count,ArrayTimSort,198,0
block_count,ArrayTimSort,199,38
block_count,ArrayTimSort,200,192
-block_count,ArrayTimSort,201,154
-block_count,ArrayTimSort,202,154
+block_count,ArrayTimSort,201,153
+block_count,ArrayTimSort,202,153
block_count,ArrayTimSort,203,423
block_count,ArrayTimSort,204,269
block_count,ArrayTimSort,205,269
@@ -60908,15 +60899,15 @@
block_count,ArrayTimSort,216,140
block_count,ArrayTimSort,217,269
block_count,ArrayTimSort,218,0
-block_count,ArrayTimSort,219,154
+block_count,ArrayTimSort,219,153
block_count,ArrayTimSort,220,334
block_count,ArrayTimSort,221,180
block_count,ArrayTimSort,222,180
block_count,ArrayTimSort,223,180
block_count,ArrayTimSort,224,0
block_count,ArrayTimSort,225,0
-block_count,ArrayTimSort,226,154
-block_count,ArrayTimSort,227,154
+block_count,ArrayTimSort,226,153
+block_count,ArrayTimSort,227,153
block_count,ArrayTimSort,228,0
block_count,ArrayTimSort,229,0
block_count,ArrayTimSort,230,38
@@ -61152,11 +61143,11 @@
block_count,ArrayPrototypeSort,116,0
block_count,ArrayPrototypeSort,117,38
block_count,ArrayPrototypeSort,118,38
-block_count,StringFastLocaleCompare,0,1432
-block_count,StringFastLocaleCompare,1,1432
-block_count,StringFastLocaleCompare,2,1432
-block_count,StringFastLocaleCompare,3,1348
-block_count,StringFastLocaleCompare,4,1348
+block_count,StringFastLocaleCompare,0,1431
+block_count,StringFastLocaleCompare,1,1431
+block_count,StringFastLocaleCompare,2,1431
+block_count,StringFastLocaleCompare,3,1347
+block_count,StringFastLocaleCompare,4,1347
block_count,StringFastLocaleCompare,5,0
block_count,StringFastLocaleCompare,6,0
block_count,StringFastLocaleCompare,7,0
@@ -61359,16 +61350,16 @@
block_count,StringFastLocaleCompare,204,0
block_count,StringFastLocaleCompare,205,0
block_count,StringFastLocaleCompare,206,0
-block_count,StringFastLocaleCompare,207,1348
-block_count,StringFastLocaleCompare,208,1348
-block_count,StringFastLocaleCompare,209,1348
+block_count,StringFastLocaleCompare,207,1347
+block_count,StringFastLocaleCompare,208,1347
+block_count,StringFastLocaleCompare,209,1347
block_count,StringFastLocaleCompare,210,0
block_count,StringFastLocaleCompare,211,0
block_count,StringFastLocaleCompare,212,0
-block_count,StringFastLocaleCompare,213,1348
-block_count,StringFastLocaleCompare,214,1348
-block_count,StringFastLocaleCompare,215,1348
-block_count,StringFastLocaleCompare,216,1348
+block_count,StringFastLocaleCompare,213,1347
+block_count,StringFastLocaleCompare,214,1347
+block_count,StringFastLocaleCompare,215,1347
+block_count,StringFastLocaleCompare,216,1347
block_count,StringFastLocaleCompare,217,0
block_count,StringFastLocaleCompare,218,0
block_count,StringFastLocaleCompare,219,0
@@ -61460,18 +61451,18 @@
block_count,StringFastLocaleCompare,305,0
block_count,StringFastLocaleCompare,306,0
block_count,StringFastLocaleCompare,307,0
-block_count,StringFastLocaleCompare,308,1348
-block_count,StringFastLocaleCompare,309,1348
-block_count,StringFastLocaleCompare,310,1348
+block_count,StringFastLocaleCompare,308,1347
+block_count,StringFastLocaleCompare,309,1347
+block_count,StringFastLocaleCompare,310,1347
block_count,StringFastLocaleCompare,311,0
block_count,StringFastLocaleCompare,312,0
block_count,StringFastLocaleCompare,313,0
-block_count,StringFastLocaleCompare,314,1348
+block_count,StringFastLocaleCompare,314,1347
block_count,StringFastLocaleCompare,315,922
block_count,StringFastLocaleCompare,316,922
-block_count,StringFastLocaleCompare,317,983
-block_count,StringFastLocaleCompare,318,983
-block_count,StringFastLocaleCompare,319,983
+block_count,StringFastLocaleCompare,317,982
+block_count,StringFastLocaleCompare,318,982
+block_count,StringFastLocaleCompare,319,982
block_count,StringFastLocaleCompare,320,60
block_count,StringFastLocaleCompare,321,922
block_count,StringFastLocaleCompare,322,0
@@ -61479,15 +61470,15 @@
block_count,StringFastLocaleCompare,324,0
block_count,StringFastLocaleCompare,325,0
block_count,StringFastLocaleCompare,326,425
-block_count,StringFastLocaleCompare,327,1348
-block_count,StringFastLocaleCompare,328,6599
-block_count,StringFastLocaleCompare,329,6588
-block_count,StringFastLocaleCompare,330,6588
-block_count,StringFastLocaleCompare,331,6531
-block_count,StringFastLocaleCompare,332,6531
-block_count,StringFastLocaleCompare,333,5251
-block_count,StringFastLocaleCompare,334,1280
-block_count,StringFastLocaleCompare,335,843
+block_count,StringFastLocaleCompare,327,1347
+block_count,StringFastLocaleCompare,328,6595
+block_count,StringFastLocaleCompare,329,6584
+block_count,StringFastLocaleCompare,330,6584
+block_count,StringFastLocaleCompare,331,6527
+block_count,StringFastLocaleCompare,332,6527
+block_count,StringFastLocaleCompare,333,5248
+block_count,StringFastLocaleCompare,334,1279
+block_count,StringFastLocaleCompare,335,842
block_count,StringFastLocaleCompare,336,436
block_count,StringFastLocaleCompare,337,0
block_count,StringFastLocaleCompare,338,56
@@ -61510,7 +61501,7 @@
block_count,StringFastLocaleCompare,355,0
block_count,StringFastLocaleCompare,356,0
block_count,StringFastLocaleCompare,357,0
-block_count,StringFastLocaleCompare,358,84
+block_count,StringFastLocaleCompare,358,83
block_count,JSToWasmWrapper,0,0
block_count,JSToWasmWrapper,1,0
block_count,JSToWasmWrapper,2,0
@@ -62031,20 +62022,20 @@
block_count,WasmAllocateZeroedFixedArray,8,0
block_count,WasmTriggerTierUp,0,1
block_count,WasmStackGuard,0,0
-block_count,CallIndirectIC,0,2
+block_count,CallIndirectIC,0,1
block_count,CallIndirectIC,1,0
-block_count,CallIndirectIC,2,2
-block_count,CallIndirectIC,3,2
+block_count,CallIndirectIC,2,1
+block_count,CallIndirectIC,3,1
block_count,CallIndirectIC,4,0
-block_count,CallIndirectIC,5,2
+block_count,CallIndirectIC,5,1
block_count,CallIndirectIC,6,0
-block_count,CallIndirectIC,7,2
+block_count,CallIndirectIC,7,1
block_count,CallIndirectIC,8,0
block_count,CallIndirectIC,9,0
block_count,CallIndirectIC,10,0
-block_count,CallIndirectIC,11,2
-block_count,CallIndirectIC,12,2
-block_count,CallIndirectIC,13,2
+block_count,CallIndirectIC,11,1
+block_count,CallIndirectIC,12,1
+block_count,CallIndirectIC,13,1
block_count,CallIndirectIC,14,1
block_count,CallIndirectIC,15,0
block_count,CallIndirectIC,16,0
@@ -62116,7 +62107,7 @@
block_count,StringPrototypeToLowerCaseIntl,8,1
block_count,StringToLowerCaseIntl,0,147
block_count,StringToLowerCaseIntl,1,30
-block_count,StringToLowerCaseIntl,2,56
+block_count,StringToLowerCaseIntl,2,55
block_count,StringToLowerCaseIntl,3,4
block_count,StringToLowerCaseIntl,4,0
block_count,StringToLowerCaseIntl,5,4
@@ -62158,11 +62149,11 @@
block_count,StringToLowerCaseIntl,41,0
block_count,WideHandler,0,74
block_count,ExtraWideHandler,0,18
-block_count,LdarHandler,0,251
-block_count,LdaZeroHandler,0,28
+block_count,LdarHandler,0,249
+block_count,LdaZeroHandler,0,27
block_count,LdaZeroHandler,1,21
block_count,LdaZeroHandler,2,6
-block_count,LdaSmiHandler,0,27
+block_count,LdaSmiHandler,0,26
block_count,LdaSmiHandler,1,17
block_count,LdaSmiHandler,2,9
block_count,LdaUndefinedHandler,0,13
@@ -62175,7 +62166,7 @@
block_count,LdaTheHoleHandler,1,0
block_count,LdaTheHoleHandler,2,0
block_count,LdaTrueHandler,0,4
-block_count,LdaFalseHandler,0,6
+block_count,LdaFalseHandler,0,5
block_count,LdaConstantHandler,0,23
block_count,LdaConstantHandler,1,13
block_count,LdaConstantHandler,2,10
@@ -62343,9 +62334,9 @@
block_count,TestTypeOfHandler,48,1
block_count,TestTypeOfHandler,49,0
block_count,TestTypeOfHandler,50,1
-block_count,LdaGlobalHandler,0,55
-block_count,LdaGlobalHandler,1,45
-block_count,LdaGlobalHandler,2,44
+block_count,LdaGlobalHandler,0,54
+block_count,LdaGlobalHandler,1,44
+block_count,LdaGlobalHandler,2,43
block_count,LdaGlobalHandler,3,43
block_count,LdaGlobalHandler,4,43
block_count,LdaGlobalHandler,5,13
@@ -63592,11 +63583,11 @@
block_count,StaLookupSlotHandler,3,0
block_count,StaLookupSlotHandler,4,0
block_count,StaLookupSlotHandler,5,0
-block_count,GetNamedPropertyHandler,0,166
-block_count,GetNamedPropertyHandler,1,138
-block_count,GetNamedPropertyHandler,2,138
+block_count,GetNamedPropertyHandler,0,163
+block_count,GetNamedPropertyHandler,1,135
+block_count,GetNamedPropertyHandler,2,135
block_count,GetNamedPropertyHandler,3,0
-block_count,GetNamedPropertyHandler,4,138
+block_count,GetNamedPropertyHandler,4,135
block_count,GetNamedPropertyHandler,5,13
block_count,GetNamedPropertyHandler,6,0
block_count,GetNamedPropertyHandler,7,13
@@ -63607,17 +63598,17 @@
block_count,GetNamedPropertyHandler,12,5
block_count,GetNamedPropertyHandler,13,0
block_count,GetNamedPropertyHandler,14,7
-block_count,GetNamedPropertyHandler,15,124
-block_count,GetNamedPropertyHandler,16,132
-block_count,GetNamedPropertyHandler,17,42
-block_count,GetNamedPropertyHandler,18,42
-block_count,GetNamedPropertyHandler,19,38
-block_count,GetNamedPropertyHandler,20,38
-block_count,GetNamedPropertyHandler,21,38
+block_count,GetNamedPropertyHandler,15,121
+block_count,GetNamedPropertyHandler,16,128
+block_count,GetNamedPropertyHandler,17,41
+block_count,GetNamedPropertyHandler,18,41
+block_count,GetNamedPropertyHandler,19,37
+block_count,GetNamedPropertyHandler,20,37
+block_count,GetNamedPropertyHandler,21,37
block_count,GetNamedPropertyHandler,22,0
block_count,GetNamedPropertyHandler,23,0
-block_count,GetNamedPropertyHandler,24,38
-block_count,GetNamedPropertyHandler,25,7
+block_count,GetNamedPropertyHandler,24,37
+block_count,GetNamedPropertyHandler,25,8
block_count,GetNamedPropertyHandler,26,0
block_count,GetNamedPropertyHandler,27,0
block_count,GetNamedPropertyHandler,28,0
@@ -63688,22 +63679,22 @@
block_count,GetNamedPropertyHandler,93,0
block_count,GetNamedPropertyHandler,94,0
block_count,GetNamedPropertyHandler,95,7
-block_count,GetNamedPropertyHandler,96,30
-block_count,GetNamedPropertyHandler,97,38
-block_count,GetNamedPropertyHandler,98,38
-block_count,GetNamedPropertyHandler,99,37
-block_count,GetNamedPropertyHandler,100,37
+block_count,GetNamedPropertyHandler,96,29
+block_count,GetNamedPropertyHandler,97,37
+block_count,GetNamedPropertyHandler,98,37
+block_count,GetNamedPropertyHandler,99,36
+block_count,GetNamedPropertyHandler,100,36
block_count,GetNamedPropertyHandler,101,0
block_count,GetNamedPropertyHandler,102,1
-block_count,GetNamedPropertyHandler,103,38
+block_count,GetNamedPropertyHandler,103,37
block_count,GetNamedPropertyHandler,104,0
block_count,GetNamedPropertyHandler,105,3
block_count,GetNamedPropertyHandler,106,0
block_count,GetNamedPropertyHandler,107,0
block_count,GetNamedPropertyHandler,108,0
-block_count,GetNamedPropertyHandler,109,89
-block_count,GetNamedPropertyHandler,110,128
-block_count,GetNamedPropertyHandler,111,39
+block_count,GetNamedPropertyHandler,109,87
+block_count,GetNamedPropertyHandler,110,124
+block_count,GetNamedPropertyHandler,111,38
block_count,GetNamedPropertyHandler,112,7
block_count,GetNamedPropertyHandler,113,6
block_count,GetNamedPropertyHandler,114,5
@@ -63798,13 +63789,13 @@
block_count,GetNamedPropertyHandler,203,0
block_count,GetNamedPropertyHandler,204,0
block_count,GetNamedPropertyHandler,205,1
-block_count,GetNamedPropertyHandler,206,32
-block_count,GetNamedPropertyHandler,207,88
-block_count,GetNamedPropertyHandler,208,88
+block_count,GetNamedPropertyHandler,206,31
+block_count,GetNamedPropertyHandler,207,86
+block_count,GetNamedPropertyHandler,208,86
block_count,GetNamedPropertyHandler,209,16
-block_count,GetNamedPropertyHandler,210,71
-block_count,GetNamedPropertyHandler,211,88
-block_count,GetNamedPropertyHandler,212,83
+block_count,GetNamedPropertyHandler,210,69
+block_count,GetNamedPropertyHandler,211,86
+block_count,GetNamedPropertyHandler,212,82
block_count,GetNamedPropertyHandler,213,4
block_count,GetNamedPropertyHandler,214,4
block_count,GetNamedPropertyHandler,215,4
@@ -63864,19 +63855,19 @@
block_count,GetNamedPropertyHandler,269,4
block_count,GetNamedPropertyHandler,270,0
block_count,GetNamedPropertyHandler,271,28
-block_count,GetNamedPropertyHandler,272,166
-block_count,GetNamedPropertyHandler,273,43
-block_count,GetNamedPropertyHandler,274,122
+block_count,GetNamedPropertyHandler,272,163
+block_count,GetNamedPropertyHandler,273,42
+block_count,GetNamedPropertyHandler,274,120
block_count,GetNamedPropertyFromSuperHandler,0,0
block_count,GetKeyedPropertyHandler,0,66
block_count,GetKeyedPropertyHandler,1,30
-block_count,GetKeyedPropertyHandler,2,36
+block_count,GetKeyedPropertyHandler,2,35
block_count,GetEnumeratedKeyedPropertyHandler,0,1
block_count,SetNamedPropertyHandler,0,17
block_count,DefineNamedOwnPropertyHandler,0,4
block_count,SetKeyedPropertyHandler,0,44
block_count,DefineKeyedOwnPropertyHandler,0,0
-block_count,StaInArrayLiteralHandler,0,3
+block_count,StaInArrayLiteralHandler,0,4
block_count,DefineKeyedOwnPropertyInLiteralHandler,0,0
block_count,AddHandler,0,37
block_count,AddHandler,1,15
@@ -63891,7 +63882,7 @@
block_count,AddHandler,10,0
block_count,AddHandler,11,14
block_count,AddHandler,12,0
-block_count,AddHandler,13,22
+block_count,AddHandler,13,21
block_count,AddHandler,14,12
block_count,AddHandler,15,11
block_count,AddHandler,16,11
@@ -63963,7 +63954,7 @@
block_count,AddHandler,82,37
block_count,AddHandler,83,20
block_count,AddHandler,84,16
-block_count,SubHandler,0,7
+block_count,SubHandler,0,6
block_count,SubHandler,1,3
block_count,SubHandler,2,1
block_count,SubHandler,3,1
@@ -64030,10 +64021,10 @@
block_count,SubHandler,64,0
block_count,SubHandler,65,4
block_count,SubHandler,66,4
-block_count,SubHandler,67,7
+block_count,SubHandler,67,6
block_count,SubHandler,68,3
block_count,SubHandler,69,3
-block_count,MulHandler,0,16
+block_count,MulHandler,0,15
block_count,MulHandler,1,5
block_count,MulHandler,2,3
block_count,MulHandler,3,3
@@ -64063,8 +64054,8 @@
block_count,MulHandler,27,2
block_count,MulHandler,28,0
block_count,MulHandler,29,2
-block_count,MulHandler,30,10
-block_count,MulHandler,31,10
+block_count,MulHandler,30,9
+block_count,MulHandler,31,9
block_count,MulHandler,32,8
block_count,MulHandler,33,8
block_count,MulHandler,34,0
@@ -64115,8 +64106,8 @@
block_count,MulHandler,79,0
block_count,MulHandler,80,13
block_count,MulHandler,81,13
-block_count,MulHandler,82,16
-block_count,MulHandler,83,13
+block_count,MulHandler,82,15
+block_count,MulHandler,83,12
block_count,MulHandler,84,2
block_count,DivHandler,0,1
block_count,DivHandler,1,0
@@ -64794,14 +64785,14 @@
block_count,ShiftRightHandler,76,0
block_count,ShiftRightHandler,77,0
block_count,ShiftRightHandler,78,1
-block_count,ShiftRightHandler,79,0
+block_count,ShiftRightHandler,79,1
block_count,ShiftRightHandler,80,0
block_count,ShiftRightHandler,81,0
block_count,ShiftRightHandler,82,0
block_count,ShiftRightHandler,83,0
block_count,ShiftRightHandler,84,1
block_count,ShiftRightHandler,85,0
-block_count,ShiftRightHandler,86,0
+block_count,ShiftRightHandler,86,1
block_count,ShiftRightHandler,87,1
block_count,ShiftRightHandler,88,0
block_count,ShiftRightHandler,89,0
@@ -65623,7 +65614,7 @@
block_count,ShiftLeftSmiHandler,48,4
block_count,ShiftLeftSmiHandler,49,0
block_count,ShiftLeftSmiHandler,50,5
-block_count,ShiftRightSmiHandler,0,8
+block_count,ShiftRightSmiHandler,0,9
block_count,ShiftRightSmiHandler,1,0
block_count,ShiftRightSmiHandler,2,0
block_count,ShiftRightSmiHandler,3,0
@@ -65659,12 +65650,12 @@
block_count,ShiftRightSmiHandler,33,0
block_count,ShiftRightSmiHandler,34,0
block_count,ShiftRightSmiHandler,35,8
-block_count,ShiftRightSmiHandler,36,8
+block_count,ShiftRightSmiHandler,36,9
block_count,ShiftRightSmiHandler,37,8
block_count,ShiftRightSmiHandler,38,0
block_count,ShiftRightSmiHandler,39,8
block_count,ShiftRightSmiHandler,40,0
-block_count,ShiftRightSmiHandler,41,8
+block_count,ShiftRightSmiHandler,41,9
block_count,ShiftRightLogicalSmiHandler,0,1
block_count,ShiftRightLogicalSmiHandler,1,0
block_count,ShiftRightLogicalSmiHandler,2,0
@@ -65781,7 +65772,7 @@
block_count,DecHandler,29,0
block_count,DecHandler,30,10
block_count,DecHandler,31,2
-block_count,DecHandler,32,8
+block_count,DecHandler,32,7
block_count,NegateHandler,0,0
block_count,NegateHandler,1,0
block_count,NegateHandler,2,0
@@ -66108,7 +66099,7 @@
block_count,CallPropertyHandler,66,3
block_count,CallPropertyHandler,67,0
block_count,CallPropertyHandler,68,4
-block_count,CallProperty0Handler,0,14
+block_count,CallProperty0Handler,0,13
block_count,CallProperty0Handler,1,12
block_count,CallProperty0Handler,2,0
block_count,CallProperty0Handler,3,0
@@ -66176,9 +66167,9 @@
block_count,CallProperty0Handler,65,0
block_count,CallProperty0Handler,66,11
block_count,CallProperty0Handler,67,1
-block_count,CallProperty0Handler,68,14
+block_count,CallProperty0Handler,68,13
block_count,CallProperty1Handler,0,29
-block_count,CallProperty1Handler,1,25
+block_count,CallProperty1Handler,1,24
block_count,CallProperty1Handler,2,0
block_count,CallProperty1Handler,3,0
block_count,CallProperty1Handler,4,0
@@ -66243,7 +66234,7 @@
block_count,CallProperty1Handler,63,0
block_count,CallProperty1Handler,64,0
block_count,CallProperty1Handler,65,0
-block_count,CallProperty1Handler,66,25
+block_count,CallProperty1Handler,66,24
block_count,CallProperty1Handler,67,4
block_count,CallProperty1Handler,68,29
block_count,CallProperty2Handler,0,7
@@ -66454,8 +66445,8 @@
block_count,CallUndefinedReceiver0Handler,67,0
block_count,CallUndefinedReceiver0Handler,68,11
block_count,CallUndefinedReceiver1Handler,0,9
-block_count,CallUndefinedReceiver1Handler,1,6
-block_count,CallUndefinedReceiver1Handler,2,1
+block_count,CallUndefinedReceiver1Handler,1,5
+block_count,CallUndefinedReceiver1Handler,2,0
block_count,CallUndefinedReceiver1Handler,3,0
block_count,CallUndefinedReceiver1Handler,4,0
block_count,CallUndefinedReceiver1Handler,5,0
@@ -66764,7 +66755,7 @@
block_count,ConstructHandler,41,0
block_count,ConstructHandler,42,0
block_count,ConstructHandler,43,0
-block_count,ConstructHandler,44,3
+block_count,ConstructHandler,44,2
block_count,ConstructHandler,45,3
block_count,ConstructHandler,46,6
block_count,ConstructHandler,47,6
@@ -66773,7 +66764,7 @@
block_count,ConstructHandler,50,0
block_count,ConstructHandler,51,0
block_count,ConstructHandler,52,6
-block_count,ConstructHandler,53,4
+block_count,ConstructHandler,53,3
block_count,ConstructHandler,54,2
block_count,ConstructWithSpreadHandler,0,0
block_count,ConstructWithSpreadHandler,1,0
@@ -66852,7 +66843,7 @@
block_count,ConstructForwardAllArgsHandler,47,0
block_count,TestEqualHandler,0,15
block_count,TestEqualHandler,1,15
-block_count,TestEqualHandler,2,13
+block_count,TestEqualHandler,2,12
block_count,TestEqualHandler,3,8
block_count,TestEqualHandler,4,8
block_count,TestEqualHandler,5,0
@@ -66996,7 +66987,7 @@
block_count,TestEqualHandler,143,0
block_count,TestEqualHandler,144,1
block_count,TestEqualHandler,145,2
-block_count,TestEqualHandler,146,5
+block_count,TestEqualHandler,146,4
block_count,TestEqualHandler,147,15
block_count,TestEqualHandler,148,14
block_count,TestEqualHandler,149,0
@@ -67004,7 +66995,7 @@
block_count,TestEqualHandler,151,0
block_count,TestEqualHandler,152,15
block_count,TestEqualStrictHandler,0,12
-block_count,TestEqualStrictHandler,1,11
+block_count,TestEqualStrictHandler,1,10
block_count,TestEqualStrictHandler,2,8
block_count,TestEqualStrictHandler,3,8
block_count,TestEqualStrictHandler,4,8
@@ -67036,7 +67027,7 @@
block_count,TestEqualStrictHandler,30,0
block_count,TestEqualStrictHandler,31,0
block_count,TestEqualStrictHandler,32,0
-block_count,TestEqualStrictHandler,33,6
+block_count,TestEqualStrictHandler,33,5
block_count,TestEqualStrictHandler,34,0
block_count,TestEqualStrictHandler,35,0
block_count,TestEqualStrictHandler,36,0
@@ -68112,7 +68103,7 @@
block_count,CreateEmptyObjectLiteralHandler,18,0
block_count,CreateEmptyObjectLiteralHandler,19,0
block_count,CreateClosureHandler,0,8
-block_count,CreateClosureHandler,1,1
+block_count,CreateClosureHandler,1,2
block_count,CreateClosureHandler,2,6
block_count,CreateClosureHandler,3,8
block_count,CreateClosureHandler,4,1
@@ -68135,7 +68126,7 @@
block_count,CreateFunctionContextHandler,11,0
block_count,CreateFunctionContextHandler,12,1
block_count,CreateFunctionContextHandler,13,3
-block_count,CreateFunctionContextHandler,14,1
+block_count,CreateFunctionContextHandler,14,2
block_count,CreateFunctionContextHandler,15,1
block_count,CreateFunctionContextHandler,16,1
block_count,CreateFunctionContextHandler,17,1
@@ -68519,13 +68510,13 @@
block_count,JumpIfToBooleanTrueHandler,14,2
block_count,JumpIfToBooleanTrueHandler,15,0
block_count,JumpIfToBooleanTrueHandler,16,1
-block_count,JumpIfToBooleanTrueHandler,17,5
+block_count,JumpIfToBooleanTrueHandler,17,4
block_count,JumpIfToBooleanTrueHandler,18,1
block_count,JumpIfToBooleanTrueHandler,19,0
block_count,JumpIfToBooleanTrueHandler,20,0
block_count,JumpIfToBooleanTrueHandler,21,5
block_count,JumpIfToBooleanTrueHandler,22,8
-block_count,JumpIfToBooleanFalseHandler,0,33
+block_count,JumpIfToBooleanFalseHandler,0,32
block_count,JumpIfToBooleanFalseHandler,1,16
block_count,JumpIfToBooleanFalseHandler,2,11
block_count,JumpIfToBooleanFalseHandler,3,8
@@ -68551,9 +68542,9 @@
block_count,JumpIfTrueHandler,0,13
block_count,JumpIfTrueHandler,1,9
block_count,JumpIfTrueHandler,2,4
-block_count,JumpIfFalseHandler,0,71
+block_count,JumpIfFalseHandler,0,69
block_count,JumpIfFalseHandler,1,43
-block_count,JumpIfFalseHandler,2,27
+block_count,JumpIfFalseHandler,2,26
block_count,JumpIfNullHandler,0,0
block_count,JumpIfNullHandler,1,0
block_count,JumpIfNullHandler,2,0
@@ -68657,9 +68648,9 @@
block_count,SetPendingMessageHandler,0,0
block_count,ThrowHandler,0,2
block_count,ReThrowHandler,0,0
-block_count,ReturnHandler,0,44
+block_count,ReturnHandler,0,43
block_count,ReturnHandler,1,0
-block_count,ReturnHandler,2,43
+block_count,ReturnHandler,2,42
block_count,ThrowReferenceErrorIfHoleHandler,0,1
block_count,ThrowReferenceErrorIfHoleHandler,1,1
block_count,ThrowReferenceErrorIfHoleHandler,2,0
@@ -68694,7 +68685,7 @@
block_count,ResumeGeneratorHandler,6,0
block_count,ResumeGeneratorHandler,7,0
block_count,GetIteratorHandler,0,0
-block_count,ShortStarHandler,0,125
+block_count,ShortStarHandler,0,124
block_count,LdarWideHandler,0,0
block_count,LdaSmiWideHandler,0,12
block_count,LdaConstantWideHandler,0,1
@@ -72687,7 +72678,7 @@
block_count,JumpLoopWideHandler,2,0
block_count,JumpLoopWideHandler,3,0
block_count,JumpLoopWideHandler,4,0
-block_count,JumpLoopWideHandler,5,2
+block_count,JumpLoopWideHandler,5,1
block_count,JumpLoopWideHandler,6,0
block_count,JumpLoopWideHandler,7,0
block_count,JumpLoopWideHandler,8,0
@@ -72714,8 +72705,8 @@
block_count,JumpLoopWideHandler,29,0
block_count,JumpLoopWideHandler,30,0
block_count,JumpLoopWideHandler,31,0
-block_count,JumpLoopWideHandler,32,2
-block_count,JumpLoopWideHandler,33,2
+block_count,JumpLoopWideHandler,32,1
+block_count,JumpLoopWideHandler,33,1
block_count,JumpLoopWideHandler,34,1
block_count,JumpLoopWideHandler,35,0
block_count,JumpLoopWideHandler,36,0
@@ -73455,9 +73446,9 @@
block_count,BitwiseAndSmiExtraWideHandler,34,0
block_count,BitwiseAndSmiExtraWideHandler,35,1
block_count,BitwiseAndSmiExtraWideHandler,36,2
-block_count,BitwiseAndSmiExtraWideHandler,37,1
+block_count,BitwiseAndSmiExtraWideHandler,37,2
block_count,BitwiseAndSmiExtraWideHandler,38,0
-block_count,BitwiseAndSmiExtraWideHandler,39,1
+block_count,BitwiseAndSmiExtraWideHandler,39,2
block_count,BitwiseAndSmiExtraWideHandler,40,0
block_count,BitwiseAndSmiExtraWideHandler,41,2
block_count,CallUndefinedReceiverExtraWideHandler,0,0
diff -Nru chromium-143.0.7499.109/v8/tools/builtins-pgo/profiles/x86.profile chromium-143.0.7499.169/v8/tools/builtins-pgo/profiles/x86.profile
--- chromium-143.0.7499.109/v8/tools/builtins-pgo/profiles/x86.profile 2025-12-08 20:35:33.000000000 +0000
+++ chromium-143.0.7499.169/v8/tools/builtins-pgo/profiles/x86.profile 2025-12-17 23:05:18.000000000 +0000
@@ -9,6 +9,7 @@
block_hint,RecordWriteSaveFP,28,27,0
block_hint,RecordWriteSaveFP,53,45,0
block_hint,RecordWriteSaveFP,48,47,0
+block_hint,RecordWriteSaveFP,50,49,1
block_hint,RecordWriteIgnoreFP,3,2,1
block_hint,RecordWriteIgnoreFP,4,9,1
block_hint,RecordWriteIgnoreFP,6,5,1
@@ -90,11 +91,13 @@
block_hint,CallWithSpread_Baseline,75,74,1
block_hint,CallWithSpread_Baseline,85,76,0
block_hint,CallWithSpread_Baseline,84,77,0
+block_hint,CallWithSpread_Baseline,83,78,1
block_hint,CallWithSpread_Baseline,82,79,1
block_hint,CallWithSpread_Baseline,96,88,0
block_hint,CallWithSpread_Baseline,89,94,1
block_hint,CallWithSpread_Baseline,91,90,1
block_hint,CallWithSpread_Baseline,93,92,1
+block_hint,CallWithSpread_Baseline,99,132,0
block_hint,CallWithSpread_Baseline,131,100,0
block_hint,CallWithSpread_Baseline,101,104,1
block_hint,CallWithSpread_Baseline,103,102,1
@@ -155,7 +158,6 @@
block_hint,FastNewClosure,17,16,0
block_hint,FastNewClosure,23,22,1
block_hint,StringEqual,7,6,0
-block_hint,StringEqual,16,10,0
block_hint,StringEqual,21,24,0
block_hint,StringEqual,60,31,0
block_hint,StringEqual,33,34,1
@@ -359,7 +361,6 @@
block_hint,KeyedStoreIC_Megamorphic,286,285,0
block_hint,KeyedStoreIC_Megamorphic,288,289,1
block_hint,KeyedStoreIC_Megamorphic,295,294,1
-block_hint,KeyedStoreIC_Megamorphic,315,314,1
block_hint,KeyedStoreIC_Megamorphic,676,604,1
block_hint,KeyedStoreIC_Megamorphic,675,674,1
block_hint,KeyedStoreIC_Megamorphic,690,684,0
@@ -764,18 +765,6 @@
block_hint,ElementsTransitionAndStore_InBounds,630,629,1
block_hint,ElementsTransitionAndStore_InBounds,633,632,0
block_hint,ElementsTransitionAndStore_NoTransitionGrowAndHandleCOW,396,386,0
-block_hint,ElementsTransitionAndStore_NoTransitionGrowAndHandleCOW,399,404,0
-block_hint,ElementsTransitionAndStore_NoTransitionGrowAndHandleCOW,401,400,1
-block_hint,ElementsTransitionAndStore_NoTransitionGrowAndHandleCOW,403,402,0
-block_hint,ElementsTransitionAndStore_NoTransitionGrowAndHandleCOW,442,414,0
-block_hint,ElementsTransitionAndStore_NoTransitionGrowAndHandleCOW,440,416,0
-block_hint,ElementsTransitionAndStore_NoTransitionGrowAndHandleCOW,419,418,1
-block_hint,ElementsTransitionAndStore_NoTransitionGrowAndHandleCOW,428,429,0
-block_hint,ElementsTransitionAndStore_NoTransitionGrowAndHandleCOW,437,436,0
-block_hint,ElementsTransitionAndStore_NoTransitionGrowAndHandleCOW,454,444,1
-block_hint,ElementsTransitionAndStore_NoTransitionGrowAndHandleCOW,452,453,1
-block_hint,ElementsTransitionAndStore_NoTransitionGrowAndHandleCOW,487,463,1
-block_hint,ElementsTransitionAndStore_NoTransitionGrowAndHandleCOW,485,481,1
block_hint,KeyedHasIC_PolymorphicName,1,2,1
block_hint,KeyedHasIC_PolymorphicName,6,7,1
block_hint,KeyedHasIC_PolymorphicName,54,10,0
@@ -891,6 +880,7 @@
block_hint,SetDataProperties,680,665,1
block_hint,SetDataProperties,690,689,1
block_hint,ReturnReceiver,2,1,1
+block_hint,ArrayConstructorImpl,1,42,1
block_hint,ArrayConstructorImpl,9,6,1
block_hint,ArrayConstructorImpl,10,11,1
block_hint,ArrayConstructorImpl,21,14,0
@@ -1296,12 +1286,10 @@
block_hint,GlobalIsNaN,6,9,1
block_hint,LoadIC,1,2,1
block_hint,LoadIC,5,6,0
-block_hint,LoadIC,34,7,1
block_hint,LoadIC,21,8,1
block_hint,LoadIC,23,22,0
+block_hint,LoadIC,25,28,1
block_hint,LoadIC,26,27,1
-block_hint,LoadIC,30,33,1
-block_hint,LoadIC,31,32,1
block_hint,LoadIC,37,38,1
block_hint,LoadIC,130,43,0
block_hint,LoadIC,48,45,0
@@ -1683,6 +1671,7 @@
block_hint,StoreIC,371,370,0
block_hint,StoreIC_Megamorphic,1,2,1
block_hint,StoreIC_Megamorphic,5,4,0
+block_hint,StoreIC_Megamorphic,8,9,1
block_hint,StoreIC_Megamorphic,12,15,1
block_hint,StoreIC_Megamorphic,13,14,1
block_hint,StoreIC_Megamorphic,17,257,1
@@ -2100,6 +2089,7 @@
block_hint,Divide_Baseline,60,59,1
block_hint,Divide_Baseline,72,71,0
block_hint,DivideSmi_Baseline,15,2,0
+block_hint,DivideSmi_Baseline,4,3,0
block_hint,DivideSmi_Baseline,6,5,0
block_hint,DivideSmi_Baseline,9,8,0
block_hint,DivideSmi_Baseline,32,31,0
@@ -2188,11 +2178,11 @@
block_hint,Equal_Baseline,66,67,0
block_hint,Equal_Baseline,72,71,1
block_hint,Equal_Baseline,82,83,0
-block_hint,Equal_Baseline,88,107,0
block_hint,Equal_Baseline,98,92,0
block_hint,Equal_Baseline,93,97,1
block_hint,Equal_Baseline,103,104,0
block_hint,Equal_Baseline,109,110,0
+block_hint,Equal_Baseline,139,125,0
block_hint,Equal_Baseline,130,129,0
block_hint,Equal_Baseline,133,132,1
block_hint,Equal_Baseline,136,137,0
@@ -2209,6 +2199,7 @@
block_hint,StrictEqual_Baseline,24,23,1
block_hint,StrictEqual_Baseline,34,31,1
block_hint,StrictEqual_Baseline,38,39,0
+block_hint,StrictEqual_Baseline,47,46,0
block_hint,StrictEqual_Baseline,54,59,0
block_hint,StrictEqual_Baseline,77,63,0
block_hint,StrictEqual_Baseline,68,67,0
@@ -2219,7 +2210,6 @@
block_hint,LessThan_Baseline,28,21,1
block_hint,LessThan_Baseline,46,34,0
block_hint,LessThan_Baseline,42,35,1
-block_hint,LessThan_Baseline,88,74,1
block_hint,LessThan_Baseline,87,75,1
block_hint,LessThan_Baseline,102,90,1
block_hint,LessThan_Baseline,98,91,0
@@ -2233,7 +2223,6 @@
block_hint,GreaterThan_Baseline,8,7,1
block_hint,GreaterThan_Baseline,16,9,1
block_hint,GreaterThan_Baseline,18,17,1
-block_hint,GreaterThan_Baseline,88,74,1
block_hint,GreaterThan_Baseline,87,75,1
block_hint,GreaterThan_Baseline,98,91,0
block_hint,GreaterThan_Baseline,104,120,0
@@ -5035,8 +5024,6 @@
block_hint,MergeAt,71,76,1
block_hint,MergeAt,72,75,1
block_hint,MergeAt,74,73,0
-block_hint,MergeAt,85,82,0
-block_hint,MergeAt,83,84,0
block_hint,MergeAt,89,88,1
block_hint,MergeAt,91,118,1
block_hint,MergeAt,97,117,1
@@ -5607,7 +5594,6 @@
block_hint,TestEqualHandler,4,85,1
block_hint,TestEqualHandler,19,9,0
block_hint,TestEqualHandler,17,16,0
-block_hint,TestEqualHandler,42,41,1
block_hint,TestEqualHandler,66,67,0
block_hint,TestEqualHandler,72,71,1
block_hint,TestEqualHandler,82,83,0
@@ -5621,7 +5607,6 @@
block_hint,TestEqualStrictHandler,10,9,1
block_hint,TestEqualStrictHandler,12,11,1
block_hint,TestEqualStrictHandler,26,21,0
-block_hint,TestEqualStrictHandler,37,34,1
block_hint,TestEqualStrictHandler,36,35,1
block_hint,TestEqualStrictHandler,41,42,0
block_hint,TestEqualStrictHandler,59,58,0
@@ -5662,7 +5647,9 @@
block_hint,CreateArrayLiteralHandler,12,15,1
block_hint,CreateArrayLiteralHandler,14,13,1
block_hint,CreateArrayLiteralHandler,19,18,0
-block_hint,CreateArrayLiteralHandler,30,29,0
+block_hint,CreateArrayLiteralHandler,32,31,1
+block_hint,CreateArrayLiteralHandler,34,33,0
+block_hint,CreateArrayLiteralHandler,40,39,1
block_hint,CreateArrayLiteralHandler,71,46,0
block_hint,CreateArrayLiteralHandler,48,47,1
block_hint,CreateArrayLiteralHandler,50,49,1
@@ -5779,21 +5766,12 @@
block_hint,LdaImmutableContextSlotWideHandler,10,9,1
block_hint,LdaImmutableCurrentContextSlotWideHandler,2,1,1
block_hint,LdaGlobalWideHandler,232,1,0
-block_hint,LdaGlobalWideHandler,5,4,0
block_hint,StaCurrentContextSlotNoCellWideHandler,2,1,1
block_hint,GetNamedPropertyWideHandler,277,1,0
block_hint,GetNamedPropertyWideHandler,2,3,1
-block_hint,GetNamedPropertyWideHandler,106,18,0
-block_hint,GetNamedPropertyWideHandler,23,20,0
-block_hint,GetNamedPropertyWideHandler,22,21,0
-block_hint,GetNamedPropertyWideHandler,98,104,1
-block_hint,GetNamedPropertyWideHandler,102,99,0
-block_hint,GetNamedPropertyWideHandler,101,100,0
-block_hint,GetNamedPropertyWideHandler,206,112,1
block_hint,GetNamedPropertyWideHandler,218,208,0
block_hint,AddWideHandler,2,5,0
block_hint,AddWideHandler,12,6,0
-block_hint,AddWideHandler,16,17,1
block_hint,AddWideHandler,57,20,0
block_hint,AddWideHandler,21,56,1
block_hint,AddWideHandler,50,40,1
@@ -5894,15 +5872,15 @@
block_hint,BitwiseAndSmiExtraWideHandler,27,26,0
block_hint,BitwiseAndSmiExtraWideHandler,41,38,1
block_hint,CallUndefinedReceiver1ExtraWideHandler,1,67,0
-builtin_count,RecordWriteSaveFP,1560
+builtin_count,RecordWriteSaveFP,1540
builtin_count,RecordWriteIgnoreFP,1
builtin_count,EphemeronKeyBarrierSaveFP,0
builtin_count,AdaptorWithBuiltinExitFrame0,116
builtin_count,AdaptorWithBuiltinExitFrame1,4
builtin_count,AdaptorWithBuiltinExitFrame2,0
builtin_count,AdaptorWithBuiltinExitFrame3,8
-builtin_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,426
-builtin_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,1471
+builtin_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,420
+builtin_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,1462
builtin_count,Call_ReceiverIsAny_Baseline_Compact,5
builtin_count,CallProxy,0
builtin_count,CallWithSpread,19
@@ -5912,9 +5890,9 @@
builtin_count,ConstructWithSpread,0
builtin_count,ConstructWithSpread_Baseline,0
builtin_count,ConstructForwardAllArgs_Baseline,1
-builtin_count,Construct_Baseline,127
+builtin_count,Construct_Baseline,126
builtin_count,FastNewObject,342
-builtin_count,FastNewClosure,101
+builtin_count,FastNewClosure,99
builtin_count,StringEqual,656
builtin_count,StringGreaterThan,0
builtin_count,StringGreaterThanOrEqual,4
@@ -5930,13 +5908,13 @@
builtin_count,MarkLazyDeoptimized,0
builtin_count,HandleApiCallOrConstruct,1
builtin_count,AllocateInYoungGeneration,4
-builtin_count,AllocateInOldGeneration,1
+builtin_count,AllocateInOldGeneration,2
builtin_count,CopyFastSmiOrObjectElements,17
builtin_count,GrowFastDoubleElements,383
builtin_count,GrowFastSmiOrObjectElements,351
builtin_count,ToNumber,0
builtin_count,ToNumber_Baseline,0
-builtin_count,ToNumeric_Baseline,84
+builtin_count,ToNumeric_Baseline,83
builtin_count,ToNumberConvertBigInt,3
builtin_count,Typeof,30
builtin_count,Typeof_Baseline,2
@@ -5951,8 +5929,8 @@
builtin_count,StoreIC_NoFeedback,6
builtin_count,DefineNamedOwnIC_NoFeedback,4
builtin_count,KeyedLoadIC_SloppyArguments,2
-builtin_count,StoreFastElementIC_InBounds,460
-builtin_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,46
+builtin_count,StoreFastElementIC_InBounds,458
+builtin_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,47
builtin_count,StoreFastElementIC_NoTransitionHandleCOW,0
builtin_count,ElementsTransitionAndStore_InBounds,1
builtin_count,ElementsTransitionAndStore_NoTransitionGrowAndHandleCOW,0
@@ -5965,7 +5943,7 @@
builtin_count,SetDataProperties,2
builtin_count,ReturnReceiver,4
builtin_count,ArrayConstructor,1
-builtin_count,ArrayConstructorImpl,6
+builtin_count,ArrayConstructorImpl,5
builtin_count,ArrayNoArgumentConstructor_PackedSmi_DontOverride,0
builtin_count,ArrayNoArgumentConstructor_HoleySmi_DontOverride,0
builtin_count,ArrayNoArgumentConstructor_PackedSmi_DisableAllocationSites,0
@@ -5983,7 +5961,7 @@
builtin_count,ArrayIndexOfSmiOrObject,144
builtin_count,ArrayIndexOf,26
builtin_count,ArrayPrototypePop,14
-builtin_count,ArrayPrototypePush,191
+builtin_count,ArrayPrototypePush,346
builtin_count,CloneFastJSArray,196
builtin_count,CloneFastJSArrayFillingHoles,0
builtin_count,ExtractFastJSArray,206
@@ -5994,7 +5972,7 @@
builtin_count,ArrayPrototypeEntries,0
builtin_count,ArrayPrototypeKeys,0
builtin_count,ArrayPrototypeValues,33
-builtin_count,ArrayIteratorPrototypeNext,79
+builtin_count,ArrayIteratorPrototypeNext,80
builtin_count,AsyncFunctionEnter,0
builtin_count,AsyncFunctionResolve,0
builtin_count,AsyncFunctionAwait,4
@@ -6019,45 +5997,45 @@
builtin_count,CallIteratorWithFeedbackLazyDeoptContinuation,0
builtin_count,GlobalIsFinite,0
builtin_count,GlobalIsNaN,0
-builtin_count,LoadIC,584
+builtin_count,LoadIC,581
builtin_count,LoadIC_Megamorphic,10000
builtin_count,LoadIC_Noninlined,6
-builtin_count,LoadICTrampoline,343
-builtin_count,LoadICBaseline,5238
-builtin_count,LoadICTrampoline_Megamorphic,6101
+builtin_count,LoadICTrampoline,335
+builtin_count,LoadICBaseline,5194
+builtin_count,LoadICTrampoline_Megamorphic,6113
builtin_count,LoadSuperIC,5
builtin_count,LoadSuperICBaseline,5
-builtin_count,KeyedLoadIC,998
-builtin_count,EnumeratedKeyedLoadIC,7
-builtin_count,KeyedLoadIC_Megamorphic,2429
+builtin_count,KeyedLoadIC,990
+builtin_count,EnumeratedKeyedLoadIC,8
+builtin_count,KeyedLoadIC_Megamorphic,2428
builtin_count,KeyedLoadICTrampoline,1
-builtin_count,KeyedLoadICBaseline,929
+builtin_count,KeyedLoadICBaseline,920
builtin_count,EnumeratedKeyedLoadICBaseline,6
-builtin_count,KeyedLoadICTrampoline_Megamorphic,1189
+builtin_count,KeyedLoadICTrampoline_Megamorphic,1201
builtin_count,StoreGlobalIC,144
builtin_count,StoreGlobalICTrampoline,0
builtin_count,StoreGlobalICBaseline,7
-builtin_count,StoreIC,700
-builtin_count,StoreIC_Megamorphic,1297
+builtin_count,StoreIC,699
+builtin_count,StoreIC_Megamorphic,1282
builtin_count,StoreICTrampoline,24
builtin_count,StoreICTrampoline_Megamorphic,632
builtin_count,StoreICBaseline,640
-builtin_count,DefineNamedOwnIC,82
-builtin_count,DefineNamedOwnICBaseline,75
-builtin_count,KeyedStoreIC,494
+builtin_count,DefineNamedOwnIC,80
+builtin_count,DefineNamedOwnICBaseline,74
+builtin_count,KeyedStoreIC,491
builtin_count,KeyedStoreICTrampoline,1
-builtin_count,KeyedStoreICTrampoline_Megamorphic,300
-builtin_count,KeyedStoreICBaseline,447
+builtin_count,KeyedStoreICTrampoline_Megamorphic,299
+builtin_count,KeyedStoreICBaseline,444
builtin_count,DefineKeyedOwnIC,2
-builtin_count,StoreInArrayLiteralIC,43
-builtin_count,StoreInArrayLiteralICBaseline,38
-builtin_count,LoadGlobalIC,1267
+builtin_count,StoreInArrayLiteralIC,45
+builtin_count,StoreInArrayLiteralICBaseline,40
+builtin_count,LoadGlobalIC,1006
builtin_count,LoadGlobalICInsideTypeof,2
-builtin_count,LoadGlobalICTrampoline,297
-builtin_count,LoadGlobalICBaseline,922
+builtin_count,LoadGlobalICTrampoline,68
+builtin_count,LoadGlobalICBaseline,910
builtin_count,LoadGlobalICInsideTypeofTrampoline,0
builtin_count,LoadGlobalICInsideTypeofBaseline,2
-builtin_count,LookupGlobalICBaseline,2
+builtin_count,LookupGlobalICBaseline,3
builtin_count,LookupGlobalICInsideTypeofBaseline,0
builtin_count,KeyedHasIC,728
builtin_count,KeyedHasICBaseline,6
@@ -6080,40 +6058,40 @@
builtin_count,MapPrototypeValues,0
builtin_count,MapIteratorPrototypeNext,9
builtin_count,MapIteratorToList,0
-builtin_count,Add_Baseline,582
-builtin_count,AddSmi_Baseline,581
-builtin_count,Subtract_Baseline,127
+builtin_count,Add_Baseline,576
+builtin_count,AddSmi_Baseline,576
+builtin_count,Subtract_Baseline,126
builtin_count,SubtractSmi_Baseline,78
-builtin_count,Multiply_Baseline,187
-builtin_count,MultiplySmi_Baseline,30
+builtin_count,Multiply_Baseline,184
+builtin_count,MultiplySmi_Baseline,28
builtin_count,Divide_Baseline,15
builtin_count,DivideSmi_Baseline,5
builtin_count,Modulus_Baseline,2
builtin_count,ModulusSmi_Baseline,4
builtin_count,Exponentiate_Baseline,0
-builtin_count,BitwiseAnd_Baseline,32
-builtin_count,BitwiseAndSmi_Baseline,117
-builtin_count,BitwiseOr_Baseline,60
-builtin_count,BitwiseOrSmi_Baseline,288
-builtin_count,BitwiseXor_Baseline,41
+builtin_count,BitwiseAnd_Baseline,31
+builtin_count,BitwiseAndSmi_Baseline,115
+builtin_count,BitwiseOr_Baseline,59
+builtin_count,BitwiseOrSmi_Baseline,287
+builtin_count,BitwiseXor_Baseline,40
builtin_count,BitwiseXorSmi_Baseline,1
builtin_count,ShiftLeft_Baseline,5
-builtin_count,ShiftLeftSmi_Baseline,78
-builtin_count,ShiftRight_Baseline,7
-builtin_count,ShiftRightSmi_Baseline,239
+builtin_count,ShiftLeftSmi_Baseline,76
+builtin_count,ShiftRight_Baseline,8
+builtin_count,ShiftRightSmi_Baseline,236
builtin_count,ShiftRightLogical_Baseline,1
builtin_count,ShiftRightLogicalSmi_Baseline,18
builtin_count,Add_LhsIsStringConstant_Internalize_Baseline,1
builtin_count,Add_RhsIsStringConstant_Internalize_Baseline,0
-builtin_count,Equal_Baseline,344
-builtin_count,StrictEqual_Baseline,518
-builtin_count,LessThan_Baseline,484
-builtin_count,GreaterThan_Baseline,168
-builtin_count,LessThanOrEqual_Baseline,63
-builtin_count,GreaterThanOrEqual_Baseline,123
+builtin_count,Equal_Baseline,338
+builtin_count,StrictEqual_Baseline,508
+builtin_count,LessThan_Baseline,487
+builtin_count,GreaterThan_Baseline,170
+builtin_count,LessThanOrEqual_Baseline,64
+builtin_count,GreaterThanOrEqual_Baseline,124
builtin_count,BitwiseNot_Baseline,6
-builtin_count,Decrement_Baseline,59
-builtin_count,Increment_Baseline,326
+builtin_count,Decrement_Baseline,57
+builtin_count,Increment_Baseline,327
builtin_count,Negate_Baseline,13
builtin_count,ObjectAssign,2
builtin_count,ObjectCreate,3
@@ -6122,12 +6100,12 @@
builtin_count,ObjectGetOwnPropertyNames,0
builtin_count,ObjectIs,0
builtin_count,ObjectKeys,15
-builtin_count,ObjectPrototypeHasOwnProperty,243
+builtin_count,ObjectPrototypeHasOwnProperty,242
builtin_count,ObjectToString,63
builtin_count,InstanceOf,11
-builtin_count,InstanceOf_Baseline,83
+builtin_count,InstanceOf_Baseline,80
builtin_count,ForInEnumerate,59
-builtin_count,ForInPrepare,1
+builtin_count,ForInPrepare,2
builtin_count,ForInFilter,223
builtin_count,RegExpConstructor,0
builtin_count,FindOrderedHashSetEntry,116
@@ -6141,7 +6119,7 @@
builtin_count,SetPrototypeValues,3
builtin_count,SetIteratorPrototypeNext,47
builtin_count,SetOrSetIteratorToList,0
-builtin_count,StringFromCharCode,32
+builtin_count,StringFromCharCode,31
builtin_count,StringPrototypeReplace,247
builtin_count,StringPrototypeSplit,54
builtin_count,TypedArrayConstructor,2
@@ -6164,9 +6142,9 @@
builtin_count,AsyncGeneratorAwait,7
builtin_count,AsyncGeneratorAwaitResolveClosure,7
builtin_count,AsyncGeneratorYieldWithAwaitResolveClosure,8
-builtin_count,StringAdd_CheckNone,7926
-builtin_count,SubString,1672
-builtin_count,GetProperty,503
+builtin_count,StringAdd_CheckNone,7921
+builtin_count,SubString,1671
+builtin_count,GetProperty,501
builtin_count,GetPropertyWithReceiver,17
builtin_count,SetProperty,0
builtin_count,CreateDataProperty,1
@@ -6182,7 +6160,7 @@
builtin_count,ArrayForEach,2
builtin_count,ArrayFrom,0
builtin_count,ArrayIsArray,5
-builtin_count,LoadJoinElement_FastSmiOrObjectElements_0,655
+builtin_count,LoadJoinElement_FastSmiOrObjectElements_0,654
builtin_count,JoinStackPush,0
builtin_count,JoinStackPop,0
builtin_count,ArrayPrototypeJoin,80
@@ -6210,20 +6188,20 @@
builtin_count,ToString,74
builtin_count,StringPrototypeToString,19
builtin_count,StringPrototypeCharAt,17
-builtin_count,StringPrototypeCharCodeAt,67
+builtin_count,StringPrototypeCharCodeAt,68
builtin_count,StringPrototypeCodePointAt,0
builtin_count,StringPrototypeConcat,0
-builtin_count,StringConstructor,34
+builtin_count,StringConstructor,33
builtin_count,StringAddConvertLeft,17
builtin_count,StringAddConvertRight,199
builtin_count,StringCharAt,9
-builtin_count,FastNewClosureBaseline,92
-builtin_count,FastNewFunctionContextFunction,70
-builtin_count,FastNewFunctionContextFunctionWithCells,26
+builtin_count,FastNewClosureBaseline,89
+builtin_count,FastNewFunctionContextFunction,69
+builtin_count,FastNewFunctionContextFunctionWithCells,25
builtin_count,CreateRegExpLiteral,41
-builtin_count,CreateShallowArrayLiteral,20
+builtin_count,CreateShallowArrayLiteral,21
builtin_count,CreateEmptyArrayLiteral,29
-builtin_count,CreateShallowObjectLiteral,32
+builtin_count,CreateShallowObjectLiteral,31
builtin_count,ObjectConstructor,24
builtin_count,CreateEmptyLiteralObject,3
builtin_count,NumberConstructor,0
@@ -6232,7 +6210,7 @@
builtin_count,NonNumberToNumeric,5
builtin_count,NumberToString,1220
builtin_count,ToBoolean,26
-builtin_count,ToBooleanForBaselineJump,1121
+builtin_count,ToBooleanForBaselineJump,1115
builtin_count,ToLength,2
builtin_count,ToName,48
builtin_count,ToObject,248
@@ -6246,9 +6224,9 @@
builtin_count,DataViewPrototypeGetFloat64,0
builtin_count,DataViewPrototypeSetUint32,0
builtin_count,DataViewPrototypeSetFloat64,0
-builtin_count,FunctionPrototypeHasInstance,97
+builtin_count,FunctionPrototypeHasInstance,95
builtin_count,FastFunctionPrototypeBind,2
-builtin_count,ForInNext,7
+builtin_count,ForInNext,8
builtin_count,GetIteratorWithFeedback,0
builtin_count,GetIteratorBaseline,34
builtin_count,CallIteratorWithFeedback,35
@@ -6287,7 +6265,7 @@
builtin_count,LessThan,4
builtin_count,GreaterThanOrEqual,3
builtin_count,Equal,53
-builtin_count,StrictEqual,1398
+builtin_count,StrictEqual,1400
builtin_count,CreateObjectWithoutProperties,11
builtin_count,ObjectIsExtensible,0
builtin_count,ObjectPreventExtensions,0
@@ -6315,7 +6293,7 @@
builtin_count,ProxyPreventExtensions,0
builtin_count,ReflectGet,0
builtin_count,ReflectHas,0
-builtin_count,RegExpPrototypeExec,424
+builtin_count,RegExpPrototypeExec,423
builtin_count,RegExpMatchFast,1252
builtin_count,RegExpReplace,199
builtin_count,RegExpPrototypeReplace,0
@@ -6354,10 +6332,10 @@
builtin_count,NewSloppyArgumentsElements,40
builtin_count,NewStrictArgumentsElements,0
builtin_count,NewRestArgumentsElements,13
-builtin_count,FastNewSloppyArguments,6
+builtin_count,FastNewSloppyArguments,5
builtin_count,FastNewStrictArguments,3
builtin_count,FastNewRestArguments,1
-builtin_count,LoadFromContextCell,31
+builtin_count,LoadFromContextCell,30
builtin_count,StoreCurrentContextElementBaseline,5
builtin_count,StoreContextElementBaseline,0
builtin_count,DetachContextCell,0
@@ -6370,14 +6348,14 @@
builtin_count,Store_FastObjectElements_0,243
builtin_count,Store_FastDoubleElements_0,0
builtin_count,SortCompareDefault,3
-builtin_count,SortCompareUserFn,753
+builtin_count,SortCompareUserFn,752
builtin_count,Copy,2
builtin_count,MergeAt,1
builtin_count,GallopLeft,1
builtin_count,GallopRight,1
builtin_count,ArrayTimSort,38
builtin_count,ArrayPrototypeSort,39
-builtin_count,StringFastLocaleCompare,1432
+builtin_count,StringFastLocaleCompare,1431
builtin_count,JSToWasmWrapper,0
builtin_count,JSToWasmHandleReturns,0
builtin_count,WasmTaggedNonSmiToInt32,0
@@ -6390,25 +6368,25 @@
builtin_count,CanUseSameAccessor_FastObjectElements_0,38
builtin_count,StringPrototypeToLowerCaseIntl,1
builtin_count,StringToLowerCaseIntl,147
-builtin_count,WideHandler,74
+builtin_count,WideHandler,73
builtin_count,ExtraWideHandler,18
builtin_count,LdarHandler,251
builtin_count,LdaZeroHandler,27
-builtin_count,LdaSmiHandler,26
+builtin_count,LdaSmiHandler,27
builtin_count,LdaUndefinedHandler,13
builtin_count,LdaNullHandler,2
builtin_count,LdaTheHoleHandler,0
builtin_count,LdaTrueHandler,4
builtin_count,LdaFalseHandler,5
builtin_count,LdaConstantHandler,23
-builtin_count,LdaContextSlotNoCellHandler,2
+builtin_count,LdaContextSlotNoCellHandler,1
builtin_count,LdaContextSlotHandler,0
builtin_count,LdaImmutableContextSlotHandler,10
builtin_count,LdaCurrentContextSlotNoCellHandler,17
builtin_count,LdaCurrentContextSlotHandler,3
builtin_count,LdaImmutableCurrentContextSlotHandler,36
-builtin_count,StarHandler,35
-builtin_count,MovHandler,44
+builtin_count,StarHandler,37
+builtin_count,MovHandler,45
builtin_count,PushContextHandler,3
builtin_count,PopContextHandler,0
builtin_count,TestReferenceEqualHandler,1
@@ -6416,7 +6394,7 @@
builtin_count,TestNullHandler,0
builtin_count,TestUndefinedHandler,0
builtin_count,TestTypeOfHandler,1
-builtin_count,LdaGlobalHandler,54
+builtin_count,LdaGlobalHandler,55
builtin_count,LdaGlobalInsideTypeofHandler,0
builtin_count,StaGlobalHandler,2
builtin_count,StaContextSlotNoCellHandler,0
@@ -6426,7 +6404,7 @@
builtin_count,LdaLookupGlobalSlotHandler,1
builtin_count,LdaLookupGlobalSlotInsideTypeofHandler,0
builtin_count,StaLookupSlotHandler,0
-builtin_count,GetNamedPropertyHandler,163
+builtin_count,GetNamedPropertyHandler,162
builtin_count,GetNamedPropertyFromSuperHandler,0
builtin_count,GetKeyedPropertyHandler,66
builtin_count,GetEnumeratedKeyedPropertyHandler,1
@@ -6446,10 +6424,10 @@
builtin_count,BitwiseXorHandler,3
builtin_count,BitwiseAndHandler,2
builtin_count,ShiftLeftHandler,0
-builtin_count,ShiftRightHandler,1
+builtin_count,ShiftRightHandler,0
builtin_count,ShiftRightLogicalHandler,0
builtin_count,Add_StringConstant_InternalizeHandler,0
-builtin_count,AddSmiHandler,13
+builtin_count,AddSmiHandler,12
builtin_count,SubSmiHandler,3
builtin_count,MulSmiHandler,5
builtin_count,DivSmiHandler,3
@@ -6458,7 +6436,7 @@
builtin_count,BitwiseXorSmiHandler,0
builtin_count,BitwiseAndSmiHandler,3
builtin_count,ShiftLeftSmiHandler,5
-builtin_count,ShiftRightSmiHandler,9
+builtin_count,ShiftRightSmiHandler,8
builtin_count,ShiftRightLogicalSmiHandler,1
builtin_count,IncHandler,46
builtin_count,DecHandler,10
@@ -6476,9 +6454,9 @@
builtin_count,CallProperty1Handler,29
builtin_count,CallProperty2Handler,7
builtin_count,CallUndefinedReceiverHandler,1
-builtin_count,CallUndefinedReceiver0Handler,10
+builtin_count,CallUndefinedReceiver0Handler,11
builtin_count,CallUndefinedReceiver1Handler,9
-builtin_count,CallUndefinedReceiver2Handler,7
+builtin_count,CallUndefinedReceiver2Handler,8
builtin_count,CallWithSpreadHandler,0
builtin_count,CallRuntimeHandler,0
builtin_count,CallJSRuntimeHandler,0
@@ -6488,7 +6466,7 @@
builtin_count,ConstructForwardAllArgsHandler,0
builtin_count,TestEqualHandler,15
builtin_count,TestEqualStrictHandler,12
-builtin_count,TestLessThanHandler,39
+builtin_count,TestLessThanHandler,40
builtin_count,TestGreaterThanHandler,5
builtin_count,TestLessThanOrEqualHandler,2
builtin_count,TestGreaterThanOrEqualHandler,5
@@ -6501,7 +6479,7 @@
builtin_count,ToStringHandler,0
builtin_count,ToBooleanHandler,0
builtin_count,CreateRegExpLiteralHandler,0
-builtin_count,CreateArrayLiteralHandler,1
+builtin_count,CreateArrayLiteralHandler,2
builtin_count,CreateArrayFromIterableHandler,0
builtin_count,CreateEmptyArrayLiteralHandler,0
builtin_count,CreateObjectLiteralHandler,2
@@ -6520,7 +6498,7 @@
builtin_count,JumpIfUndefinedConstantHandler,0
builtin_count,JumpIfNotUndefinedConstantHandler,0
builtin_count,JumpIfUndefinedOrNullConstantHandler,0
-builtin_count,JumpIfTrueConstantHandler,1
+builtin_count,JumpIfTrueConstantHandler,0
builtin_count,JumpIfFalseConstantHandler,1
builtin_count,JumpIfForInDoneConstantHandler,0
builtin_count,JumpIfToBooleanTrueConstantHandler,0
@@ -6647,38 +6625,38 @@
builtin_count,DivSmiExtraWideHandler,0
builtin_count,BitwiseOrSmiExtraWideHandler,3
builtin_count,BitwiseXorSmiExtraWideHandler,0
-builtin_count,BitwiseAndSmiExtraWideHandler,2
+builtin_count,BitwiseAndSmiExtraWideHandler,1
builtin_count,CallUndefinedReceiverExtraWideHandler,0
builtin_count,CallUndefinedReceiver1ExtraWideHandler,4
builtin_count,CallUndefinedReceiver2ExtraWideHandler,0
-block_count,RecordWriteSaveFP,0,1560
-block_count,RecordWriteSaveFP,1,1474
+block_count,RecordWriteSaveFP,0,1540
+block_count,RecordWriteSaveFP,1,1473
block_count,RecordWriteSaveFP,2,0
-block_count,RecordWriteSaveFP,3,1474
-block_count,RecordWriteSaveFP,4,1474
+block_count,RecordWriteSaveFP,3,1473
+block_count,RecordWriteSaveFP,4,1473
block_count,RecordWriteSaveFP,5,0
-block_count,RecordWriteSaveFP,6,1474
-block_count,RecordWriteSaveFP,7,1473
-block_count,RecordWriteSaveFP,8,0
+block_count,RecordWriteSaveFP,6,1473
+block_count,RecordWriteSaveFP,7,1472
+block_count,RecordWriteSaveFP,8,1
block_count,RecordWriteSaveFP,9,0
-block_count,RecordWriteSaveFP,10,0
-block_count,RecordWriteSaveFP,11,1474
-block_count,RecordWriteSaveFP,12,85
-block_count,RecordWriteSaveFP,13,60
-block_count,RecordWriteSaveFP,14,57
-block_count,RecordWriteSaveFP,15,57
+block_count,RecordWriteSaveFP,10,1
+block_count,RecordWriteSaveFP,11,1473
+block_count,RecordWriteSaveFP,12,66
+block_count,RecordWriteSaveFP,13,40
+block_count,RecordWriteSaveFP,14,38
+block_count,RecordWriteSaveFP,15,38
block_count,RecordWriteSaveFP,16,0
-block_count,RecordWriteSaveFP,17,2
-block_count,RecordWriteSaveFP,18,2
+block_count,RecordWriteSaveFP,17,1
+block_count,RecordWriteSaveFP,18,1
block_count,RecordWriteSaveFP,19,0
-block_count,RecordWriteSaveFP,20,2
-block_count,RecordWriteSaveFP,21,2
+block_count,RecordWriteSaveFP,20,1
+block_count,RecordWriteSaveFP,21,1
block_count,RecordWriteSaveFP,22,0
block_count,RecordWriteSaveFP,23,0
block_count,RecordWriteSaveFP,24,0
-block_count,RecordWriteSaveFP,25,25
-block_count,RecordWriteSaveFP,26,85
-block_count,RecordWriteSaveFP,27,85
+block_count,RecordWriteSaveFP,25,26
+block_count,RecordWriteSaveFP,26,66
+block_count,RecordWriteSaveFP,27,66
block_count,RecordWriteSaveFP,28,0
block_count,RecordWriteSaveFP,29,0
block_count,RecordWriteSaveFP,30,0
@@ -6695,21 +6673,21 @@
block_count,RecordWriteSaveFP,41,0
block_count,RecordWriteSaveFP,42,0
block_count,RecordWriteSaveFP,43,0
-block_count,RecordWriteSaveFP,44,85
-block_count,RecordWriteSaveFP,45,85
-block_count,RecordWriteSaveFP,46,83
-block_count,RecordWriteSaveFP,47,83
+block_count,RecordWriteSaveFP,44,66
+block_count,RecordWriteSaveFP,45,66
+block_count,RecordWriteSaveFP,46,62
+block_count,RecordWriteSaveFP,47,61
block_count,RecordWriteSaveFP,48,0
block_count,RecordWriteSaveFP,49,0
block_count,RecordWriteSaveFP,50,0
-block_count,RecordWriteSaveFP,51,2
-block_count,RecordWriteSaveFP,52,2
+block_count,RecordWriteSaveFP,51,4
+block_count,RecordWriteSaveFP,52,4
block_count,RecordWriteSaveFP,53,0
block_count,RecordWriteSaveFP,54,0
block_count,RecordWriteSaveFP,55,0
block_count,RecordWriteSaveFP,56,0
block_count,RecordWriteSaveFP,57,0
-block_count,RecordWriteSaveFP,58,85
+block_count,RecordWriteSaveFP,58,66
block_count,RecordWriteIgnoreFP,0,1
block_count,RecordWriteIgnoreFP,1,0
block_count,RecordWriteIgnoreFP,2,0
@@ -6783,10 +6761,10 @@
block_count,AdaptorWithBuiltinExitFrame3,1,6
block_count,AdaptorWithBuiltinExitFrame3,2,1
block_count,AdaptorWithBuiltinExitFrame3,3,8
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,0,426
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,1,426
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,2,93
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,3,81
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,0,420
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,1,420
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,2,92
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,3,80
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,4,80
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,5,80
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,6,0
@@ -6818,7 +6796,7 @@
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,32,0
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,33,0
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,34,0
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,35,80
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,35,79
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,36,0
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,37,0
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,38,0
@@ -6848,13 +6826,13 @@
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,62,0
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,63,0
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,64,0
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,65,12
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,66,332
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,65,11
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,66,327
block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,67,0
-block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,68,426
-block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,0,1471
-block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,1,1471
-block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,2,89
+block_count,Call_ReceiverIsNullOrUndefined_Baseline_Compact,68,420
+block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,0,1462
+block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,1,1462
+block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,2,86
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,3,33
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,4,32
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,5,32
@@ -6917,10 +6895,10 @@
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,62,0
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,63,0
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,64,0
-block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,65,56
-block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,66,1381
+block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,65,53
+block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,66,1375
block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,67,0
-block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,68,1471
+block_count,Call_ReceiverIsNotNullOrUndefined_Baseline_Compact,68,1462
block_count,Call_ReceiverIsAny_Baseline_Compact,0,5
block_count,Call_ReceiverIsAny_Baseline_Compact,1,5
block_count,Call_ReceiverIsAny_Baseline_Compact,2,0
@@ -7176,7 +7154,7 @@
block_count,CallWithSpread_Baseline,80,0
block_count,CallWithSpread_Baseline,81,0
block_count,CallWithSpread_Baseline,82,0
-block_count,CallWithSpread_Baseline,83,2
+block_count,CallWithSpread_Baseline,83,1
block_count,CallWithSpread_Baseline,84,0
block_count,CallWithSpread_Baseline,85,0
block_count,CallWithSpread_Baseline,86,0
@@ -7236,10 +7214,10 @@
block_count,CallWithArrayLike,7,31
block_count,CallWithArrayLike,8,0
block_count,CallWithArrayLike,9,31
-block_count,CallWithArrayLike,10,30
+block_count,CallWithArrayLike,10,31
block_count,CallWithArrayLike,11,0
-block_count,CallWithArrayLike,12,30
-block_count,CallWithArrayLike,13,30
+block_count,CallWithArrayLike,12,31
+block_count,CallWithArrayLike,13,31
block_count,CallWithArrayLike,14,10
block_count,CallWithArrayLike,15,10
block_count,CallWithArrayLike,16,0
@@ -7254,7 +7232,7 @@
block_count,CallWithArrayLike,25,0
block_count,CallWithArrayLike,26,0
block_count,CallWithArrayLike,27,0
-block_count,CallWithArrayLike,28,5
+block_count,CallWithArrayLike,28,4
block_count,CallWithArrayLike,29,5
block_count,CallWithArrayLike,30,0
block_count,CallWithArrayLike,31,5
@@ -7265,7 +7243,7 @@
block_count,CallWithArrayLike,36,0
block_count,CallWithArrayLike,37,0
block_count,CallWithArrayLike,38,32
-block_count,CallWithArrayLike,39,4
+block_count,CallWithArrayLike,39,3
block_count,CallWithArrayLike,40,36
block_count,CallWithArrayLike,41,0
block_count,CallWithArrayLike,42,0
@@ -7548,7 +7526,7 @@
block_count,ConstructForwardAllArgs_Baseline,41,0
block_count,ConstructForwardAllArgs_Baseline,42,0
block_count,ConstructForwardAllArgs_Baseline,43,1
-block_count,Construct_Baseline,0,127
+block_count,Construct_Baseline,0,126
block_count,Construct_Baseline,1,7
block_count,Construct_Baseline,2,4
block_count,Construct_Baseline,3,4
@@ -7632,18 +7610,18 @@
block_count,FastNewObject,36,0
block_count,FastNewObject,37,0
block_count,FastNewObject,38,339
-block_count,FastNewObject,39,338
+block_count,FastNewObject,39,339
block_count,FastNewObject,40,1
block_count,FastNewObject,41,337
block_count,FastNewObject,42,45
block_count,FastNewObject,43,291
-block_count,FastNewObject,44,459
-block_count,FastNewObject,45,167
+block_count,FastNewObject,44,453
+block_count,FastNewObject,45,161
block_count,FastNewObject,46,291
block_count,FastNewObject,47,337
block_count,FastNewObject,48,242
block_count,FastNewObject,49,95
-block_count,FastNewObject,50,338
+block_count,FastNewObject,50,339
block_count,FastNewObject,51,0
block_count,FastNewObject,52,0
block_count,FastNewObject,53,0
@@ -7673,35 +7651,35 @@
block_count,FastNewObject,77,2
block_count,FastNewObject,78,0
block_count,FastNewObject,79,2
-block_count,FastNewClosure,0,101
-block_count,FastNewClosure,1,96
-block_count,FastNewClosure,2,96
+block_count,FastNewClosure,0,99
+block_count,FastNewClosure,1,94
+block_count,FastNewClosure,2,94
block_count,FastNewClosure,3,0
block_count,FastNewClosure,4,4
-block_count,FastNewClosure,5,101
+block_count,FastNewClosure,5,99
block_count,FastNewClosure,6,0
-block_count,FastNewClosure,7,101
-block_count,FastNewClosure,8,101
+block_count,FastNewClosure,7,99
+block_count,FastNewClosure,8,99
block_count,FastNewClosure,9,0
-block_count,FastNewClosure,10,101
+block_count,FastNewClosure,10,99
block_count,FastNewClosure,11,0
block_count,FastNewClosure,12,0
-block_count,FastNewClosure,13,101
-block_count,FastNewClosure,14,30
-block_count,FastNewClosure,15,71
-block_count,FastNewClosure,16,71
+block_count,FastNewClosure,13,99
+block_count,FastNewClosure,14,29
+block_count,FastNewClosure,15,69
+block_count,FastNewClosure,16,69
block_count,FastNewClosure,17,0
block_count,FastNewClosure,18,0
block_count,FastNewClosure,19,0
block_count,FastNewClosure,20,0
-block_count,FastNewClosure,21,71
+block_count,FastNewClosure,21,69
block_count,FastNewClosure,22,0
-block_count,FastNewClosure,23,71
-block_count,FastNewClosure,24,101
-block_count,FastNewClosure,25,30
-block_count,FastNewClosure,26,71
+block_count,FastNewClosure,23,69
+block_count,FastNewClosure,24,99
+block_count,FastNewClosure,25,29
+block_count,FastNewClosure,26,69
block_count,StringEqual,0,656
-block_count,StringEqual,1,659
+block_count,StringEqual,1,658
block_count,StringEqual,2,173
block_count,StringEqual,3,5
block_count,StringEqual,4,1
@@ -7718,8 +7696,8 @@
block_count,StringEqual,15,1
block_count,StringEqual,16,0
block_count,StringEqual,17,0
-block_count,StringEqual,18,3
-block_count,StringEqual,19,3
+block_count,StringEqual,18,4
+block_count,StringEqual,19,4
block_count,StringEqual,20,3
block_count,StringEqual,21,0
block_count,StringEqual,22,0
@@ -7727,7 +7705,7 @@
block_count,StringEqual,24,3
block_count,StringEqual,25,0
block_count,StringEqual,26,0
-block_count,StringEqual,27,3
+block_count,StringEqual,27,4
block_count,StringEqual,28,2
block_count,StringEqual,29,1
block_count,StringEqual,30,167
@@ -7824,7 +7802,7 @@
block_count,StringEqual,121,0
block_count,StringEqual,122,0
block_count,StringEqual,123,0
-block_count,StringEqual,124,486
+block_count,StringEqual,124,485
block_count,StringGreaterThan,0,0
block_count,StringGreaterThan,1,0
block_count,StringGreaterThan,2,0
@@ -8051,8 +8029,8 @@
block_count,StringLessThan,58,223
block_count,StringLessThan,59,223
block_count,StringLessThan,60,0
-block_count,StringLessThan,61,257
-block_count,StringLessThan,62,257
+block_count,StringLessThan,61,256
+block_count,StringLessThan,62,256
block_count,StringLessThan,63,0
block_count,StringLessThan,64,480
block_count,StringLessThan,65,20
@@ -8062,12 +8040,12 @@
block_count,StringLessThan,69,20
block_count,StringLessThan,70,0
block_count,StringLessThan,71,459
-block_count,StringLessThan,72,480
+block_count,StringLessThan,72,479
block_count,StringLessThan,73,901
-block_count,StringLessThan,74,901
+block_count,StringLessThan,74,900
block_count,StringLessThan,75,421
-block_count,StringLessThan,76,480
-block_count,StringLessThan,77,230
+block_count,StringLessThan,76,479
+block_count,StringLessThan,77,229
block_count,StringLessThan,78,249
block_count,StringLessThan,79,0
block_count,StringLessThan,80,0
@@ -8078,7 +8056,7 @@
block_count,StringLessThan,85,3
block_count,StringLessThanOrEqual,0,49
block_count,StringLessThanOrEqual,1,49
-block_count,StringLessThanOrEqual,2,45
+block_count,StringLessThanOrEqual,2,44
block_count,StringLessThanOrEqual,3,0
block_count,StringLessThanOrEqual,4,0
block_count,StringLessThanOrEqual,5,0
@@ -8133,26 +8111,26 @@
block_count,StringLessThanOrEqual,54,0
block_count,StringLessThanOrEqual,55,0
block_count,StringLessThanOrEqual,56,0
-block_count,StringLessThanOrEqual,57,45
+block_count,StringLessThanOrEqual,57,44
block_count,StringLessThanOrEqual,58,0
block_count,StringLessThanOrEqual,59,0
block_count,StringLessThanOrEqual,60,0
-block_count,StringLessThanOrEqual,61,45
-block_count,StringLessThanOrEqual,62,45
+block_count,StringLessThanOrEqual,61,44
+block_count,StringLessThanOrEqual,62,44
block_count,StringLessThanOrEqual,63,0
-block_count,StringLessThanOrEqual,64,45
+block_count,StringLessThanOrEqual,64,44
block_count,StringLessThanOrEqual,65,0
block_count,StringLessThanOrEqual,66,0
block_count,StringLessThanOrEqual,67,0
block_count,StringLessThanOrEqual,68,0
block_count,StringLessThanOrEqual,69,0
block_count,StringLessThanOrEqual,70,0
-block_count,StringLessThanOrEqual,71,45
-block_count,StringLessThanOrEqual,72,45
-block_count,StringLessThanOrEqual,73,45
-block_count,StringLessThanOrEqual,74,45
+block_count,StringLessThanOrEqual,71,44
+block_count,StringLessThanOrEqual,72,44
+block_count,StringLessThanOrEqual,73,44
+block_count,StringLessThanOrEqual,74,44
block_count,StringLessThanOrEqual,75,0
-block_count,StringLessThanOrEqual,76,45
+block_count,StringLessThanOrEqual,76,44
block_count,StringLessThanOrEqual,77,8
block_count,StringLessThanOrEqual,78,36
block_count,StringLessThanOrEqual,79,0
@@ -8252,28 +8230,28 @@
block_count,StringSubstring,1,511
block_count,StringSubstring,2,511
block_count,StringSubstring,3,456
-block_count,StringSubstring,4,207
-block_count,StringSubstring,5,414
-block_count,StringSubstring,6,20
-block_count,StringSubstring,7,20
+block_count,StringSubstring,4,215
+block_count,StringSubstring,5,430
+block_count,StringSubstring,6,28
+block_count,StringSubstring,7,28
block_count,StringSubstring,8,0
block_count,StringSubstring,9,180
block_count,StringSubstring,10,6
-block_count,StringSubstring,11,207
+block_count,StringSubstring,11,215
block_count,StringSubstring,12,0
-block_count,StringSubstring,13,207
+block_count,StringSubstring,13,215
block_count,StringSubstring,14,0
-block_count,StringSubstring,15,249
+block_count,StringSubstring,15,240
block_count,StringSubstring,16,456
block_count,StringSubstring,17,201
block_count,StringSubstring,18,5
block_count,StringSubstring,19,0
block_count,StringSubstring,20,5
block_count,StringSubstring,21,5
-block_count,StringSubstring,22,196
+block_count,StringSubstring,22,195
block_count,StringSubstring,23,0
-block_count,StringSubstring,24,196
-block_count,StringSubstring,25,196
+block_count,StringSubstring,24,195
+block_count,StringSubstring,25,195
block_count,StringSubstring,26,255
block_count,StringSubstring,27,255
block_count,StringSubstring,28,38
@@ -8346,7 +8324,7 @@
block_count,StringSubstring,95,216
block_count,StringSubstring,96,0
block_count,StringSubstring,97,216
-block_count,StringSubstring,98,495
+block_count,StringSubstring,98,494
block_count,StringSubstring,99,278
block_count,StringSubstring,100,216
block_count,StringSubstring,101,216
@@ -8438,16 +8416,16 @@
block_count,StringSubstring,187,0
block_count,StringSubstring,188,0
block_count,StringSubstring,189,55
-block_count,StringSubstring,190,8
-block_count,StringSubstring,191,17
-block_count,StringSubstring,192,7
-block_count,StringSubstring,193,7
+block_count,StringSubstring,190,11
+block_count,StringSubstring,191,22
+block_count,StringSubstring,192,9
+block_count,StringSubstring,193,9
block_count,StringSubstring,194,0
block_count,StringSubstring,195,1
block_count,StringSubstring,196,0
-block_count,StringSubstring,197,8
+block_count,StringSubstring,197,11
block_count,StringSubstring,198,0
-block_count,StringSubstring,199,8
+block_count,StringSubstring,199,11
block_count,StringSubstring,200,0
block_count,StringSubstring,201,0
block_count,StringSubstring,202,0
@@ -8458,7 +8436,7 @@
block_count,StringSubstring,207,0
block_count,StringSubstring,208,0
block_count,StringSubstring,209,0
-block_count,StringSubstring,210,46
+block_count,StringSubstring,210,44
block_count,StringSubstring,211,55
block_count,StringSubstring,212,55
block_count,StringSubstring,213,4
@@ -8534,9 +8512,9 @@
block_count,AllocateInYoungGeneration,0,4
block_count,AllocateInYoungGeneration,1,0
block_count,AllocateInYoungGeneration,2,4
-block_count,AllocateInOldGeneration,0,1
+block_count,AllocateInOldGeneration,0,2
block_count,AllocateInOldGeneration,1,0
-block_count,AllocateInOldGeneration,2,1
+block_count,AllocateInOldGeneration,2,2
block_count,CopyFastSmiOrObjectElements,0,17
block_count,CopyFastSmiOrObjectElements,1,17
block_count,CopyFastSmiOrObjectElements,2,0
@@ -8586,7 +8564,7 @@
block_count,GrowFastDoubleElements,10,383
block_count,GrowFastDoubleElements,11,383
block_count,GrowFastDoubleElements,12,49
-block_count,GrowFastDoubleElements,13,334
+block_count,GrowFastDoubleElements,13,333
block_count,GrowFastDoubleElements,14,383
block_count,GrowFastDoubleElements,15,0
block_count,GrowFastDoubleElements,16,383
@@ -8594,19 +8572,19 @@
block_count,GrowFastDoubleElements,18,383
block_count,GrowFastDoubleElements,19,0
block_count,GrowFastDoubleElements,20,383
-block_count,GrowFastDoubleElements,21,4378
-block_count,GrowFastDoubleElements,22,3994
+block_count,GrowFastDoubleElements,21,4376
+block_count,GrowFastDoubleElements,22,3992
block_count,GrowFastDoubleElements,23,383
block_count,GrowFastDoubleElements,24,383
block_count,GrowFastDoubleElements,25,102
block_count,GrowFastDoubleElements,26,281
block_count,GrowFastDoubleElements,27,383
block_count,GrowFastDoubleElements,28,164
-block_count,GrowFastDoubleElements,29,4895
-block_count,GrowFastDoubleElements,30,4894
+block_count,GrowFastDoubleElements,29,4893
+block_count,GrowFastDoubleElements,30,4892
block_count,GrowFastDoubleElements,31,0
-block_count,GrowFastDoubleElements,32,4895
-block_count,GrowFastDoubleElements,33,4730
+block_count,GrowFastDoubleElements,32,4893
+block_count,GrowFastDoubleElements,33,4728
block_count,GrowFastDoubleElements,34,164
block_count,GrowFastDoubleElements,35,219
block_count,GrowFastDoubleElements,36,0
@@ -8615,28 +8593,28 @@
block_count,GrowFastDoubleElements,39,0
block_count,GrowFastSmiOrObjectElements,0,351
block_count,GrowFastSmiOrObjectElements,1,351
-block_count,GrowFastSmiOrObjectElements,2,351
-block_count,GrowFastSmiOrObjectElements,3,351
+block_count,GrowFastSmiOrObjectElements,2,350
+block_count,GrowFastSmiOrObjectElements,3,350
block_count,GrowFastSmiOrObjectElements,4,350
block_count,GrowFastSmiOrObjectElements,5,0
block_count,GrowFastSmiOrObjectElements,6,350
block_count,GrowFastSmiOrObjectElements,7,0
block_count,GrowFastSmiOrObjectElements,8,0
-block_count,GrowFastSmiOrObjectElements,9,351
+block_count,GrowFastSmiOrObjectElements,9,350
block_count,GrowFastSmiOrObjectElements,10,0
-block_count,GrowFastSmiOrObjectElements,11,351
+block_count,GrowFastSmiOrObjectElements,11,350
block_count,GrowFastSmiOrObjectElements,12,0
-block_count,GrowFastSmiOrObjectElements,13,351
-block_count,GrowFastSmiOrObjectElements,14,4641
-block_count,GrowFastSmiOrObjectElements,15,4290
-block_count,GrowFastSmiOrObjectElements,16,351
-block_count,GrowFastSmiOrObjectElements,17,351
+block_count,GrowFastSmiOrObjectElements,13,350
+block_count,GrowFastSmiOrObjectElements,14,4632
+block_count,GrowFastSmiOrObjectElements,15,4281
+block_count,GrowFastSmiOrObjectElements,16,350
+block_count,GrowFastSmiOrObjectElements,17,350
block_count,GrowFastSmiOrObjectElements,18,17
block_count,GrowFastSmiOrObjectElements,19,333
-block_count,GrowFastSmiOrObjectElements,20,351
+block_count,GrowFastSmiOrObjectElements,20,350
block_count,GrowFastSmiOrObjectElements,21,46
-block_count,GrowFastSmiOrObjectElements,22,7176
-block_count,GrowFastSmiOrObjectElements,23,7129
+block_count,GrowFastSmiOrObjectElements,22,7147
+block_count,GrowFastSmiOrObjectElements,23,7100
block_count,GrowFastSmiOrObjectElements,24,46
block_count,GrowFastSmiOrObjectElements,25,304
block_count,GrowFastSmiOrObjectElements,26,0
@@ -8689,7 +8667,7 @@
block_count,ToNumber_Baseline,22,0
block_count,ToNumber_Baseline,23,0
block_count,ToNumber_Baseline,24,0
-block_count,ToNumeric_Baseline,0,84
+block_count,ToNumeric_Baseline,0,83
block_count,ToNumeric_Baseline,1,0
block_count,ToNumeric_Baseline,2,0
block_count,ToNumeric_Baseline,3,0
@@ -8717,10 +8695,10 @@
block_count,ToNumeric_Baseline,25,0
block_count,ToNumeric_Baseline,26,0
block_count,ToNumeric_Baseline,27,0
-block_count,ToNumeric_Baseline,28,84
-block_count,ToNumeric_Baseline,29,84
+block_count,ToNumeric_Baseline,28,82
+block_count,ToNumeric_Baseline,29,83
block_count,ToNumeric_Baseline,30,0
-block_count,ToNumeric_Baseline,31,84
+block_count,ToNumeric_Baseline,31,83
block_count,ToNumberConvertBigInt,0,3
block_count,ToNumberConvertBigInt,1,3
block_count,ToNumberConvertBigInt,2,0
@@ -9090,12 +9068,12 @@
block_count,KeyedStoreIC_Megamorphic,1,384
block_count,KeyedStoreIC_Megamorphic,2,384
block_count,KeyedStoreIC_Megamorphic,3,305
-block_count,KeyedStoreIC_Megamorphic,4,305
+block_count,KeyedStoreIC_Megamorphic,4,304
block_count,KeyedStoreIC_Megamorphic,5,0
block_count,KeyedStoreIC_Megamorphic,6,0
block_count,KeyedStoreIC_Megamorphic,7,0
-block_count,KeyedStoreIC_Megamorphic,8,305
-block_count,KeyedStoreIC_Megamorphic,9,305
+block_count,KeyedStoreIC_Megamorphic,8,304
+block_count,KeyedStoreIC_Megamorphic,9,304
block_count,KeyedStoreIC_Megamorphic,10,0
block_count,KeyedStoreIC_Megamorphic,11,0
block_count,KeyedStoreIC_Megamorphic,12,0
@@ -9103,11 +9081,11 @@
block_count,KeyedStoreIC_Megamorphic,14,304
block_count,KeyedStoreIC_Megamorphic,15,256
block_count,KeyedStoreIC_Megamorphic,16,256
-block_count,KeyedStoreIC_Megamorphic,17,241
+block_count,KeyedStoreIC_Megamorphic,17,240
block_count,KeyedStoreIC_Megamorphic,18,0
block_count,KeyedStoreIC_Megamorphic,19,0
block_count,KeyedStoreIC_Megamorphic,20,0
-block_count,KeyedStoreIC_Megamorphic,21,241
+block_count,KeyedStoreIC_Megamorphic,21,240
block_count,KeyedStoreIC_Megamorphic,22,189
block_count,KeyedStoreIC_Megamorphic,23,51
block_count,KeyedStoreIC_Megamorphic,24,3
@@ -9148,9 +9126,9 @@
block_count,KeyedStoreIC_Megamorphic,59,1
block_count,KeyedStoreIC_Megamorphic,60,0
block_count,KeyedStoreIC_Megamorphic,61,0
-block_count,KeyedStoreIC_Megamorphic,62,163
+block_count,KeyedStoreIC_Megamorphic,62,162
block_count,KeyedStoreIC_Megamorphic,63,0
-block_count,KeyedStoreIC_Megamorphic,64,163
+block_count,KeyedStoreIC_Megamorphic,64,162
block_count,KeyedStoreIC_Megamorphic,65,8
block_count,KeyedStoreIC_Megamorphic,66,154
block_count,KeyedStoreIC_Megamorphic,67,344
@@ -9198,9 +9176,9 @@
block_count,KeyedStoreIC_Megamorphic,109,0
block_count,KeyedStoreIC_Megamorphic,110,0
block_count,KeyedStoreIC_Megamorphic,111,0
-block_count,KeyedStoreIC_Megamorphic,112,54
+block_count,KeyedStoreIC_Megamorphic,112,53
block_count,KeyedStoreIC_Megamorphic,113,0
-block_count,KeyedStoreIC_Megamorphic,114,48
+block_count,KeyedStoreIC_Megamorphic,114,47
block_count,KeyedStoreIC_Megamorphic,115,47
block_count,KeyedStoreIC_Megamorphic,116,47
block_count,KeyedStoreIC_Megamorphic,117,0
@@ -9223,11 +9201,11 @@
block_count,KeyedStoreIC_Megamorphic,134,52
block_count,KeyedStoreIC_Megamorphic,135,52
block_count,KeyedStoreIC_Megamorphic,136,0
-block_count,KeyedStoreIC_Megamorphic,137,48
+block_count,KeyedStoreIC_Megamorphic,137,47
block_count,KeyedStoreIC_Megamorphic,138,47
block_count,KeyedStoreIC_Megamorphic,139,0
-block_count,KeyedStoreIC_Megamorphic,140,48
-block_count,KeyedStoreIC_Megamorphic,141,48
+block_count,KeyedStoreIC_Megamorphic,140,47
+block_count,KeyedStoreIC_Megamorphic,141,47
block_count,KeyedStoreIC_Megamorphic,142,0
block_count,KeyedStoreIC_Megamorphic,143,0
block_count,KeyedStoreIC_Megamorphic,144,0
@@ -9265,13 +9243,13 @@
block_count,KeyedStoreIC_Megamorphic,176,11
block_count,KeyedStoreIC_Megamorphic,177,0
block_count,KeyedStoreIC_Megamorphic,178,11
-block_count,KeyedStoreIC_Megamorphic,179,99
-block_count,KeyedStoreIC_Megamorphic,180,99
+block_count,KeyedStoreIC_Megamorphic,179,98
+block_count,KeyedStoreIC_Megamorphic,180,98
block_count,KeyedStoreIC_Megamorphic,181,0
-block_count,KeyedStoreIC_Megamorphic,182,99
-block_count,KeyedStoreIC_Megamorphic,183,49
-block_count,KeyedStoreIC_Megamorphic,184,50
-block_count,KeyedStoreIC_Megamorphic,185,99
+block_count,KeyedStoreIC_Megamorphic,182,98
+block_count,KeyedStoreIC_Megamorphic,183,50
+block_count,KeyedStoreIC_Megamorphic,184,48
+block_count,KeyedStoreIC_Megamorphic,185,98
block_count,KeyedStoreIC_Megamorphic,186,87
block_count,KeyedStoreIC_Megamorphic,187,11
block_count,KeyedStoreIC_Megamorphic,188,11
@@ -9837,7 +9815,7 @@
block_count,KeyedStoreIC_Megamorphic,748,305
block_count,KeyedStoreIC_Megamorphic,749,305
block_count,KeyedStoreIC_Megamorphic,750,254
-block_count,KeyedStoreIC_Megamorphic,751,51
+block_count,KeyedStoreIC_Megamorphic,751,50
block_count,KeyedStoreIC_Megamorphic,752,0
block_count,KeyedStoreIC_Megamorphic,753,0
block_count,KeyedStoreIC_Megamorphic,754,53
@@ -10020,7 +9998,7 @@
block_count,KeyedStoreIC_Megamorphic,931,8
block_count,KeyedStoreIC_Megamorphic,932,1
block_count,KeyedStoreIC_Megamorphic,933,7
-block_count,KeyedStoreIC_Megamorphic,934,121
+block_count,KeyedStoreIC_Megamorphic,934,120
block_count,KeyedStoreIC_Megamorphic,935,72
block_count,KeyedStoreIC_Megamorphic,936,72
block_count,KeyedStoreIC_Megamorphic,937,0
@@ -10482,8 +10460,8 @@
block_count,KeyedStoreIC_Megamorphic,1393,7
block_count,KeyedStoreIC_Megamorphic,1394,48
block_count,KeyedStoreIC_Megamorphic,1395,55
-block_count,KeyedStoreIC_Megamorphic,1396,55
-block_count,KeyedStoreIC_Megamorphic,1397,55
+block_count,KeyedStoreIC_Megamorphic,1396,54
+block_count,KeyedStoreIC_Megamorphic,1397,54
block_count,KeyedStoreIC_Megamorphic,1398,0
block_count,KeyedStoreIC_Megamorphic,1399,0
block_count,KeyedStoreIC_Megamorphic,1400,0
@@ -11615,8 +11593,8 @@
block_count,LoadGlobalIC_NoFeedback,3,0
block_count,LoadGlobalIC_NoFeedback,4,16
block_count,LoadGlobalIC_NoFeedback,5,370
-block_count,LoadGlobalIC_NoFeedback,6,360
-block_count,LoadGlobalIC_NoFeedback,7,360
+block_count,LoadGlobalIC_NoFeedback,6,359
+block_count,LoadGlobalIC_NoFeedback,7,359
block_count,LoadGlobalIC_NoFeedback,8,1
block_count,LoadGlobalIC_NoFeedback,9,1
block_count,LoadGlobalIC_NoFeedback,10,0
@@ -11638,7 +11616,7 @@
block_count,LoadGlobalIC_NoFeedback,26,0
block_count,LoadGlobalIC_NoFeedback,27,0
block_count,LoadGlobalIC_NoFeedback,28,0
-block_count,LoadGlobalIC_NoFeedback,29,359
+block_count,LoadGlobalIC_NoFeedback,29,358
block_count,LoadGlobalIC_NoFeedback,30,868
block_count,LoadGlobalIC_NoFeedback,31,515
block_count,LoadGlobalIC_NoFeedback,32,515
@@ -12810,45 +12788,45 @@
block_count,KeyedLoadIC_SloppyArguments,20,0
block_count,KeyedLoadIC_SloppyArguments,21,0
block_count,KeyedLoadIC_SloppyArguments,22,0
-block_count,StoreFastElementIC_InBounds,0,460
+block_count,StoreFastElementIC_InBounds,0,458
block_count,StoreFastElementIC_InBounds,1,0
-block_count,StoreFastElementIC_InBounds,2,11
-block_count,StoreFastElementIC_InBounds,3,11
+block_count,StoreFastElementIC_InBounds,2,12
+block_count,StoreFastElementIC_InBounds,3,12
block_count,StoreFastElementIC_InBounds,4,0
block_count,StoreFastElementIC_InBounds,5,0
block_count,StoreFastElementIC_InBounds,6,0
block_count,StoreFastElementIC_InBounds,7,0
block_count,StoreFastElementIC_InBounds,8,0
-block_count,StoreFastElementIC_InBounds,9,11
-block_count,StoreFastElementIC_InBounds,10,11
+block_count,StoreFastElementIC_InBounds,9,12
+block_count,StoreFastElementIC_InBounds,10,12
block_count,StoreFastElementIC_InBounds,11,0
-block_count,StoreFastElementIC_InBounds,12,11
+block_count,StoreFastElementIC_InBounds,12,12
block_count,StoreFastElementIC_InBounds,13,0
-block_count,StoreFastElementIC_InBounds,14,11
-block_count,StoreFastElementIC_InBounds,15,11
+block_count,StoreFastElementIC_InBounds,14,12
+block_count,StoreFastElementIC_InBounds,15,12
block_count,StoreFastElementIC_InBounds,16,0
-block_count,StoreFastElementIC_InBounds,17,11
+block_count,StoreFastElementIC_InBounds,17,12
block_count,StoreFastElementIC_InBounds,18,0
-block_count,StoreFastElementIC_InBounds,19,11
+block_count,StoreFastElementIC_InBounds,19,12
block_count,StoreFastElementIC_InBounds,20,0
-block_count,StoreFastElementIC_InBounds,21,14
-block_count,StoreFastElementIC_InBounds,22,14
+block_count,StoreFastElementIC_InBounds,21,13
+block_count,StoreFastElementIC_InBounds,22,13
block_count,StoreFastElementIC_InBounds,23,0
block_count,StoreFastElementIC_InBounds,24,0
block_count,StoreFastElementIC_InBounds,25,0
block_count,StoreFastElementIC_InBounds,26,0
block_count,StoreFastElementIC_InBounds,27,0
-block_count,StoreFastElementIC_InBounds,28,14
-block_count,StoreFastElementIC_InBounds,29,14
+block_count,StoreFastElementIC_InBounds,28,13
+block_count,StoreFastElementIC_InBounds,29,13
block_count,StoreFastElementIC_InBounds,30,0
-block_count,StoreFastElementIC_InBounds,31,14
+block_count,StoreFastElementIC_InBounds,31,13
block_count,StoreFastElementIC_InBounds,32,0
-block_count,StoreFastElementIC_InBounds,33,14
-block_count,StoreFastElementIC_InBounds,34,14
+block_count,StoreFastElementIC_InBounds,33,13
+block_count,StoreFastElementIC_InBounds,34,13
block_count,StoreFastElementIC_InBounds,35,0
-block_count,StoreFastElementIC_InBounds,36,14
+block_count,StoreFastElementIC_InBounds,36,13
block_count,StoreFastElementIC_InBounds,37,0
-block_count,StoreFastElementIC_InBounds,38,14
+block_count,StoreFastElementIC_InBounds,38,13
block_count,StoreFastElementIC_InBounds,39,0
block_count,StoreFastElementIC_InBounds,40,25
block_count,StoreFastElementIC_InBounds,41,25
@@ -12943,7 +12921,7 @@
block_count,StoreFastElementIC_InBounds,130,15
block_count,StoreFastElementIC_InBounds,131,15
block_count,StoreFastElementIC_InBounds,132,0
-block_count,StoreFastElementIC_InBounds,133,15
+block_count,StoreFastElementIC_InBounds,133,14
block_count,StoreFastElementIC_InBounds,134,15
block_count,StoreFastElementIC_InBounds,135,0
block_count,StoreFastElementIC_InBounds,136,15
@@ -13154,27 +13132,27 @@
block_count,StoreFastElementIC_InBounds,341,0
block_count,StoreFastElementIC_InBounds,342,0
block_count,StoreFastElementIC_InBounds,343,0
-block_count,StoreFastElementIC_InBounds,344,198
+block_count,StoreFastElementIC_InBounds,344,196
block_count,StoreFastElementIC_InBounds,345,0
block_count,StoreFastElementIC_InBounds,346,0
block_count,StoreFastElementIC_InBounds,347,0
block_count,StoreFastElementIC_InBounds,348,0
block_count,StoreFastElementIC_InBounds,349,0
-block_count,StoreFastElementIC_InBounds,350,198
-block_count,StoreFastElementIC_InBounds,351,198
-block_count,StoreFastElementIC_InBounds,352,198
+block_count,StoreFastElementIC_InBounds,350,196
+block_count,StoreFastElementIC_InBounds,351,196
+block_count,StoreFastElementIC_InBounds,352,196
block_count,StoreFastElementIC_InBounds,353,6
block_count,StoreFastElementIC_InBounds,354,6
block_count,StoreFastElementIC_InBounds,355,0
block_count,StoreFastElementIC_InBounds,356,0
block_count,StoreFastElementIC_InBounds,357,0
block_count,StoreFastElementIC_InBounds,358,6
-block_count,StoreFastElementIC_InBounds,359,192
-block_count,StoreFastElementIC_InBounds,360,198
-block_count,StoreFastElementIC_InBounds,361,198
-block_count,StoreFastElementIC_InBounds,362,198
+block_count,StoreFastElementIC_InBounds,359,190
+block_count,StoreFastElementIC_InBounds,360,196
+block_count,StoreFastElementIC_InBounds,361,196
+block_count,StoreFastElementIC_InBounds,362,196
block_count,StoreFastElementIC_InBounds,363,0
-block_count,StoreFastElementIC_InBounds,364,198
+block_count,StoreFastElementIC_InBounds,364,196
block_count,StoreFastElementIC_InBounds,365,0
block_count,StoreFastElementIC_InBounds,366,0
block_count,StoreFastElementIC_InBounds,367,0
@@ -13243,12 +13221,12 @@
block_count,StoreFastElementIC_InBounds,430,52
block_count,StoreFastElementIC_InBounds,431,52
block_count,StoreFastElementIC_InBounds,432,52
-block_count,StoreFastElementIC_InBounds,433,49
-block_count,StoreFastElementIC_InBounds,434,49
+block_count,StoreFastElementIC_InBounds,433,48
+block_count,StoreFastElementIC_InBounds,434,48
block_count,StoreFastElementIC_InBounds,435,0
block_count,StoreFastElementIC_InBounds,436,0
block_count,StoreFastElementIC_InBounds,437,0
-block_count,StoreFastElementIC_InBounds,438,49
+block_count,StoreFastElementIC_InBounds,438,48
block_count,StoreFastElementIC_InBounds,439,3
block_count,StoreFastElementIC_InBounds,440,52
block_count,StoreFastElementIC_InBounds,441,52
@@ -13943,21 +13921,21 @@
block_count,StoreFastElementIC_InBounds,1130,0
block_count,StoreFastElementIC_InBounds,1131,0
block_count,StoreFastElementIC_InBounds,1132,0
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,0,46
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,0,47
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,1,0
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,2,3
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,2,2
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,3,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,4,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,5,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,6,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,7,0
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,8,3
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,9,3
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,8,2
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,9,2
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,10,0
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,11,3
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,11,2
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,12,0
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,13,3
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,14,3
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,13,2
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,14,2
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,15,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,16,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,17,0
@@ -14007,8 +13985,8 @@
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,61,2
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,62,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,63,2
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,64,3
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,65,3
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,64,2
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,65,2
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,66,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,67,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,68,0
@@ -14037,9 +14015,9 @@
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,91,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,92,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,93,0
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,94,3
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,94,2
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,95,0
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,96,3
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,96,2
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,97,4
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,98,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,99,0
@@ -14053,9 +14031,9 @@
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,107,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,108,4
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,109,4
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,110,3
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,110,2
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,111,0
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,112,3
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,112,2
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,113,1
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,114,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,115,0
@@ -14135,21 +14113,21 @@
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,189,4
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,190,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,191,4
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,192,31
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,192,33
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,193,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,194,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,195,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,196,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,197,0
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,198,31
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,199,31
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,198,33
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,199,33
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,200,0
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,201,31
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,202,31
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,201,33
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,202,33
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,203,2
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,204,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,205,2
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,206,28
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,206,30
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,207,2
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,208,2
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,209,2
@@ -14164,7 +14142,7 @@
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,218,2
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,219,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,220,2
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,221,27
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,221,28
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,222,25
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,223,2
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,224,2
@@ -14191,12 +14169,12 @@
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,245,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,246,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,247,0
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,248,26
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,249,28
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,248,27
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,249,30
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,250,0
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,251,28
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,252,31
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,253,31
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,251,30
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,252,33
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,253,33
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,254,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,255,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,256,0
@@ -14225,9 +14203,9 @@
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,279,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,280,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,281,0
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,282,31
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,282,33
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,283,0
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,284,31
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,284,33
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,285,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,286,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,287,0
@@ -14416,7 +14394,7 @@
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,470,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,471,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,472,2
-block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,473,2
+block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,473,1
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,474,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,475,0
block_count,StoreFastElementIC_NoTransitionGrowAndHandleCOW,476,0
@@ -19432,19 +19410,19 @@
block_count,ArrayConstructor,1,0
block_count,ArrayConstructor,2,1
block_count,ArrayConstructor,3,1
-block_count,ArrayConstructorImpl,0,6
+block_count,ArrayConstructorImpl,0,5
block_count,ArrayConstructorImpl,1,5
block_count,ArrayConstructorImpl,2,4
block_count,ArrayConstructorImpl,3,2
block_count,ArrayConstructorImpl,4,0
-block_count,ArrayConstructorImpl,5,2
+block_count,ArrayConstructorImpl,5,1
block_count,ArrayConstructorImpl,6,0
block_count,ArrayConstructorImpl,7,0
block_count,ArrayConstructorImpl,8,0
-block_count,ArrayConstructorImpl,9,2
-block_count,ArrayConstructorImpl,10,2
+block_count,ArrayConstructorImpl,9,1
+block_count,ArrayConstructorImpl,10,1
block_count,ArrayConstructorImpl,11,0
-block_count,ArrayConstructorImpl,12,2
+block_count,ArrayConstructorImpl,12,1
block_count,ArrayConstructorImpl,13,1
block_count,ArrayConstructorImpl,14,1
block_count,ArrayConstructorImpl,15,0
@@ -19596,7 +19574,7 @@
block_count,ArraySingleArgumentConstructor_HoleySmi_DisableAllocationSites,35,0
block_count,ArraySingleArgumentConstructor_HoleySmi_DisableAllocationSites,36,1
block_count,ArraySingleArgumentConstructor_HoleySmi_DisableAllocationSites,37,0
-block_count,ArraySingleArgumentConstructor_HoleySmi_DisableAllocationSites,38,1
+block_count,ArraySingleArgumentConstructor_HoleySmi_DisableAllocationSites,38,0
block_count,ArraySingleArgumentConstructor_HoleySmi_DisableAllocationSites,39,1
block_count,ArraySingleArgumentConstructor_HoleySmi_DisableAllocationSites,40,0
block_count,ArraySingleArgumentConstructor_HoleySmi_DisableAllocationSites,41,0
@@ -19913,7 +19891,7 @@
block_count,ArrayIncludesSmiOrObject,26,0
block_count,ArrayIncludesSmiOrObject,27,0
block_count,ArrayIncludesSmiOrObject,28,18
-block_count,ArrayIncludesSmiOrObject,29,51
+block_count,ArrayIncludesSmiOrObject,29,50
block_count,ArrayIncludesSmiOrObject,30,35
block_count,ArrayIncludesSmiOrObject,31,35
block_count,ArrayIncludesSmiOrObject,32,32
@@ -20255,14 +20233,14 @@
block_count,ArrayIndexOfSmiOrObject,25,0
block_count,ArrayIndexOfSmiOrObject,26,0
block_count,ArrayIndexOfSmiOrObject,27,116
-block_count,ArrayIndexOfSmiOrObject,28,1765
-block_count,ArrayIndexOfSmiOrObject,29,1677
-block_count,ArrayIndexOfSmiOrObject,30,1677
-block_count,ArrayIndexOfSmiOrObject,31,1664
-block_count,ArrayIndexOfSmiOrObject,32,1664
+block_count,ArrayIndexOfSmiOrObject,28,1764
+block_count,ArrayIndexOfSmiOrObject,29,1676
+block_count,ArrayIndexOfSmiOrObject,30,1676
+block_count,ArrayIndexOfSmiOrObject,31,1663
+block_count,ArrayIndexOfSmiOrObject,32,1663
block_count,ArrayIndexOfSmiOrObject,33,0
-block_count,ArrayIndexOfSmiOrObject,34,1664
-block_count,ArrayIndexOfSmiOrObject,35,1386
+block_count,ArrayIndexOfSmiOrObject,34,1663
+block_count,ArrayIndexOfSmiOrObject,35,1385
block_count,ArrayIndexOfSmiOrObject,36,277
block_count,ArrayIndexOfSmiOrObject,37,228
block_count,ArrayIndexOfSmiOrObject,38,42
@@ -20362,11 +20340,11 @@
block_count,ArrayIndexOfSmiOrObject,132,0
block_count,ArrayIndexOfSmiOrObject,133,0
block_count,ArrayIndexOfSmiOrObject,134,0
-block_count,ArrayIndexOfSmiOrObject,135,49
+block_count,ArrayIndexOfSmiOrObject,135,48
block_count,ArrayIndexOfSmiOrObject,136,0
block_count,ArrayIndexOfSmiOrObject,137,13
block_count,ArrayIndexOfSmiOrObject,138,0
-block_count,ArrayIndexOfSmiOrObject,139,1648
+block_count,ArrayIndexOfSmiOrObject,139,1647
block_count,ArrayIndexOfSmiOrObject,140,87
block_count,ArrayIndexOfSmiOrObject,141,0
block_count,ArrayIndexOfSmiOrObject,142,0
@@ -20470,26 +20448,26 @@
block_count,ArrayPrototypePop,37,0
block_count,ArrayPrototypePop,38,0
block_count,ArrayPrototypePop,39,1
-block_count,ArrayPrototypePush,0,191
+block_count,ArrayPrototypePush,0,346
block_count,ArrayPrototypePush,1,0
-block_count,ArrayPrototypePush,2,191
-block_count,ArrayPrototypePush,3,191
-block_count,ArrayPrototypePush,4,191
-block_count,ArrayPrototypePush,5,191
-block_count,ArrayPrototypePush,6,191
+block_count,ArrayPrototypePush,2,346
+block_count,ArrayPrototypePush,3,346
+block_count,ArrayPrototypePush,4,346
+block_count,ArrayPrototypePush,5,346
+block_count,ArrayPrototypePush,6,346
block_count,ArrayPrototypePush,7,0
-block_count,ArrayPrototypePush,8,191
-block_count,ArrayPrototypePush,9,191
-block_count,ArrayPrototypePush,10,191
+block_count,ArrayPrototypePush,8,346
+block_count,ArrayPrototypePush,9,346
+block_count,ArrayPrototypePush,10,346
block_count,ArrayPrototypePush,11,0
-block_count,ArrayPrototypePush,12,191
-block_count,ArrayPrototypePush,13,191
+block_count,ArrayPrototypePush,12,346
+block_count,ArrayPrototypePush,13,346
block_count,ArrayPrototypePush,14,0
-block_count,ArrayPrototypePush,15,191
-block_count,ArrayPrototypePush,16,191
-block_count,ArrayPrototypePush,17,33
-block_count,ArrayPrototypePush,18,33
-block_count,ArrayPrototypePush,19,32
+block_count,ArrayPrototypePush,15,346
+block_count,ArrayPrototypePush,16,346
+block_count,ArrayPrototypePush,17,34
+block_count,ArrayPrototypePush,18,34
+block_count,ArrayPrototypePush,19,33
block_count,ArrayPrototypePush,20,0
block_count,ArrayPrototypePush,21,0
block_count,ArrayPrototypePush,22,0
@@ -20512,23 +20490,23 @@
block_count,ArrayPrototypePush,39,0
block_count,ArrayPrototypePush,40,0
block_count,ArrayPrototypePush,41,76
-block_count,ArrayPrototypePush,42,76
+block_count,ArrayPrototypePush,42,75
block_count,ArrayPrototypePush,43,0
block_count,ArrayPrototypePush,44,0
block_count,ArrayPrototypePush,45,0
block_count,ArrayPrototypePush,46,0
block_count,ArrayPrototypePush,47,0
-block_count,ArrayPrototypePush,48,33
-block_count,ArrayPrototypePush,49,33
-block_count,ArrayPrototypePush,50,33
-block_count,ArrayPrototypePush,51,32
-block_count,ArrayPrototypePush,52,32
+block_count,ArrayPrototypePush,48,34
+block_count,ArrayPrototypePush,49,34
+block_count,ArrayPrototypePush,50,34
+block_count,ArrayPrototypePush,51,34
+block_count,ArrayPrototypePush,52,34
block_count,ArrayPrototypePush,53,0
-block_count,ArrayPrototypePush,54,32
+block_count,ArrayPrototypePush,54,33
block_count,ArrayPrototypePush,55,0
block_count,ArrayPrototypePush,56,0
block_count,ArrayPrototypePush,57,0
-block_count,ArrayPrototypePush,58,32
+block_count,ArrayPrototypePush,58,33
block_count,ArrayPrototypePush,59,0
block_count,ArrayPrototypePush,60,0
block_count,ArrayPrototypePush,61,0
@@ -20537,8 +20515,8 @@
block_count,ArrayPrototypePush,64,0
block_count,ArrayPrototypePush,65,0
block_count,ArrayPrototypePush,66,0
-block_count,ArrayPrototypePush,67,157
-block_count,ArrayPrototypePush,68,155
+block_count,ArrayPrototypePush,67,312
+block_count,ArrayPrototypePush,68,309
block_count,ArrayPrototypePush,69,2
block_count,ArrayPrototypePush,70,2
block_count,ArrayPrototypePush,71,2
@@ -20603,9 +20581,9 @@
block_count,ArrayPrototypePush,130,0
block_count,ArrayPrototypePush,131,0
block_count,ArrayPrototypePush,132,0
-block_count,ArrayPrototypePush,133,155
-block_count,ArrayPrototypePush,134,155
-block_count,ArrayPrototypePush,135,130
+block_count,ArrayPrototypePush,133,310
+block_count,ArrayPrototypePush,134,309
+block_count,ArrayPrototypePush,135,285
block_count,ArrayPrototypePush,136,24
block_count,ArrayPrototypePush,137,24
block_count,ArrayPrototypePush,138,24
@@ -20619,30 +20597,30 @@
block_count,ArrayPrototypePush,146,24
block_count,ArrayPrototypePush,147,0
block_count,ArrayPrototypePush,148,24
-block_count,ArrayPrototypePush,149,242
-block_count,ArrayPrototypePush,150,217
+block_count,ArrayPrototypePush,149,248
+block_count,ArrayPrototypePush,150,224
block_count,ArrayPrototypePush,151,24
block_count,ArrayPrototypePush,152,24
block_count,ArrayPrototypePush,153,1
block_count,ArrayPrototypePush,154,23
block_count,ArrayPrototypePush,155,24
-block_count,ArrayPrototypePush,156,1
-block_count,ArrayPrototypePush,157,154
-block_count,ArrayPrototypePush,158,152
-block_count,ArrayPrototypePush,159,1
+block_count,ArrayPrototypePush,156,2
+block_count,ArrayPrototypePush,157,180
+block_count,ArrayPrototypePush,158,177
+block_count,ArrayPrototypePush,159,2
block_count,ArrayPrototypePush,160,22
block_count,ArrayPrototypePush,161,24
block_count,ArrayPrototypePush,162,0
block_count,ArrayPrototypePush,163,0
-block_count,ArrayPrototypePush,164,155
-block_count,ArrayPrototypePush,165,155
-block_count,ArrayPrototypePush,166,165
-block_count,ArrayPrototypePush,167,165
+block_count,ArrayPrototypePush,164,309
+block_count,ArrayPrototypePush,165,309
+block_count,ArrayPrototypePush,166,319
+block_count,ArrayPrototypePush,167,319
block_count,ArrayPrototypePush,168,10
-block_count,ArrayPrototypePush,169,155
+block_count,ArrayPrototypePush,169,309
block_count,ArrayPrototypePush,170,0
block_count,ArrayPrototypePush,171,0
-block_count,ArrayPrototypePush,172,155
+block_count,ArrayPrototypePush,172,309
block_count,ArrayPrototypePush,173,0
block_count,ArrayPrototypePush,174,0
block_count,ArrayPrototypePush,175,0
@@ -20966,8 +20944,8 @@
block_count,ExtractFastJSArray,29,0
block_count,ExtractFastJSArray,30,0
block_count,ExtractFastJSArray,31,0
-block_count,ExtractFastJSArray,32,5
-block_count,ExtractFastJSArray,33,5
+block_count,ExtractFastJSArray,32,3
+block_count,ExtractFastJSArray,33,3
block_count,ExtractFastJSArray,34,0
block_count,ExtractFastJSArray,35,0
block_count,ExtractFastJSArray,36,0
@@ -21145,7 +21123,7 @@
block_count,CreateArrayFromSlowBoilerplateHelper,122,0
block_count,CreateArrayFromSlowBoilerplateHelper,123,0
block_count,CreateArrayFromSlowBoilerplateHelper,124,24
-block_count,CreateArrayFromSlowBoilerplateHelper,125,24
+block_count,CreateArrayFromSlowBoilerplateHelper,125,23
block_count,CreateArrayFromSlowBoilerplateHelper,126,0
block_count,CreateArrayFromSlowBoilerplateHelper,127,0
block_count,CreateArrayFromSlowBoilerplateHelper,128,0
@@ -21270,14 +21248,14 @@
block_count,CreateObjectFromSlowBoilerplateHelper,91,47
block_count,CreateObjectFromSlowBoilerplateHelper,92,0
block_count,CreateObjectFromSlowBoilerplateHelper,93,47
-block_count,CreateObjectFromSlowBoilerplateHelper,94,47
+block_count,CreateObjectFromSlowBoilerplateHelper,94,46
block_count,CreateObjectFromSlowBoilerplateHelper,95,0
block_count,CreateObjectFromSlowBoilerplateHelper,96,0
block_count,CreateObjectFromSlowBoilerplateHelper,97,0
block_count,CreateObjectFromSlowBoilerplateHelper,98,0
block_count,CreateObjectFromSlowBoilerplateHelper,99,47
block_count,CreateObjectFromSlowBoilerplateHelper,100,0
-block_count,CreateObjectFromSlowBoilerplateHelper,101,47
+block_count,CreateObjectFromSlowBoilerplateHelper,101,46
block_count,CreateObjectFromSlowBoilerplateHelper,102,47
block_count,CreateObjectFromSlowBoilerplateHelper,103,47
block_count,CreateObjectFromSlowBoilerplateHelper,104,47
@@ -21482,13 +21460,13 @@
block_count,ArrayPrototypeValues,12,0
block_count,ArrayPrototypeValues,13,33
block_count,ArrayPrototypeValues,14,33
-block_count,ArrayIteratorPrototypeNext,0,79
+block_count,ArrayIteratorPrototypeNext,0,80
block_count,ArrayIteratorPrototypeNext,1,0
-block_count,ArrayIteratorPrototypeNext,2,79
-block_count,ArrayIteratorPrototypeNext,3,79
-block_count,ArrayIteratorPrototypeNext,4,79
+block_count,ArrayIteratorPrototypeNext,2,80
+block_count,ArrayIteratorPrototypeNext,3,80
+block_count,ArrayIteratorPrototypeNext,4,80
block_count,ArrayIteratorPrototypeNext,5,0
-block_count,ArrayIteratorPrototypeNext,6,79
+block_count,ArrayIteratorPrototypeNext,6,80
block_count,ArrayIteratorPrototypeNext,7,2
block_count,ArrayIteratorPrototypeNext,8,0
block_count,ArrayIteratorPrototypeNext,9,0
@@ -21667,23 +21645,23 @@
block_count,ArrayIteratorPrototypeNext,182,0
block_count,ArrayIteratorPrototypeNext,183,0
block_count,ArrayIteratorPrototypeNext,184,0
-block_count,ArrayIteratorPrototypeNext,185,76
+block_count,ArrayIteratorPrototypeNext,185,77
block_count,ArrayIteratorPrototypeNext,186,0
-block_count,ArrayIteratorPrototypeNext,187,76
-block_count,ArrayIteratorPrototypeNext,188,76
-block_count,ArrayIteratorPrototypeNext,189,76
+block_count,ArrayIteratorPrototypeNext,187,77
+block_count,ArrayIteratorPrototypeNext,188,77
+block_count,ArrayIteratorPrototypeNext,189,77
block_count,ArrayIteratorPrototypeNext,190,0
-block_count,ArrayIteratorPrototypeNext,191,76
-block_count,ArrayIteratorPrototypeNext,192,76
+block_count,ArrayIteratorPrototypeNext,191,77
+block_count,ArrayIteratorPrototypeNext,192,77
block_count,ArrayIteratorPrototypeNext,193,19
-block_count,ArrayIteratorPrototypeNext,194,56
-block_count,ArrayIteratorPrototypeNext,195,56
+block_count,ArrayIteratorPrototypeNext,194,58
+block_count,ArrayIteratorPrototypeNext,195,58
block_count,ArrayIteratorPrototypeNext,196,0
block_count,ArrayIteratorPrototypeNext,197,0
block_count,ArrayIteratorPrototypeNext,198,0
block_count,ArrayIteratorPrototypeNext,199,0
-block_count,ArrayIteratorPrototypeNext,200,56
-block_count,ArrayIteratorPrototypeNext,201,56
+block_count,ArrayIteratorPrototypeNext,200,58
+block_count,ArrayIteratorPrototypeNext,201,58
block_count,ArrayIteratorPrototypeNext,202,0
block_count,ArrayIteratorPrototypeNext,203,0
block_count,ArrayIteratorPrototypeNext,204,0
@@ -21703,13 +21681,13 @@
block_count,ArrayIteratorPrototypeNext,218,0
block_count,ArrayIteratorPrototypeNext,219,0
block_count,ArrayIteratorPrototypeNext,220,4
-block_count,ArrayIteratorPrototypeNext,221,43
+block_count,ArrayIteratorPrototypeNext,221,44
block_count,ArrayIteratorPrototypeNext,222,0
block_count,ArrayIteratorPrototypeNext,223,0
block_count,ArrayIteratorPrototypeNext,224,0
-block_count,ArrayIteratorPrototypeNext,225,47
+block_count,ArrayIteratorPrototypeNext,225,48
block_count,ArrayIteratorPrototypeNext,226,0
-block_count,ArrayIteratorPrototypeNext,227,47
+block_count,ArrayIteratorPrototypeNext,227,48
block_count,ArrayIteratorPrototypeNext,228,0
block_count,ArrayIteratorPrototypeNext,229,8
block_count,ArrayIteratorPrototypeNext,230,0
@@ -21730,7 +21708,7 @@
block_count,ArrayIteratorPrototypeNext,245,0
block_count,ArrayIteratorPrototypeNext,246,0
block_count,ArrayIteratorPrototypeNext,247,0
-block_count,ArrayIteratorPrototypeNext,248,56
+block_count,ArrayIteratorPrototypeNext,248,58
block_count,ArrayIteratorPrototypeNext,249,0
block_count,ArrayIteratorPrototypeNext,250,0
block_count,ArrayIteratorPrototypeNext,251,0
@@ -21742,7 +21720,7 @@
block_count,ArrayIteratorPrototypeNext,257,0
block_count,ArrayIteratorPrototypeNext,258,20
block_count,ArrayIteratorPrototypeNext,259,1
-block_count,ArrayIteratorPrototypeNext,260,58
+block_count,ArrayIteratorPrototypeNext,260,59
block_count,ArrayIteratorPrototypeNext,261,0
block_count,ArrayIteratorPrototypeNext,262,0
block_count,ArrayIteratorPrototypeNext,263,0
@@ -21753,13 +21731,13 @@
block_count,ArrayIteratorPrototypeNext,268,0
block_count,ArrayIteratorPrototypeNext,269,0
block_count,ArrayIteratorPrototypeNext,270,0
-block_count,ArrayIteratorPrototypeNext,271,58
-block_count,ArrayIteratorPrototypeNext,272,79
+block_count,ArrayIteratorPrototypeNext,271,59
+block_count,ArrayIteratorPrototypeNext,272,80
block_count,ArrayIteratorPrototypeNext,273,0
-block_count,ArrayIteratorPrototypeNext,274,79
+block_count,ArrayIteratorPrototypeNext,274,80
block_count,ArrayIteratorPrototypeNext,275,0
-block_count,ArrayIteratorPrototypeNext,276,79
-block_count,ArrayIteratorPrototypeNext,277,79
+block_count,ArrayIteratorPrototypeNext,276,80
+block_count,ArrayIteratorPrototypeNext,277,80
block_count,AsyncFunctionEnter,0,0
block_count,AsyncFunctionEnter,1,0
block_count,AsyncFunctionEnter,2,0
@@ -22027,11 +22005,11 @@
block_count,CreateGeneratorObject,21,1
block_count,CreateGeneratorObject,22,0
block_count,CreateGeneratorObject,23,1
-block_count,CreateGeneratorObject,24,9
+block_count,CreateGeneratorObject,24,8
block_count,CreateGeneratorObject,25,7
block_count,CreateGeneratorObject,26,1
block_count,CreateGeneratorObject,27,1
-block_count,CreateGeneratorObject,28,1
+block_count,CreateGeneratorObject,28,0
block_count,CreateGeneratorObject,29,0
block_count,CreateGeneratorObject,30,1
block_count,CreateGeneratorObject,31,1
@@ -22045,7 +22023,7 @@
block_count,CreateGeneratorObject,39,1
block_count,CreateGeneratorObject,40,0
block_count,CreateGeneratorObject,41,1
-block_count,CreateGeneratorObject,42,5
+block_count,CreateGeneratorObject,42,4
block_count,CreateGeneratorObject,43,3
block_count,CreateGeneratorObject,44,1
block_count,CreateGeneratorObject,45,1
@@ -22128,14 +22106,14 @@
block_count,SuspendGeneratorBaseline,9,0
block_count,SuspendGeneratorBaseline,10,4
block_count,SuspendGeneratorBaseline,11,4
-block_count,SuspendGeneratorBaseline,12,76
+block_count,SuspendGeneratorBaseline,12,75
block_count,SuspendGeneratorBaseline,13,71
block_count,SuspendGeneratorBaseline,14,4
block_count,ResumeGeneratorBaseline,0,4
block_count,ResumeGeneratorBaseline,1,0
block_count,ResumeGeneratorBaseline,2,4
block_count,ResumeGeneratorBaseline,3,4
-block_count,ResumeGeneratorBaseline,4,76
+block_count,ResumeGeneratorBaseline,4,75
block_count,ResumeGeneratorBaseline,5,71
block_count,ResumeGeneratorBaseline,6,4
block_count,CallIteratorWithFeedbackLazyDeoptContinuation,0,0
@@ -22164,14 +22142,14 @@
block_count,GlobalIsNaN,8,0
block_count,GlobalIsNaN,9,0
block_count,GlobalIsNaN,10,0
-block_count,LoadIC,0,584
-block_count,LoadIC,1,584
+block_count,LoadIC,0,581
+block_count,LoadIC,1,581
block_count,LoadIC,2,0
-block_count,LoadIC,3,584
-block_count,LoadIC,4,291
+block_count,LoadIC,3,581
+block_count,LoadIC,4,288
block_count,LoadIC,5,0
-block_count,LoadIC,6,291
-block_count,LoadIC,7,3
+block_count,LoadIC,6,288
+block_count,LoadIC,7,12
block_count,LoadIC,8,0
block_count,LoadIC,9,0
block_count,LoadIC,10,0
@@ -22185,12 +22163,12 @@
block_count,LoadIC,18,0
block_count,LoadIC,19,0
block_count,LoadIC,20,0
-block_count,LoadIC,21,3
-block_count,LoadIC,22,3
+block_count,LoadIC,21,12
+block_count,LoadIC,22,12
block_count,LoadIC,23,0
-block_count,LoadIC,24,3
-block_count,LoadIC,25,3
-block_count,LoadIC,26,3
+block_count,LoadIC,24,12
+block_count,LoadIC,25,12
+block_count,LoadIC,26,12
block_count,LoadIC,27,0
block_count,LoadIC,28,0
block_count,LoadIC,29,0
@@ -22198,22 +22176,22 @@
block_count,LoadIC,31,0
block_count,LoadIC,32,0
block_count,LoadIC,33,0
-block_count,LoadIC,34,287
-block_count,LoadIC,35,381
-block_count,LoadIC,36,94
-block_count,LoadIC,37,94
+block_count,LoadIC,34,276
+block_count,LoadIC,35,349
+block_count,LoadIC,36,73
+block_count,LoadIC,37,73
block_count,LoadIC,38,0
-block_count,LoadIC,39,287
-block_count,LoadIC,40,293
-block_count,LoadIC,41,584
-block_count,LoadIC,42,288
-block_count,LoadIC,43,288
-block_count,LoadIC,44,86
-block_count,LoadIC,45,86
-block_count,LoadIC,46,86
+block_count,LoadIC,39,276
+block_count,LoadIC,40,292
+block_count,LoadIC,41,581
+block_count,LoadIC,42,286
+block_count,LoadIC,43,286
+block_count,LoadIC,44,84
+block_count,LoadIC,45,84
+block_count,LoadIC,46,84
block_count,LoadIC,47,0
block_count,LoadIC,48,0
-block_count,LoadIC,49,86
+block_count,LoadIC,49,84
block_count,LoadIC,50,19
block_count,LoadIC,51,19
block_count,LoadIC,52,19
@@ -22224,7 +22202,7 @@
block_count,LoadIC,57,16
block_count,LoadIC,58,14
block_count,LoadIC,59,1
-block_count,LoadIC,60,18
+block_count,LoadIC,60,17
block_count,LoadIC,61,0
block_count,LoadIC,62,0
block_count,LoadIC,63,0
@@ -22284,23 +22262,23 @@
block_count,LoadIC,117,0
block_count,LoadIC,118,0
block_count,LoadIC,119,0
-block_count,LoadIC,120,66
-block_count,LoadIC,121,84
-block_count,LoadIC,122,84
-block_count,LoadIC,123,65
-block_count,LoadIC,124,65
+block_count,LoadIC,120,64
+block_count,LoadIC,121,82
+block_count,LoadIC,122,82
+block_count,LoadIC,123,64
+block_count,LoadIC,124,64
block_count,LoadIC,125,0
-block_count,LoadIC,126,19
-block_count,LoadIC,127,84
+block_count,LoadIC,126,18
+block_count,LoadIC,127,82
block_count,LoadIC,128,0
block_count,LoadIC,129,202
block_count,LoadIC,130,0
block_count,LoadIC,131,0
block_count,LoadIC,132,0
-block_count,LoadIC,133,295
-block_count,LoadIC,134,380
-block_count,LoadIC,135,274
-block_count,LoadIC,136,209
+block_count,LoadIC,133,294
+block_count,LoadIC,134,377
+block_count,LoadIC,135,272
+block_count,LoadIC,136,207
block_count,LoadIC,137,189
block_count,LoadIC,138,11
block_count,LoadIC,139,11
@@ -22391,14 +22369,14 @@
block_count,LoadIC,224,0
block_count,LoadIC,225,0
block_count,LoadIC,226,178
-block_count,LoadIC,227,19
-block_count,LoadIC,228,65
-block_count,LoadIC,229,105
-block_count,LoadIC,230,105
+block_count,LoadIC,227,18
+block_count,LoadIC,228,64
+block_count,LoadIC,229,104
+block_count,LoadIC,230,104
block_count,LoadIC,231,2
-block_count,LoadIC,232,103
-block_count,LoadIC,233,105
-block_count,LoadIC,234,105
+block_count,LoadIC,232,102
+block_count,LoadIC,233,104
+block_count,LoadIC,234,104
block_count,LoadIC,235,0
block_count,LoadIC,236,0
block_count,LoadIC,237,0
@@ -22466,24 +22444,24 @@
block_count,LoadIC_Megamorphic,4,10000
block_count,LoadIC_Megamorphic,5,0
block_count,LoadIC_Megamorphic,6,10000
-block_count,LoadIC_Megamorphic,7,8413
-block_count,LoadIC_Megamorphic,8,8393
-block_count,LoadIC_Megamorphic,9,19
-block_count,LoadIC_Megamorphic,10,1586
-block_count,LoadIC_Megamorphic,11,1606
-block_count,LoadIC_Megamorphic,12,1596
-block_count,LoadIC_Megamorphic,13,1594
+block_count,LoadIC_Megamorphic,7,8277
+block_count,LoadIC_Megamorphic,8,8257
+block_count,LoadIC_Megamorphic,9,20
+block_count,LoadIC_Megamorphic,10,1722
+block_count,LoadIC_Megamorphic,11,1742
+block_count,LoadIC_Megamorphic,12,1733
+block_count,LoadIC_Megamorphic,13,1731
block_count,LoadIC_Megamorphic,14,1
block_count,LoadIC_Megamorphic,15,9
block_count,LoadIC_Megamorphic,16,9988
-block_count,LoadIC_Megamorphic,17,3699
-block_count,LoadIC_Megamorphic,18,3699
-block_count,LoadIC_Megamorphic,19,3620
-block_count,LoadIC_Megamorphic,20,3620
-block_count,LoadIC_Megamorphic,21,3620
+block_count,LoadIC_Megamorphic,17,3700
+block_count,LoadIC_Megamorphic,18,3700
+block_count,LoadIC_Megamorphic,19,3621
+block_count,LoadIC_Megamorphic,20,3621
+block_count,LoadIC_Megamorphic,21,3621
block_count,LoadIC_Megamorphic,22,0
block_count,LoadIC_Megamorphic,23,0
-block_count,LoadIC_Megamorphic,24,3620
+block_count,LoadIC_Megamorphic,24,3621
block_count,LoadIC_Megamorphic,25,7
block_count,LoadIC_Megamorphic,26,4
block_count,LoadIC_Megamorphic,27,4
@@ -22554,25 +22532,25 @@
block_count,LoadIC_Megamorphic,92,0
block_count,LoadIC_Megamorphic,93,0
block_count,LoadIC_Megamorphic,94,3
-block_count,LoadIC_Megamorphic,95,3612
-block_count,LoadIC_Megamorphic,96,3619
-block_count,LoadIC_Megamorphic,97,3618
+block_count,LoadIC_Megamorphic,95,3614
+block_count,LoadIC_Megamorphic,96,3621
+block_count,LoadIC_Megamorphic,97,3619
block_count,LoadIC_Megamorphic,98,2851
block_count,LoadIC_Megamorphic,99,2851
block_count,LoadIC_Megamorphic,100,0
-block_count,LoadIC_Megamorphic,101,766
-block_count,LoadIC_Megamorphic,102,3618
+block_count,LoadIC_Megamorphic,101,768
+block_count,LoadIC_Megamorphic,102,3619
block_count,LoadIC_Megamorphic,103,1
block_count,LoadIC_Megamorphic,104,79
block_count,LoadIC_Megamorphic,105,0
block_count,LoadIC_Megamorphic,106,0
block_count,LoadIC_Megamorphic,107,0
-block_count,LoadIC_Megamorphic,108,6289
+block_count,LoadIC_Megamorphic,108,6288
block_count,LoadIC_Megamorphic,109,9907
-block_count,LoadIC_Megamorphic,110,4342
-block_count,LoadIC_Megamorphic,111,2284
-block_count,LoadIC_Megamorphic,112,1517
-block_count,LoadIC_Megamorphic,113,1515
+block_count,LoadIC_Megamorphic,110,4343
+block_count,LoadIC_Megamorphic,111,2285
+block_count,LoadIC_Megamorphic,112,1516
+block_count,LoadIC_Megamorphic,113,1514
block_count,LoadIC_Megamorphic,114,724
block_count,LoadIC_Megamorphic,115,9
block_count,LoadIC_Megamorphic,116,9
@@ -22603,7 +22581,7 @@
block_count,LoadIC_Megamorphic,141,0
block_count,LoadIC_Megamorphic,142,0
block_count,LoadIC_Megamorphic,143,0
-block_count,LoadIC_Megamorphic,144,715
+block_count,LoadIC_Megamorphic,144,714
block_count,LoadIC_Megamorphic,145,790
block_count,LoadIC_Megamorphic,146,1
block_count,LoadIC_Megamorphic,147,1
@@ -22661,12 +22639,12 @@
block_count,LoadIC_Megamorphic,199,0
block_count,LoadIC_Megamorphic,200,0
block_count,LoadIC_Megamorphic,201,1
-block_count,LoadIC_Megamorphic,202,766
+block_count,LoadIC_Megamorphic,202,768
block_count,LoadIC_Megamorphic,203,2058
block_count,LoadIC_Megamorphic,204,5564
block_count,LoadIC_Megamorphic,205,5564
-block_count,LoadIC_Megamorphic,206,290
-block_count,LoadIC_Megamorphic,207,5274
+block_count,LoadIC_Megamorphic,206,291
+block_count,LoadIC_Megamorphic,207,5272
block_count,LoadIC_Megamorphic,208,5564
block_count,LoadIC_Megamorphic,209,5543
block_count,LoadIC_Megamorphic,210,20
@@ -23013,18 +22991,18 @@
block_count,LoadIC_Noninlined,281,0
block_count,LoadIC_Noninlined,282,0
block_count,LoadIC_Noninlined,283,1
-block_count,LoadICTrampoline,0,343
-block_count,LoadICTrampoline,1,343
+block_count,LoadICTrampoline,0,335
+block_count,LoadICTrampoline,1,335
block_count,LoadICTrampoline,2,0
-block_count,LoadICTrampoline,3,343
-block_count,LoadICBaseline,0,5238
-block_count,LoadICBaseline,1,5237
+block_count,LoadICTrampoline,3,335
+block_count,LoadICBaseline,0,5194
+block_count,LoadICBaseline,1,5192
block_count,LoadICBaseline,2,1
-block_count,LoadICBaseline,3,5238
-block_count,LoadICBaseline,4,1241
+block_count,LoadICBaseline,3,5194
+block_count,LoadICBaseline,4,1235
block_count,LoadICBaseline,5,0
-block_count,LoadICBaseline,6,1241
-block_count,LoadICBaseline,7,299
+block_count,LoadICBaseline,6,1234
+block_count,LoadICBaseline,7,292
block_count,LoadICBaseline,8,1
block_count,LoadICBaseline,9,1
block_count,LoadICBaseline,10,0
@@ -23038,36 +23016,36 @@
block_count,LoadICBaseline,18,0
block_count,LoadICBaseline,19,0
block_count,LoadICBaseline,20,0
-block_count,LoadICBaseline,21,297
-block_count,LoadICBaseline,22,297
+block_count,LoadICBaseline,21,290
+block_count,LoadICBaseline,22,290
block_count,LoadICBaseline,23,0
-block_count,LoadICBaseline,24,297
-block_count,LoadICBaseline,25,248
-block_count,LoadICBaseline,26,247
-block_count,LoadICBaseline,27,1
-block_count,LoadICBaseline,28,49
-block_count,LoadICBaseline,29,50
-block_count,LoadICBaseline,30,48
-block_count,LoadICBaseline,31,47
+block_count,LoadICBaseline,24,290
+block_count,LoadICBaseline,25,243
+block_count,LoadICBaseline,26,242
+block_count,LoadICBaseline,27,0
+block_count,LoadICBaseline,28,47
+block_count,LoadICBaseline,29,48
+block_count,LoadICBaseline,30,45
+block_count,LoadICBaseline,31,45
block_count,LoadICBaseline,32,0
block_count,LoadICBaseline,33,2
block_count,LoadICBaseline,34,942
-block_count,LoadICBaseline,35,1655
-block_count,LoadICBaseline,36,713
-block_count,LoadICBaseline,37,713
+block_count,LoadICBaseline,35,1647
+block_count,LoadICBaseline,36,705
+block_count,LoadICBaseline,37,705
block_count,LoadICBaseline,38,0
-block_count,LoadICBaseline,39,941
-block_count,LoadICBaseline,40,3996
-block_count,LoadICBaseline,41,5233
-block_count,LoadICBaseline,42,1679
-block_count,LoadICBaseline,43,1670
-block_count,LoadICBaseline,44,1548
-block_count,LoadICBaseline,45,1548
-block_count,LoadICBaseline,46,1548
+block_count,LoadICBaseline,39,942
+block_count,LoadICBaseline,40,3958
+block_count,LoadICBaseline,41,5188
+block_count,LoadICBaseline,42,1669
+block_count,LoadICBaseline,43,1660
+block_count,LoadICBaseline,44,1538
+block_count,LoadICBaseline,45,1538
+block_count,LoadICBaseline,46,1538
block_count,LoadICBaseline,47,0
block_count,LoadICBaseline,48,0
-block_count,LoadICBaseline,49,1548
-block_count,LoadICBaseline,50,190
+block_count,LoadICBaseline,49,1538
+block_count,LoadICBaseline,50,191
block_count,LoadICBaseline,51,18
block_count,LoadICBaseline,52,18
block_count,LoadICBaseline,53,0
@@ -23124,7 +23102,7 @@
block_count,LoadICBaseline,104,0
block_count,LoadICBaseline,105,0
block_count,LoadICBaseline,106,0
-block_count,LoadICBaseline,107,172
+block_count,LoadICBaseline,107,173
block_count,LoadICBaseline,108,0
block_count,LoadICBaseline,109,0
block_count,LoadICBaseline,110,0
@@ -23136,26 +23114,26 @@
block_count,LoadICBaseline,116,0
block_count,LoadICBaseline,117,0
block_count,LoadICBaseline,118,0
-block_count,LoadICBaseline,119,172
-block_count,LoadICBaseline,120,1358
-block_count,LoadICBaseline,121,1548
-block_count,LoadICBaseline,122,1548
-block_count,LoadICBaseline,123,1478
-block_count,LoadICBaseline,124,1478
+block_count,LoadICBaseline,119,173
+block_count,LoadICBaseline,120,1346
+block_count,LoadICBaseline,121,1537
+block_count,LoadICBaseline,122,1537
+block_count,LoadICBaseline,123,1468
+block_count,LoadICBaseline,124,1468
block_count,LoadICBaseline,125,0
block_count,LoadICBaseline,126,69
-block_count,LoadICBaseline,127,1548
+block_count,LoadICBaseline,127,1537
block_count,LoadICBaseline,128,0
-block_count,LoadICBaseline,129,121
-block_count,LoadICBaseline,130,9
-block_count,LoadICBaseline,131,9
+block_count,LoadICBaseline,129,122
+block_count,LoadICBaseline,130,8
+block_count,LoadICBaseline,131,8
block_count,LoadICBaseline,132,0
-block_count,LoadICBaseline,133,3553
-block_count,LoadICBaseline,134,5101
-block_count,LoadICBaseline,135,1612
-block_count,LoadICBaseline,136,392
-block_count,LoadICBaseline,137,322
-block_count,LoadICBaseline,138,258
+block_count,LoadICBaseline,133,3519
+block_count,LoadICBaseline,134,5056
+block_count,LoadICBaseline,135,1602
+block_count,LoadICBaseline,136,389
+block_count,LoadICBaseline,137,320
+block_count,LoadICBaseline,138,256
block_count,LoadICBaseline,139,2
block_count,LoadICBaseline,140,1
block_count,LoadICBaseline,141,1
@@ -23187,7 +23165,7 @@
block_count,LoadICBaseline,167,0
block_count,LoadICBaseline,168,0
block_count,LoadICBaseline,169,1
-block_count,LoadICBaseline,170,256
+block_count,LoadICBaseline,170,253
block_count,LoadICBaseline,171,63
block_count,LoadICBaseline,172,63
block_count,LoadICBaseline,173,0
@@ -23245,19 +23223,19 @@
block_count,LoadICBaseline,225,0
block_count,LoadICBaseline,226,63
block_count,LoadICBaseline,227,69
-block_count,LoadICBaseline,228,1220
-block_count,LoadICBaseline,229,3488
-block_count,LoadICBaseline,230,3488
-block_count,LoadICBaseline,231,933
-block_count,LoadICBaseline,232,2555
-block_count,LoadICBaseline,233,3488
-block_count,LoadICBaseline,234,3310
-block_count,LoadICBaseline,235,177
-block_count,LoadICBaseline,236,177
-block_count,LoadICBaseline,237,177
+block_count,LoadICBaseline,228,1212
+block_count,LoadICBaseline,229,3454
+block_count,LoadICBaseline,230,3454
+block_count,LoadICBaseline,231,917
+block_count,LoadICBaseline,232,2536
+block_count,LoadICBaseline,233,3454
+block_count,LoadICBaseline,234,3278
+block_count,LoadICBaseline,235,176
+block_count,LoadICBaseline,236,176
+block_count,LoadICBaseline,237,176
block_count,LoadICBaseline,238,0
-block_count,LoadICBaseline,239,177
-block_count,LoadICBaseline,240,177
+block_count,LoadICBaseline,239,176
+block_count,LoadICBaseline,240,176
block_count,LoadICBaseline,241,0
block_count,LoadICBaseline,242,0
block_count,LoadICBaseline,243,0
@@ -23312,10 +23290,10 @@
block_count,LoadICBaseline,292,0
block_count,LoadICBaseline,293,0
block_count,LoadICBaseline,294,5
-block_count,LoadICTrampoline_Megamorphic,0,6101
-block_count,LoadICTrampoline_Megamorphic,1,6101
+block_count,LoadICTrampoline_Megamorphic,0,6113
+block_count,LoadICTrampoline_Megamorphic,1,6113
block_count,LoadICTrampoline_Megamorphic,2,0
-block_count,LoadICTrampoline_Megamorphic,3,6101
+block_count,LoadICTrampoline_Megamorphic,3,6113
block_count,LoadSuperIC,0,5
block_count,LoadSuperIC,1,5
block_count,LoadSuperIC,2,5
@@ -23908,16 +23886,16 @@
block_count,LoadSuperIC,589,0
block_count,LoadSuperIC,590,0
block_count,LoadSuperICBaseline,0,5
-block_count,KeyedLoadIC,0,998
-block_count,KeyedLoadIC,1,998
+block_count,KeyedLoadIC,0,990
+block_count,KeyedLoadIC,1,990
block_count,KeyedLoadIC,2,0
-block_count,KeyedLoadIC,3,998
-block_count,KeyedLoadIC,4,998
-block_count,KeyedLoadIC,5,996
-block_count,KeyedLoadIC,6,97
+block_count,KeyedLoadIC,3,990
+block_count,KeyedLoadIC,4,990
+block_count,KeyedLoadIC,5,987
+block_count,KeyedLoadIC,6,94
block_count,KeyedLoadIC,7,0
-block_count,KeyedLoadIC,8,97
-block_count,KeyedLoadIC,9,52
+block_count,KeyedLoadIC,8,94
+block_count,KeyedLoadIC,9,51
block_count,KeyedLoadIC,10,2
block_count,KeyedLoadIC,11,1
block_count,KeyedLoadIC,12,0
@@ -23955,15 +23933,15 @@
block_count,KeyedLoadIC,44,1
block_count,KeyedLoadIC,45,1
block_count,KeyedLoadIC,46,0
-block_count,KeyedLoadIC,47,50
-block_count,KeyedLoadIC,48,44
-block_count,KeyedLoadIC,49,87
-block_count,KeyedLoadIC,50,43
-block_count,KeyedLoadIC,51,43
+block_count,KeyedLoadIC,47,49
+block_count,KeyedLoadIC,48,43
+block_count,KeyedLoadIC,49,84
+block_count,KeyedLoadIC,50,41
+block_count,KeyedLoadIC,51,41
block_count,KeyedLoadIC,52,0
-block_count,KeyedLoadIC,53,44
-block_count,KeyedLoadIC,54,899
-block_count,KeyedLoadIC,55,943
+block_count,KeyedLoadIC,53,42
+block_count,KeyedLoadIC,54,892
+block_count,KeyedLoadIC,55,935
block_count,KeyedLoadIC,56,2
block_count,KeyedLoadIC,57,2
block_count,KeyedLoadIC,58,0
@@ -24055,10 +24033,10 @@
block_count,KeyedLoadIC,144,0
block_count,KeyedLoadIC,145,0
block_count,KeyedLoadIC,146,0
-block_count,KeyedLoadIC,147,941
-block_count,KeyedLoadIC,148,941
-block_count,KeyedLoadIC,149,10
-block_count,KeyedLoadIC,150,9
+block_count,KeyedLoadIC,147,933
+block_count,KeyedLoadIC,148,933
+block_count,KeyedLoadIC,149,9
+block_count,KeyedLoadIC,150,8
block_count,KeyedLoadIC,151,0
block_count,KeyedLoadIC,152,0
block_count,KeyedLoadIC,153,0
@@ -24247,17 +24225,17 @@
block_count,KeyedLoadIC,336,0
block_count,KeyedLoadIC,337,0
block_count,KeyedLoadIC,338,0
-block_count,KeyedLoadIC,339,9
+block_count,KeyedLoadIC,339,8
block_count,KeyedLoadIC,340,0
block_count,KeyedLoadIC,341,0
block_count,KeyedLoadIC,342,0
block_count,KeyedLoadIC,343,0
block_count,KeyedLoadIC,344,0
-block_count,KeyedLoadIC,345,9
-block_count,KeyedLoadIC,346,9
-block_count,KeyedLoadIC,347,9
+block_count,KeyedLoadIC,345,8
+block_count,KeyedLoadIC,346,8
+block_count,KeyedLoadIC,347,8
block_count,KeyedLoadIC,348,3
-block_count,KeyedLoadIC,349,7
+block_count,KeyedLoadIC,349,6
block_count,KeyedLoadIC,350,3
block_count,KeyedLoadIC,351,3
block_count,KeyedLoadIC,352,0
@@ -24277,16 +24255,16 @@
block_count,KeyedLoadIC,366,0
block_count,KeyedLoadIC,367,0
block_count,KeyedLoadIC,368,5
-block_count,KeyedLoadIC,369,9
-block_count,KeyedLoadIC,370,9
+block_count,KeyedLoadIC,369,8
+block_count,KeyedLoadIC,370,8
block_count,KeyedLoadIC,371,0
-block_count,KeyedLoadIC,372,9
-block_count,KeyedLoadIC,373,9
+block_count,KeyedLoadIC,372,8
+block_count,KeyedLoadIC,373,8
block_count,KeyedLoadIC,374,0
block_count,KeyedLoadIC,375,0
block_count,KeyedLoadIC,376,0
block_count,KeyedLoadIC,377,0
-block_count,KeyedLoadIC,378,9
+block_count,KeyedLoadIC,378,8
block_count,KeyedLoadIC,379,0
block_count,KeyedLoadIC,380,0
block_count,KeyedLoadIC,381,0
@@ -24295,8 +24273,8 @@
block_count,KeyedLoadIC,384,0
block_count,KeyedLoadIC,385,0
block_count,KeyedLoadIC,386,0
-block_count,KeyedLoadIC,387,930
-block_count,KeyedLoadIC,388,931
+block_count,KeyedLoadIC,387,923
+block_count,KeyedLoadIC,388,924
block_count,KeyedLoadIC,389,0
block_count,KeyedLoadIC,390,0
block_count,KeyedLoadIC,391,0
@@ -24307,43 +24285,43 @@
block_count,KeyedLoadIC,396,0
block_count,KeyedLoadIC,397,0
block_count,KeyedLoadIC,398,0
-block_count,KeyedLoadIC,399,931
-block_count,KeyedLoadIC,400,931
-block_count,KeyedLoadIC,401,931
-block_count,KeyedLoadIC,402,588
+block_count,KeyedLoadIC,399,924
+block_count,KeyedLoadIC,400,924
+block_count,KeyedLoadIC,401,924
+block_count,KeyedLoadIC,402,584
block_count,KeyedLoadIC,403,10
-block_count,KeyedLoadIC,404,578
-block_count,KeyedLoadIC,405,588
+block_count,KeyedLoadIC,404,573
+block_count,KeyedLoadIC,405,584
block_count,KeyedLoadIC,406,1
-block_count,KeyedLoadIC,407,587
+block_count,KeyedLoadIC,407,582
block_count,KeyedLoadIC,408,0
-block_count,KeyedLoadIC,409,40
+block_count,KeyedLoadIC,409,39
block_count,KeyedLoadIC,410,282
block_count,KeyedLoadIC,411,0
block_count,KeyedLoadIC,412,0
block_count,KeyedLoadIC,413,0
block_count,KeyedLoadIC,414,0
block_count,KeyedLoadIC,415,322
-block_count,KeyedLoadIC,416,28
-block_count,KeyedLoadIC,417,107
+block_count,KeyedLoadIC,416,26
+block_count,KeyedLoadIC,417,104
block_count,KeyedLoadIC,418,0
block_count,KeyedLoadIC,419,0
block_count,KeyedLoadIC,420,0
-block_count,KeyedLoadIC,421,136
-block_count,KeyedLoadIC,422,130
+block_count,KeyedLoadIC,421,131
+block_count,KeyedLoadIC,422,125
block_count,KeyedLoadIC,423,5
-block_count,KeyedLoadIC,424,39
+block_count,KeyedLoadIC,424,41
block_count,KeyedLoadIC,425,0
-block_count,KeyedLoadIC,426,39
-block_count,KeyedLoadIC,427,39
-block_count,KeyedLoadIC,428,88
-block_count,KeyedLoadIC,429,88
+block_count,KeyedLoadIC,426,41
+block_count,KeyedLoadIC,427,41
+block_count,KeyedLoadIC,428,87
+block_count,KeyedLoadIC,429,87
block_count,KeyedLoadIC,430,0
-block_count,KeyedLoadIC,431,88
-block_count,KeyedLoadIC,432,88
+block_count,KeyedLoadIC,431,87
+block_count,KeyedLoadIC,432,87
block_count,KeyedLoadIC,433,0
-block_count,KeyedLoadIC,434,342
-block_count,KeyedLoadIC,435,342
+block_count,KeyedLoadIC,434,340
+block_count,KeyedLoadIC,435,340
block_count,KeyedLoadIC,436,0
block_count,KeyedLoadIC,437,0
block_count,KeyedLoadIC,438,0
@@ -24366,11 +24344,11 @@
block_count,KeyedLoadIC,455,0
block_count,KeyedLoadIC,456,0
block_count,KeyedLoadIC,457,0
-block_count,KeyedLoadIC,458,342
-block_count,KeyedLoadIC,459,342
-block_count,KeyedLoadIC,460,342
+block_count,KeyedLoadIC,458,340
+block_count,KeyedLoadIC,459,340
+block_count,KeyedLoadIC,460,340
block_count,KeyedLoadIC,461,0
-block_count,KeyedLoadIC,462,342
+block_count,KeyedLoadIC,462,340
block_count,KeyedLoadIC,463,0
block_count,KeyedLoadIC,464,48
block_count,KeyedLoadIC,465,0
@@ -24378,8 +24356,8 @@
block_count,KeyedLoadIC,467,14
block_count,KeyedLoadIC,468,0
block_count,KeyedLoadIC,469,1
-block_count,KeyedLoadIC,470,195
-block_count,KeyedLoadIC,471,80
+block_count,KeyedLoadIC,470,193
+block_count,KeyedLoadIC,471,79
block_count,KeyedLoadIC,472,0
block_count,KeyedLoadIC,473,0
block_count,KeyedLoadIC,474,0
@@ -24423,16 +24401,16 @@
block_count,KeyedLoadIC,512,0
block_count,KeyedLoadIC,513,0
block_count,KeyedLoadIC,514,0
-block_count,KeyedLoadIC,515,195
-block_count,KeyedLoadIC,516,191
+block_count,KeyedLoadIC,515,193
+block_count,KeyedLoadIC,516,189
block_count,KeyedLoadIC,517,3
block_count,KeyedLoadIC,518,0
block_count,KeyedLoadIC,519,3
block_count,KeyedLoadIC,520,3
-block_count,KeyedLoadIC,521,80
+block_count,KeyedLoadIC,521,79
block_count,KeyedLoadIC,522,0
-block_count,KeyedLoadIC,523,80
-block_count,KeyedLoadIC,524,80
+block_count,KeyedLoadIC,523,79
+block_count,KeyedLoadIC,524,79
block_count,KeyedLoadIC,525,0
block_count,KeyedLoadIC,526,0
block_count,KeyedLoadIC,527,0
@@ -24482,10 +24460,10 @@
block_count,KeyedLoadIC,571,0
block_count,KeyedLoadIC,572,0
block_count,KeyedLoadIC,573,0
-block_count,KeyedLoadIC,574,6
+block_count,KeyedLoadIC,574,5
block_count,KeyedLoadIC,575,0
-block_count,KeyedLoadIC,576,6
-block_count,KeyedLoadIC,577,6
+block_count,KeyedLoadIC,576,5
+block_count,KeyedLoadIC,577,5
block_count,KeyedLoadIC,578,0
block_count,KeyedLoadIC,579,1
block_count,KeyedLoadIC,580,0
@@ -24510,14 +24488,14 @@
block_count,KeyedLoadIC,599,0
block_count,KeyedLoadIC,600,0
block_count,KeyedLoadIC,601,2
-block_count,KeyedLoadIC,602,53
+block_count,KeyedLoadIC,602,52
block_count,KeyedLoadIC,603,0
block_count,KeyedLoadIC,604,0
-block_count,EnumeratedKeyedLoadIC,0,7
-block_count,EnumeratedKeyedLoadIC,1,7
+block_count,EnumeratedKeyedLoadIC,0,8
+block_count,EnumeratedKeyedLoadIC,1,8
block_count,EnumeratedKeyedLoadIC,2,0
-block_count,EnumeratedKeyedLoadIC,3,7
-block_count,EnumeratedKeyedLoadIC,4,7
+block_count,EnumeratedKeyedLoadIC,3,8
+block_count,EnumeratedKeyedLoadIC,4,8
block_count,EnumeratedKeyedLoadIC,5,4
block_count,EnumeratedKeyedLoadIC,6,0
block_count,EnumeratedKeyedLoadIC,7,4
@@ -25144,23 +25122,23 @@
block_count,EnumeratedKeyedLoadIC,628,3
block_count,EnumeratedKeyedLoadIC,629,0
block_count,EnumeratedKeyedLoadIC,630,0
-block_count,KeyedLoadIC_Megamorphic,0,2429
-block_count,KeyedLoadIC_Megamorphic,1,2429
-block_count,KeyedLoadIC_Megamorphic,2,2429
-block_count,KeyedLoadIC_Megamorphic,3,2105
-block_count,KeyedLoadIC_Megamorphic,4,2101
+block_count,KeyedLoadIC_Megamorphic,0,2428
+block_count,KeyedLoadIC_Megamorphic,1,2428
+block_count,KeyedLoadIC_Megamorphic,2,2428
+block_count,KeyedLoadIC_Megamorphic,3,2104
+block_count,KeyedLoadIC_Megamorphic,4,2100
block_count,KeyedLoadIC_Megamorphic,5,3
block_count,KeyedLoadIC_Megamorphic,6,0
block_count,KeyedLoadIC_Megamorphic,7,3
-block_count,KeyedLoadIC_Megamorphic,8,2101
-block_count,KeyedLoadIC_Megamorphic,9,2100
+block_count,KeyedLoadIC_Megamorphic,8,2100
+block_count,KeyedLoadIC_Megamorphic,9,2098
block_count,KeyedLoadIC_Megamorphic,10,48
block_count,KeyedLoadIC_Megamorphic,11,43
block_count,KeyedLoadIC_Megamorphic,12,5
-block_count,KeyedLoadIC_Megamorphic,13,2051
-block_count,KeyedLoadIC_Megamorphic,14,2051
-block_count,KeyedLoadIC_Megamorphic,15,1953
-block_count,KeyedLoadIC_Megamorphic,16,1953
+block_count,KeyedLoadIC_Megamorphic,13,2050
+block_count,KeyedLoadIC_Megamorphic,14,2050
+block_count,KeyedLoadIC_Megamorphic,15,1952
+block_count,KeyedLoadIC_Megamorphic,16,1952
block_count,KeyedLoadIC_Megamorphic,17,1827
block_count,KeyedLoadIC_Megamorphic,18,0
block_count,KeyedLoadIC_Megamorphic,19,0
@@ -25168,7 +25146,7 @@
block_count,KeyedLoadIC_Megamorphic,21,1827
block_count,KeyedLoadIC_Megamorphic,22,1728
block_count,KeyedLoadIC_Megamorphic,23,99
-block_count,KeyedLoadIC_Megamorphic,24,125
+block_count,KeyedLoadIC_Megamorphic,24,124
block_count,KeyedLoadIC_Megamorphic,25,0
block_count,KeyedLoadIC_Megamorphic,26,97
block_count,KeyedLoadIC_Megamorphic,27,43
@@ -25192,7 +25170,7 @@
block_count,KeyedLoadIC_Megamorphic,45,0
block_count,KeyedLoadIC_Megamorphic,46,43
block_count,KeyedLoadIC_Megamorphic,47,0
-block_count,KeyedLoadIC_Megamorphic,48,43
+block_count,KeyedLoadIC_Megamorphic,48,42
block_count,KeyedLoadIC_Megamorphic,49,0
block_count,KeyedLoadIC_Megamorphic,50,0
block_count,KeyedLoadIC_Megamorphic,51,0
@@ -25492,10 +25470,10 @@
block_count,KeyedLoadIC_Megamorphic,345,0
block_count,KeyedLoadIC_Megamorphic,346,0
block_count,KeyedLoadIC_Megamorphic,347,1
-block_count,KeyedLoadIC_Megamorphic,348,1861
-block_count,KeyedLoadIC_Megamorphic,349,1861
-block_count,KeyedLoadIC_Megamorphic,350,1185
-block_count,KeyedLoadIC_Megamorphic,351,1036
+block_count,KeyedLoadIC_Megamorphic,348,1860
+block_count,KeyedLoadIC_Megamorphic,349,1860
+block_count,KeyedLoadIC_Megamorphic,350,1184
+block_count,KeyedLoadIC_Megamorphic,351,1035
block_count,KeyedLoadIC_Megamorphic,352,50
block_count,KeyedLoadIC_Megamorphic,353,50
block_count,KeyedLoadIC_Megamorphic,354,0
@@ -25504,7 +25482,7 @@
block_count,KeyedLoadIC_Megamorphic,357,320
block_count,KeyedLoadIC_Megamorphic,358,0
block_count,KeyedLoadIC_Megamorphic,359,320
-block_count,KeyedLoadIC_Megamorphic,360,171
+block_count,KeyedLoadIC_Megamorphic,360,170
block_count,KeyedLoadIC_Megamorphic,361,149
block_count,KeyedLoadIC_Megamorphic,362,320
block_count,KeyedLoadIC_Megamorphic,363,270
@@ -25517,7 +25495,7 @@
block_count,KeyedLoadIC_Megamorphic,370,50
block_count,KeyedLoadIC_Megamorphic,371,0
block_count,KeyedLoadIC_Megamorphic,372,50
-block_count,KeyedLoadIC_Megamorphic,373,50
+block_count,KeyedLoadIC_Megamorphic,373,49
block_count,KeyedLoadIC_Megamorphic,374,0
block_count,KeyedLoadIC_Megamorphic,375,0
block_count,KeyedLoadIC_Megamorphic,376,0
@@ -25525,18 +25503,18 @@
block_count,KeyedLoadIC_Megamorphic,378,0
block_count,KeyedLoadIC_Megamorphic,379,985
block_count,KeyedLoadIC_Megamorphic,380,498
-block_count,KeyedLoadIC_Megamorphic,381,487
-block_count,KeyedLoadIC_Megamorphic,382,1197
+block_count,KeyedLoadIC_Megamorphic,381,486
+block_count,KeyedLoadIC_Megamorphic,382,1196
block_count,KeyedLoadIC_Megamorphic,383,1048
block_count,KeyedLoadIC_Megamorphic,384,906
-block_count,KeyedLoadIC_Megamorphic,385,710
+block_count,KeyedLoadIC_Megamorphic,385,709
block_count,KeyedLoadIC_Megamorphic,386,196
block_count,KeyedLoadIC_Megamorphic,387,142
block_count,KeyedLoadIC_Megamorphic,388,148
-block_count,KeyedLoadIC_Megamorphic,389,695
+block_count,KeyedLoadIC_Megamorphic,389,694
block_count,KeyedLoadIC_Megamorphic,390,170
block_count,KeyedLoadIC_Megamorphic,391,524
-block_count,KeyedLoadIC_Megamorphic,392,511
+block_count,KeyedLoadIC_Megamorphic,392,510
block_count,KeyedLoadIC_Megamorphic,393,13
block_count,KeyedLoadIC_Megamorphic,394,354
block_count,KeyedLoadIC_Megamorphic,395,2
@@ -25545,7 +25523,7 @@
block_count,KeyedLoadIC_Megamorphic,398,0
block_count,KeyedLoadIC_Megamorphic,399,69
block_count,KeyedLoadIC_Megamorphic,400,282
-block_count,KeyedLoadIC_Megamorphic,401,48
+block_count,KeyedLoadIC_Megamorphic,401,47
block_count,KeyedLoadIC_Megamorphic,402,234
block_count,KeyedLoadIC_Megamorphic,403,48
block_count,KeyedLoadIC_Megamorphic,404,0
@@ -25558,13 +25536,13 @@
block_count,KeyedLoadIC_Megamorphic,411,830
block_count,KeyedLoadIC_Megamorphic,412,0
block_count,KeyedLoadIC_Megamorphic,413,830
-block_count,KeyedLoadIC_Megamorphic,414,671
-block_count,KeyedLoadIC_Megamorphic,415,669
-block_count,KeyedLoadIC_Megamorphic,416,2
-block_count,KeyedLoadIC_Megamorphic,417,158
-block_count,KeyedLoadIC_Megamorphic,418,161
-block_count,KeyedLoadIC_Megamorphic,419,140
-block_count,KeyedLoadIC_Megamorphic,420,139
+block_count,KeyedLoadIC_Megamorphic,414,690
+block_count,KeyedLoadIC_Megamorphic,415,688
+block_count,KeyedLoadIC_Megamorphic,416,1
+block_count,KeyedLoadIC_Megamorphic,417,139
+block_count,KeyedLoadIC_Megamorphic,418,141
+block_count,KeyedLoadIC_Megamorphic,419,120
+block_count,KeyedLoadIC_Megamorphic,420,120
block_count,KeyedLoadIC_Megamorphic,421,0
block_count,KeyedLoadIC_Megamorphic,422,21
block_count,KeyedLoadIC_Megamorphic,423,808
@@ -25829,7 +25807,7 @@
block_count,KeyedLoadIC_Megamorphic,682,0
block_count,KeyedLoadIC_Megamorphic,683,675
block_count,KeyedLoadIC_Megamorphic,684,675
-block_count,KeyedLoadIC_Megamorphic,685,1110
+block_count,KeyedLoadIC_Megamorphic,685,1109
block_count,KeyedLoadIC_Megamorphic,686,1033
block_count,KeyedLoadIC_Megamorphic,687,434
block_count,KeyedLoadIC_Megamorphic,688,599
@@ -25928,7 +25906,7 @@
block_count,KeyedLoadIC_Megamorphic,781,380
block_count,KeyedLoadIC_Megamorphic,782,380
block_count,KeyedLoadIC_Megamorphic,783,380
-block_count,KeyedLoadIC_Megamorphic,784,317
+block_count,KeyedLoadIC_Megamorphic,784,316
block_count,KeyedLoadIC_Megamorphic,785,63
block_count,KeyedLoadIC_Megamorphic,786,0
block_count,KeyedLoadIC_Megamorphic,787,0
@@ -26051,28 +26029,28 @@
block_count,KeyedLoadIC_Megamorphic,904,0
block_count,KeyedLoadIC_Megamorphic,905,324
block_count,KeyedLoadIC_Megamorphic,906,328
-block_count,KeyedLoadIC_Megamorphic,907,426
+block_count,KeyedLoadIC_Megamorphic,907,425
block_count,KeyedLoadIC_Megamorphic,908,416
-block_count,KeyedLoadIC_Megamorphic,909,405
+block_count,KeyedLoadIC_Megamorphic,909,404
block_count,KeyedLoadIC_Megamorphic,910,76
block_count,KeyedLoadIC_Megamorphic,911,328
-block_count,KeyedLoadIC_Megamorphic,912,405
+block_count,KeyedLoadIC_Megamorphic,912,404
block_count,KeyedLoadIC_Megamorphic,913,9
-block_count,KeyedLoadIC_Megamorphic,914,395
+block_count,KeyedLoadIC_Megamorphic,914,394
block_count,KeyedLoadIC_Megamorphic,915,0
block_count,KeyedLoadIC_Megamorphic,916,0
-block_count,KeyedLoadIC_Megamorphic,917,322
+block_count,KeyedLoadIC_Megamorphic,917,321
block_count,KeyedLoadIC_Megamorphic,918,0
block_count,KeyedLoadIC_Megamorphic,919,0
block_count,KeyedLoadIC_Megamorphic,920,0
block_count,KeyedLoadIC_Megamorphic,921,0
-block_count,KeyedLoadIC_Megamorphic,922,322
+block_count,KeyedLoadIC_Megamorphic,922,321
block_count,KeyedLoadIC_Megamorphic,923,0
block_count,KeyedLoadIC_Megamorphic,924,72
block_count,KeyedLoadIC_Megamorphic,925,0
block_count,KeyedLoadIC_Megamorphic,926,0
block_count,KeyedLoadIC_Megamorphic,927,0
-block_count,KeyedLoadIC_Megamorphic,928,73
+block_count,KeyedLoadIC_Megamorphic,928,72
block_count,KeyedLoadIC_Megamorphic,929,72
block_count,KeyedLoadIC_Megamorphic,930,0
block_count,KeyedLoadIC_Megamorphic,931,0
@@ -26257,12 +26235,12 @@
block_count,KeyedLoadICTrampoline,1,1
block_count,KeyedLoadICTrampoline,2,0
block_count,KeyedLoadICTrampoline,3,1
-block_count,KeyedLoadICBaseline,0,929
+block_count,KeyedLoadICBaseline,0,920
block_count,EnumeratedKeyedLoadICBaseline,0,6
-block_count,KeyedLoadICTrampoline_Megamorphic,0,1189
-block_count,KeyedLoadICTrampoline_Megamorphic,1,1189
+block_count,KeyedLoadICTrampoline_Megamorphic,0,1201
+block_count,KeyedLoadICTrampoline_Megamorphic,1,1201
block_count,KeyedLoadICTrampoline_Megamorphic,2,0
-block_count,KeyedLoadICTrampoline_Megamorphic,3,1189
+block_count,KeyedLoadICTrampoline_Megamorphic,3,1201
block_count,StoreGlobalIC,0,144
block_count,StoreGlobalIC,1,144
block_count,StoreGlobalIC,2,144
@@ -26727,23 +26705,23 @@
block_count,StoreGlobalICTrampoline,2,0
block_count,StoreGlobalICTrampoline,3,0
block_count,StoreGlobalICBaseline,0,7
-block_count,StoreIC,0,700
-block_count,StoreIC,1,700
+block_count,StoreIC,0,699
+block_count,StoreIC,1,699
block_count,StoreIC,2,0
-block_count,StoreIC,3,700
-block_count,StoreIC,4,700
-block_count,StoreIC,5,694
+block_count,StoreIC,3,699
+block_count,StoreIC,4,699
+block_count,StoreIC,5,693
block_count,StoreIC,6,207
block_count,StoreIC,7,0
block_count,StoreIC,8,207
-block_count,StoreIC,9,44
+block_count,StoreIC,9,42
block_count,StoreIC,10,0
-block_count,StoreIC,11,44
-block_count,StoreIC,12,44
+block_count,StoreIC,11,42
+block_count,StoreIC,12,42
block_count,StoreIC,13,0
-block_count,StoreIC,14,44
-block_count,StoreIC,15,40
-block_count,StoreIC,16,40
+block_count,StoreIC,14,42
+block_count,StoreIC,15,39
+block_count,StoreIC,16,38
block_count,StoreIC,17,0
block_count,StoreIC,18,3
block_count,StoreIC,19,3
@@ -26751,14 +26729,14 @@
block_count,StoreIC,21,2
block_count,StoreIC,22,0
block_count,StoreIC,23,0
-block_count,StoreIC,24,162
-block_count,StoreIC,25,249
+block_count,StoreIC,24,164
+block_count,StoreIC,25,251
block_count,StoreIC,26,86
block_count,StoreIC,27,86
block_count,StoreIC,28,0
-block_count,StoreIC,29,162
-block_count,StoreIC,30,486
-block_count,StoreIC,31,692
+block_count,StoreIC,29,164
+block_count,StoreIC,30,485
+block_count,StoreIC,31,691
block_count,StoreIC,32,244
block_count,StoreIC,33,9
block_count,StoreIC,34,9
@@ -26904,20 +26882,20 @@
block_count,StoreIC,174,0
block_count,StoreIC,175,230
block_count,StoreIC,176,191
-block_count,StoreIC,177,184
+block_count,StoreIC,177,183
block_count,StoreIC,178,5
block_count,StoreIC,179,5
block_count,StoreIC,180,0
-block_count,StoreIC,181,179
-block_count,StoreIC,182,179
+block_count,StoreIC,181,178
+block_count,StoreIC,182,178
block_count,StoreIC,183,34
block_count,StoreIC,184,0
block_count,StoreIC,185,34
-block_count,StoreIC,186,144
+block_count,StoreIC,186,143
block_count,StoreIC,187,0
block_count,StoreIC,188,7
-block_count,StoreIC,189,4
-block_count,StoreIC,190,4
+block_count,StoreIC,189,3
+block_count,StoreIC,190,3
block_count,StoreIC,191,0
block_count,StoreIC,192,3
block_count,StoreIC,193,39
@@ -26925,13 +26903,13 @@
block_count,StoreIC,195,39
block_count,StoreIC,196,230
block_count,StoreIC,197,46
-block_count,StoreIC,198,0
+block_count,StoreIC,198,1
block_count,StoreIC,199,0
block_count,StoreIC,200,0
-block_count,StoreIC,201,0
+block_count,StoreIC,201,1
block_count,StoreIC,202,0
-block_count,StoreIC,203,0
-block_count,StoreIC,204,0
+block_count,StoreIC,203,1
+block_count,StoreIC,204,1
block_count,StoreIC,205,45
block_count,StoreIC,206,46
block_count,StoreIC,207,46
@@ -26960,7 +26938,7 @@
block_count,StoreIC,230,0
block_count,StoreIC,231,8
block_count,StoreIC,232,19
-block_count,StoreIC,233,10
+block_count,StoreIC,233,11
block_count,StoreIC,234,8
block_count,StoreIC,235,8
block_count,StoreIC,236,2
@@ -26968,8 +26946,8 @@
block_count,StoreIC,238,21
block_count,StoreIC,239,24
block_count,StoreIC,240,46
-block_count,StoreIC,241,184
-block_count,StoreIC,242,178
+block_count,StoreIC,241,183
+block_count,StoreIC,242,177
block_count,StoreIC,243,6
block_count,StoreIC,244,3
block_count,StoreIC,245,2
@@ -26997,7 +26975,7 @@
block_count,StoreIC,267,0
block_count,StoreIC,268,0
block_count,StoreIC,269,0
-block_count,StoreIC,270,448
+block_count,StoreIC,270,447
block_count,StoreIC,271,14
block_count,StoreIC,272,14
block_count,StoreIC,273,14
@@ -27024,9 +27002,9 @@
block_count,StoreIC,294,0
block_count,StoreIC,295,0
block_count,StoreIC,296,0
-block_count,StoreIC,297,434
-block_count,StoreIC,298,414
-block_count,StoreIC,299,414
+block_count,StoreIC,297,433
+block_count,StoreIC,298,413
+block_count,StoreIC,299,413
block_count,StoreIC,300,41
block_count,StoreIC,301,37
block_count,StoreIC,302,37
@@ -27044,38 +27022,38 @@
block_count,StoreIC,314,0
block_count,StoreIC,315,0
block_count,StoreIC,316,0
-block_count,StoreIC,317,6
+block_count,StoreIC,317,5
block_count,StoreIC,318,1
block_count,StoreIC,319,4
-block_count,StoreIC,320,6
-block_count,StoreIC,321,6
+block_count,StoreIC,320,5
+block_count,StoreIC,321,5
block_count,StoreIC,322,0
block_count,StoreIC,323,0
block_count,StoreIC,324,0
-block_count,StoreIC,325,195
-block_count,StoreIC,326,195
-block_count,StoreIC,327,195
+block_count,StoreIC,325,194
+block_count,StoreIC,326,194
+block_count,StoreIC,327,194
block_count,StoreIC,328,11
block_count,StoreIC,329,0
block_count,StoreIC,330,11
-block_count,StoreIC,331,183
+block_count,StoreIC,331,182
block_count,StoreIC,332,0
-block_count,StoreIC,333,195
-block_count,StoreIC,334,43
-block_count,StoreIC,335,151
-block_count,StoreIC,336,195
-block_count,StoreIC,337,195
+block_count,StoreIC,333,194
+block_count,StoreIC,334,44
+block_count,StoreIC,335,149
+block_count,StoreIC,336,194
+block_count,StoreIC,337,194
block_count,StoreIC,338,0
block_count,StoreIC,339,0
block_count,StoreIC,340,0
block_count,StoreIC,341,0
-block_count,StoreIC,342,171
+block_count,StoreIC,342,172
block_count,StoreIC,343,0
-block_count,StoreIC,344,171
-block_count,StoreIC,345,28
-block_count,StoreIC,346,143
-block_count,StoreIC,347,171
-block_count,StoreIC,348,171
+block_count,StoreIC,344,172
+block_count,StoreIC,345,30
+block_count,StoreIC,346,142
+block_count,StoreIC,347,172
+block_count,StoreIC,348,172
block_count,StoreIC,349,0
block_count,StoreIC,350,0
block_count,StoreIC,351,0
@@ -27102,24 +27080,24 @@
block_count,StoreIC,372,6
block_count,StoreIC,373,0
block_count,StoreIC,374,1
-block_count,StoreIC_Megamorphic,0,1297
-block_count,StoreIC_Megamorphic,1,1297
+block_count,StoreIC_Megamorphic,0,1282
+block_count,StoreIC_Megamorphic,1,1282
block_count,StoreIC_Megamorphic,2,0
-block_count,StoreIC_Megamorphic,3,1297
-block_count,StoreIC_Megamorphic,4,1297
+block_count,StoreIC_Megamorphic,3,1282
+block_count,StoreIC_Megamorphic,4,1282
block_count,StoreIC_Megamorphic,5,0
-block_count,StoreIC_Megamorphic,6,1297
-block_count,StoreIC_Megamorphic,7,1194
-block_count,StoreIC_Megamorphic,8,1148
-block_count,StoreIC_Megamorphic,9,45
-block_count,StoreIC_Megamorphic,10,103
-block_count,StoreIC_Megamorphic,11,148
-block_count,StoreIC_Megamorphic,12,148
-block_count,StoreIC_Megamorphic,13,146
+block_count,StoreIC_Megamorphic,6,1282
+block_count,StoreIC_Megamorphic,7,1110
+block_count,StoreIC_Megamorphic,8,1098
+block_count,StoreIC_Megamorphic,9,12
+block_count,StoreIC_Megamorphic,10,172
+block_count,StoreIC_Megamorphic,11,184
+block_count,StoreIC_Megamorphic,12,183
+block_count,StoreIC_Megamorphic,13,181
block_count,StoreIC_Megamorphic,14,1
block_count,StoreIC_Megamorphic,15,0
-block_count,StoreIC_Megamorphic,16,1295
-block_count,StoreIC_Megamorphic,17,509
+block_count,StoreIC_Megamorphic,16,1280
+block_count,StoreIC_Megamorphic,17,495
block_count,StoreIC_Megamorphic,18,1
block_count,StoreIC_Megamorphic,19,1
block_count,StoreIC_Megamorphic,20,1
@@ -27249,41 +27227,41 @@
block_count,StoreIC_Megamorphic,144,0
block_count,StoreIC_Megamorphic,145,0
block_count,StoreIC_Megamorphic,146,0
-block_count,StoreIC_Megamorphic,147,508
-block_count,StoreIC_Megamorphic,148,508
-block_count,StoreIC_Megamorphic,149,305
-block_count,StoreIC_Megamorphic,150,305
-block_count,StoreIC_Megamorphic,151,305
-block_count,StoreIC_Megamorphic,152,305
+block_count,StoreIC_Megamorphic,147,494
+block_count,StoreIC_Megamorphic,148,494
+block_count,StoreIC_Megamorphic,149,291
+block_count,StoreIC_Megamorphic,150,291
+block_count,StoreIC_Megamorphic,151,291
+block_count,StoreIC_Megamorphic,152,291
block_count,StoreIC_Megamorphic,153,0
block_count,StoreIC_Megamorphic,154,0
-block_count,StoreIC_Megamorphic,155,305
-block_count,StoreIC_Megamorphic,156,305
+block_count,StoreIC_Megamorphic,155,291
+block_count,StoreIC_Megamorphic,156,291
block_count,StoreIC_Megamorphic,157,0
block_count,StoreIC_Megamorphic,158,0
block_count,StoreIC_Megamorphic,159,0
-block_count,StoreIC_Megamorphic,160,305
-block_count,StoreIC_Megamorphic,161,192
-block_count,StoreIC_Megamorphic,162,192
+block_count,StoreIC_Megamorphic,160,291
+block_count,StoreIC_Megamorphic,161,186
+block_count,StoreIC_Megamorphic,162,186
block_count,StoreIC_Megamorphic,163,0
block_count,StoreIC_Megamorphic,164,0
block_count,StoreIC_Megamorphic,165,0
-block_count,StoreIC_Megamorphic,166,192
-block_count,StoreIC_Megamorphic,167,192
+block_count,StoreIC_Megamorphic,166,185
+block_count,StoreIC_Megamorphic,167,185
block_count,StoreIC_Megamorphic,168,55
block_count,StoreIC_Megamorphic,169,0
block_count,StoreIC_Megamorphic,170,55
-block_count,StoreIC_Megamorphic,171,137
+block_count,StoreIC_Megamorphic,171,130
block_count,StoreIC_Megamorphic,172,0
block_count,StoreIC_Megamorphic,173,0
block_count,StoreIC_Megamorphic,174,0
block_count,StoreIC_Megamorphic,175,0
block_count,StoreIC_Megamorphic,176,0
block_count,StoreIC_Megamorphic,177,0
-block_count,StoreIC_Megamorphic,178,112
+block_count,StoreIC_Megamorphic,178,105
block_count,StoreIC_Megamorphic,179,0
-block_count,StoreIC_Megamorphic,180,112
-block_count,StoreIC_Megamorphic,181,305
+block_count,StoreIC_Megamorphic,180,105
+block_count,StoreIC_Megamorphic,181,291
block_count,StoreIC_Megamorphic,182,29
block_count,StoreIC_Megamorphic,183,0
block_count,StoreIC_Megamorphic,184,0
@@ -27297,24 +27275,24 @@
block_count,StoreIC_Megamorphic,192,29
block_count,StoreIC_Megamorphic,193,0
block_count,StoreIC_Megamorphic,194,29
-block_count,StoreIC_Megamorphic,195,12
-block_count,StoreIC_Megamorphic,196,12
+block_count,StoreIC_Megamorphic,195,13
+block_count,StoreIC_Megamorphic,196,13
block_count,StoreIC_Megamorphic,197,0
-block_count,StoreIC_Megamorphic,198,12
+block_count,StoreIC_Megamorphic,198,13
block_count,StoreIC_Megamorphic,199,0
block_count,StoreIC_Megamorphic,200,0
-block_count,StoreIC_Megamorphic,201,12
+block_count,StoreIC_Megamorphic,201,13
block_count,StoreIC_Megamorphic,202,0
-block_count,StoreIC_Megamorphic,203,12
+block_count,StoreIC_Megamorphic,203,13
block_count,StoreIC_Megamorphic,204,0
-block_count,StoreIC_Megamorphic,205,12
-block_count,StoreIC_Megamorphic,206,12
+block_count,StoreIC_Megamorphic,205,13
+block_count,StoreIC_Megamorphic,206,13
block_count,StoreIC_Megamorphic,207,0
-block_count,StoreIC_Megamorphic,208,12
-block_count,StoreIC_Megamorphic,209,12
+block_count,StoreIC_Megamorphic,208,13
+block_count,StoreIC_Megamorphic,209,13
block_count,StoreIC_Megamorphic,210,0
-block_count,StoreIC_Megamorphic,211,12
-block_count,StoreIC_Megamorphic,212,12
+block_count,StoreIC_Megamorphic,211,13
+block_count,StoreIC_Megamorphic,212,13
block_count,StoreIC_Megamorphic,213,9
block_count,StoreIC_Megamorphic,214,3
block_count,StoreIC_Megamorphic,215,0
@@ -27325,11 +27303,11 @@
block_count,StoreIC_Megamorphic,220,3
block_count,StoreIC_Megamorphic,221,0
block_count,StoreIC_Megamorphic,222,3
-block_count,StoreIC_Megamorphic,223,12
+block_count,StoreIC_Megamorphic,223,13
block_count,StoreIC_Megamorphic,224,16
block_count,StoreIC_Megamorphic,225,29
-block_count,StoreIC_Megamorphic,226,275
-block_count,StoreIC_Megamorphic,227,275
+block_count,StoreIC_Megamorphic,226,261
+block_count,StoreIC_Megamorphic,227,261
block_count,StoreIC_Megamorphic,228,0
block_count,StoreIC_Megamorphic,229,0
block_count,StoreIC_Megamorphic,230,0
@@ -27384,9 +27362,9 @@
block_count,StoreIC_Megamorphic,279,0
block_count,StoreIC_Megamorphic,280,0
block_count,StoreIC_Megamorphic,281,0
-block_count,StoreIC_Megamorphic,282,785
-block_count,StoreIC_Megamorphic,283,785
-block_count,StoreIC_Megamorphic,284,785
+block_count,StoreIC_Megamorphic,282,784
+block_count,StoreIC_Megamorphic,283,784
+block_count,StoreIC_Megamorphic,284,784
block_count,StoreIC_Megamorphic,285,5
block_count,StoreIC_Megamorphic,286,5
block_count,StoreIC_Megamorphic,287,5
@@ -27412,30 +27390,30 @@
block_count,StoreIC_Megamorphic,307,0
block_count,StoreIC_Megamorphic,308,0
block_count,StoreIC_Megamorphic,309,0
-block_count,StoreIC_Megamorphic,310,446
-block_count,StoreIC_Megamorphic,311,446
-block_count,StoreIC_Megamorphic,312,446
+block_count,StoreIC_Megamorphic,310,447
+block_count,StoreIC_Megamorphic,311,447
+block_count,StoreIC_Megamorphic,312,447
block_count,StoreIC_Megamorphic,313,1
block_count,StoreIC_Megamorphic,314,0
block_count,StoreIC_Megamorphic,315,1
block_count,StoreIC_Megamorphic,316,445
block_count,StoreIC_Megamorphic,317,0
-block_count,StoreIC_Megamorphic,318,446
+block_count,StoreIC_Megamorphic,318,447
block_count,StoreIC_Megamorphic,319,2
block_count,StoreIC_Megamorphic,320,444
-block_count,StoreIC_Megamorphic,321,446
-block_count,StoreIC_Megamorphic,322,446
+block_count,StoreIC_Megamorphic,321,447
+block_count,StoreIC_Megamorphic,322,447
block_count,StoreIC_Megamorphic,323,0
block_count,StoreIC_Megamorphic,324,0
block_count,StoreIC_Megamorphic,325,0
block_count,StoreIC_Megamorphic,326,0
-block_count,StoreIC_Megamorphic,327,332
+block_count,StoreIC_Megamorphic,327,331
block_count,StoreIC_Megamorphic,328,0
-block_count,StoreIC_Megamorphic,329,332
+block_count,StoreIC_Megamorphic,329,331
block_count,StoreIC_Megamorphic,330,2
-block_count,StoreIC_Megamorphic,331,329
-block_count,StoreIC_Megamorphic,332,332
-block_count,StoreIC_Megamorphic,333,332
+block_count,StoreIC_Megamorphic,331,328
+block_count,StoreIC_Megamorphic,332,331
+block_count,StoreIC_Megamorphic,333,331
block_count,StoreIC_Megamorphic,334,0
block_count,StoreIC_Megamorphic,335,0
block_count,StoreIC_Megamorphic,336,0
@@ -27469,12 +27447,12 @@
block_count,StoreICTrampoline_Megamorphic,2,0
block_count,StoreICTrampoline_Megamorphic,3,632
block_count,StoreICBaseline,0,640
-block_count,DefineNamedOwnIC,0,82
-block_count,DefineNamedOwnIC,1,82
+block_count,DefineNamedOwnIC,0,80
+block_count,DefineNamedOwnIC,1,80
block_count,DefineNamedOwnIC,2,0
-block_count,DefineNamedOwnIC,3,82
-block_count,DefineNamedOwnIC,4,82
-block_count,DefineNamedOwnIC,5,77
+block_count,DefineNamedOwnIC,3,80
+block_count,DefineNamedOwnIC,4,80
+block_count,DefineNamedOwnIC,5,76
block_count,DefineNamedOwnIC,6,0
block_count,DefineNamedOwnIC,7,0
block_count,DefineNamedOwnIC,8,0
@@ -27499,8 +27477,8 @@
block_count,DefineNamedOwnIC,27,0
block_count,DefineNamedOwnIC,28,0
block_count,DefineNamedOwnIC,29,0
-block_count,DefineNamedOwnIC,30,77
-block_count,DefineNamedOwnIC,31,77
+block_count,DefineNamedOwnIC,30,76
+block_count,DefineNamedOwnIC,31,76
block_count,DefineNamedOwnIC,32,0
block_count,DefineNamedOwnIC,33,0
block_count,DefineNamedOwnIC,34,0
@@ -27736,7 +27714,7 @@
block_count,DefineNamedOwnIC,264,0
block_count,DefineNamedOwnIC,265,0
block_count,DefineNamedOwnIC,266,0
-block_count,DefineNamedOwnIC,267,77
+block_count,DefineNamedOwnIC,267,76
block_count,DefineNamedOwnIC,268,0
block_count,DefineNamedOwnIC,269,0
block_count,DefineNamedOwnIC,270,0
@@ -27758,9 +27736,9 @@
block_count,DefineNamedOwnIC,286,0
block_count,DefineNamedOwnIC,287,0
block_count,DefineNamedOwnIC,288,0
-block_count,DefineNamedOwnIC,289,77
-block_count,DefineNamedOwnIC,290,77
-block_count,DefineNamedOwnIC,291,77
+block_count,DefineNamedOwnIC,289,76
+block_count,DefineNamedOwnIC,290,76
+block_count,DefineNamedOwnIC,291,76
block_count,DefineNamedOwnIC,292,0
block_count,DefineNamedOwnIC,293,0
block_count,DefineNamedOwnIC,294,0
@@ -27778,27 +27756,27 @@
block_count,DefineNamedOwnIC,306,0
block_count,DefineNamedOwnIC,307,0
block_count,DefineNamedOwnIC,308,0
-block_count,DefineNamedOwnIC,309,3
+block_count,DefineNamedOwnIC,309,2
block_count,DefineNamedOwnIC,310,0
-block_count,DefineNamedOwnIC,311,3
-block_count,DefineNamedOwnIC,312,3
-block_count,DefineNamedOwnIC,313,3
+block_count,DefineNamedOwnIC,311,2
+block_count,DefineNamedOwnIC,312,2
+block_count,DefineNamedOwnIC,313,2
block_count,DefineNamedOwnIC,314,0
block_count,DefineNamedOwnIC,315,0
block_count,DefineNamedOwnIC,316,0
-block_count,DefineNamedOwnIC,317,62
-block_count,DefineNamedOwnIC,318,62
-block_count,DefineNamedOwnIC,319,62
-block_count,DefineNamedOwnIC,320,10
+block_count,DefineNamedOwnIC,317,61
+block_count,DefineNamedOwnIC,318,61
+block_count,DefineNamedOwnIC,319,61
+block_count,DefineNamedOwnIC,320,9
block_count,DefineNamedOwnIC,321,0
-block_count,DefineNamedOwnIC,322,10
-block_count,DefineNamedOwnIC,323,52
+block_count,DefineNamedOwnIC,322,9
+block_count,DefineNamedOwnIC,323,51
block_count,DefineNamedOwnIC,324,0
-block_count,DefineNamedOwnIC,325,62
+block_count,DefineNamedOwnIC,325,61
block_count,DefineNamedOwnIC,326,0
-block_count,DefineNamedOwnIC,327,62
-block_count,DefineNamedOwnIC,328,62
-block_count,DefineNamedOwnIC,329,62
+block_count,DefineNamedOwnIC,327,61
+block_count,DefineNamedOwnIC,328,61
+block_count,DefineNamedOwnIC,329,61
block_count,DefineNamedOwnIC,330,0
block_count,DefineNamedOwnIC,331,0
block_count,DefineNamedOwnIC,332,0
@@ -27836,17 +27814,17 @@
block_count,DefineNamedOwnIC,364,4
block_count,DefineNamedOwnIC,365,0
block_count,DefineNamedOwnIC,366,0
-block_count,DefineNamedOwnICBaseline,0,75
-block_count,KeyedStoreIC,0,494
-block_count,KeyedStoreIC,1,494
+block_count,DefineNamedOwnICBaseline,0,74
+block_count,KeyedStoreIC,0,491
+block_count,KeyedStoreIC,1,491
block_count,KeyedStoreIC,2,0
-block_count,KeyedStoreIC,3,494
-block_count,KeyedStoreIC,4,494
-block_count,KeyedStoreIC,5,492
+block_count,KeyedStoreIC,3,491
+block_count,KeyedStoreIC,4,491
+block_count,KeyedStoreIC,5,489
block_count,KeyedStoreIC,6,44
block_count,KeyedStoreIC,7,0
block_count,KeyedStoreIC,8,44
-block_count,KeyedStoreIC,9,23
+block_count,KeyedStoreIC,9,24
block_count,KeyedStoreIC,10,0
block_count,KeyedStoreIC,11,0
block_count,KeyedStoreIC,12,0
@@ -27855,30 +27833,30 @@
block_count,KeyedStoreIC,15,0
block_count,KeyedStoreIC,16,0
block_count,KeyedStoreIC,17,0
-block_count,KeyedStoreIC,18,22
+block_count,KeyedStoreIC,18,23
block_count,KeyedStoreIC,19,20
-block_count,KeyedStoreIC,20,37
-block_count,KeyedStoreIC,21,16
-block_count,KeyedStoreIC,22,16
+block_count,KeyedStoreIC,20,35
+block_count,KeyedStoreIC,21,15
+block_count,KeyedStoreIC,22,15
block_count,KeyedStoreIC,23,0
block_count,KeyedStoreIC,24,20
-block_count,KeyedStoreIC,25,447
-block_count,KeyedStoreIC,26,468
-block_count,KeyedStoreIC,27,467
-block_count,KeyedStoreIC,28,467
-block_count,KeyedStoreIC,29,104
-block_count,KeyedStoreIC,30,104
-block_count,KeyedStoreIC,31,104
+block_count,KeyedStoreIC,25,445
+block_count,KeyedStoreIC,26,466
+block_count,KeyedStoreIC,27,464
+block_count,KeyedStoreIC,28,464
+block_count,KeyedStoreIC,29,103
+block_count,KeyedStoreIC,30,103
+block_count,KeyedStoreIC,31,103
block_count,KeyedStoreIC,32,0
block_count,KeyedStoreIC,33,0
-block_count,KeyedStoreIC,34,104
-block_count,KeyedStoreIC,35,104
+block_count,KeyedStoreIC,34,103
+block_count,KeyedStoreIC,35,103
block_count,KeyedStoreIC,36,1
block_count,KeyedStoreIC,37,1
block_count,KeyedStoreIC,38,1
block_count,KeyedStoreIC,39,0
block_count,KeyedStoreIC,40,0
-block_count,KeyedStoreIC,41,103
+block_count,KeyedStoreIC,41,102
block_count,KeyedStoreIC,42,0
block_count,KeyedStoreIC,43,0
block_count,KeyedStoreIC,44,0
@@ -28028,7 +28006,7 @@
block_count,KeyedStoreIC,188,0
block_count,KeyedStoreIC,189,0
block_count,KeyedStoreIC,190,0
-block_count,KeyedStoreIC,191,362
+block_count,KeyedStoreIC,191,360
block_count,KeyedStoreIC,192,0
block_count,KeyedStoreIC,193,0
block_count,KeyedStoreIC,194,0
@@ -28274,11 +28252,11 @@
block_count,KeyedStoreICTrampoline,1,1
block_count,KeyedStoreICTrampoline,2,0
block_count,KeyedStoreICTrampoline,3,1
-block_count,KeyedStoreICTrampoline_Megamorphic,0,300
-block_count,KeyedStoreICTrampoline_Megamorphic,1,300
+block_count,KeyedStoreICTrampoline_Megamorphic,0,299
+block_count,KeyedStoreICTrampoline_Megamorphic,1,299
block_count,KeyedStoreICTrampoline_Megamorphic,2,0
-block_count,KeyedStoreICTrampoline_Megamorphic,3,300
-block_count,KeyedStoreICBaseline,0,447
+block_count,KeyedStoreICTrampoline_Megamorphic,3,299
+block_count,KeyedStoreICBaseline,0,444
block_count,DefineKeyedOwnIC,0,2
block_count,DefineKeyedOwnIC,1,2
block_count,DefineKeyedOwnIC,2,0
@@ -28708,12 +28686,12 @@
block_count,DefineKeyedOwnIC,426,0
block_count,DefineKeyedOwnIC,427,2
block_count,DefineKeyedOwnIC,428,2
-block_count,StoreInArrayLiteralIC,0,43
-block_count,StoreInArrayLiteralIC,1,43
+block_count,StoreInArrayLiteralIC,0,45
+block_count,StoreInArrayLiteralIC,1,45
block_count,StoreInArrayLiteralIC,2,0
-block_count,StoreInArrayLiteralIC,3,43
-block_count,StoreInArrayLiteralIC,4,43
-block_count,StoreInArrayLiteralIC,5,42
+block_count,StoreInArrayLiteralIC,3,45
+block_count,StoreInArrayLiteralIC,4,45
+block_count,StoreInArrayLiteralIC,5,43
block_count,StoreInArrayLiteralIC,6,2
block_count,StoreInArrayLiteralIC,7,0
block_count,StoreInArrayLiteralIC,8,2
@@ -28726,25 +28704,25 @@
block_count,StoreInArrayLiteralIC,15,2
block_count,StoreInArrayLiteralIC,16,0
block_count,StoreInArrayLiteralIC,17,2
-block_count,StoreInArrayLiteralIC,18,39
-block_count,StoreInArrayLiteralIC,19,42
-block_count,StoreInArrayLiteralIC,20,42
+block_count,StoreInArrayLiteralIC,18,41
+block_count,StoreInArrayLiteralIC,19,43
+block_count,StoreInArrayLiteralIC,20,43
block_count,StoreInArrayLiteralIC,21,0
block_count,StoreInArrayLiteralIC,22,0
block_count,StoreInArrayLiteralIC,23,0
block_count,StoreInArrayLiteralIC,24,0
block_count,StoreInArrayLiteralIC,25,0
-block_count,StoreInArrayLiteralIC,26,42
+block_count,StoreInArrayLiteralIC,26,43
block_count,StoreInArrayLiteralIC,27,0
block_count,StoreInArrayLiteralIC,28,1
block_count,StoreInArrayLiteralIC,29,0
block_count,StoreInArrayLiteralIC,30,0
-block_count,StoreInArrayLiteralICBaseline,0,38
-block_count,LoadGlobalIC,0,1267
-block_count,LoadGlobalIC,1,1267
-block_count,LoadGlobalIC,2,1157
-block_count,LoadGlobalIC,3,1157
-block_count,LoadGlobalIC,4,1157
+block_count,StoreInArrayLiteralICBaseline,0,40
+block_count,LoadGlobalIC,0,1006
+block_count,LoadGlobalIC,1,1006
+block_count,LoadGlobalIC,2,897
+block_count,LoadGlobalIC,3,897
+block_count,LoadGlobalIC,4,897
block_count,LoadGlobalIC,5,0
block_count,LoadGlobalIC,6,0
block_count,LoadGlobalIC,7,0
@@ -28939,14 +28917,14 @@
block_count,LoadGlobalIC,196,0
block_count,LoadGlobalIC,197,0
block_count,LoadGlobalIC,198,0
-block_count,LoadGlobalIC,199,110
+block_count,LoadGlobalIC,199,109
block_count,LoadGlobalIC,200,0
-block_count,LoadGlobalIC,201,110
+block_count,LoadGlobalIC,201,109
block_count,LoadGlobalIC,202,0
-block_count,LoadGlobalIC,203,110
-block_count,LoadGlobalIC,204,110
-block_count,LoadGlobalIC,205,109
-block_count,LoadGlobalIC,206,93
+block_count,LoadGlobalIC,203,109
+block_count,LoadGlobalIC,204,109
+block_count,LoadGlobalIC,205,108
+block_count,LoadGlobalIC,206,92
block_count,LoadGlobalIC,207,0
block_count,LoadGlobalIC,208,0
block_count,LoadGlobalIC,209,0
@@ -28958,7 +28936,7 @@
block_count,LoadGlobalIC,215,0
block_count,LoadGlobalIC,216,0
block_count,LoadGlobalIC,217,0
-block_count,LoadGlobalIC,218,93
+block_count,LoadGlobalIC,218,92
block_count,LoadGlobalIC,219,16
block_count,LoadGlobalIC,220,0
block_count,LoadGlobalIC,221,16
@@ -29161,22 +29139,22 @@
block_count,LoadGlobalICInsideTypeof,196,0
block_count,LoadGlobalICInsideTypeof,197,0
block_count,LoadGlobalICInsideTypeof,198,0
-block_count,LoadGlobalICTrampoline,0,297
-block_count,LoadGlobalICTrampoline,1,297
+block_count,LoadGlobalICTrampoline,0,68
+block_count,LoadGlobalICTrampoline,1,68
block_count,LoadGlobalICTrampoline,2,0
-block_count,LoadGlobalICTrampoline,3,297
-block_count,LoadGlobalICBaseline,0,922
+block_count,LoadGlobalICTrampoline,3,68
+block_count,LoadGlobalICBaseline,0,910
block_count,LoadGlobalICInsideTypeofTrampoline,0,0
block_count,LoadGlobalICInsideTypeofTrampoline,1,0
block_count,LoadGlobalICInsideTypeofTrampoline,2,0
block_count,LoadGlobalICInsideTypeofTrampoline,3,0
block_count,LoadGlobalICInsideTypeofBaseline,0,2
-block_count,LookupGlobalICBaseline,0,2
-block_count,LookupGlobalICBaseline,1,2
-block_count,LookupGlobalICBaseline,2,2
+block_count,LookupGlobalICBaseline,0,3
+block_count,LookupGlobalICBaseline,1,3
+block_count,LookupGlobalICBaseline,2,3
block_count,LookupGlobalICBaseline,3,0
-block_count,LookupGlobalICBaseline,4,2
-block_count,LookupGlobalICBaseline,5,2
+block_count,LookupGlobalICBaseline,4,3
+block_count,LookupGlobalICBaseline,5,3
block_count,LookupGlobalICBaseline,6,2
block_count,LookupGlobalICBaseline,7,0
block_count,LookupGlobalICBaseline,8,0
@@ -29206,7 +29184,7 @@
block_count,KeyedHasIC,6,728
block_count,KeyedHasIC,7,0
block_count,KeyedHasIC,8,728
-block_count,KeyedHasIC,9,728
+block_count,KeyedHasIC,9,727
block_count,KeyedHasIC,10,1
block_count,KeyedHasIC,11,1
block_count,KeyedHasIC,12,0
@@ -29464,12 +29442,12 @@
block_count,KeyedHasIC_Megamorphic,2,0
block_count,KeyedHasIC_Megamorphic,3,726
block_count,KeyedHasIC_Megamorphic,4,726
-block_count,KeyedHasIC_Megamorphic,5,725
-block_count,KeyedHasIC_Megamorphic,6,725
+block_count,KeyedHasIC_Megamorphic,5,724
+block_count,KeyedHasIC_Megamorphic,6,724
block_count,KeyedHasIC_Megamorphic,7,0
block_count,KeyedHasIC_Megamorphic,8,0
block_count,KeyedHasIC_Megamorphic,9,0
-block_count,KeyedHasIC_Megamorphic,10,725
+block_count,KeyedHasIC_Megamorphic,10,724
block_count,KeyedHasIC_Megamorphic,11,723
block_count,KeyedHasIC_Megamorphic,12,0
block_count,KeyedHasIC_Megamorphic,13,0
@@ -29483,55 +29461,55 @@
block_count,KeyedHasIC_Megamorphic,21,0
block_count,KeyedHasIC_Megamorphic,22,0
block_count,KeyedHasIC_Megamorphic,23,723
-block_count,KeyedHasIC_Megamorphic,24,722
+block_count,KeyedHasIC_Megamorphic,24,721
block_count,KeyedHasIC_Megamorphic,25,1
block_count,KeyedHasIC_Megamorphic,26,0
block_count,KeyedHasIC_Megamorphic,27,0
block_count,KeyedHasIC_Megamorphic,28,0
block_count,KeyedHasIC_Megamorphic,29,1
block_count,KeyedHasIC_Megamorphic,30,723
-block_count,KeyedHasIC_Megamorphic,31,2862
-block_count,KeyedHasIC_Megamorphic,32,2862
-block_count,KeyedHasIC_Megamorphic,33,2858
-block_count,KeyedHasIC_Megamorphic,34,2737
-block_count,KeyedHasIC_Megamorphic,35,721
-block_count,KeyedHasIC_Megamorphic,36,721
+block_count,KeyedHasIC_Megamorphic,31,2860
+block_count,KeyedHasIC_Megamorphic,32,2860
+block_count,KeyedHasIC_Megamorphic,33,2857
+block_count,KeyedHasIC_Megamorphic,34,2736
+block_count,KeyedHasIC_Megamorphic,35,720
+block_count,KeyedHasIC_Megamorphic,36,720
block_count,KeyedHasIC_Megamorphic,37,0
-block_count,KeyedHasIC_Megamorphic,38,721
-block_count,KeyedHasIC_Megamorphic,39,4326
-block_count,KeyedHasIC_Megamorphic,40,4326
+block_count,KeyedHasIC_Megamorphic,38,720
+block_count,KeyedHasIC_Megamorphic,39,4324
+block_count,KeyedHasIC_Megamorphic,40,4324
block_count,KeyedHasIC_Megamorphic,41,0
-block_count,KeyedHasIC_Megamorphic,42,4326
-block_count,KeyedHasIC_Megamorphic,43,1422
-block_count,KeyedHasIC_Megamorphic,44,2904
-block_count,KeyedHasIC_Megamorphic,45,4326
-block_count,KeyedHasIC_Megamorphic,46,3605
-block_count,KeyedHasIC_Megamorphic,47,721
-block_count,KeyedHasIC_Megamorphic,48,721
-block_count,KeyedHasIC_Megamorphic,49,721
-block_count,KeyedHasIC_Megamorphic,50,721
+block_count,KeyedHasIC_Megamorphic,42,4324
+block_count,KeyedHasIC_Megamorphic,43,1421
+block_count,KeyedHasIC_Megamorphic,44,2903
+block_count,KeyedHasIC_Megamorphic,45,4324
+block_count,KeyedHasIC_Megamorphic,46,3603
+block_count,KeyedHasIC_Megamorphic,47,720
+block_count,KeyedHasIC_Megamorphic,48,720
+block_count,KeyedHasIC_Megamorphic,49,720
+block_count,KeyedHasIC_Megamorphic,50,720
block_count,KeyedHasIC_Megamorphic,51,0
-block_count,KeyedHasIC_Megamorphic,52,721
+block_count,KeyedHasIC_Megamorphic,52,720
block_count,KeyedHasIC_Megamorphic,53,0
block_count,KeyedHasIC_Megamorphic,54,0
block_count,KeyedHasIC_Megamorphic,55,0
block_count,KeyedHasIC_Megamorphic,56,0
block_count,KeyedHasIC_Megamorphic,57,0
-block_count,KeyedHasIC_Megamorphic,58,721
+block_count,KeyedHasIC_Megamorphic,58,720
block_count,KeyedHasIC_Megamorphic,59,0
-block_count,KeyedHasIC_Megamorphic,60,2016
+block_count,KeyedHasIC_Megamorphic,60,2015
block_count,KeyedHasIC_Megamorphic,61,0
-block_count,KeyedHasIC_Megamorphic,62,2016
+block_count,KeyedHasIC_Megamorphic,62,2015
block_count,KeyedHasIC_Megamorphic,63,489
block_count,KeyedHasIC_Megamorphic,64,1526
-block_count,KeyedHasIC_Megamorphic,65,7564
-block_count,KeyedHasIC_Megamorphic,66,7561
-block_count,KeyedHasIC_Megamorphic,67,7559
-block_count,KeyedHasIC_Megamorphic,68,6037
-block_count,KeyedHasIC_Megamorphic,69,1521
+block_count,KeyedHasIC_Megamorphic,65,7560
+block_count,KeyedHasIC_Megamorphic,66,7557
+block_count,KeyedHasIC_Megamorphic,67,7555
+block_count,KeyedHasIC_Megamorphic,68,6034
+block_count,KeyedHasIC_Megamorphic,69,1520
block_count,KeyedHasIC_Megamorphic,70,2
block_count,KeyedHasIC_Megamorphic,71,2
-block_count,KeyedHasIC_Megamorphic,72,2011
+block_count,KeyedHasIC_Megamorphic,72,2010
block_count,KeyedHasIC_Megamorphic,73,1009
block_count,KeyedHasIC_Megamorphic,74,1001
block_count,KeyedHasIC_Megamorphic,75,1001
@@ -29575,8 +29553,8 @@
block_count,KeyedHasIC_Megamorphic,113,0
block_count,KeyedHasIC_Megamorphic,114,0
block_count,KeyedHasIC_Megamorphic,115,0
-block_count,KeyedHasIC_Megamorphic,116,2854
-block_count,KeyedHasIC_Megamorphic,117,2854
+block_count,KeyedHasIC_Megamorphic,116,2852
+block_count,KeyedHasIC_Megamorphic,117,2852
block_count,KeyedHasIC_Megamorphic,118,0
block_count,KeyedHasIC_Megamorphic,119,0
block_count,KeyedHasIC_Megamorphic,120,0
@@ -29614,13 +29592,13 @@
block_count,KeyedHasIC_Megamorphic,152,0
block_count,KeyedHasIC_Megamorphic,153,0
block_count,KeyedHasIC_Megamorphic,154,0
-block_count,KeyedHasIC_Megamorphic,155,2854
+block_count,KeyedHasIC_Megamorphic,155,2852
block_count,KeyedHasIC_Megamorphic,156,4
block_count,KeyedHasIC_Megamorphic,157,4
block_count,KeyedHasIC_Megamorphic,158,0
-block_count,KeyedHasIC_Megamorphic,159,2849
-block_count,KeyedHasIC_Megamorphic,160,2854
-block_count,KeyedHasIC_Megamorphic,161,2138
+block_count,KeyedHasIC_Megamorphic,159,2847
+block_count,KeyedHasIC_Megamorphic,160,2852
+block_count,KeyedHasIC_Megamorphic,161,2137
block_count,KeyedHasIC_Megamorphic,162,715
block_count,KeyedHasIC_Megamorphic,163,1
block_count,KeyedHasIC_Megamorphic,164,1
@@ -29769,8 +29747,8 @@
block_count,AddLhsIsStringConstantInternalizeWithVector,29,724
block_count,AddLhsIsStringConstantInternalizeWithVector,30,724
block_count,AddLhsIsStringConstantInternalizeWithVector,31,724
-block_count,AddLhsIsStringConstantInternalizeWithVector,32,740
-block_count,AddLhsIsStringConstantInternalizeWithVector,33,740
+block_count,AddLhsIsStringConstantInternalizeWithVector,32,739
+block_count,AddLhsIsStringConstantInternalizeWithVector,33,739
block_count,AddLhsIsStringConstantInternalizeWithVector,34,15
block_count,AddLhsIsStringConstantInternalizeWithVector,35,724
block_count,AddLhsIsStringConstantInternalizeWithVector,36,0
@@ -30081,13 +30059,13 @@
block_count,FindOrderedHashMapEntry,14,57
block_count,FindOrderedHashMapEntry,15,63
block_count,FindOrderedHashMapEntry,16,131
-block_count,FindOrderedHashMapEntry,17,340
-block_count,FindOrderedHashMapEntry,18,233
-block_count,FindOrderedHashMapEntry,19,233
-block_count,FindOrderedHashMapEntry,20,209
+block_count,FindOrderedHashMapEntry,17,182
+block_count,FindOrderedHashMapEntry,18,74
+block_count,FindOrderedHashMapEntry,19,74
+block_count,FindOrderedHashMapEntry,20,50
block_count,FindOrderedHashMapEntry,21,23
block_count,FindOrderedHashMapEntry,22,0
-block_count,FindOrderedHashMapEntry,23,209
+block_count,FindOrderedHashMapEntry,23,50
block_count,FindOrderedHashMapEntry,24,107
block_count,FindOrderedHashMapEntry,25,0
block_count,FindOrderedHashMapEntry,26,0
@@ -30103,9 +30081,9 @@
block_count,FindOrderedHashMapEntry,36,0
block_count,FindOrderedHashMapEntry,37,0
block_count,FindOrderedHashMapEntry,38,259
-block_count,FindOrderedHashMapEntry,39,82
+block_count,FindOrderedHashMapEntry,39,81
block_count,FindOrderedHashMapEntry,40,8
-block_count,FindOrderedHashMapEntry,41,73
+block_count,FindOrderedHashMapEntry,41,72
block_count,FindOrderedHashMapEntry,42,177
block_count,FindOrderedHashMapEntry,43,259
block_count,FindOrderedHashMapEntry,44,259
@@ -30562,13 +30540,13 @@
block_count,MapPrototypeSet,20,42
block_count,MapPrototypeSet,21,46
block_count,MapPrototypeSet,22,46
-block_count,MapPrototypeSet,23,76
-block_count,MapPrototypeSet,24,41
-block_count,MapPrototypeSet,25,41
-block_count,MapPrototypeSet,26,30
+block_count,MapPrototypeSet,23,77
+block_count,MapPrototypeSet,24,43
+block_count,MapPrototypeSet,25,43
+block_count,MapPrototypeSet,26,31
block_count,MapPrototypeSet,27,11
block_count,MapPrototypeSet,28,0
-block_count,MapPrototypeSet,29,30
+block_count,MapPrototypeSet,29,31
block_count,MapPrototypeSet,30,34
block_count,MapPrototypeSet,31,0
block_count,MapPrototypeSet,32,0
@@ -30950,26 +30928,26 @@
block_count,MapIteratorToList,54,0
block_count,MapIteratorToList,55,0
block_count,MapIteratorToList,56,0
-block_count,Add_Baseline,0,582
-block_count,Add_Baseline,1,335
+block_count,Add_Baseline,0,576
+block_count,Add_Baseline,1,334
block_count,Add_Baseline,2,5
block_count,Add_Baseline,3,5
block_count,Add_Baseline,4,0
-block_count,Add_Baseline,5,330
-block_count,Add_Baseline,6,329
+block_count,Add_Baseline,5,329
+block_count,Add_Baseline,6,328
block_count,Add_Baseline,7,0
-block_count,Add_Baseline,8,329
-block_count,Add_Baseline,9,329
+block_count,Add_Baseline,8,328
+block_count,Add_Baseline,9,328
block_count,Add_Baseline,10,0
-block_count,Add_Baseline,11,246
-block_count,Add_Baseline,12,146
-block_count,Add_Baseline,13,125
-block_count,Add_Baseline,14,125
+block_count,Add_Baseline,11,242
+block_count,Add_Baseline,12,145
+block_count,Add_Baseline,13,124
+block_count,Add_Baseline,14,124
block_count,Add_Baseline,15,0
-block_count,Add_Baseline,16,20
-block_count,Add_Baseline,17,99
-block_count,Add_Baseline,18,99
-block_count,Add_Baseline,19,93
+block_count,Add_Baseline,16,21
+block_count,Add_Baseline,17,96
+block_count,Add_Baseline,18,96
+block_count,Add_Baseline,19,90
block_count,Add_Baseline,20,0
block_count,Add_Baseline,21,0
block_count,Add_Baseline,22,0
@@ -30983,7 +30961,7 @@
block_count,Add_Baseline,30,0
block_count,Add_Baseline,31,0
block_count,Add_Baseline,32,0
-block_count,Add_Baseline,33,92
+block_count,Add_Baseline,33,89
block_count,Add_Baseline,34,7
block_count,Add_Baseline,35,7
block_count,Add_Baseline,36,0
@@ -30992,10 +30970,10 @@
block_count,Add_Baseline,39,0
block_count,Add_Baseline,40,0
block_count,Add_Baseline,41,0
-block_count,Add_Baseline,42,85
+block_count,Add_Baseline,42,82
block_count,Add_Baseline,43,0
-block_count,Add_Baseline,44,84
-block_count,Add_Baseline,45,85
+block_count,Add_Baseline,44,82
+block_count,Add_Baseline,45,82
block_count,Add_Baseline,46,6
block_count,Add_Baseline,47,0
block_count,Add_Baseline,48,0
@@ -31011,22 +30989,22 @@
block_count,Add_Baseline,58,0
block_count,Add_Baseline,59,14
block_count,Add_Baseline,60,14
-block_count,Add_Baseline,61,152
+block_count,Add_Baseline,61,151
block_count,Add_Baseline,62,0
-block_count,Add_Baseline,63,152
-block_count,Add_Baseline,64,152
+block_count,Add_Baseline,63,151
+block_count,Add_Baseline,64,151
block_count,Add_Baseline,65,0
-block_count,Add_Baseline,66,152
-block_count,Add_Baseline,67,152
-block_count,AddSmi_Baseline,0,581
-block_count,AddSmi_Baseline,1,578
-block_count,AddSmi_Baseline,2,578
+block_count,Add_Baseline,66,151
+block_count,Add_Baseline,67,151
+block_count,AddSmi_Baseline,0,576
+block_count,AddSmi_Baseline,1,574
+block_count,AddSmi_Baseline,2,574
block_count,AddSmi_Baseline,3,0
-block_count,AddSmi_Baseline,4,578
-block_count,AddSmi_Baseline,5,578
+block_count,AddSmi_Baseline,4,574
+block_count,AddSmi_Baseline,5,574
block_count,AddSmi_Baseline,6,0
-block_count,AddSmi_Baseline,7,3
-block_count,AddSmi_Baseline,8,3
+block_count,AddSmi_Baseline,7,2
+block_count,AddSmi_Baseline,8,2
block_count,AddSmi_Baseline,9,0
block_count,AddSmi_Baseline,10,0
block_count,AddSmi_Baseline,11,0
@@ -31070,32 +31048,32 @@
block_count,AddSmi_Baseline,49,0
block_count,AddSmi_Baseline,50,0
block_count,AddSmi_Baseline,51,0
-block_count,AddSmi_Baseline,52,3
+block_count,AddSmi_Baseline,52,2
block_count,AddSmi_Baseline,53,0
-block_count,AddSmi_Baseline,54,3
-block_count,AddSmi_Baseline,55,3
+block_count,AddSmi_Baseline,54,2
+block_count,AddSmi_Baseline,55,2
block_count,AddSmi_Baseline,56,0
-block_count,AddSmi_Baseline,57,3
-block_count,AddSmi_Baseline,58,3
-block_count,Subtract_Baseline,0,127
+block_count,AddSmi_Baseline,57,2
+block_count,AddSmi_Baseline,58,2
+block_count,Subtract_Baseline,0,126
block_count,Subtract_Baseline,1,65
block_count,Subtract_Baseline,2,6
block_count,Subtract_Baseline,3,6
block_count,Subtract_Baseline,4,0
-block_count,Subtract_Baseline,5,59
-block_count,Subtract_Baseline,6,59
+block_count,Subtract_Baseline,5,58
+block_count,Subtract_Baseline,6,58
block_count,Subtract_Baseline,7,0
block_count,Subtract_Baseline,8,0
block_count,Subtract_Baseline,9,0
block_count,Subtract_Baseline,10,0
-block_count,Subtract_Baseline,11,59
+block_count,Subtract_Baseline,11,58
block_count,Subtract_Baseline,12,0
-block_count,Subtract_Baseline,13,59
-block_count,Subtract_Baseline,14,59
+block_count,Subtract_Baseline,13,58
+block_count,Subtract_Baseline,14,58
block_count,Subtract_Baseline,15,61
block_count,Subtract_Baseline,16,61
-block_count,Subtract_Baseline,17,58
-block_count,Subtract_Baseline,18,58
+block_count,Subtract_Baseline,17,57
+block_count,Subtract_Baseline,18,57
block_count,Subtract_Baseline,19,0
block_count,Subtract_Baseline,20,3
block_count,Subtract_Baseline,21,0
@@ -31135,38 +31113,38 @@
block_count,Subtract_Baseline,55,67
block_count,Subtract_Baseline,56,67
block_count,SubtractSmi_Baseline,0,78
-block_count,SubtractSmi_Baseline,1,59
-block_count,SubtractSmi_Baseline,2,59
+block_count,SubtractSmi_Baseline,1,58
+block_count,SubtractSmi_Baseline,2,58
block_count,SubtractSmi_Baseline,3,0
block_count,SubtractSmi_Baseline,4,0
block_count,SubtractSmi_Baseline,5,0
block_count,SubtractSmi_Baseline,6,0
-block_count,SubtractSmi_Baseline,7,59
+block_count,SubtractSmi_Baseline,7,58
block_count,SubtractSmi_Baseline,8,0
-block_count,SubtractSmi_Baseline,9,59
-block_count,SubtractSmi_Baseline,10,59
-block_count,SubtractSmi_Baseline,11,18
-block_count,SubtractSmi_Baseline,12,18
+block_count,SubtractSmi_Baseline,9,58
+block_count,SubtractSmi_Baseline,10,58
+block_count,SubtractSmi_Baseline,11,20
+block_count,SubtractSmi_Baseline,12,20
block_count,SubtractSmi_Baseline,13,0
-block_count,SubtractSmi_Baseline,14,18
-block_count,SubtractSmi_Baseline,15,18
+block_count,SubtractSmi_Baseline,14,20
+block_count,SubtractSmi_Baseline,15,20
block_count,SubtractSmi_Baseline,16,0
-block_count,SubtractSmi_Baseline,17,18
-block_count,SubtractSmi_Baseline,18,18
-block_count,Multiply_Baseline,0,187
-block_count,Multiply_Baseline,1,31
+block_count,SubtractSmi_Baseline,17,20
+block_count,SubtractSmi_Baseline,18,20
+block_count,Multiply_Baseline,0,184
+block_count,Multiply_Baseline,1,29
block_count,Multiply_Baseline,2,15
block_count,Multiply_Baseline,3,15
block_count,Multiply_Baseline,4,0
-block_count,Multiply_Baseline,5,15
-block_count,Multiply_Baseline,6,15
-block_count,Multiply_Baseline,7,12
-block_count,Multiply_Baseline,8,12
+block_count,Multiply_Baseline,5,14
+block_count,Multiply_Baseline,6,14
+block_count,Multiply_Baseline,7,11
+block_count,Multiply_Baseline,8,11
block_count,Multiply_Baseline,9,0
block_count,Multiply_Baseline,10,0
block_count,Multiply_Baseline,11,0
block_count,Multiply_Baseline,12,0
-block_count,Multiply_Baseline,13,12
+block_count,Multiply_Baseline,13,11
block_count,Multiply_Baseline,14,2
block_count,Multiply_Baseline,15,2
block_count,Multiply_Baseline,16,0
@@ -31174,17 +31152,17 @@
block_count,Multiply_Baseline,18,0
block_count,Multiply_Baseline,19,0
block_count,Multiply_Baseline,20,0
-block_count,Multiply_Baseline,21,15
+block_count,Multiply_Baseline,21,14
block_count,Multiply_Baseline,22,0
-block_count,Multiply_Baseline,23,15
-block_count,Multiply_Baseline,24,15
+block_count,Multiply_Baseline,23,14
+block_count,Multiply_Baseline,24,14
block_count,Multiply_Baseline,25,0
-block_count,Multiply_Baseline,26,15
-block_count,Multiply_Baseline,27,15
-block_count,Multiply_Baseline,28,156
-block_count,Multiply_Baseline,29,156
-block_count,Multiply_Baseline,30,147
-block_count,Multiply_Baseline,31,147
+block_count,Multiply_Baseline,26,14
+block_count,Multiply_Baseline,27,14
+block_count,Multiply_Baseline,28,154
+block_count,Multiply_Baseline,29,154
+block_count,Multiply_Baseline,30,145
+block_count,Multiply_Baseline,31,145
block_count,Multiply_Baseline,32,0
block_count,Multiply_Baseline,33,8
block_count,Multiply_Baseline,34,0
@@ -31218,23 +31196,23 @@
block_count,Multiply_Baseline,62,0
block_count,Multiply_Baseline,63,0
block_count,Multiply_Baseline,64,0
-block_count,Multiply_Baseline,65,172
+block_count,Multiply_Baseline,65,169
block_count,Multiply_Baseline,66,0
-block_count,Multiply_Baseline,67,172
-block_count,Multiply_Baseline,68,172
+block_count,Multiply_Baseline,67,169
+block_count,Multiply_Baseline,68,169
block_count,Multiply_Baseline,69,0
-block_count,Multiply_Baseline,70,172
-block_count,Multiply_Baseline,71,172
-block_count,MultiplySmi_Baseline,0,30
+block_count,Multiply_Baseline,70,169
+block_count,Multiply_Baseline,71,169
+block_count,MultiplySmi_Baseline,0,28
block_count,MultiplySmi_Baseline,1,24
-block_count,MultiplySmi_Baseline,2,24
-block_count,MultiplySmi_Baseline,3,16
-block_count,MultiplySmi_Baseline,4,16
+block_count,MultiplySmi_Baseline,2,23
+block_count,MultiplySmi_Baseline,3,15
+block_count,MultiplySmi_Baseline,4,15
block_count,MultiplySmi_Baseline,5,0
block_count,MultiplySmi_Baseline,6,0
block_count,MultiplySmi_Baseline,7,0
block_count,MultiplySmi_Baseline,8,0
-block_count,MultiplySmi_Baseline,9,16
+block_count,MultiplySmi_Baseline,9,15
block_count,MultiplySmi_Baseline,10,7
block_count,MultiplySmi_Baseline,11,7
block_count,MultiplySmi_Baseline,12,0
@@ -31244,19 +31222,19 @@
block_count,MultiplySmi_Baseline,16,0
block_count,MultiplySmi_Baseline,17,24
block_count,MultiplySmi_Baseline,18,0
-block_count,MultiplySmi_Baseline,19,24
+block_count,MultiplySmi_Baseline,19,23
block_count,MultiplySmi_Baseline,20,24
block_count,MultiplySmi_Baseline,21,0
block_count,MultiplySmi_Baseline,22,24
block_count,MultiplySmi_Baseline,23,24
-block_count,MultiplySmi_Baseline,24,5
-block_count,MultiplySmi_Baseline,25,5
+block_count,MultiplySmi_Baseline,24,4
+block_count,MultiplySmi_Baseline,25,4
block_count,MultiplySmi_Baseline,26,0
-block_count,MultiplySmi_Baseline,27,5
-block_count,MultiplySmi_Baseline,28,5
+block_count,MultiplySmi_Baseline,27,4
+block_count,MultiplySmi_Baseline,28,4
block_count,MultiplySmi_Baseline,29,0
-block_count,MultiplySmi_Baseline,30,5
-block_count,MultiplySmi_Baseline,31,5
+block_count,MultiplySmi_Baseline,30,4
+block_count,MultiplySmi_Baseline,31,4
block_count,MultiplySmi_Baseline,32,0
block_count,MultiplySmi_Baseline,33,0
block_count,MultiplySmi_Baseline,34,0
@@ -31568,7 +31546,7 @@
block_count,Exponentiate_Baseline,46,0
block_count,Exponentiate_Baseline,47,0
block_count,Exponentiate_Baseline,48,0
-block_count,BitwiseAnd_Baseline,0,32
+block_count,BitwiseAnd_Baseline,0,31
block_count,BitwiseAnd_Baseline,1,26
block_count,BitwiseAnd_Baseline,2,5
block_count,BitwiseAnd_Baseline,3,5
@@ -31612,7 +31590,7 @@
block_count,BitwiseAnd_Baseline,41,0
block_count,BitwiseAnd_Baseline,42,0
block_count,BitwiseAnd_Baseline,43,5
-block_count,BitwiseAnd_Baseline,44,32
+block_count,BitwiseAnd_Baseline,44,31
block_count,BitwiseAnd_Baseline,45,23
block_count,BitwiseAnd_Baseline,46,8
block_count,BitwiseAnd_Baseline,47,8
@@ -31634,20 +31612,20 @@
block_count,BitwiseAnd_Baseline,63,0
block_count,BitwiseAnd_Baseline,64,0
block_count,BitwiseAnd_Baseline,65,7
-block_count,BitwiseAnd_Baseline,66,32
-block_count,BitwiseAnd_Baseline,67,28
+block_count,BitwiseAnd_Baseline,66,31
+block_count,BitwiseAnd_Baseline,67,27
block_count,BitwiseAnd_Baseline,68,4
block_count,BitwiseAnd_Baseline,69,0
block_count,BitwiseAnd_Baseline,70,4
block_count,BitwiseAnd_Baseline,71,4
-block_count,BitwiseAnd_Baseline,72,32
+block_count,BitwiseAnd_Baseline,72,31
block_count,BitwiseAnd_Baseline,73,4
-block_count,BitwiseAnd_Baseline,74,28
-block_count,BitwiseAnd_Baseline,75,32
+block_count,BitwiseAnd_Baseline,74,27
+block_count,BitwiseAnd_Baseline,75,31
block_count,BitwiseAnd_Baseline,76,0
-block_count,BitwiseAnd_Baseline,77,32
-block_count,BitwiseAnd_Baseline,78,32
-block_count,BitwiseAndSmi_Baseline,0,117
+block_count,BitwiseAnd_Baseline,77,31
+block_count,BitwiseAnd_Baseline,78,31
+block_count,BitwiseAndSmi_Baseline,0,115
block_count,BitwiseAndSmi_Baseline,1,6
block_count,BitwiseAndSmi_Baseline,2,6
block_count,BitwiseAndSmi_Baseline,3,1
@@ -31678,14 +31656,14 @@
block_count,BitwiseAndSmi_Baseline,28,0
block_count,BitwiseAndSmi_Baseline,29,6
block_count,BitwiseAndSmi_Baseline,30,6
-block_count,BitwiseAndSmi_Baseline,31,110
-block_count,BitwiseAndSmi_Baseline,32,117
+block_count,BitwiseAndSmi_Baseline,31,109
+block_count,BitwiseAndSmi_Baseline,32,115
block_count,BitwiseAndSmi_Baseline,33,0
-block_count,BitwiseAndSmi_Baseline,34,117
-block_count,BitwiseOr_Baseline,0,60
-block_count,BitwiseOr_Baseline,1,55
-block_count,BitwiseOr_Baseline,2,5
-block_count,BitwiseOr_Baseline,3,5
+block_count,BitwiseAndSmi_Baseline,34,115
+block_count,BitwiseOr_Baseline,0,59
+block_count,BitwiseOr_Baseline,1,54
+block_count,BitwiseOr_Baseline,2,4
+block_count,BitwiseOr_Baseline,3,4
block_count,BitwiseOr_Baseline,4,0
block_count,BitwiseOr_Baseline,5,0
block_count,BitwiseOr_Baseline,6,0
@@ -31725,8 +31703,8 @@
block_count,BitwiseOr_Baseline,40,0
block_count,BitwiseOr_Baseline,41,0
block_count,BitwiseOr_Baseline,42,0
-block_count,BitwiseOr_Baseline,43,5
-block_count,BitwiseOr_Baseline,44,60
+block_count,BitwiseOr_Baseline,43,4
+block_count,BitwiseOr_Baseline,44,59
block_count,BitwiseOr_Baseline,45,56
block_count,BitwiseOr_Baseline,46,3
block_count,BitwiseOr_Baseline,47,3
@@ -31748,20 +31726,20 @@
block_count,BitwiseOr_Baseline,63,0
block_count,BitwiseOr_Baseline,64,0
block_count,BitwiseOr_Baseline,65,3
-block_count,BitwiseOr_Baseline,66,60
-block_count,BitwiseOr_Baseline,67,54
-block_count,BitwiseOr_Baseline,68,6
+block_count,BitwiseOr_Baseline,66,59
+block_count,BitwiseOr_Baseline,67,53
+block_count,BitwiseOr_Baseline,68,5
block_count,BitwiseOr_Baseline,69,0
-block_count,BitwiseOr_Baseline,70,6
-block_count,BitwiseOr_Baseline,71,6
-block_count,BitwiseOr_Baseline,72,60
-block_count,BitwiseOr_Baseline,73,6
-block_count,BitwiseOr_Baseline,74,54
-block_count,BitwiseOr_Baseline,75,60
+block_count,BitwiseOr_Baseline,70,5
+block_count,BitwiseOr_Baseline,71,5
+block_count,BitwiseOr_Baseline,72,59
+block_count,BitwiseOr_Baseline,73,5
+block_count,BitwiseOr_Baseline,74,53
+block_count,BitwiseOr_Baseline,75,59
block_count,BitwiseOr_Baseline,76,0
-block_count,BitwiseOr_Baseline,77,60
-block_count,BitwiseOr_Baseline,78,60
-block_count,BitwiseOrSmi_Baseline,0,288
+block_count,BitwiseOr_Baseline,77,59
+block_count,BitwiseOr_Baseline,78,59
+block_count,BitwiseOrSmi_Baseline,0,287
block_count,BitwiseOrSmi_Baseline,1,5
block_count,BitwiseOrSmi_Baseline,2,5
block_count,BitwiseOrSmi_Baseline,3,0
@@ -31792,12 +31770,12 @@
block_count,BitwiseOrSmi_Baseline,28,2
block_count,BitwiseOrSmi_Baseline,29,2
block_count,BitwiseOrSmi_Baseline,30,5
-block_count,BitwiseOrSmi_Baseline,31,283
-block_count,BitwiseOrSmi_Baseline,32,288
+block_count,BitwiseOrSmi_Baseline,31,282
+block_count,BitwiseOrSmi_Baseline,32,287
block_count,BitwiseOrSmi_Baseline,33,0
-block_count,BitwiseOrSmi_Baseline,34,288
-block_count,BitwiseXor_Baseline,0,41
-block_count,BitwiseXor_Baseline,1,23
+block_count,BitwiseOrSmi_Baseline,34,287
+block_count,BitwiseXor_Baseline,0,40
+block_count,BitwiseXor_Baseline,1,22
block_count,BitwiseXor_Baseline,2,18
block_count,BitwiseXor_Baseline,3,18
block_count,BitwiseXor_Baseline,4,0
@@ -31840,10 +31818,10 @@
block_count,BitwiseXor_Baseline,41,0
block_count,BitwiseXor_Baseline,42,0
block_count,BitwiseXor_Baseline,43,18
-block_count,BitwiseXor_Baseline,44,41
-block_count,BitwiseXor_Baseline,45,19
-block_count,BitwiseXor_Baseline,46,22
-block_count,BitwiseXor_Baseline,47,22
+block_count,BitwiseXor_Baseline,44,40
+block_count,BitwiseXor_Baseline,45,18
+block_count,BitwiseXor_Baseline,46,21
+block_count,BitwiseXor_Baseline,47,21
block_count,BitwiseXor_Baseline,48,0
block_count,BitwiseXor_Baseline,49,0
block_count,BitwiseXor_Baseline,50,0
@@ -31861,20 +31839,20 @@
block_count,BitwiseXor_Baseline,62,0
block_count,BitwiseXor_Baseline,63,0
block_count,BitwiseXor_Baseline,64,0
-block_count,BitwiseXor_Baseline,65,22
-block_count,BitwiseXor_Baseline,66,41
-block_count,BitwiseXor_Baseline,67,26
+block_count,BitwiseXor_Baseline,65,21
+block_count,BitwiseXor_Baseline,66,40
+block_count,BitwiseXor_Baseline,67,25
block_count,BitwiseXor_Baseline,68,15
block_count,BitwiseXor_Baseline,69,0
block_count,BitwiseXor_Baseline,70,15
block_count,BitwiseXor_Baseline,71,15
-block_count,BitwiseXor_Baseline,72,41
+block_count,BitwiseXor_Baseline,72,40
block_count,BitwiseXor_Baseline,73,15
-block_count,BitwiseXor_Baseline,74,26
-block_count,BitwiseXor_Baseline,75,41
+block_count,BitwiseXor_Baseline,74,25
+block_count,BitwiseXor_Baseline,75,40
block_count,BitwiseXor_Baseline,76,0
-block_count,BitwiseXor_Baseline,77,41
-block_count,BitwiseXor_Baseline,78,41
+block_count,BitwiseXor_Baseline,77,40
+block_count,BitwiseXor_Baseline,78,40
block_count,BitwiseXorSmi_Baseline,0,1
block_count,BitwiseXorSmi_Baseline,1,0
block_count,BitwiseXorSmi_Baseline,2,0
@@ -31989,7 +31967,7 @@
block_count,ShiftLeft_Baseline,76,0
block_count,ShiftLeft_Baseline,77,5
block_count,ShiftLeft_Baseline,78,5
-block_count,ShiftLeftSmi_Baseline,0,78
+block_count,ShiftLeftSmi_Baseline,0,76
block_count,ShiftLeftSmi_Baseline,1,7
block_count,ShiftLeftSmi_Baseline,2,7
block_count,ShiftLeftSmi_Baseline,3,0
@@ -32020,21 +31998,21 @@
block_count,ShiftLeftSmi_Baseline,28,2
block_count,ShiftLeftSmi_Baseline,29,4
block_count,ShiftLeftSmi_Baseline,30,7
-block_count,ShiftLeftSmi_Baseline,31,71
-block_count,ShiftLeftSmi_Baseline,32,69
+block_count,ShiftLeftSmi_Baseline,31,69
+block_count,ShiftLeftSmi_Baseline,32,67
block_count,ShiftLeftSmi_Baseline,33,1
block_count,ShiftLeftSmi_Baseline,34,0
block_count,ShiftLeftSmi_Baseline,35,1
block_count,ShiftLeftSmi_Baseline,36,1
-block_count,ShiftLeftSmi_Baseline,37,71
+block_count,ShiftLeftSmi_Baseline,37,69
block_count,ShiftLeftSmi_Baseline,38,1
-block_count,ShiftLeftSmi_Baseline,39,69
-block_count,ShiftLeftSmi_Baseline,40,71
-block_count,ShiftLeftSmi_Baseline,41,78
+block_count,ShiftLeftSmi_Baseline,39,67
+block_count,ShiftLeftSmi_Baseline,40,69
+block_count,ShiftLeftSmi_Baseline,41,76
block_count,ShiftLeftSmi_Baseline,42,0
-block_count,ShiftLeftSmi_Baseline,43,78
-block_count,ShiftRight_Baseline,0,7
-block_count,ShiftRight_Baseline,1,7
+block_count,ShiftLeftSmi_Baseline,43,76
+block_count,ShiftRight_Baseline,0,8
+block_count,ShiftRight_Baseline,1,8
block_count,ShiftRight_Baseline,2,0
block_count,ShiftRight_Baseline,3,0
block_count,ShiftRight_Baseline,4,0
@@ -32077,8 +32055,8 @@
block_count,ShiftRight_Baseline,41,0
block_count,ShiftRight_Baseline,42,0
block_count,ShiftRight_Baseline,43,0
-block_count,ShiftRight_Baseline,44,7
-block_count,ShiftRight_Baseline,45,7
+block_count,ShiftRight_Baseline,44,8
+block_count,ShiftRight_Baseline,45,8
block_count,ShiftRight_Baseline,46,0
block_count,ShiftRight_Baseline,47,0
block_count,ShiftRight_Baseline,48,0
@@ -32099,20 +32077,20 @@
block_count,ShiftRight_Baseline,63,0
block_count,ShiftRight_Baseline,64,0
block_count,ShiftRight_Baseline,65,0
-block_count,ShiftRight_Baseline,66,7
-block_count,ShiftRight_Baseline,67,7
+block_count,ShiftRight_Baseline,66,8
+block_count,ShiftRight_Baseline,67,8
block_count,ShiftRight_Baseline,68,0
block_count,ShiftRight_Baseline,69,0
block_count,ShiftRight_Baseline,70,0
block_count,ShiftRight_Baseline,71,0
-block_count,ShiftRight_Baseline,72,7
+block_count,ShiftRight_Baseline,72,8
block_count,ShiftRight_Baseline,73,0
-block_count,ShiftRight_Baseline,74,7
-block_count,ShiftRight_Baseline,75,7
+block_count,ShiftRight_Baseline,74,8
+block_count,ShiftRight_Baseline,75,8
block_count,ShiftRight_Baseline,76,0
-block_count,ShiftRight_Baseline,77,7
-block_count,ShiftRight_Baseline,78,7
-block_count,ShiftRightSmi_Baseline,0,239
+block_count,ShiftRight_Baseline,77,8
+block_count,ShiftRight_Baseline,78,8
+block_count,ShiftRightSmi_Baseline,0,236
block_count,ShiftRightSmi_Baseline,1,5
block_count,ShiftRightSmi_Baseline,2,5
block_count,ShiftRightSmi_Baseline,3,0
@@ -32143,10 +32121,10 @@
block_count,ShiftRightSmi_Baseline,28,0
block_count,ShiftRightSmi_Baseline,29,5
block_count,ShiftRightSmi_Baseline,30,5
-block_count,ShiftRightSmi_Baseline,31,234
-block_count,ShiftRightSmi_Baseline,32,239
+block_count,ShiftRightSmi_Baseline,31,231
+block_count,ShiftRightSmi_Baseline,32,236
block_count,ShiftRightSmi_Baseline,33,0
-block_count,ShiftRightSmi_Baseline,34,239
+block_count,ShiftRightSmi_Baseline,34,236
block_count,ShiftRightLogical_Baseline,0,1
block_count,ShiftRightLogical_Baseline,1,1
block_count,ShiftRightLogical_Baseline,2,0
@@ -32302,14 +32280,14 @@
block_count,Add_LhsIsStringConstant_Internalize_Baseline,32,1
block_count,Add_LhsIsStringConstant_Internalize_Baseline,33,1
block_count,Add_LhsIsStringConstant_Internalize_Baseline,34,0
-block_count,Add_LhsIsStringConstant_Internalize_Baseline,35,1
+block_count,Add_LhsIsStringConstant_Internalize_Baseline,35,0
block_count,Add_LhsIsStringConstant_Internalize_Baseline,36,0
block_count,Add_LhsIsStringConstant_Internalize_Baseline,37,0
block_count,Add_LhsIsStringConstant_Internalize_Baseline,38,0
block_count,Add_LhsIsStringConstant_Internalize_Baseline,39,0
-block_count,Add_LhsIsStringConstant_Internalize_Baseline,40,1
+block_count,Add_LhsIsStringConstant_Internalize_Baseline,40,0
block_count,Add_LhsIsStringConstant_Internalize_Baseline,41,0
-block_count,Add_LhsIsStringConstant_Internalize_Baseline,42,1
+block_count,Add_LhsIsStringConstant_Internalize_Baseline,42,0
block_count,Add_LhsIsStringConstant_Internalize_Baseline,43,0
block_count,Add_LhsIsStringConstant_Internalize_Baseline,44,0
block_count,Add_LhsIsStringConstant_Internalize_Baseline,45,0
@@ -32363,12 +32341,12 @@
block_count,Add_RhsIsStringConstant_Internalize_Baseline,45,0
block_count,Add_RhsIsStringConstant_Internalize_Baseline,46,0
block_count,Add_RhsIsStringConstant_Internalize_Baseline,47,0
-block_count,Equal_Baseline,0,344
-block_count,Equal_Baseline,1,348
-block_count,Equal_Baseline,2,263
-block_count,Equal_Baseline,3,61
-block_count,Equal_Baseline,4,59
-block_count,Equal_Baseline,5,23
+block_count,Equal_Baseline,0,338
+block_count,Equal_Baseline,1,342
+block_count,Equal_Baseline,2,259
+block_count,Equal_Baseline,3,60
+block_count,Equal_Baseline,4,57
+block_count,Equal_Baseline,5,22
block_count,Equal_Baseline,6,22
block_count,Equal_Baseline,7,19
block_count,Equal_Baseline,8,14
@@ -32433,25 +32411,25 @@
block_count,Equal_Baseline,67,0
block_count,Equal_Baseline,68,0
block_count,Equal_Baseline,69,0
-block_count,Equal_Baseline,70,36
+block_count,Equal_Baseline,70,35
block_count,Equal_Baseline,71,0
-block_count,Equal_Baseline,72,35
+block_count,Equal_Baseline,72,34
block_count,Equal_Baseline,73,24
block_count,Equal_Baseline,74,10
block_count,Equal_Baseline,75,10
block_count,Equal_Baseline,76,10
block_count,Equal_Baseline,77,0
-block_count,Equal_Baseline,78,35
+block_count,Equal_Baseline,78,34
block_count,Equal_Baseline,79,4
-block_count,Equal_Baseline,80,31
-block_count,Equal_Baseline,81,35
+block_count,Equal_Baseline,80,30
+block_count,Equal_Baseline,81,34
block_count,Equal_Baseline,82,0
-block_count,Equal_Baseline,83,35
-block_count,Equal_Baseline,84,35
+block_count,Equal_Baseline,83,34
+block_count,Equal_Baseline,84,34
block_count,Equal_Baseline,85,2
block_count,Equal_Baseline,86,3
-block_count,Equal_Baseline,87,202
-block_count,Equal_Baseline,88,4
+block_count,Equal_Baseline,87,198
+block_count,Equal_Baseline,88,5
block_count,Equal_Baseline,89,0
block_count,Equal_Baseline,90,0
block_count,Equal_Baseline,91,0
@@ -32470,7 +32448,7 @@
block_count,Equal_Baseline,104,0
block_count,Equal_Baseline,105,0
block_count,Equal_Baseline,106,4
-block_count,Equal_Baseline,107,197
+block_count,Equal_Baseline,107,193
block_count,Equal_Baseline,108,0
block_count,Equal_Baseline,109,0
block_count,Equal_Baseline,110,0
@@ -32486,10 +32464,10 @@
block_count,Equal_Baseline,120,7
block_count,Equal_Baseline,121,4
block_count,Equal_Baseline,122,2
-block_count,Equal_Baseline,123,84
+block_count,Equal_Baseline,123,83
block_count,Equal_Baseline,124,16
block_count,Equal_Baseline,125,16
-block_count,Equal_Baseline,126,11
+block_count,Equal_Baseline,126,10
block_count,Equal_Baseline,127,4
block_count,Equal_Baseline,128,0
block_count,Equal_Baseline,129,0
@@ -32505,17 +32483,17 @@
block_count,Equal_Baseline,139,0
block_count,Equal_Baseline,140,0
block_count,Equal_Baseline,141,0
-block_count,Equal_Baseline,142,67
-block_count,Equal_Baseline,143,87
-block_count,Equal_Baseline,144,221
-block_count,Equal_Baseline,145,344
+block_count,Equal_Baseline,142,66
+block_count,Equal_Baseline,143,85
+block_count,Equal_Baseline,144,218
+block_count,Equal_Baseline,145,338
block_count,Equal_Baseline,146,0
-block_count,Equal_Baseline,147,344
-block_count,StrictEqual_Baseline,0,518
-block_count,StrictEqual_Baseline,1,430
-block_count,StrictEqual_Baseline,2,297
-block_count,StrictEqual_Baseline,3,296
-block_count,StrictEqual_Baseline,4,295
+block_count,Equal_Baseline,147,338
+block_count,StrictEqual_Baseline,0,508
+block_count,StrictEqual_Baseline,1,420
+block_count,StrictEqual_Baseline,2,293
+block_count,StrictEqual_Baseline,3,293
+block_count,StrictEqual_Baseline,4,292
block_count,StrictEqual_Baseline,5,142
block_count,StrictEqual_Baseline,6,142
block_count,StrictEqual_Baseline,7,63
@@ -32526,33 +32504,33 @@
block_count,StrictEqual_Baseline,12,49
block_count,StrictEqual_Baseline,13,14
block_count,StrictEqual_Baseline,14,7
-block_count,StrictEqual_Baseline,15,6
-block_count,StrictEqual_Baseline,16,6
+block_count,StrictEqual_Baseline,15,5
+block_count,StrictEqual_Baseline,16,5
block_count,StrictEqual_Baseline,17,0
block_count,StrictEqual_Baseline,18,1
block_count,StrictEqual_Baseline,19,6
block_count,StrictEqual_Baseline,20,78
block_count,StrictEqual_Baseline,21,78
-block_count,StrictEqual_Baseline,22,0
+block_count,StrictEqual_Baseline,22,1
block_count,StrictEqual_Baseline,23,0
-block_count,StrictEqual_Baseline,24,0
+block_count,StrictEqual_Baseline,24,1
block_count,StrictEqual_Baseline,25,77
block_count,StrictEqual_Baseline,26,0
block_count,StrictEqual_Baseline,27,0
block_count,StrictEqual_Baseline,28,0
block_count,StrictEqual_Baseline,29,0
-block_count,StrictEqual_Baseline,30,153
+block_count,StrictEqual_Baseline,30,149
block_count,StrictEqual_Baseline,31,0
block_count,StrictEqual_Baseline,32,0
block_count,StrictEqual_Baseline,33,0
-block_count,StrictEqual_Baseline,34,152
-block_count,StrictEqual_Baseline,35,42
-block_count,StrictEqual_Baseline,36,110
-block_count,StrictEqual_Baseline,37,152
+block_count,StrictEqual_Baseline,34,149
+block_count,StrictEqual_Baseline,35,41
+block_count,StrictEqual_Baseline,36,108
+block_count,StrictEqual_Baseline,37,149
block_count,StrictEqual_Baseline,38,0
-block_count,StrictEqual_Baseline,39,152
-block_count,StrictEqual_Baseline,40,152
-block_count,StrictEqual_Baseline,41,107
+block_count,StrictEqual_Baseline,39,148
+block_count,StrictEqual_Baseline,40,149
+block_count,StrictEqual_Baseline,41,103
block_count,StrictEqual_Baseline,42,45
block_count,StrictEqual_Baseline,43,1
block_count,StrictEqual_Baseline,44,0
@@ -32564,17 +32542,17 @@
block_count,StrictEqual_Baseline,50,0
block_count,StrictEqual_Baseline,51,0
block_count,StrictEqual_Baseline,52,0
-block_count,StrictEqual_Baseline,53,133
+block_count,StrictEqual_Baseline,53,127
block_count,StrictEqual_Baseline,54,1
block_count,StrictEqual_Baseline,55,0
block_count,StrictEqual_Baseline,56,0
block_count,StrictEqual_Baseline,57,0
block_count,StrictEqual_Baseline,58,0
-block_count,StrictEqual_Baseline,59,131
-block_count,StrictEqual_Baseline,60,4
-block_count,StrictEqual_Baseline,61,88
-block_count,StrictEqual_Baseline,62,40
-block_count,StrictEqual_Baseline,63,40
+block_count,StrictEqual_Baseline,59,125
+block_count,StrictEqual_Baseline,60,3
+block_count,StrictEqual_Baseline,61,87
+block_count,StrictEqual_Baseline,62,39
+block_count,StrictEqual_Baseline,63,39
block_count,StrictEqual_Baseline,64,22
block_count,StrictEqual_Baseline,65,3
block_count,StrictEqual_Baseline,66,2
@@ -32591,15 +32569,15 @@
block_count,StrictEqual_Baseline,77,0
block_count,StrictEqual_Baseline,78,0
block_count,StrictEqual_Baseline,79,0
-block_count,StrictEqual_Baseline,80,48
-block_count,StrictEqual_Baseline,81,277
-block_count,StrictEqual_Baseline,82,88
-block_count,StrictEqual_Baseline,83,518
+block_count,StrictEqual_Baseline,80,47
+block_count,StrictEqual_Baseline,81,271
+block_count,StrictEqual_Baseline,82,87
+block_count,StrictEqual_Baseline,83,508
block_count,StrictEqual_Baseline,84,0
-block_count,StrictEqual_Baseline,85,518
-block_count,LessThan_Baseline,0,484
-block_count,LessThan_Baseline,1,484
-block_count,LessThan_Baseline,2,41
+block_count,StrictEqual_Baseline,85,507
+block_count,LessThan_Baseline,0,487
+block_count,LessThan_Baseline,1,487
+block_count,LessThan_Baseline,2,43
block_count,LessThan_Baseline,3,10
block_count,LessThan_Baseline,4,0
block_count,LessThan_Baseline,5,0
@@ -32686,7 +32664,7 @@
block_count,LessThan_Baseline,86,0
block_count,LessThan_Baseline,87,0
block_count,LessThan_Baseline,88,9
-block_count,LessThan_Baseline,89,31
+block_count,LessThan_Baseline,89,33
block_count,LessThan_Baseline,90,0
block_count,LessThan_Baseline,91,0
block_count,LessThan_Baseline,92,0
@@ -32699,8 +32677,8 @@
block_count,LessThan_Baseline,99,0
block_count,LessThan_Baseline,100,0
block_count,LessThan_Baseline,101,0
-block_count,LessThan_Baseline,102,31
-block_count,LessThan_Baseline,103,442
+block_count,LessThan_Baseline,102,33
+block_count,LessThan_Baseline,103,444
block_count,LessThan_Baseline,104,1
block_count,LessThan_Baseline,105,0
block_count,LessThan_Baseline,106,0
@@ -32717,8 +32695,8 @@
block_count,LessThan_Baseline,117,0
block_count,LessThan_Baseline,118,0
block_count,LessThan_Baseline,119,1
-block_count,LessThan_Baseline,120,440
-block_count,LessThan_Baseline,121,116
+block_count,LessThan_Baseline,120,442
+block_count,LessThan_Baseline,121,118
block_count,LessThan_Baseline,122,324
block_count,LessThan_Baseline,123,0
block_count,LessThan_Baseline,124,0
@@ -32726,16 +32704,16 @@
block_count,LessThan_Baseline,126,0
block_count,LessThan_Baseline,127,0
block_count,LessThan_Baseline,128,0
-block_count,LessThan_Baseline,129,42
-block_count,LessThan_Baseline,130,33
+block_count,LessThan_Baseline,129,44
+block_count,LessThan_Baseline,130,35
block_count,LessThan_Baseline,131,9
-block_count,LessThan_Baseline,132,150
+block_count,LessThan_Baseline,132,153
block_count,LessThan_Baseline,133,333
-block_count,LessThan_Baseline,134,484
+block_count,LessThan_Baseline,134,487
block_count,LessThan_Baseline,135,0
-block_count,LessThan_Baseline,136,484
-block_count,GreaterThan_Baseline,0,168
-block_count,GreaterThan_Baseline,1,169
+block_count,LessThan_Baseline,136,487
+block_count,GreaterThan_Baseline,0,170
+block_count,GreaterThan_Baseline,1,171
block_count,GreaterThan_Baseline,2,15
block_count,GreaterThan_Baseline,3,9
block_count,GreaterThan_Baseline,4,0
@@ -32837,7 +32815,7 @@
block_count,GreaterThan_Baseline,100,0
block_count,GreaterThan_Baseline,101,0
block_count,GreaterThan_Baseline,102,5
-block_count,GreaterThan_Baseline,103,153
+block_count,GreaterThan_Baseline,103,155
block_count,GreaterThan_Baseline,104,0
block_count,GreaterThan_Baseline,105,0
block_count,GreaterThan_Baseline,106,0
@@ -32854,8 +32832,8 @@
block_count,GreaterThan_Baseline,117,0
block_count,GreaterThan_Baseline,118,0
block_count,GreaterThan_Baseline,119,0
-block_count,GreaterThan_Baseline,120,153
-block_count,GreaterThan_Baseline,121,98
+block_count,GreaterThan_Baseline,120,155
+block_count,GreaterThan_Baseline,121,99
block_count,GreaterThan_Baseline,122,55
block_count,GreaterThan_Baseline,123,0
block_count,GreaterThan_Baseline,124,0
@@ -32866,13 +32844,13 @@
block_count,GreaterThan_Baseline,129,14
block_count,GreaterThan_Baseline,130,8
block_count,GreaterThan_Baseline,131,6
-block_count,GreaterThan_Baseline,132,106
+block_count,GreaterThan_Baseline,132,108
block_count,GreaterThan_Baseline,133,62
-block_count,GreaterThan_Baseline,134,168
+block_count,GreaterThan_Baseline,134,170
block_count,GreaterThan_Baseline,135,0
-block_count,GreaterThan_Baseline,136,168
-block_count,LessThanOrEqual_Baseline,0,63
-block_count,LessThanOrEqual_Baseline,1,63
+block_count,GreaterThan_Baseline,136,170
+block_count,LessThanOrEqual_Baseline,0,64
+block_count,LessThanOrEqual_Baseline,1,64
block_count,LessThanOrEqual_Baseline,2,6
block_count,LessThanOrEqual_Baseline,3,2
block_count,LessThanOrEqual_Baseline,4,0
@@ -32991,9 +32969,9 @@
block_count,LessThanOrEqual_Baseline,117,0
block_count,LessThanOrEqual_Baseline,118,0
block_count,LessThanOrEqual_Baseline,119,1
-block_count,LessThanOrEqual_Baseline,120,55
+block_count,LessThanOrEqual_Baseline,120,56
block_count,LessThanOrEqual_Baseline,121,5
-block_count,LessThanOrEqual_Baseline,122,50
+block_count,LessThanOrEqual_Baseline,122,51
block_count,LessThanOrEqual_Baseline,123,0
block_count,LessThanOrEqual_Baseline,124,0
block_count,LessThanOrEqual_Baseline,125,0
@@ -33005,11 +32983,11 @@
block_count,LessThanOrEqual_Baseline,131,4
block_count,LessThanOrEqual_Baseline,132,8
block_count,LessThanOrEqual_Baseline,133,55
-block_count,LessThanOrEqual_Baseline,134,63
+block_count,LessThanOrEqual_Baseline,134,64
block_count,LessThanOrEqual_Baseline,135,0
-block_count,LessThanOrEqual_Baseline,136,63
-block_count,GreaterThanOrEqual_Baseline,0,123
-block_count,GreaterThanOrEqual_Baseline,1,123
+block_count,LessThanOrEqual_Baseline,136,64
+block_count,GreaterThanOrEqual_Baseline,0,124
+block_count,GreaterThanOrEqual_Baseline,1,125
block_count,GreaterThanOrEqual_Baseline,2,14
block_count,GreaterThanOrEqual_Baseline,3,10
block_count,GreaterThanOrEqual_Baseline,4,0
@@ -33111,7 +33089,7 @@
block_count,GreaterThanOrEqual_Baseline,100,0
block_count,GreaterThanOrEqual_Baseline,101,0
block_count,GreaterThanOrEqual_Baseline,102,4
-block_count,GreaterThanOrEqual_Baseline,103,109
+block_count,GreaterThanOrEqual_Baseline,103,110
block_count,GreaterThanOrEqual_Baseline,104,0
block_count,GreaterThanOrEqual_Baseline,105,0
block_count,GreaterThanOrEqual_Baseline,106,0
@@ -33128,8 +33106,8 @@
block_count,GreaterThanOrEqual_Baseline,117,0
block_count,GreaterThanOrEqual_Baseline,118,0
block_count,GreaterThanOrEqual_Baseline,119,0
-block_count,GreaterThanOrEqual_Baseline,120,108
-block_count,GreaterThanOrEqual_Baseline,121,64
+block_count,GreaterThanOrEqual_Baseline,120,110
+block_count,GreaterThanOrEqual_Baseline,121,65
block_count,GreaterThanOrEqual_Baseline,122,44
block_count,GreaterThanOrEqual_Baseline,123,0
block_count,GreaterThanOrEqual_Baseline,124,0
@@ -33137,14 +33115,14 @@
block_count,GreaterThanOrEqual_Baseline,126,0
block_count,GreaterThanOrEqual_Baseline,127,0
block_count,GreaterThanOrEqual_Baseline,128,0
-block_count,GreaterThanOrEqual_Baseline,129,13
-block_count,GreaterThanOrEqual_Baseline,130,6
+block_count,GreaterThanOrEqual_Baseline,129,14
+block_count,GreaterThanOrEqual_Baseline,130,7
block_count,GreaterThanOrEqual_Baseline,131,7
-block_count,GreaterThanOrEqual_Baseline,132,70
+block_count,GreaterThanOrEqual_Baseline,132,72
block_count,GreaterThanOrEqual_Baseline,133,51
-block_count,GreaterThanOrEqual_Baseline,134,123
+block_count,GreaterThanOrEqual_Baseline,134,124
block_count,GreaterThanOrEqual_Baseline,135,0
-block_count,GreaterThanOrEqual_Baseline,136,123
+block_count,GreaterThanOrEqual_Baseline,136,124
block_count,BitwiseNot_Baseline,0,6
block_count,BitwiseNot_Baseline,1,5
block_count,BitwiseNot_Baseline,2,0
@@ -33180,8 +33158,8 @@
block_count,BitwiseNot_Baseline,32,0
block_count,BitwiseNot_Baseline,33,6
block_count,BitwiseNot_Baseline,34,6
-block_count,Decrement_Baseline,0,59
-block_count,Decrement_Baseline,1,59
+block_count,Decrement_Baseline,0,57
+block_count,Decrement_Baseline,1,57
block_count,Decrement_Baseline,2,0
block_count,Decrement_Baseline,3,0
block_count,Decrement_Baseline,4,0
@@ -33196,18 +33174,18 @@
block_count,Decrement_Baseline,13,0
block_count,Decrement_Baseline,14,0
block_count,Decrement_Baseline,15,0
-block_count,Decrement_Baseline,16,58
-block_count,Decrement_Baseline,17,58
+block_count,Decrement_Baseline,16,57
+block_count,Decrement_Baseline,17,57
block_count,Decrement_Baseline,18,0
block_count,Decrement_Baseline,19,0
block_count,Decrement_Baseline,20,0
block_count,Decrement_Baseline,21,0
block_count,Decrement_Baseline,22,0
-block_count,Decrement_Baseline,23,59
+block_count,Decrement_Baseline,23,57
block_count,Decrement_Baseline,24,0
-block_count,Decrement_Baseline,25,59
-block_count,Increment_Baseline,0,326
-block_count,Increment_Baseline,1,326
+block_count,Decrement_Baseline,25,57
+block_count,Increment_Baseline,0,327
+block_count,Increment_Baseline,1,327
block_count,Increment_Baseline,2,0
block_count,Increment_Baseline,3,0
block_count,Increment_Baseline,4,0
@@ -33222,16 +33200,16 @@
block_count,Increment_Baseline,13,0
block_count,Increment_Baseline,14,0
block_count,Increment_Baseline,15,0
-block_count,Increment_Baseline,16,326
-block_count,Increment_Baseline,17,326
+block_count,Increment_Baseline,16,327
+block_count,Increment_Baseline,17,327
block_count,Increment_Baseline,18,0
block_count,Increment_Baseline,19,0
block_count,Increment_Baseline,20,0
block_count,Increment_Baseline,21,0
block_count,Increment_Baseline,22,0
-block_count,Increment_Baseline,23,326
+block_count,Increment_Baseline,23,327
block_count,Increment_Baseline,24,0
-block_count,Increment_Baseline,25,326
+block_count,Increment_Baseline,25,327
block_count,Negate_Baseline,0,13
block_count,Negate_Baseline,1,13
block_count,Negate_Baseline,2,11
@@ -33585,13 +33563,13 @@
block_count,ObjectCreate,69,2
block_count,ObjectCreate,70,0
block_count,ObjectCreate,71,2
-block_count,ObjectCreate,72,3
-block_count,ObjectCreate,73,3
+block_count,ObjectCreate,72,2
+block_count,ObjectCreate,73,2
block_count,ObjectCreate,74,0
-block_count,ObjectCreate,75,3
+block_count,ObjectCreate,75,2
block_count,ObjectCreate,76,0
block_count,ObjectCreate,77,0
-block_count,ObjectCreate,78,3
+block_count,ObjectCreate,78,2
block_count,ObjectCreate,79,2
block_count,ObjectCreate,80,0
block_count,ObjectCreate,81,0
@@ -34174,11 +34152,11 @@
block_count,ObjectKeys,48,0
block_count,ObjectKeys,49,0
block_count,ObjectKeys,50,0
-block_count,ObjectPrototypeHasOwnProperty,0,243
+block_count,ObjectPrototypeHasOwnProperty,0,242
block_count,ObjectPrototypeHasOwnProperty,1,0
-block_count,ObjectPrototypeHasOwnProperty,2,243
-block_count,ObjectPrototypeHasOwnProperty,3,243
-block_count,ObjectPrototypeHasOwnProperty,4,243
+block_count,ObjectPrototypeHasOwnProperty,2,242
+block_count,ObjectPrototypeHasOwnProperty,3,242
+block_count,ObjectPrototypeHasOwnProperty,4,242
block_count,ObjectPrototypeHasOwnProperty,5,242
block_count,ObjectPrototypeHasOwnProperty,6,242
block_count,ObjectPrototypeHasOwnProperty,7,0
@@ -34472,8 +34450,8 @@
block_count,InstanceOf,34,0
block_count,InstanceOf,35,0
block_count,InstanceOf,36,11
-block_count,InstanceOf_Baseline,0,83
-block_count,InstanceOf_Baseline,1,83
+block_count,InstanceOf_Baseline,0,80
+block_count,InstanceOf_Baseline,1,80
block_count,InstanceOf_Baseline,2,2
block_count,InstanceOf_Baseline,3,0
block_count,InstanceOf_Baseline,4,0
@@ -34492,14 +34470,14 @@
block_count,InstanceOf_Baseline,17,0
block_count,InstanceOf_Baseline,18,0
block_count,InstanceOf_Baseline,19,2
-block_count,InstanceOf_Baseline,20,80
+block_count,InstanceOf_Baseline,20,78
block_count,InstanceOf_Baseline,21,0
-block_count,InstanceOf_Baseline,22,83
-block_count,InstanceOf_Baseline,23,83
+block_count,InstanceOf_Baseline,22,80
+block_count,InstanceOf_Baseline,23,80
block_count,InstanceOf_Baseline,24,0
-block_count,InstanceOf_Baseline,25,83
+block_count,InstanceOf_Baseline,25,80
block_count,InstanceOf_Baseline,26,0
-block_count,InstanceOf_Baseline,27,83
+block_count,InstanceOf_Baseline,27,80
block_count,InstanceOf_Baseline,28,0
block_count,InstanceOf_Baseline,29,0
block_count,InstanceOf_Baseline,30,0
@@ -34530,7 +34508,7 @@
block_count,InstanceOf_Baseline,55,0
block_count,InstanceOf_Baseline,56,0
block_count,InstanceOf_Baseline,57,0
-block_count,InstanceOf_Baseline,58,83
+block_count,InstanceOf_Baseline,58,80
block_count,InstanceOf_Baseline,59,0
block_count,InstanceOf_Baseline,60,0
block_count,ForInEnumerate,0,59
@@ -34574,7 +34552,7 @@
block_count,ForInEnumerate,38,0
block_count,ForInEnumerate,39,0
block_count,ForInEnumerate,40,51
-block_count,ForInPrepare,0,1
+block_count,ForInPrepare,0,2
block_count,ForInPrepare,1,1
block_count,ForInPrepare,2,0
block_count,ForInPrepare,3,1
@@ -34657,7 +34635,7 @@
block_count,ForInFilter,68,14
block_count,ForInFilter,69,50
block_count,ForInFilter,70,50
-block_count,ForInFilter,71,99
+block_count,ForInFilter,71,98
block_count,ForInFilter,72,50
block_count,ForInFilter,73,49
block_count,ForInFilter,74,1
@@ -35636,13 +35614,13 @@
block_count,SetPrototypeAdd,20,50
block_count,SetPrototypeAdd,21,71
block_count,SetPrototypeAdd,22,71
-block_count,SetPrototypeAdd,23,102
-block_count,SetPrototypeAdd,24,32
-block_count,SetPrototypeAdd,25,32
-block_count,SetPrototypeAdd,26,31
+block_count,SetPrototypeAdd,23,100
+block_count,SetPrototypeAdd,24,31
+block_count,SetPrototypeAdd,25,30
+block_count,SetPrototypeAdd,26,29
block_count,SetPrototypeAdd,27,1
block_count,SetPrototypeAdd,28,0
-block_count,SetPrototypeAdd,29,31
+block_count,SetPrototypeAdd,29,29
block_count,SetPrototypeAdd,30,69
block_count,SetPrototypeAdd,31,0
block_count,SetPrototypeAdd,32,0
@@ -35982,10 +35960,10 @@
block_count,SetOrSetIteratorToList,54,0
block_count,SetOrSetIteratorToList,55,0
block_count,SetOrSetIteratorToList,56,0
-block_count,StringFromCharCode,0,32
+block_count,StringFromCharCode,0,31
block_count,StringFromCharCode,1,0
-block_count,StringFromCharCode,2,32
-block_count,StringFromCharCode,3,32
+block_count,StringFromCharCode,2,31
+block_count,StringFromCharCode,3,31
block_count,StringFromCharCode,4,8
block_count,StringFromCharCode,5,8
block_count,StringFromCharCode,6,8
@@ -36012,7 +35990,7 @@
block_count,StringFromCharCode,27,0
block_count,StringFromCharCode,28,881
block_count,StringFromCharCode,29,881
-block_count,StringFromCharCode,30,873
+block_count,StringFromCharCode,30,872
block_count,StringFromCharCode,31,8
block_count,StringFromCharCode,32,0
block_count,StringFromCharCode,33,0
@@ -36056,23 +36034,23 @@
block_count,StringFromCharCode,71,0
block_count,StringFromCharCode,72,0
block_count,StringFromCharCode,73,0
-block_count,StringFromCharCode,74,24
+block_count,StringFromCharCode,74,23
block_count,StringFromCharCode,75,19
-block_count,StringFromCharCode,76,4
-block_count,StringFromCharCode,77,4
+block_count,StringFromCharCode,76,3
+block_count,StringFromCharCode,77,3
block_count,StringFromCharCode,78,2
block_count,StringFromCharCode,79,2
block_count,StringFromCharCode,80,0
block_count,StringFromCharCode,81,2
block_count,StringFromCharCode,82,0
block_count,StringFromCharCode,83,2
-block_count,StringFromCharCode,84,1
-block_count,StringFromCharCode,85,24
+block_count,StringFromCharCode,84,0
+block_count,StringFromCharCode,85,23
block_count,StringFromCharCode,86,0
block_count,StringFromCharCode,87,0
block_count,StringFromCharCode,88,0
block_count,StringFromCharCode,89,0
-block_count,StringFromCharCode,90,24
+block_count,StringFromCharCode,90,23
block_count,StringPrototypeReplace,0,247
block_count,StringPrototypeReplace,1,0
block_count,StringPrototypeReplace,2,247
@@ -36120,7 +36098,7 @@
block_count,StringPrototypeReplace,44,48
block_count,StringPrototypeReplace,45,0
block_count,StringPrototypeReplace,46,48
-block_count,StringPrototypeReplace,47,48
+block_count,StringPrototypeReplace,47,47
block_count,StringPrototypeReplace,48,0
block_count,StringPrototypeReplace,49,0
block_count,StringPrototypeReplace,50,0
@@ -36334,7 +36312,7 @@
block_count,StringPrototypeSplit,173,38
block_count,StringPrototypeSplit,174,422
block_count,StringPrototypeSplit,175,422
-block_count,StringPrototypeSplit,176,384
+block_count,StringPrototypeSplit,176,383
block_count,StringPrototypeSplit,177,38
block_count,StringPrototypeSplit,178,0
block_count,StringPrototypeSplit,179,0
@@ -37152,9 +37130,9 @@
block_count,WeakMapLookupHashIndex,30,0
block_count,WeakMapLookupHashIndex,31,74
block_count,WeakMapLookupHashIndex,32,74
-block_count,WeakMapLookupHashIndex,33,114
-block_count,WeakMapLookupHashIndex,34,114
-block_count,WeakMapLookupHashIndex,35,40
+block_count,WeakMapLookupHashIndex,33,110
+block_count,WeakMapLookupHashIndex,34,110
+block_count,WeakMapLookupHashIndex,35,36
block_count,WeakMapLookupHashIndex,36,73
block_count,WeakMapLookupHashIndex,37,0
block_count,WeakMapPrototypeGet,0,38
@@ -37698,26 +37676,26 @@
block_count,AsyncGeneratorYieldWithAwaitResolveClosure,3,8
block_count,AsyncGeneratorYieldWithAwaitResolveClosure,4,0
block_count,AsyncGeneratorYieldWithAwaitResolveClosure,5,8
-block_count,StringAdd_CheckNone,0,7926
-block_count,StringAdd_CheckNone,1,7500
-block_count,StringAdd_CheckNone,2,7452
-block_count,StringAdd_CheckNone,3,7452
-block_count,StringAdd_CheckNone,4,5997
-block_count,StringAdd_CheckNone,5,5964
+block_count,StringAdd_CheckNone,0,7921
+block_count,StringAdd_CheckNone,1,7496
+block_count,StringAdd_CheckNone,2,7448
+block_count,StringAdd_CheckNone,3,7448
+block_count,StringAdd_CheckNone,4,5993
+block_count,StringAdd_CheckNone,5,5960
block_count,StringAdd_CheckNone,6,32
-block_count,StringAdd_CheckNone,7,5997
-block_count,StringAdd_CheckNone,8,5985
+block_count,StringAdd_CheckNone,7,5993
+block_count,StringAdd_CheckNone,8,5982
block_count,StringAdd_CheckNone,9,11
-block_count,StringAdd_CheckNone,10,5997
+block_count,StringAdd_CheckNone,10,5993
block_count,StringAdd_CheckNone,11,2
-block_count,StringAdd_CheckNone,12,5994
-block_count,StringAdd_CheckNone,13,5997
+block_count,StringAdd_CheckNone,12,5990
+block_count,StringAdd_CheckNone,13,5993
block_count,StringAdd_CheckNone,14,0
-block_count,StringAdd_CheckNone,15,5996
-block_count,StringAdd_CheckNone,16,5997
-block_count,StringAdd_CheckNone,17,1455
-block_count,StringAdd_CheckNone,18,1481
-block_count,StringAdd_CheckNone,19,1480
+block_count,StringAdd_CheckNone,15,5992
+block_count,StringAdd_CheckNone,16,5993
+block_count,StringAdd_CheckNone,17,1454
+block_count,StringAdd_CheckNone,18,1480
+block_count,StringAdd_CheckNone,19,1479
block_count,StringAdd_CheckNone,20,25
block_count,StringAdd_CheckNone,21,1
block_count,StringAdd_CheckNone,22,0
@@ -37743,36 +37721,36 @@
block_count,StringAdd_CheckNone,42,0
block_count,StringAdd_CheckNone,43,25
block_count,StringAdd_CheckNone,44,1454
-block_count,StringAdd_CheckNone,45,1445
-block_count,StringAdd_CheckNone,46,1445
-block_count,StringAdd_CheckNone,47,1445
+block_count,StringAdd_CheckNone,45,1444
+block_count,StringAdd_CheckNone,46,1444
+block_count,StringAdd_CheckNone,47,1444
block_count,StringAdd_CheckNone,48,0
-block_count,StringAdd_CheckNone,49,1445
+block_count,StringAdd_CheckNone,49,1444
block_count,StringAdd_CheckNone,50,0
block_count,StringAdd_CheckNone,51,0
-block_count,StringAdd_CheckNone,52,1445
+block_count,StringAdd_CheckNone,52,1444
block_count,StringAdd_CheckNone,53,0
-block_count,StringAdd_CheckNone,54,1445
-block_count,StringAdd_CheckNone,55,839
+block_count,StringAdd_CheckNone,54,1444
+block_count,StringAdd_CheckNone,55,838
block_count,StringAdd_CheckNone,56,606
-block_count,StringAdd_CheckNone,57,1477
-block_count,StringAdd_CheckNone,58,871
+block_count,StringAdd_CheckNone,57,1476
+block_count,StringAdd_CheckNone,58,870
block_count,StringAdd_CheckNone,59,606
-block_count,StringAdd_CheckNone,60,1445
-block_count,StringAdd_CheckNone,61,359
-block_count,StringAdd_CheckNone,62,1086
-block_count,StringAdd_CheckNone,63,1445
+block_count,StringAdd_CheckNone,60,1444
+block_count,StringAdd_CheckNone,61,358
+block_count,StringAdd_CheckNone,62,1085
+block_count,StringAdd_CheckNone,63,1444
block_count,StringAdd_CheckNone,64,0
-block_count,StringAdd_CheckNone,65,1445
-block_count,StringAdd_CheckNone,66,1024
+block_count,StringAdd_CheckNone,65,1444
+block_count,StringAdd_CheckNone,66,1023
block_count,StringAdd_CheckNone,67,421
block_count,StringAdd_CheckNone,68,534
block_count,StringAdd_CheckNone,69,113
block_count,StringAdd_CheckNone,70,421
-block_count,StringAdd_CheckNone,71,1445
+block_count,StringAdd_CheckNone,71,1444
block_count,StringAdd_CheckNone,72,348
block_count,StringAdd_CheckNone,73,1096
-block_count,StringAdd_CheckNone,74,1445
+block_count,StringAdd_CheckNone,74,1444
block_count,StringAdd_CheckNone,75,0
block_count,StringAdd_CheckNone,76,9
block_count,StringAdd_CheckNone,77,9
@@ -37812,10 +37790,10 @@
block_count,StringAdd_CheckNone,111,0
block_count,StringAdd_CheckNone,112,48
block_count,StringAdd_CheckNone,113,425
-block_count,SubString,0,1672
-block_count,SubString,1,1440
+block_count,SubString,0,1671
+block_count,SubString,1,1439
block_count,SubString,2,1326
-block_count,SubString,3,1054
+block_count,SubString,3,1053
block_count,SubString,4,197
block_count,SubString,5,395
block_count,SubString,6,66
@@ -37828,7 +37806,7 @@
block_count,SubString,13,197
block_count,SubString,14,0
block_count,SubString,15,856
-block_count,SubString,16,1054
+block_count,SubString,16,1053
block_count,SubString,17,457
block_count,SubString,18,1
block_count,SubString,19,0
@@ -37910,8 +37888,8 @@
block_count,SubString,95,574
block_count,SubString,96,0
block_count,SubString,97,574
-block_count,SubString,98,1387
-block_count,SubString,99,812
+block_count,SubString,98,1386
+block_count,SubString,99,811
block_count,SubString,100,574
block_count,SubString,101,574
block_count,SubString,102,417
@@ -38022,7 +38000,7 @@
block_count,SubString,207,0
block_count,SubString,208,0
block_count,SubString,209,0
-block_count,SubString,210,134
+block_count,SubString,210,133
block_count,SubString,211,272
block_count,SubString,212,272
block_count,SubString,213,0
@@ -38037,17 +38015,17 @@
block_count,SubString,222,113
block_count,SubString,223,231
block_count,SubString,224,231
-block_count,GetProperty,0,503
-block_count,GetProperty,1,503
+block_count,GetProperty,0,501
+block_count,GetProperty,1,501
block_count,GetProperty,2,0
-block_count,GetProperty,3,503
-block_count,GetProperty,4,498
-block_count,GetProperty,5,498
-block_count,GetProperty,6,498
+block_count,GetProperty,3,501
+block_count,GetProperty,4,496
+block_count,GetProperty,5,496
+block_count,GetProperty,6,496
block_count,GetProperty,7,0
block_count,GetProperty,8,0
block_count,GetProperty,9,0
-block_count,GetProperty,10,498
+block_count,GetProperty,10,496
block_count,GetProperty,11,358
block_count,GetProperty,12,0
block_count,GetProperty,13,0
@@ -38066,12 +38044,12 @@
block_count,GetProperty,26,0
block_count,GetProperty,27,0
block_count,GetProperty,28,0
-block_count,GetProperty,29,140
-block_count,GetProperty,30,498
-block_count,GetProperty,31,1303
-block_count,GetProperty,32,1303
-block_count,GetProperty,33,1303
-block_count,GetProperty,34,1280
+block_count,GetProperty,29,137
+block_count,GetProperty,30,496
+block_count,GetProperty,31,1298
+block_count,GetProperty,32,1298
+block_count,GetProperty,33,1297
+block_count,GetProperty,34,1275
block_count,GetProperty,35,44
block_count,GetProperty,36,44
block_count,GetProperty,37,0
@@ -38097,29 +38075,29 @@
block_count,GetProperty,57,44
block_count,GetProperty,58,0
block_count,GetProperty,59,0
-block_count,GetProperty,60,1235
+block_count,GetProperty,60,1230
block_count,GetProperty,61,0
-block_count,GetProperty,62,1235
-block_count,GetProperty,63,58
-block_count,GetProperty,64,1177
-block_count,GetProperty,65,3035
-block_count,GetProperty,66,2722
-block_count,GetProperty,67,2600
-block_count,GetProperty,68,1857
-block_count,GetProperty,69,742
+block_count,GetProperty,62,1230
+block_count,GetProperty,63,57
+block_count,GetProperty,64,1172
+block_count,GetProperty,65,3018
+block_count,GetProperty,66,2708
+block_count,GetProperty,67,2586
+block_count,GetProperty,68,1846
+block_count,GetProperty,69,740
block_count,GetProperty,70,122
-block_count,GetProperty,71,312
-block_count,GetProperty,72,800
-block_count,GetProperty,73,477
-block_count,GetProperty,74,323
-block_count,GetProperty,75,314
+block_count,GetProperty,71,310
+block_count,GetProperty,72,798
+block_count,GetProperty,73,475
+block_count,GetProperty,74,322
+block_count,GetProperty,75,312
block_count,GetProperty,76,9
-block_count,GetProperty,77,488
+block_count,GetProperty,77,486
block_count,GetProperty,78,2
-block_count,GetProperty,79,486
-block_count,GetProperty,80,473
+block_count,GetProperty,79,484
+block_count,GetProperty,80,471
block_count,GetProperty,81,0
-block_count,GetProperty,82,473
+block_count,GetProperty,82,471
block_count,GetProperty,83,13
block_count,GetProperty,84,0
block_count,GetProperty,85,13
@@ -38127,7 +38105,7 @@
block_count,GetProperty,87,0
block_count,GetProperty,88,0
block_count,GetProperty,89,0
-block_count,GetProperty,90,488
+block_count,GetProperty,90,486
block_count,GetProperty,91,22
block_count,GetProperty,92,0
block_count,GetProperty,93,0
@@ -38170,8 +38148,8 @@
block_count,GetProperty,130,0
block_count,GetProperty,131,0
block_count,GetProperty,132,0
-block_count,GetProperty,133,814
-block_count,GetProperty,134,813
+block_count,GetProperty,133,812
+block_count,GetProperty,134,811
block_count,GetProperty,135,1
block_count,GetProperty,136,0
block_count,GetProperty,137,1
@@ -38209,10 +38187,10 @@
block_count,GetProperty,169,0
block_count,GetProperty,170,0
block_count,GetProperty,171,0
-block_count,GetProperty,172,814
-block_count,GetProperty,173,805
+block_count,GetProperty,172,812
+block_count,GetProperty,173,802
block_count,GetProperty,174,9
-block_count,GetProperty,175,488
+block_count,GetProperty,175,486
block_count,GetProperty,176,2
block_count,GetProperty,177,2
block_count,GetProperty,178,0
@@ -38252,7 +38230,7 @@
block_count,GetProperty,212,0
block_count,GetProperty,213,0
block_count,GetProperty,214,0
-block_count,GetProperty,215,486
+block_count,GetProperty,215,484
block_count,GetProperty,216,0
block_count,GetProperty,217,4
block_count,GetProperty,218,0
@@ -40921,11 +40899,11 @@
block_count,ArrayPrototypeConcat,37,51
block_count,ArrayPrototypeConcat,38,51
block_count,ArrayPrototypeConcat,39,0
-block_count,ArrayPrototypeConcat,40,51
-block_count,ArrayPrototypeConcat,41,51
+block_count,ArrayPrototypeConcat,40,50
+block_count,ArrayPrototypeConcat,41,50
block_count,ArrayPrototypeConcat,42,0
-block_count,ArrayPrototypeConcat,43,51
-block_count,ArrayPrototypeConcat,44,51
+block_count,ArrayPrototypeConcat,43,50
+block_count,ArrayPrototypeConcat,44,50
block_count,ArrayPrototypeConcat,45,49
block_count,ArrayPrototypeConcat,46,49
block_count,ArrayPrototypeConcat,47,49
@@ -41430,6 +41408,312 @@
block_count,ArrayForEachLoopContinuation,6,0
block_count,ArrayForEachLoopContinuation,7,0
block_count,ArrayForEachLoopContinuation,8,0
+block_count,ArrayForEachLoopContinuation,9,0
+block_count,ArrayForEachLoopContinuation,10,0
+block_count,ArrayForEachLoopContinuation,11,0
+block_count,ArrayForEachLoopContinuation,12,0
+block_count,ArrayForEachLoopContinuation,13,0
+block_count,ArrayForEachLoopContinuation,14,0
+block_count,ArrayForEachLoopContinuation,15,0
+block_count,ArrayForEachLoopContinuation,16,0
+block_count,ArrayForEachLoopContinuation,17,0
+block_count,ArrayForEachLoopContinuation,18,0
+block_count,ArrayForEachLoopContinuation,19,0
+block_count,ArrayForEachLoopContinuation,20,0
+block_count,ArrayForEachLoopContinuation,21,0
+block_count,ArrayForEachLoopContinuation,22,0
+block_count,ArrayForEachLoopContinuation,23,0
+block_count,ArrayForEachLoopContinuation,24,0
+block_count,ArrayForEachLoopContinuation,25,0
+block_count,ArrayForEachLoopContinuation,26,0
+block_count,ArrayForEachLoopContinuation,27,0
+block_count,ArrayForEachLoopContinuation,28,0
+block_count,ArrayForEachLoopContinuation,29,0
+block_count,ArrayForEachLoopContinuation,30,0
+block_count,ArrayForEachLoopContinuation,31,0
+block_count,ArrayForEachLoopContinuation,32,0
+block_count,ArrayForEachLoopContinuation,33,0
+block_count,ArrayForEachLoopContinuation,34,0
+block_count,ArrayForEachLoopContinuation,35,0
+block_count,ArrayForEachLoopContinuation,36,0
+block_count,ArrayForEachLoopContinuation,37,0
+block_count,ArrayForEachLoopContinuation,38,0
+block_count,ArrayForEachLoopContinuation,39,0
+block_count,ArrayForEachLoopContinuation,40,0
+block_count,ArrayForEachLoopContinuation,41,0
+block_count,ArrayForEachLoopContinuation,42,0
+block_count,ArrayForEachLoopContinuation,43,0
+block_count,ArrayForEachLoopContinuation,44,0
+block_count,ArrayForEachLoopContinuation,45,0
+block_count,ArrayForEachLoopContinuation,46,0
+block_count,ArrayForEachLoopContinuation,47,0
+block_count,ArrayForEachLoopContinuation,48,0
+block_count,ArrayForEachLoopContinuation,49,0
+block_count,ArrayForEachLoopContinuation,50,0
+block_count,ArrayForEachLoopContinuation,51,0
+block_count,ArrayForEachLoopContinuation,52,0
+block_count,ArrayForEachLoopContinuation,53,0
+block_count,ArrayForEachLoopContinuation,54,0
+block_count,ArrayForEachLoopContinuation,55,0
+block_count,ArrayForEachLoopContinuation,56,0
+block_count,ArrayForEachLoopContinuation,57,0
+block_count,ArrayForEachLoopContinuation,58,0
+block_count,ArrayForEachLoopContinuation,59,0
+block_count,ArrayForEachLoopContinuation,60,0
+block_count,ArrayForEachLoopContinuation,61,0
+block_count,ArrayForEachLoopContinuation,62,0
+block_count,ArrayForEachLoopContinuation,63,0
+block_count,ArrayForEachLoopContinuation,64,0
+block_count,ArrayForEachLoopContinuation,65,0
+block_count,ArrayForEachLoopContinuation,66,0
+block_count,ArrayForEachLoopContinuation,67,0
+block_count,ArrayForEachLoopContinuation,68,0
+block_count,ArrayForEachLoopContinuation,69,0
+block_count,ArrayForEachLoopContinuation,70,0
+block_count,ArrayForEachLoopContinuation,71,0
+block_count,ArrayForEachLoopContinuation,72,0
+block_count,ArrayForEachLoopContinuation,73,0
+block_count,ArrayForEachLoopContinuation,74,0
+block_count,ArrayForEachLoopContinuation,75,0
+block_count,ArrayForEachLoopContinuation,76,0
+block_count,ArrayForEachLoopContinuation,77,0
+block_count,ArrayForEachLoopContinuation,78,0
+block_count,ArrayForEachLoopContinuation,79,0
+block_count,ArrayForEachLoopContinuation,80,0
+block_count,ArrayForEachLoopContinuation,81,0
+block_count,ArrayForEachLoopContinuation,82,0
+block_count,ArrayForEachLoopContinuation,83,0
+block_count,ArrayForEachLoopContinuation,84,0
+block_count,ArrayForEachLoopContinuation,85,0
+block_count,ArrayForEachLoopContinuation,86,0
+block_count,ArrayForEachLoopContinuation,87,0
+block_count,ArrayForEachLoopContinuation,88,0
+block_count,ArrayForEachLoopContinuation,89,0
+block_count,ArrayForEachLoopContinuation,90,0
+block_count,ArrayForEachLoopContinuation,91,0
+block_count,ArrayForEachLoopContinuation,92,0
+block_count,ArrayForEachLoopContinuation,93,0
+block_count,ArrayForEachLoopContinuation,94,0
+block_count,ArrayForEachLoopContinuation,95,0
+block_count,ArrayForEachLoopContinuation,96,0
+block_count,ArrayForEachLoopContinuation,97,0
+block_count,ArrayForEachLoopContinuation,98,0
+block_count,ArrayForEachLoopContinuation,99,0
+block_count,ArrayForEachLoopContinuation,100,0
+block_count,ArrayForEachLoopContinuation,101,0
+block_count,ArrayForEachLoopContinuation,102,0
+block_count,ArrayForEachLoopContinuation,103,0
+block_count,ArrayForEachLoopContinuation,104,0
+block_count,ArrayForEachLoopContinuation,105,0
+block_count,ArrayForEachLoopContinuation,106,0
+block_count,ArrayForEachLoopContinuation,107,0
+block_count,ArrayForEachLoopContinuation,108,0
+block_count,ArrayForEachLoopContinuation,109,0
+block_count,ArrayForEachLoopContinuation,110,0
+block_count,ArrayForEachLoopContinuation,111,0
+block_count,ArrayForEachLoopContinuation,112,0
+block_count,ArrayForEachLoopContinuation,113,0
+block_count,ArrayForEachLoopContinuation,114,0
+block_count,ArrayForEachLoopContinuation,115,0
+block_count,ArrayForEachLoopContinuation,116,0
+block_count,ArrayForEachLoopContinuation,117,0
+block_count,ArrayForEachLoopContinuation,118,0
+block_count,ArrayForEachLoopContinuation,119,0
+block_count,ArrayForEachLoopContinuation,120,0
+block_count,ArrayForEachLoopContinuation,121,0
+block_count,ArrayForEachLoopContinuation,122,0
+block_count,ArrayForEachLoopContinuation,123,0
+block_count,ArrayForEachLoopContinuation,124,0
+block_count,ArrayForEachLoopContinuation,125,0
+block_count,ArrayForEachLoopContinuation,126,0
+block_count,ArrayForEachLoopContinuation,127,0
+block_count,ArrayForEachLoopContinuation,128,0
+block_count,ArrayForEachLoopContinuation,129,0
+block_count,ArrayForEachLoopContinuation,130,0
+block_count,ArrayForEachLoopContinuation,131,0
+block_count,ArrayForEachLoopContinuation,132,0
+block_count,ArrayForEachLoopContinuation,133,0
+block_count,ArrayForEachLoopContinuation,134,0
+block_count,ArrayForEachLoopContinuation,135,0
+block_count,ArrayForEachLoopContinuation,136,0
+block_count,ArrayForEachLoopContinuation,137,0
+block_count,ArrayForEachLoopContinuation,138,0
+block_count,ArrayForEachLoopContinuation,139,0
+block_count,ArrayForEachLoopContinuation,140,0
+block_count,ArrayForEachLoopContinuation,141,0
+block_count,ArrayForEachLoopContinuation,142,0
+block_count,ArrayForEachLoopContinuation,143,0
+block_count,ArrayForEachLoopContinuation,144,0
+block_count,ArrayForEachLoopContinuation,145,0
+block_count,ArrayForEachLoopContinuation,146,0
+block_count,ArrayForEachLoopContinuation,147,0
+block_count,ArrayForEachLoopContinuation,148,0
+block_count,ArrayForEachLoopContinuation,149,0
+block_count,ArrayForEachLoopContinuation,150,0
+block_count,ArrayForEachLoopContinuation,151,0
+block_count,ArrayForEachLoopContinuation,152,0
+block_count,ArrayForEachLoopContinuation,153,0
+block_count,ArrayForEachLoopContinuation,154,0
+block_count,ArrayForEachLoopContinuation,155,0
+block_count,ArrayForEachLoopContinuation,156,0
+block_count,ArrayForEachLoopContinuation,157,0
+block_count,ArrayForEachLoopContinuation,158,0
+block_count,ArrayForEachLoopContinuation,159,0
+block_count,ArrayForEachLoopContinuation,160,0
+block_count,ArrayForEachLoopContinuation,161,0
+block_count,ArrayForEachLoopContinuation,162,0
+block_count,ArrayForEachLoopContinuation,163,0
+block_count,ArrayForEachLoopContinuation,164,0
+block_count,ArrayForEachLoopContinuation,165,0
+block_count,ArrayForEachLoopContinuation,166,0
+block_count,ArrayForEachLoopContinuation,167,0
+block_count,ArrayForEachLoopContinuation,168,0
+block_count,ArrayForEachLoopContinuation,169,0
+block_count,ArrayForEachLoopContinuation,170,0
+block_count,ArrayForEachLoopContinuation,171,0
+block_count,ArrayForEachLoopContinuation,172,0
+block_count,ArrayForEachLoopContinuation,173,0
+block_count,ArrayForEachLoopContinuation,174,0
+block_count,ArrayForEachLoopContinuation,175,0
+block_count,ArrayForEachLoopContinuation,176,0
+block_count,ArrayForEachLoopContinuation,177,0
+block_count,ArrayForEachLoopContinuation,178,0
+block_count,ArrayForEachLoopContinuation,179,0
+block_count,ArrayForEachLoopContinuation,180,0
+block_count,ArrayForEachLoopContinuation,181,0
+block_count,ArrayForEachLoopContinuation,182,0
+block_count,ArrayForEachLoopContinuation,183,0
+block_count,ArrayForEachLoopContinuation,184,0
+block_count,ArrayForEachLoopContinuation,185,0
+block_count,ArrayForEachLoopContinuation,186,0
+block_count,ArrayForEachLoopContinuation,187,0
+block_count,ArrayForEachLoopContinuation,188,0
+block_count,ArrayForEachLoopContinuation,189,0
+block_count,ArrayForEachLoopContinuation,190,0
+block_count,ArrayForEachLoopContinuation,191,0
+block_count,ArrayForEachLoopContinuation,192,0
+block_count,ArrayForEachLoopContinuation,193,0
+block_count,ArrayForEachLoopContinuation,194,0
+block_count,ArrayForEachLoopContinuation,195,0
+block_count,ArrayForEachLoopContinuation,196,0
+block_count,ArrayForEachLoopContinuation,197,0
+block_count,ArrayForEachLoopContinuation,198,0
+block_count,ArrayForEachLoopContinuation,199,0
+block_count,ArrayForEachLoopContinuation,200,0
+block_count,ArrayForEachLoopContinuation,201,0
+block_count,ArrayForEachLoopContinuation,202,0
+block_count,ArrayForEachLoopContinuation,203,0
+block_count,ArrayForEachLoopContinuation,204,0
+block_count,ArrayForEachLoopContinuation,205,0
+block_count,ArrayForEachLoopContinuation,206,0
+block_count,ArrayForEachLoopContinuation,207,0
+block_count,ArrayForEachLoopContinuation,208,0
+block_count,ArrayForEachLoopContinuation,209,0
+block_count,ArrayForEachLoopContinuation,210,0
+block_count,ArrayForEachLoopContinuation,211,0
+block_count,ArrayForEachLoopContinuation,212,0
+block_count,ArrayForEachLoopContinuation,213,0
+block_count,ArrayForEachLoopContinuation,214,0
+block_count,ArrayForEachLoopContinuation,215,0
+block_count,ArrayForEachLoopContinuation,216,0
+block_count,ArrayForEachLoopContinuation,217,0
+block_count,ArrayForEachLoopContinuation,218,0
+block_count,ArrayForEachLoopContinuation,219,0
+block_count,ArrayForEachLoopContinuation,220,0
+block_count,ArrayForEachLoopContinuation,221,0
+block_count,ArrayForEachLoopContinuation,222,0
+block_count,ArrayForEachLoopContinuation,223,0
+block_count,ArrayForEachLoopContinuation,224,0
+block_count,ArrayForEachLoopContinuation,225,0
+block_count,ArrayForEachLoopContinuation,226,0
+block_count,ArrayForEachLoopContinuation,227,0
+block_count,ArrayForEachLoopContinuation,228,0
+block_count,ArrayForEachLoopContinuation,229,0
+block_count,ArrayForEachLoopContinuation,230,0
+block_count,ArrayForEachLoopContinuation,231,0
+block_count,ArrayForEachLoopContinuation,232,0
+block_count,ArrayForEachLoopContinuation,233,0
+block_count,ArrayForEachLoopContinuation,234,0
+block_count,ArrayForEachLoopContinuation,235,0
+block_count,ArrayForEachLoopContinuation,236,0
+block_count,ArrayForEachLoopContinuation,237,0
+block_count,ArrayForEachLoopContinuation,238,0
+block_count,ArrayForEachLoopContinuation,239,0
+block_count,ArrayForEachLoopContinuation,240,0
+block_count,ArrayForEachLoopContinuation,241,0
+block_count,ArrayForEachLoopContinuation,242,0
+block_count,ArrayForEachLoopContinuation,243,0
+block_count,ArrayForEachLoopContinuation,244,0
+block_count,ArrayForEachLoopContinuation,245,0
+block_count,ArrayForEachLoopContinuation,246,0
+block_count,ArrayForEachLoopContinuation,247,0
+block_count,ArrayForEachLoopContinuation,248,0
+block_count,ArrayForEachLoopContinuation,249,0
+block_count,ArrayForEachLoopContinuation,250,0
+block_count,ArrayForEachLoopContinuation,251,0
+block_count,ArrayForEachLoopContinuation,252,0
+block_count,ArrayForEachLoopContinuation,253,0
+block_count,ArrayForEachLoopContinuation,254,0
+block_count,ArrayForEachLoopContinuation,255,0
+block_count,ArrayForEachLoopContinuation,256,0
+block_count,ArrayForEachLoopContinuation,257,0
+block_count,ArrayForEachLoopContinuation,258,0
+block_count,ArrayForEachLoopContinuation,259,0
+block_count,ArrayForEachLoopContinuation,260,0
+block_count,ArrayForEachLoopContinuation,261,0
+block_count,ArrayForEachLoopContinuation,262,0
+block_count,ArrayForEachLoopContinuation,263,0
+block_count,ArrayForEachLoopContinuation,264,0
+block_count,ArrayForEachLoopContinuation,265,0
+block_count,ArrayForEachLoopContinuation,266,0
+block_count,ArrayForEachLoopContinuation,267,0
+block_count,ArrayForEachLoopContinuation,268,0
+block_count,ArrayForEachLoopContinuation,269,0
+block_count,ArrayForEachLoopContinuation,270,0
+block_count,ArrayForEachLoopContinuation,271,0
+block_count,ArrayForEachLoopContinuation,272,0
+block_count,ArrayForEachLoopContinuation,273,0
+block_count,ArrayForEachLoopContinuation,274,0
+block_count,ArrayForEachLoopContinuation,275,0
+block_count,ArrayForEachLoopContinuation,276,0
+block_count,ArrayForEachLoopContinuation,277,0
+block_count,ArrayForEachLoopContinuation,278,0
+block_count,ArrayForEachLoopContinuation,279,0
+block_count,ArrayForEachLoopContinuation,280,0
+block_count,ArrayForEachLoopContinuation,281,0
+block_count,ArrayForEachLoopContinuation,282,0
+block_count,ArrayForEachLoopContinuation,283,0
+block_count,ArrayForEachLoopContinuation,284,0
+block_count,ArrayForEachLoopContinuation,285,0
+block_count,ArrayForEachLoopContinuation,286,0
+block_count,ArrayForEachLoopContinuation,287,0
+block_count,ArrayForEachLoopContinuation,288,0
+block_count,ArrayForEachLoopContinuation,289,0
+block_count,ArrayForEachLoopContinuation,290,0
+block_count,ArrayForEachLoopContinuation,291,0
+block_count,ArrayForEachLoopContinuation,292,0
+block_count,ArrayForEachLoopContinuation,293,0
+block_count,ArrayForEachLoopContinuation,294,0
+block_count,ArrayForEachLoopContinuation,295,0
+block_count,ArrayForEachLoopContinuation,296,0
+block_count,ArrayForEachLoopContinuation,297,0
+block_count,ArrayForEachLoopContinuation,298,0
+block_count,ArrayForEachLoopContinuation,299,0
+block_count,ArrayForEachLoopContinuation,300,0
+block_count,ArrayForEachLoopContinuation,301,0
+block_count,ArrayForEachLoopContinuation,302,0
+block_count,ArrayForEachLoopContinuation,303,0
+block_count,ArrayForEachLoopContinuation,304,0
+block_count,ArrayForEachLoopContinuation,305,0
+block_count,ArrayForEachLoopContinuation,306,0
+block_count,ArrayForEachLoopContinuation,307,0
+block_count,ArrayForEachLoopContinuation,308,0
+block_count,ArrayForEachLoopContinuation,309,0
+block_count,ArrayForEachLoopContinuation,310,0
+block_count,ArrayForEachLoopContinuation,311,0
+block_count,ArrayForEachLoopContinuation,312,0
+block_count,ArrayForEachLoopContinuation,313,0
+block_count,ArrayForEachLoopContinuation,314,0
block_count,ArrayForEach,0,2
block_count,ArrayForEach,1,0
block_count,ArrayForEach,2,2
@@ -41735,10 +42019,10 @@
block_count,ArrayIsArray,7,0
block_count,ArrayIsArray,8,2
block_count,ArrayIsArray,9,0
-block_count,LoadJoinElement_FastSmiOrObjectElements_0,0,655
+block_count,LoadJoinElement_FastSmiOrObjectElements_0,0,654
block_count,LoadJoinElement_FastSmiOrObjectElements_0,1,0
-block_count,LoadJoinElement_FastSmiOrObjectElements_0,2,655
-block_count,LoadJoinElement_FastSmiOrObjectElements_0,3,655
+block_count,LoadJoinElement_FastSmiOrObjectElements_0,2,654
+block_count,LoadJoinElement_FastSmiOrObjectElements_0,3,654
block_count,JoinStackPush,0,0
block_count,JoinStackPush,1,0
block_count,JoinStackPush,2,0
@@ -42950,36 +43234,36 @@
block_count,ArrayPrototypeJoinImpl,1082,0
block_count,ArrayPrototypeJoinImpl,1083,105
block_count,ArrayPrototypeJoinImpl,1084,760
-block_count,ArrayPrototypeJoinImpl,1085,655
-block_count,ArrayPrototypeJoinImpl,1086,655
-block_count,ArrayPrototypeJoinImpl,1087,655
+block_count,ArrayPrototypeJoinImpl,1085,654
+block_count,ArrayPrototypeJoinImpl,1086,654
+block_count,ArrayPrototypeJoinImpl,1087,654
block_count,ArrayPrototypeJoinImpl,1088,0
block_count,ArrayPrototypeJoinImpl,1089,0
block_count,ArrayPrototypeJoinImpl,1090,0
-block_count,ArrayPrototypeJoinImpl,1091,655
+block_count,ArrayPrototypeJoinImpl,1091,654
block_count,ArrayPrototypeJoinImpl,1092,0
-block_count,ArrayPrototypeJoinImpl,1093,655
+block_count,ArrayPrototypeJoinImpl,1093,654
block_count,ArrayPrototypeJoinImpl,1094,0
-block_count,ArrayPrototypeJoinImpl,1095,655
+block_count,ArrayPrototypeJoinImpl,1095,654
block_count,ArrayPrototypeJoinImpl,1096,0
block_count,ArrayPrototypeJoinImpl,1097,0
block_count,ArrayPrototypeJoinImpl,1098,0
-block_count,ArrayPrototypeJoinImpl,1099,655
-block_count,ArrayPrototypeJoinImpl,1100,655
+block_count,ArrayPrototypeJoinImpl,1099,654
+block_count,ArrayPrototypeJoinImpl,1100,654
block_count,ArrayPrototypeJoinImpl,1101,0
block_count,ArrayPrototypeJoinImpl,1102,0
block_count,ArrayPrototypeJoinImpl,1103,0
block_count,ArrayPrototypeJoinImpl,1104,0
-block_count,ArrayPrototypeJoinImpl,1105,655
-block_count,ArrayPrototypeJoinImpl,1106,655
+block_count,ArrayPrototypeJoinImpl,1105,654
+block_count,ArrayPrototypeJoinImpl,1106,654
block_count,ArrayPrototypeJoinImpl,1107,105
block_count,ArrayPrototypeJoinImpl,1108,549
-block_count,ArrayPrototypeJoinImpl,1109,655
-block_count,ArrayPrototypeJoinImpl,1110,655
-block_count,ArrayPrototypeJoinImpl,1111,655
+block_count,ArrayPrototypeJoinImpl,1109,654
+block_count,ArrayPrototypeJoinImpl,1110,654
+block_count,ArrayPrototypeJoinImpl,1111,654
block_count,ArrayPrototypeJoinImpl,1112,534
-block_count,ArrayPrototypeJoinImpl,1113,510
-block_count,ArrayPrototypeJoinImpl,1114,510
+block_count,ArrayPrototypeJoinImpl,1113,509
+block_count,ArrayPrototypeJoinImpl,1114,509
block_count,ArrayPrototypeJoinImpl,1115,0
block_count,ArrayPrototypeJoinImpl,1116,24
block_count,ArrayPrototypeJoinImpl,1117,0
@@ -43360,7 +43644,7 @@
block_count,ArrayPrototypeJoinImpl,1492,0
block_count,ArrayPrototypeJoinImpl,1493,0
block_count,ArrayPrototypeJoinImpl,1494,0
-block_count,ArrayPrototypeJoinImpl,1495,544
+block_count,ArrayPrototypeJoinImpl,1495,543
block_count,ArrayPrototypeJoinImpl,1496,105
block_count,ArrayPrototypeJoinImpl,1497,649
block_count,ArrayPrototypeJoinImpl,1498,654
@@ -43432,7 +43716,7 @@
block_count,ArrayPrototypeJoinImpl,1564,0
block_count,ArrayPrototypeJoinImpl,1565,0
block_count,ArrayPrototypeJoinImpl,1566,0
-block_count,ArrayPrototypeJoinImpl,1567,655
+block_count,ArrayPrototypeJoinImpl,1567,654
block_count,ArrayPrototypeJoinImpl,1568,0
block_count,ArrayPrototypeJoinImpl,1569,105
block_count,ArrayPrototypeJoinImpl,1570,0
@@ -44255,7 +44539,7 @@
block_count,ArrayMap,76,7
block_count,ArrayMap,77,0
block_count,ArrayMap,78,10
-block_count,ArrayMap,79,38
+block_count,ArrayMap,79,37
block_count,ArrayMap,80,27
block_count,ArrayMap,81,27
block_count,ArrayMap,82,27
@@ -44388,7 +44672,7 @@
block_count,ArrayMap,209,0
block_count,ArrayMap,210,0
block_count,ArrayMap,211,10
-block_count,ArrayMap,212,4
+block_count,ArrayMap,212,3
block_count,ArrayMap,213,6
block_count,ArrayMap,214,6
block_count,ArrayMap,215,6
@@ -45080,7 +45364,7 @@
block_count,ArrayPrototypeShift,43,197
block_count,ArrayPrototypeShift,44,197
block_count,ArrayPrototypeShift,45,196
-block_count,ArrayPrototypeShift,46,196
+block_count,ArrayPrototypeShift,46,195
block_count,ArrayPrototypeShift,47,192
block_count,ArrayPrototypeShift,48,192
block_count,ArrayPrototypeShift,49,192
@@ -45203,26 +45487,26 @@
block_count,ArrayPrototypeSlice,52,27
block_count,ArrayPrototypeSlice,53,0
block_count,ArrayPrototypeSlice,54,27
-block_count,ArrayPrototypeSlice,55,27
+block_count,ArrayPrototypeSlice,55,26
block_count,ArrayPrototypeSlice,56,0
block_count,ArrayPrototypeSlice,57,1
block_count,ArrayPrototypeSlice,58,0
block_count,ArrayPrototypeSlice,59,0
block_count,ArrayPrototypeSlice,60,0
-block_count,ArrayPrototypeSlice,61,27
+block_count,ArrayPrototypeSlice,61,26
block_count,ArrayPrototypeSlice,62,0
block_count,ArrayPrototypeSlice,63,0
block_count,ArrayPrototypeSlice,64,0
-block_count,ArrayPrototypeSlice,65,27
+block_count,ArrayPrototypeSlice,65,26
block_count,ArrayPrototypeSlice,66,0
-block_count,ArrayPrototypeSlice,67,27
+block_count,ArrayPrototypeSlice,67,26
block_count,ArrayPrototypeSlice,68,0
-block_count,ArrayPrototypeSlice,69,27
+block_count,ArrayPrototypeSlice,69,26
block_count,ArrayPrototypeSlice,70,0
block_count,ArrayPrototypeSlice,71,0
block_count,ArrayPrototypeSlice,72,0
block_count,ArrayPrototypeSlice,73,0
-block_count,ArrayPrototypeSlice,74,27
+block_count,ArrayPrototypeSlice,74,26
block_count,ArrayPrototypeSlice,75,0
block_count,ArrayPrototypeSlice,76,27
block_count,ArrayPrototypeSlice,77,1
@@ -46806,7 +47090,7 @@
block_count,BooleanPrototypeToString,9,0
block_count,ToString,0,74
block_count,ToString,1,113
-block_count,ToString,2,103
+block_count,ToString,2,102
block_count,ToString,3,83
block_count,ToString,4,39
block_count,ToString,5,39
@@ -47066,7 +47350,7 @@
block_count,StringPrototypeCharAt,33,0
block_count,StringPrototypeCharAt,34,0
block_count,StringPrototypeCharAt,35,0
-block_count,StringPrototypeCharAt,36,14
+block_count,StringPrototypeCharAt,36,15
block_count,StringPrototypeCharAt,37,17
block_count,StringPrototypeCharAt,38,17
block_count,StringPrototypeCharAt,39,0
@@ -47078,22 +47362,22 @@
block_count,StringPrototypeCharAt,45,0
block_count,StringPrototypeCharAt,46,17
block_count,StringPrototypeCharAt,47,0
-block_count,StringPrototypeCharCodeAt,0,67
+block_count,StringPrototypeCharCodeAt,0,68
block_count,StringPrototypeCharCodeAt,1,0
-block_count,StringPrototypeCharCodeAt,2,67
-block_count,StringPrototypeCharCodeAt,3,67
-block_count,StringPrototypeCharCodeAt,4,67
+block_count,StringPrototypeCharCodeAt,2,68
+block_count,StringPrototypeCharCodeAt,3,68
+block_count,StringPrototypeCharCodeAt,4,68
block_count,StringPrototypeCharCodeAt,5,0
block_count,StringPrototypeCharCodeAt,6,0
block_count,StringPrototypeCharCodeAt,7,0
-block_count,StringPrototypeCharCodeAt,8,67
+block_count,StringPrototypeCharCodeAt,8,68
block_count,StringPrototypeCharCodeAt,9,0
-block_count,StringPrototypeCharCodeAt,10,67
-block_count,StringPrototypeCharCodeAt,11,67
+block_count,StringPrototypeCharCodeAt,10,68
+block_count,StringPrototypeCharCodeAt,11,68
block_count,StringPrototypeCharCodeAt,12,0
-block_count,StringPrototypeCharCodeAt,13,67
-block_count,StringPrototypeCharCodeAt,14,67
-block_count,StringPrototypeCharCodeAt,15,67
+block_count,StringPrototypeCharCodeAt,13,68
+block_count,StringPrototypeCharCodeAt,14,68
+block_count,StringPrototypeCharCodeAt,15,68
block_count,StringPrototypeCharCodeAt,16,31
block_count,StringPrototypeCharCodeAt,17,62
block_count,StringPrototypeCharCodeAt,18,29
@@ -47117,8 +47401,8 @@
block_count,StringPrototypeCharCodeAt,36,36
block_count,StringPrototypeCharCodeAt,37,67
block_count,StringPrototypeCharCodeAt,38,67
-block_count,StringPrototypeCharCodeAt,39,12
-block_count,StringPrototypeCharCodeAt,40,54
+block_count,StringPrototypeCharCodeAt,39,14
+block_count,StringPrototypeCharCodeAt,40,53
block_count,StringPrototypeCharCodeAt,41,0
block_count,StringPrototypeCodePointAt,0,0
block_count,StringPrototypeCodePointAt,1,0
@@ -47216,26 +47500,26 @@
block_count,StringPrototypeConcat,20,0
block_count,StringPrototypeConcat,21,0
block_count,StringPrototypeConcat,22,0
-block_count,StringConstructor,0,34
+block_count,StringConstructor,0,33
block_count,StringConstructor,1,0
-block_count,StringConstructor,2,34
-block_count,StringConstructor,3,34
-block_count,StringConstructor,4,34
+block_count,StringConstructor,2,33
+block_count,StringConstructor,3,33
+block_count,StringConstructor,4,33
block_count,StringConstructor,5,0
block_count,StringConstructor,6,33
block_count,StringConstructor,7,25
block_count,StringConstructor,8,0
block_count,StringConstructor,9,25
block_count,StringConstructor,10,7
-block_count,StringConstructor,11,34
+block_count,StringConstructor,11,33
block_count,StringConstructor,12,25
block_count,StringConstructor,13,19
block_count,StringConstructor,14,5
block_count,StringConstructor,15,8
block_count,StringConstructor,16,28
-block_count,StringConstructor,17,34
+block_count,StringConstructor,17,33
block_count,StringConstructor,18,0
-block_count,StringConstructor,19,34
+block_count,StringConstructor,19,33
block_count,StringConstructor,20,0
block_count,StringConstructor,21,0
block_count,StringConstructor,22,0
@@ -47764,7 +48048,7 @@
block_count,StringAddConvertRight,216,0
block_count,StringAddConvertRight,217,0
block_count,StringAddConvertRight,218,14
-block_count,StringAddConvertRight,219,15
+block_count,StringAddConvertRight,219,14
block_count,StringAddConvertRight,220,0
block_count,StringAddConvertRight,221,15
block_count,StringCharAt,0,9
@@ -47799,41 +48083,41 @@
block_count,StringCharAt,29,0
block_count,StringCharAt,30,0
block_count,StringCharAt,31,9
-block_count,FastNewClosureBaseline,0,92
-block_count,FastNewFunctionContextFunction,0,70
-block_count,FastNewFunctionContextFunction,1,70
+block_count,FastNewClosureBaseline,0,89
+block_count,FastNewFunctionContextFunction,0,69
+block_count,FastNewFunctionContextFunction,1,69
block_count,FastNewFunctionContextFunction,2,0
-block_count,FastNewFunctionContextFunction,3,70
+block_count,FastNewFunctionContextFunction,3,69
block_count,FastNewFunctionContextFunction,4,0
block_count,FastNewFunctionContextFunction,5,0
-block_count,FastNewFunctionContextFunction,6,70
+block_count,FastNewFunctionContextFunction,6,69
block_count,FastNewFunctionContextFunction,7,0
-block_count,FastNewFunctionContextFunction,8,70
+block_count,FastNewFunctionContextFunction,8,69
block_count,FastNewFunctionContextFunction,9,0
-block_count,FastNewFunctionContextFunction,10,70
+block_count,FastNewFunctionContextFunction,10,69
block_count,FastNewFunctionContextFunction,11,0
-block_count,FastNewFunctionContextFunction,12,70
-block_count,FastNewFunctionContextFunction,13,914
-block_count,FastNewFunctionContextFunction,14,844
-block_count,FastNewFunctionContextFunction,15,70
-block_count,FastNewFunctionContextFunction,16,70
-block_count,FastNewFunctionContextFunction,17,59
+block_count,FastNewFunctionContextFunction,12,68
+block_count,FastNewFunctionContextFunction,13,911
+block_count,FastNewFunctionContextFunction,14,842
+block_count,FastNewFunctionContextFunction,15,68
+block_count,FastNewFunctionContextFunction,16,69
+block_count,FastNewFunctionContextFunction,17,58
block_count,FastNewFunctionContextFunction,18,10
-block_count,FastNewFunctionContextFunctionWithCells,0,26
-block_count,FastNewFunctionContextFunctionWithCells,1,26
+block_count,FastNewFunctionContextFunctionWithCells,0,25
+block_count,FastNewFunctionContextFunctionWithCells,1,25
block_count,FastNewFunctionContextFunctionWithCells,2,0
-block_count,FastNewFunctionContextFunctionWithCells,3,26
+block_count,FastNewFunctionContextFunctionWithCells,3,25
block_count,FastNewFunctionContextFunctionWithCells,4,0
block_count,FastNewFunctionContextFunctionWithCells,5,0
-block_count,FastNewFunctionContextFunctionWithCells,6,26
+block_count,FastNewFunctionContextFunctionWithCells,6,25
block_count,FastNewFunctionContextFunctionWithCells,7,0
-block_count,FastNewFunctionContextFunctionWithCells,8,26
-block_count,FastNewFunctionContextFunctionWithCells,9,26
+block_count,FastNewFunctionContextFunctionWithCells,8,25
+block_count,FastNewFunctionContextFunctionWithCells,9,25
block_count,FastNewFunctionContextFunctionWithCells,10,0
-block_count,FastNewFunctionContextFunctionWithCells,11,26
+block_count,FastNewFunctionContextFunctionWithCells,11,25
block_count,FastNewFunctionContextFunctionWithCells,12,0
-block_count,FastNewFunctionContextFunctionWithCells,13,26
-block_count,FastNewFunctionContextFunctionWithCells,14,26
+block_count,FastNewFunctionContextFunctionWithCells,13,25
+block_count,FastNewFunctionContextFunctionWithCells,14,25
block_count,FastNewFunctionContextFunctionWithCells,15,0
block_count,FastNewFunctionContextFunctionWithCells,16,0
block_count,FastNewFunctionContextFunctionWithCells,17,0
@@ -47866,26 +48150,26 @@
block_count,FastNewFunctionContextFunctionWithCells,44,0
block_count,FastNewFunctionContextFunctionWithCells,45,0
block_count,FastNewFunctionContextFunctionWithCells,46,0
-block_count,FastNewFunctionContextFunctionWithCells,47,26
+block_count,FastNewFunctionContextFunctionWithCells,47,25
block_count,FastNewFunctionContextFunctionWithCells,48,0
-block_count,FastNewFunctionContextFunctionWithCells,49,26
-block_count,FastNewFunctionContextFunctionWithCells,50,26
+block_count,FastNewFunctionContextFunctionWithCells,49,25
+block_count,FastNewFunctionContextFunctionWithCells,50,25
block_count,FastNewFunctionContextFunctionWithCells,51,0
-block_count,FastNewFunctionContextFunctionWithCells,52,26
+block_count,FastNewFunctionContextFunctionWithCells,52,25
block_count,FastNewFunctionContextFunctionWithCells,53,0
-block_count,FastNewFunctionContextFunctionWithCells,54,26
-block_count,FastNewFunctionContextFunctionWithCells,55,26
-block_count,FastNewFunctionContextFunctionWithCells,56,26
+block_count,FastNewFunctionContextFunctionWithCells,54,25
+block_count,FastNewFunctionContextFunctionWithCells,55,25
+block_count,FastNewFunctionContextFunctionWithCells,56,25
block_count,FastNewFunctionContextFunctionWithCells,57,0
-block_count,FastNewFunctionContextFunctionWithCells,58,26
+block_count,FastNewFunctionContextFunctionWithCells,58,25
block_count,FastNewFunctionContextFunctionWithCells,59,0
-block_count,FastNewFunctionContextFunctionWithCells,60,26
+block_count,FastNewFunctionContextFunctionWithCells,60,25
block_count,FastNewFunctionContextFunctionWithCells,61,22
block_count,FastNewFunctionContextFunctionWithCells,62,3
-block_count,FastNewFunctionContextFunctionWithCells,63,26
-block_count,FastNewFunctionContextFunctionWithCells,64,26
+block_count,FastNewFunctionContextFunctionWithCells,63,25
+block_count,FastNewFunctionContextFunctionWithCells,64,25
block_count,FastNewFunctionContextFunctionWithCells,65,0
-block_count,FastNewFunctionContextFunctionWithCells,66,26
+block_count,FastNewFunctionContextFunctionWithCells,66,25
block_count,CreateRegExpLiteral,0,41
block_count,CreateRegExpLiteral,1,41
block_count,CreateRegExpLiteral,2,0
@@ -47897,12 +48181,12 @@
block_count,CreateRegExpLiteral,8,41
block_count,CreateRegExpLiteral,9,0
block_count,CreateRegExpLiteral,10,0
-block_count,CreateShallowArrayLiteral,0,20
-block_count,CreateShallowArrayLiteral,1,20
+block_count,CreateShallowArrayLiteral,0,21
+block_count,CreateShallowArrayLiteral,1,21
block_count,CreateShallowArrayLiteral,2,0
-block_count,CreateShallowArrayLiteral,3,20
-block_count,CreateShallowArrayLiteral,4,20
-block_count,CreateShallowArrayLiteral,5,18
+block_count,CreateShallowArrayLiteral,3,21
+block_count,CreateShallowArrayLiteral,4,21
+block_count,CreateShallowArrayLiteral,5,19
block_count,CreateShallowArrayLiteral,6,14
block_count,CreateShallowArrayLiteral,7,14
block_count,CreateShallowArrayLiteral,8,14
@@ -47937,7 +48221,7 @@
block_count,CreateShallowArrayLiteral,37,14
block_count,CreateShallowArrayLiteral,38,0
block_count,CreateShallowArrayLiteral,39,4
-block_count,CreateShallowArrayLiteral,40,18
+block_count,CreateShallowArrayLiteral,40,19
block_count,CreateShallowArrayLiteral,41,2
block_count,CreateShallowArrayLiteral,42,2
block_count,CreateShallowArrayLiteral,43,0
@@ -47966,15 +48250,15 @@
block_count,CreateShallowArrayLiteral,66,2
block_count,CreateShallowArrayLiteral,67,0
block_count,CreateShallowArrayLiteral,68,0
-block_count,CreateShallowArrayLiteral,69,20
+block_count,CreateShallowArrayLiteral,69,21
block_count,CreateShallowArrayLiteral,70,0
-block_count,CreateShallowArrayLiteral,71,20
-block_count,CreateShallowArrayLiteral,72,20
+block_count,CreateShallowArrayLiteral,71,21
+block_count,CreateShallowArrayLiteral,72,21
block_count,CreateShallowArrayLiteral,73,0
-block_count,CreateShallowArrayLiteral,74,20
+block_count,CreateShallowArrayLiteral,74,21
block_count,CreateShallowArrayLiteral,75,0
-block_count,CreateShallowArrayLiteral,76,20
-block_count,CreateShallowArrayLiteral,77,20
+block_count,CreateShallowArrayLiteral,76,21
+block_count,CreateShallowArrayLiteral,77,21
block_count,CreateShallowArrayLiteral,78,0
block_count,CreateShallowArrayLiteral,79,0
block_count,CreateEmptyArrayLiteral,0,29
@@ -47989,17 +48273,17 @@
block_count,CreateEmptyArrayLiteral,9,0
block_count,CreateEmptyArrayLiteral,10,29
block_count,CreateEmptyArrayLiteral,11,29
-block_count,CreateShallowObjectLiteral,0,32
-block_count,CreateShallowObjectLiteral,1,32
+block_count,CreateShallowObjectLiteral,0,31
+block_count,CreateShallowObjectLiteral,1,31
block_count,CreateShallowObjectLiteral,2,0
-block_count,CreateShallowObjectLiteral,3,32
-block_count,CreateShallowObjectLiteral,4,32
-block_count,CreateShallowObjectLiteral,5,32
-block_count,CreateShallowObjectLiteral,6,32
+block_count,CreateShallowObjectLiteral,3,31
+block_count,CreateShallowObjectLiteral,4,31
+block_count,CreateShallowObjectLiteral,5,31
+block_count,CreateShallowObjectLiteral,6,31
block_count,CreateShallowObjectLiteral,7,0
-block_count,CreateShallowObjectLiteral,8,32
+block_count,CreateShallowObjectLiteral,8,31
block_count,CreateShallowObjectLiteral,9,0
-block_count,CreateShallowObjectLiteral,10,32
+block_count,CreateShallowObjectLiteral,10,31
block_count,CreateShallowObjectLiteral,11,0
block_count,CreateShallowObjectLiteral,12,0
block_count,CreateShallowObjectLiteral,13,0
@@ -48041,7 +48325,7 @@
block_count,CreateShallowObjectLiteral,49,0
block_count,CreateShallowObjectLiteral,50,0
block_count,CreateShallowObjectLiteral,51,0
-block_count,CreateShallowObjectLiteral,52,32
+block_count,CreateShallowObjectLiteral,52,31
block_count,CreateShallowObjectLiteral,53,0
block_count,CreateShallowObjectLiteral,54,0
block_count,CreateShallowObjectLiteral,55,0
@@ -48109,17 +48393,17 @@
block_count,CreateShallowObjectLiteral,117,0
block_count,CreateShallowObjectLiteral,118,0
block_count,CreateShallowObjectLiteral,119,0
-block_count,CreateShallowObjectLiteral,120,32
-block_count,CreateShallowObjectLiteral,121,32
-block_count,CreateShallowObjectLiteral,122,32
+block_count,CreateShallowObjectLiteral,120,31
+block_count,CreateShallowObjectLiteral,121,31
+block_count,CreateShallowObjectLiteral,122,31
block_count,CreateShallowObjectLiteral,123,0
-block_count,CreateShallowObjectLiteral,124,32
+block_count,CreateShallowObjectLiteral,124,31
block_count,CreateShallowObjectLiteral,125,0
block_count,CreateShallowObjectLiteral,126,0
-block_count,CreateShallowObjectLiteral,127,32
-block_count,CreateShallowObjectLiteral,128,32
-block_count,CreateShallowObjectLiteral,129,93
-block_count,CreateShallowObjectLiteral,130,84
+block_count,CreateShallowObjectLiteral,127,31
+block_count,CreateShallowObjectLiteral,128,31
+block_count,CreateShallowObjectLiteral,129,92
+block_count,CreateShallowObjectLiteral,130,83
block_count,CreateShallowObjectLiteral,131,16
block_count,CreateShallowObjectLiteral,132,0
block_count,CreateShallowObjectLiteral,133,0
@@ -48150,10 +48434,10 @@
block_count,CreateShallowObjectLiteral,158,0
block_count,CreateShallowObjectLiteral,159,0
block_count,CreateShallowObjectLiteral,160,16
-block_count,CreateShallowObjectLiteral,161,68
+block_count,CreateShallowObjectLiteral,161,66
block_count,CreateShallowObjectLiteral,162,8
-block_count,CreateShallowObjectLiteral,163,93
-block_count,CreateShallowObjectLiteral,164,61
+block_count,CreateShallowObjectLiteral,163,91
+block_count,CreateShallowObjectLiteral,164,60
block_count,CreateShallowObjectLiteral,165,31
block_count,CreateShallowObjectLiteral,166,0
block_count,CreateShallowObjectLiteral,167,0
@@ -48305,13 +48589,13 @@
block_count,NumberToString,11,47
block_count,NumberToString,12,47
block_count,NumberToString,13,20
-block_count,NumberToString,14,27
+block_count,NumberToString,14,26
block_count,NumberToString,15,2
block_count,NumberToString,16,24
block_count,NumberToString,17,0
block_count,NumberToString,18,1172
block_count,NumberToString,19,1172
-block_count,NumberToString,20,967
+block_count,NumberToString,20,966
block_count,NumberToString,21,205
block_count,NumberToString,22,205
block_count,NumberToString,23,0
@@ -48359,7 +48643,7 @@
block_count,NumberToString,65,0
block_count,NumberToString,66,0
block_count,NumberToString,67,1172
-block_count,NumberToString,68,1197
+block_count,NumberToString,68,1196
block_count,NumberToString,69,23
block_count,ToBoolean,0,26
block_count,ToBoolean,1,26
@@ -48382,27 +48666,27 @@
block_count,ToBoolean,18,0
block_count,ToBoolean,19,0
block_count,ToBoolean,20,0
-block_count,ToBooleanForBaselineJump,0,1121
-block_count,ToBooleanForBaselineJump,1,1034
-block_count,ToBooleanForBaselineJump,2,628
-block_count,ToBooleanForBaselineJump,3,395
-block_count,ToBooleanForBaselineJump,4,394
-block_count,ToBooleanForBaselineJump,5,190
-block_count,ToBooleanForBaselineJump,6,189
-block_count,ToBooleanForBaselineJump,7,189
+block_count,ToBooleanForBaselineJump,0,1115
+block_count,ToBooleanForBaselineJump,1,1030
+block_count,ToBooleanForBaselineJump,2,625
+block_count,ToBooleanForBaselineJump,3,392
+block_count,ToBooleanForBaselineJump,4,392
+block_count,ToBooleanForBaselineJump,5,187
+block_count,ToBooleanForBaselineJump,6,186
+block_count,ToBooleanForBaselineJump,7,186
block_count,ToBooleanForBaselineJump,8,0
block_count,ToBooleanForBaselineJump,9,0
block_count,ToBooleanForBaselineJump,10,0
block_count,ToBooleanForBaselineJump,11,1
block_count,ToBooleanForBaselineJump,12,0
block_count,ToBooleanForBaselineJump,13,1
-block_count,ToBooleanForBaselineJump,14,203
+block_count,ToBooleanForBaselineJump,14,204
block_count,ToBooleanForBaselineJump,15,0
-block_count,ToBooleanForBaselineJump,16,233
-block_count,ToBooleanForBaselineJump,17,405
-block_count,ToBooleanForBaselineJump,18,87
-block_count,ToBooleanForBaselineJump,19,52
-block_count,ToBooleanForBaselineJump,20,34
+block_count,ToBooleanForBaselineJump,16,232
+block_count,ToBooleanForBaselineJump,17,404
+block_count,ToBooleanForBaselineJump,18,85
+block_count,ToBooleanForBaselineJump,19,51
+block_count,ToBooleanForBaselineJump,20,33
block_count,ToLength,0,2
block_count,ToLength,1,2
block_count,ToLength,2,0
@@ -48595,16 +48879,16 @@
block_count,NonPrimitiveToPrimitive_Default,10,181
block_count,NonPrimitiveToPrimitive_Default,11,0
block_count,NonPrimitiveToPrimitive_Default,12,181
-block_count,NonPrimitiveToPrimitive_Default,13,61
+block_count,NonPrimitiveToPrimitive_Default,13,60
block_count,NonPrimitiveToPrimitive_Default,14,120
-block_count,NonPrimitiveToPrimitive_Default,15,61
+block_count,NonPrimitiveToPrimitive_Default,15,60
block_count,NonPrimitiveToPrimitive_Default,16,0
-block_count,NonPrimitiveToPrimitive_Default,17,61
-block_count,NonPrimitiveToPrimitive_Default,18,61
+block_count,NonPrimitiveToPrimitive_Default,17,60
+block_count,NonPrimitiveToPrimitive_Default,18,60
block_count,NonPrimitiveToPrimitive_Default,19,0
block_count,NonPrimitiveToPrimitive_Default,20,0
block_count,NonPrimitiveToPrimitive_Default,21,0
-block_count,NonPrimitiveToPrimitive_Default,22,61
+block_count,NonPrimitiveToPrimitive_Default,22,60
block_count,NonPrimitiveToPrimitive_Default,23,59
block_count,NonPrimitiveToPrimitive_Default,24,1
block_count,NonPrimitiveToPrimitive_Default,25,59
@@ -48717,39 +49001,39 @@
block_count,NonPrimitiveToPrimitive_String,10,43
block_count,NonPrimitiveToPrimitive_String,11,0
block_count,NonPrimitiveToPrimitive_String,12,43
-block_count,NonPrimitiveToPrimitive_String,13,43
+block_count,NonPrimitiveToPrimitive_String,13,42
block_count,NonPrimitiveToPrimitive_String,14,0
-block_count,NonPrimitiveToPrimitive_String,15,43
+block_count,NonPrimitiveToPrimitive_String,15,42
block_count,NonPrimitiveToPrimitive_String,16,0
-block_count,NonPrimitiveToPrimitive_String,17,43
-block_count,NonPrimitiveToPrimitive_String,18,43
+block_count,NonPrimitiveToPrimitive_String,17,42
+block_count,NonPrimitiveToPrimitive_String,18,42
block_count,NonPrimitiveToPrimitive_String,19,0
block_count,NonPrimitiveToPrimitive_String,20,0
block_count,NonPrimitiveToPrimitive_String,21,0
-block_count,NonPrimitiveToPrimitive_String,22,43
-block_count,NonPrimitiveToPrimitive_String,23,43
+block_count,NonPrimitiveToPrimitive_String,22,42
+block_count,NonPrimitiveToPrimitive_String,23,42
block_count,NonPrimitiveToPrimitive_String,24,0
-block_count,NonPrimitiveToPrimitive_String,25,43
-block_count,NonPrimitiveToPrimitive_String,26,43
+block_count,NonPrimitiveToPrimitive_String,25,42
+block_count,NonPrimitiveToPrimitive_String,26,42
block_count,NonPrimitiveToPrimitive_String,27,0
-block_count,NonPrimitiveToPrimitive_String,28,43
+block_count,NonPrimitiveToPrimitive_String,28,42
block_count,NonPrimitiveToPrimitive_String,29,0
block_count,NonPrimitiveToPrimitive_String,30,0
block_count,NonPrimitiveToPrimitive_String,31,0
block_count,NonPrimitiveToPrimitive_String,32,0
block_count,NonPrimitiveToPrimitive_String,33,0
-block_count,NonPrimitiveToPrimitive_String,34,43
-block_count,NonPrimitiveToPrimitive_String,35,43
+block_count,NonPrimitiveToPrimitive_String,34,42
+block_count,NonPrimitiveToPrimitive_String,35,42
block_count,NonPrimitiveToPrimitive_String,36,0
-block_count,NonPrimitiveToPrimitive_String,37,43
-block_count,NonPrimitiveToPrimitive_String,38,43
-block_count,NonPrimitiveToPrimitive_String,39,43
+block_count,NonPrimitiveToPrimitive_String,37,42
+block_count,NonPrimitiveToPrimitive_String,38,42
+block_count,NonPrimitiveToPrimitive_String,39,42
block_count,NonPrimitiveToPrimitive_String,40,0
block_count,NonPrimitiveToPrimitive_String,41,0
block_count,NonPrimitiveToPrimitive_String,42,0
block_count,NonPrimitiveToPrimitive_String,43,0
block_count,NonPrimitiveToPrimitive_String,44,0
-block_count,NonPrimitiveToPrimitive_String,45,43
+block_count,NonPrimitiveToPrimitive_String,45,42
block_count,NonPrimitiveToPrimitive_String,46,0
block_count,NonPrimitiveToPrimitive_String,47,0
block_count,NonPrimitiveToPrimitive_String,48,0
@@ -49249,38 +49533,38 @@
block_count,DataViewPrototypeSetFloat64,114,0
block_count,DataViewPrototypeSetFloat64,115,0
block_count,DataViewPrototypeSetFloat64,116,0
-block_count,FunctionPrototypeHasInstance,0,97
+block_count,FunctionPrototypeHasInstance,0,95
block_count,FunctionPrototypeHasInstance,1,0
-block_count,FunctionPrototypeHasInstance,2,97
-block_count,FunctionPrototypeHasInstance,3,97
-block_count,FunctionPrototypeHasInstance,4,96
-block_count,FunctionPrototypeHasInstance,5,96
+block_count,FunctionPrototypeHasInstance,2,95
+block_count,FunctionPrototypeHasInstance,3,95
+block_count,FunctionPrototypeHasInstance,4,94
+block_count,FunctionPrototypeHasInstance,5,94
block_count,FunctionPrototypeHasInstance,6,0
-block_count,FunctionPrototypeHasInstance,7,96
+block_count,FunctionPrototypeHasInstance,7,94
block_count,FunctionPrototypeHasInstance,8,0
block_count,FunctionPrototypeHasInstance,9,0
block_count,FunctionPrototypeHasInstance,10,0
-block_count,FunctionPrototypeHasInstance,11,96
-block_count,FunctionPrototypeHasInstance,12,96
-block_count,FunctionPrototypeHasInstance,13,96
-block_count,FunctionPrototypeHasInstance,14,96
-block_count,FunctionPrototypeHasInstance,15,5
-block_count,FunctionPrototypeHasInstance,16,91
-block_count,FunctionPrototypeHasInstance,17,96
-block_count,FunctionPrototypeHasInstance,18,322
-block_count,FunctionPrototypeHasInstance,19,315
+block_count,FunctionPrototypeHasInstance,11,94
+block_count,FunctionPrototypeHasInstance,12,94
+block_count,FunctionPrototypeHasInstance,13,94
+block_count,FunctionPrototypeHasInstance,14,94
+block_count,FunctionPrototypeHasInstance,15,4
+block_count,FunctionPrototypeHasInstance,16,89
+block_count,FunctionPrototypeHasInstance,17,94
+block_count,FunctionPrototypeHasInstance,18,312
+block_count,FunctionPrototypeHasInstance,19,305
block_count,FunctionPrototypeHasInstance,20,7
block_count,FunctionPrototypeHasInstance,21,7
block_count,FunctionPrototypeHasInstance,22,7
block_count,FunctionPrototypeHasInstance,23,0
block_count,FunctionPrototypeHasInstance,24,0
block_count,FunctionPrototypeHasInstance,25,0
-block_count,FunctionPrototypeHasInstance,26,322
-block_count,FunctionPrototypeHasInstance,27,262
-block_count,FunctionPrototypeHasInstance,28,225
+block_count,FunctionPrototypeHasInstance,26,312
+block_count,FunctionPrototypeHasInstance,27,254
+block_count,FunctionPrototypeHasInstance,28,218
block_count,FunctionPrototypeHasInstance,29,36
-block_count,FunctionPrototypeHasInstance,30,59
-block_count,FunctionPrototypeHasInstance,31,96
+block_count,FunctionPrototypeHasInstance,30,57
+block_count,FunctionPrototypeHasInstance,31,94
block_count,FunctionPrototypeHasInstance,32,0
block_count,FunctionPrototypeHasInstance,33,0
block_count,FunctionPrototypeHasInstance,34,0
@@ -49353,19 +49637,19 @@
block_count,FastFunctionPrototypeBind,64,0
block_count,FastFunctionPrototypeBind,65,2
block_count,FastFunctionPrototypeBind,66,2
-block_count,ForInNext,0,7
+block_count,ForInNext,0,8
block_count,ForInNext,1,0
-block_count,ForInNext,2,7
-block_count,ForInNext,3,3
+block_count,ForInNext,2,8
+block_count,ForInNext,3,4
block_count,ForInNext,4,0
-block_count,ForInNext,5,3
+block_count,ForInNext,5,4
block_count,ForInNext,6,3
block_count,GetIteratorWithFeedback,0,0
block_count,GetIteratorWithFeedback,1,0
block_count,GetIteratorWithFeedback,2,0
block_count,GetIteratorBaseline,0,34
block_count,CallIteratorWithFeedback,0,35
-block_count,CallIteratorWithFeedback,1,35
+block_count,CallIteratorWithFeedback,1,34
block_count,CallIteratorWithFeedback,2,0
block_count,CallIteratorWithFeedback,3,0
block_count,CallIteratorWithFeedback,4,0
@@ -49430,7 +49714,7 @@
block_count,CallIteratorWithFeedback,63,0
block_count,CallIteratorWithFeedback,64,0
block_count,CallIteratorWithFeedback,65,0
-block_count,CallIteratorWithFeedback,66,35
+block_count,CallIteratorWithFeedback,66,34
block_count,CallIteratorWithFeedback,67,0
block_count,CallIteratorWithFeedback,68,35
block_count,CallIteratorWithFeedback,69,35
@@ -49525,7 +49809,7 @@
block_count,MathFloor,21,3
block_count,MathFloor,22,0
block_count,MathFloor,23,3
-block_count,MathFloor,24,3
+block_count,MathFloor,24,2
block_count,MathFloor,25,0
block_count,MathFloor,26,0
block_count,MathFloor,27,0
@@ -50219,7 +50503,7 @@
block_count,ParseInt,4,0
block_count,ParseInt,5,0
block_count,ParseInt,6,0
-block_count,ParseInt,7,136
+block_count,ParseInt,7,135
block_count,ParseInt,8,10
block_count,ParseInt,9,125
block_count,ParseInt,10,45
@@ -50268,7 +50552,7 @@
block_count,Add,19,0
block_count,Add,20,0
block_count,Add,21,0
-block_count,Add,22,16
+block_count,Add,22,15
block_count,Add,23,0
block_count,Add,24,0
block_count,Add,25,0
@@ -50287,8 +50571,8 @@
block_count,Add,38,0
block_count,Add,39,0
block_count,Add,40,0
-block_count,Add,41,16
-block_count,Add,42,16
+block_count,Add,41,15
+block_count,Add,42,15
block_count,Add,43,0
block_count,Add,44,0
block_count,Add,45,0
@@ -50719,9 +51003,9 @@
block_count,Equal,84,1
block_count,Equal,85,2
block_count,Equal,86,46
-block_count,StrictEqual,0,1398
-block_count,StrictEqual,1,1235
-block_count,StrictEqual,2,1205
+block_count,StrictEqual,0,1400
+block_count,StrictEqual,1,1236
+block_count,StrictEqual,2,1204
block_count,StrictEqual,3,1156
block_count,StrictEqual,4,1128
block_count,StrictEqual,5,172
@@ -50731,7 +51015,7 @@
block_count,StrictEqual,9,0
block_count,StrictEqual,10,956
block_count,StrictEqual,11,50
-block_count,StrictEqual,12,906
+block_count,StrictEqual,12,905
block_count,StrictEqual,13,541
block_count,StrictEqual,14,364
block_count,StrictEqual,15,27
@@ -50744,13 +51028,13 @@
block_count,StrictEqual,22,0
block_count,StrictEqual,23,0
block_count,StrictEqual,24,0
-block_count,StrictEqual,25,30
+block_count,StrictEqual,25,32
block_count,StrictEqual,26,0
block_count,StrictEqual,27,0
block_count,StrictEqual,28,0
block_count,StrictEqual,29,0
block_count,StrictEqual,30,0
-block_count,StrictEqual,31,29
+block_count,StrictEqual,31,31
block_count,StrictEqual,32,163
block_count,StrictEqual,33,160
block_count,StrictEqual,34,160
@@ -50758,7 +51042,7 @@
block_count,StrictEqual,36,0
block_count,StrictEqual,37,0
block_count,StrictEqual,38,2
-block_count,StrictEqual,39,329
+block_count,StrictEqual,39,331
block_count,StrictEqual,40,163
block_count,CreateObjectWithoutProperties,0,11
block_count,CreateObjectWithoutProperties,1,11
@@ -52158,24 +52442,24 @@
block_count,ReflectHas,3,0
block_count,ReflectHas,4,0
block_count,ReflectHas,5,0
-block_count,RegExpPrototypeExec,0,424
+block_count,RegExpPrototypeExec,0,423
block_count,RegExpPrototypeExec,1,0
-block_count,RegExpPrototypeExec,2,424
-block_count,RegExpPrototypeExec,3,424
-block_count,RegExpPrototypeExec,4,424
-block_count,RegExpPrototypeExec,5,424
-block_count,RegExpPrototypeExec,6,424
+block_count,RegExpPrototypeExec,2,423
+block_count,RegExpPrototypeExec,3,423
+block_count,RegExpPrototypeExec,4,423
+block_count,RegExpPrototypeExec,5,423
+block_count,RegExpPrototypeExec,6,423
block_count,RegExpPrototypeExec,7,0
-block_count,RegExpPrototypeExec,8,424
+block_count,RegExpPrototypeExec,8,423
block_count,RegExpPrototypeExec,9,0
block_count,RegExpPrototypeExec,10,0
-block_count,RegExpPrototypeExec,11,424
+block_count,RegExpPrototypeExec,11,423
block_count,RegExpPrototypeExec,12,0
-block_count,RegExpPrototypeExec,13,424
+block_count,RegExpPrototypeExec,13,423
block_count,RegExpPrototypeExec,14,0
-block_count,RegExpPrototypeExec,15,424
+block_count,RegExpPrototypeExec,15,423
block_count,RegExpPrototypeExec,16,0
-block_count,RegExpPrototypeExec,17,424
+block_count,RegExpPrototypeExec,17,423
block_count,RegExpPrototypeExec,18,397
block_count,RegExpPrototypeExec,19,331
block_count,RegExpPrototypeExec,20,65
@@ -52216,7 +52500,7 @@
block_count,RegExpPrototypeExec,55,0
block_count,RegExpPrototypeExec,56,0
block_count,RegExpPrototypeExec,57,384
-block_count,RegExpPrototypeExec,58,397
+block_count,RegExpPrototypeExec,58,396
block_count,RegExpPrototypeExec,59,397
block_count,RegExpPrototypeExec,60,0
block_count,RegExpPrototypeExec,61,331
@@ -52251,7 +52535,7 @@
block_count,RegExpPrototypeExec,90,0
block_count,RegExpPrototypeExec,91,331
block_count,RegExpPrototypeExec,92,98
-block_count,RegExpPrototypeExec,93,233
+block_count,RegExpPrototypeExec,93,232
block_count,RegExpPrototypeExec,94,0
block_count,RegExpPrototypeExec,95,0
block_count,RegExpPrototypeExec,96,0
@@ -52272,8 +52556,8 @@
block_count,RegExpPrototypeExec,111,150
block_count,RegExpPrototypeExec,112,0
block_count,RegExpPrototypeExec,113,150
-block_count,RegExpPrototypeExec,114,991
-block_count,RegExpPrototypeExec,115,840
+block_count,RegExpPrototypeExec,114,990
+block_count,RegExpPrototypeExec,115,839
block_count,RegExpPrototypeExec,116,150
block_count,RegExpPrototypeExec,117,150
block_count,RegExpPrototypeExec,118,150
@@ -52302,7 +52586,7 @@
block_count,RegExpPrototypeExec,141,26
block_count,RegExpPrototypeExec,142,26
block_count,RegExpPrototypeExec,143,2
-block_count,RegExpPrototypeExec,144,4
+block_count,RegExpPrototypeExec,144,5
block_count,RegExpPrototypeExec,145,2
block_count,RegExpPrototypeExec,146,2
block_count,RegExpPrototypeExec,147,0
@@ -52490,7 +52774,7 @@
block_count,RegExpPrototypeExec,329,172
block_count,RegExpPrototypeExec,330,97
block_count,RegExpPrototypeExec,331,858
-block_count,RegExpPrototypeExec,332,352
+block_count,RegExpPrototypeExec,332,351
block_count,RegExpPrototypeExec,333,506
block_count,RegExpPrototypeExec,334,858
block_count,RegExpPrototypeExec,335,760
@@ -52606,7 +52890,7 @@
block_count,RegExpPrototypeExec,445,0
block_count,RegExpPrototypeExec,446,172
block_count,RegExpPrototypeExec,447,251
-block_count,RegExpPrototypeExec,448,424
+block_count,RegExpPrototypeExec,448,423
block_count,RegExpMatchFast,0,1252
block_count,RegExpMatchFast,1,2
block_count,RegExpMatchFast,2,0
@@ -53074,23 +53358,23 @@
block_count,RegExpMatchFast,464,0
block_count,RegExpMatchFast,465,1
block_count,RegExpMatchFast,466,1
-block_count,RegExpMatchFast,467,1250
-block_count,RegExpMatchFast,468,1250
-block_count,RegExpMatchFast,469,1250
+block_count,RegExpMatchFast,467,1249
+block_count,RegExpMatchFast,468,1249
+block_count,RegExpMatchFast,469,1249
block_count,RegExpMatchFast,470,0
-block_count,RegExpMatchFast,471,1250
-block_count,RegExpMatchFast,472,1250
-block_count,RegExpMatchFast,473,1250
+block_count,RegExpMatchFast,471,1249
+block_count,RegExpMatchFast,472,1249
+block_count,RegExpMatchFast,473,1249
block_count,RegExpMatchFast,474,0
block_count,RegExpMatchFast,475,0
block_count,RegExpMatchFast,476,0
-block_count,RegExpMatchFast,477,1250
+block_count,RegExpMatchFast,477,1249
block_count,RegExpMatchFast,478,1092
-block_count,RegExpMatchFast,479,2185
+block_count,RegExpMatchFast,479,2184
block_count,RegExpMatchFast,480,0
block_count,RegExpMatchFast,481,0
block_count,RegExpMatchFast,482,0
-block_count,RegExpMatchFast,483,1072
+block_count,RegExpMatchFast,483,1071
block_count,RegExpMatchFast,484,20
block_count,RegExpMatchFast,485,1092
block_count,RegExpMatchFast,486,0
@@ -53115,24 +53399,24 @@
block_count,RegExpMatchFast,505,0
block_count,RegExpMatchFast,506,0
block_count,RegExpMatchFast,507,157
-block_count,RegExpMatchFast,508,1250
-block_count,RegExpMatchFast,509,1250
+block_count,RegExpMatchFast,508,1249
+block_count,RegExpMatchFast,509,1249
block_count,RegExpMatchFast,510,0
-block_count,RegExpMatchFast,511,1250
+block_count,RegExpMatchFast,511,1249
block_count,RegExpMatchFast,512,0
block_count,RegExpMatchFast,513,0
block_count,RegExpMatchFast,514,0
block_count,RegExpMatchFast,515,0
-block_count,RegExpMatchFast,516,1250
-block_count,RegExpMatchFast,517,1250
+block_count,RegExpMatchFast,516,1249
+block_count,RegExpMatchFast,517,1249
block_count,RegExpMatchFast,518,0
block_count,RegExpMatchFast,519,0
block_count,RegExpMatchFast,520,0
-block_count,RegExpMatchFast,521,1250
+block_count,RegExpMatchFast,521,1249
block_count,RegExpMatchFast,522,127
block_count,RegExpMatchFast,523,1122
-block_count,RegExpMatchFast,524,1250
-block_count,RegExpMatchFast,525,1250
+block_count,RegExpMatchFast,524,1249
+block_count,RegExpMatchFast,525,1249
block_count,RegExpMatchFast,526,0
block_count,RegExpMatchFast,527,0
block_count,RegExpMatchFast,528,0
@@ -53148,7 +53432,7 @@
block_count,RegExpMatchFast,538,0
block_count,RegExpMatchFast,539,0
block_count,RegExpMatchFast,540,0
-block_count,RegExpMatchFast,541,1250
+block_count,RegExpMatchFast,541,1249
block_count,RegExpMatchFast,542,194
block_count,RegExpMatchFast,543,1055
block_count,RegExpMatchFast,544,0
@@ -53505,7 +53789,7 @@
block_count,RegExpMatchFast,895,0
block_count,RegExpMatchFast,896,194
block_count,RegExpMatchFast,897,1055
-block_count,RegExpMatchFast,898,1250
+block_count,RegExpMatchFast,898,1249
block_count,RegExpReplace,0,199
block_count,RegExpReplace,1,199
block_count,RegExpReplace,2,184
@@ -53548,7 +53832,7 @@
block_count,RegExpReplace,39,797
block_count,RegExpReplace,40,797
block_count,RegExpReplace,41,797
-block_count,RegExpReplace,42,794
+block_count,RegExpReplace,42,793
block_count,RegExpReplace,43,398
block_count,RegExpReplace,44,0
block_count,RegExpReplace,45,0
@@ -53566,7 +53850,7 @@
block_count,RegExpReplace,57,395
block_count,RegExpReplace,58,0
block_count,RegExpReplace,59,0
-block_count,RegExpReplace,60,794
+block_count,RegExpReplace,60,793
block_count,RegExpReplace,61,3
block_count,RegExpReplace,62,0
block_count,RegExpReplace,63,0
@@ -53835,19 +54119,19 @@
block_count,RegExpReplace,326,0
block_count,RegExpReplace,327,32
block_count,RegExpReplace,328,13
-block_count,RegExpReplace,329,138
+block_count,RegExpReplace,329,137
block_count,RegExpReplace,330,85
block_count,RegExpReplace,331,52
-block_count,RegExpReplace,332,138
+block_count,RegExpReplace,332,137
block_count,RegExpReplace,333,0
-block_count,RegExpReplace,334,138
-block_count,RegExpReplace,335,138
-block_count,RegExpReplace,336,138
-block_count,RegExpReplace,337,138
+block_count,RegExpReplace,334,137
+block_count,RegExpReplace,335,137
+block_count,RegExpReplace,336,137
+block_count,RegExpReplace,337,137
block_count,RegExpReplace,338,0
block_count,RegExpReplace,339,0
block_count,RegExpReplace,340,0
-block_count,RegExpReplace,341,138
+block_count,RegExpReplace,341,137
block_count,RegExpReplace,342,196
block_count,RegExpReplace,343,145
block_count,RegExpReplace,344,145
@@ -54070,7 +54354,7 @@
block_count,RegExpReplace,561,0
block_count,RegExpReplace,562,0
block_count,RegExpReplace,563,50
-block_count,RegExpReplace,564,138
+block_count,RegExpReplace,564,137
block_count,RegExpReplace,565,50
block_count,RegExpReplace,566,0
block_count,RegExpReplace,567,50
@@ -54081,17 +54365,17 @@
block_count,RegExpReplace,572,50
block_count,RegExpReplace,573,0
block_count,RegExpReplace,574,50
-block_count,RegExpReplace,575,57
+block_count,RegExpReplace,575,56
block_count,RegExpReplace,576,6
block_count,RegExpReplace,577,50
block_count,RegExpReplace,578,50
block_count,RegExpReplace,579,50
block_count,RegExpReplace,580,0
block_count,RegExpReplace,581,87
-block_count,RegExpReplace,582,138
-block_count,RegExpReplace,583,138
+block_count,RegExpReplace,582,137
+block_count,RegExpReplace,583,137
block_count,RegExpReplace,584,0
-block_count,RegExpReplace,585,138
+block_count,RegExpReplace,585,137
block_count,RegExpReplace,586,0
block_count,RegExpPrototypeReplace,0,0
block_count,RegExpPrototypeReplace,1,0
@@ -54388,8 +54672,8 @@
block_count,RegExpSplit,21,52
block_count,RegExpSplit,22,1
block_count,RegExpSplit,23,2
-block_count,RegExpSplit,24,1
-block_count,RegExpSplit,25,1
+block_count,RegExpSplit,24,0
+block_count,RegExpSplit,25,0
block_count,RegExpSplit,26,0
block_count,RegExpSplit,27,0
block_count,RegExpSplit,28,0
@@ -55152,7 +55436,7 @@
block_count,RegExpPrototypeTestFast,94,132
block_count,RegExpPrototypeTestFast,95,0
block_count,RegExpPrototypeTestFast,96,132
-block_count,RegExpPrototypeTestFast,97,1712
+block_count,RegExpPrototypeTestFast,97,1711
block_count,RegExpPrototypeTestFast,98,1579
block_count,RegExpPrototypeTestFast,99,132
block_count,RegExpPrototypeTestFast,100,132
@@ -56186,16 +56470,16 @@
block_count,StringPrototypeSlice,66,10
block_count,StringPrototypeSlice,67,10
block_count,StringPrototypeSlice,68,7
-block_count,StringPrototypeSlice,69,4
-block_count,StringPrototypeSlice,70,9
+block_count,StringPrototypeSlice,69,5
+block_count,StringPrototypeSlice,70,10
block_count,StringPrototypeSlice,71,1
-block_count,StringPrototypeSlice,72,0
+block_count,StringPrototypeSlice,72,1
block_count,StringPrototypeSlice,73,0
block_count,StringPrototypeSlice,74,3
block_count,StringPrototypeSlice,75,0
-block_count,StringPrototypeSlice,76,4
+block_count,StringPrototypeSlice,76,5
block_count,StringPrototypeSlice,77,0
-block_count,StringPrototypeSlice,78,4
+block_count,StringPrototypeSlice,78,5
block_count,StringPrototypeSlice,79,0
block_count,StringPrototypeSlice,80,2
block_count,StringPrototypeSlice,81,7
@@ -56373,7 +56657,7 @@
block_count,StringPrototypeSlice,253,0
block_count,StringPrototypeSlice,254,2
block_count,StringPrototypeSlice,255,1
-block_count,StringPrototypeSlice,256,2
+block_count,StringPrototypeSlice,256,3
block_count,StringPrototypeSlice,257,1
block_count,StringPrototypeSlice,258,1
block_count,StringPrototypeSlice,259,0
@@ -58592,7 +58876,7 @@
block_count,CreateTypedArray,676,0
block_count,CreateTypedArray,677,19
block_count,CreateTypedArray,678,77
-block_count,CreateTypedArray,679,58
+block_count,CreateTypedArray,679,57
block_count,CreateTypedArray,680,19
block_count,CreateTypedArray,681,19
block_count,CreateTypedArray,682,19
@@ -59574,12 +59858,12 @@
block_count,NewRestArgumentsElements,23,0
block_count,NewRestArgumentsElements,24,0
block_count,NewRestArgumentsElements,25,0
-block_count,FastNewSloppyArguments,0,6
-block_count,FastNewSloppyArguments,1,6
-block_count,FastNewSloppyArguments,2,6
+block_count,FastNewSloppyArguments,0,5
+block_count,FastNewSloppyArguments,1,5
+block_count,FastNewSloppyArguments,2,5
block_count,FastNewSloppyArguments,3,0
-block_count,FastNewSloppyArguments,4,6
-block_count,FastNewSloppyArguments,5,6
+block_count,FastNewSloppyArguments,4,5
+block_count,FastNewSloppyArguments,5,5
block_count,FastNewSloppyArguments,6,0
block_count,FastNewSloppyArguments,7,0
block_count,FastNewSloppyArguments,8,0
@@ -59621,7 +59905,7 @@
block_count,FastNewSloppyArguments,44,0
block_count,FastNewSloppyArguments,45,0
block_count,FastNewSloppyArguments,46,2
-block_count,FastNewSloppyArguments,47,9
+block_count,FastNewSloppyArguments,47,8
block_count,FastNewSloppyArguments,48,6
block_count,FastNewSloppyArguments,49,6
block_count,FastNewSloppyArguments,50,6
@@ -59634,7 +59918,7 @@
block_count,FastNewSloppyArguments,57,0
block_count,FastNewSloppyArguments,58,2
block_count,FastNewSloppyArguments,59,5
-block_count,FastNewSloppyArguments,60,6
+block_count,FastNewSloppyArguments,60,5
block_count,FastNewSloppyArguments,61,0
block_count,FastNewSloppyArguments,62,0
block_count,FastNewSloppyArguments,63,0
@@ -59655,7 +59939,7 @@
block_count,FastNewSloppyArguments,78,0
block_count,FastNewSloppyArguments,79,0
block_count,FastNewSloppyArguments,80,0
-block_count,FastNewSloppyArguments,81,1
+block_count,FastNewSloppyArguments,81,2
block_count,FastNewSloppyArguments,82,1
block_count,FastNewSloppyArguments,83,1
block_count,FastNewSloppyArguments,84,0
@@ -59686,7 +59970,7 @@
block_count,FastNewStrictArguments,10,0
block_count,FastNewStrictArguments,11,0
block_count,FastNewStrictArguments,12,3
-block_count,FastNewStrictArguments,13,10
+block_count,FastNewStrictArguments,13,9
block_count,FastNewStrictArguments,14,6
block_count,FastNewStrictArguments,15,6
block_count,FastNewStrictArguments,16,6
@@ -59725,11 +60009,11 @@
block_count,FastNewRestArguments,18,0
block_count,FastNewRestArguments,19,1
block_count,FastNewRestArguments,20,4
-block_count,FastNewRestArguments,21,3
-block_count,FastNewRestArguments,22,3
-block_count,FastNewRestArguments,23,3
+block_count,FastNewRestArguments,21,2
+block_count,FastNewRestArguments,22,2
+block_count,FastNewRestArguments,23,2
block_count,FastNewRestArguments,24,0
-block_count,FastNewRestArguments,25,3
+block_count,FastNewRestArguments,25,2
block_count,FastNewRestArguments,26,0
block_count,FastNewRestArguments,27,1
block_count,FastNewRestArguments,28,0
@@ -59743,12 +60027,12 @@
block_count,FastNewRestArguments,36,0
block_count,FastNewRestArguments,37,0
block_count,FastNewRestArguments,38,0
-block_count,LoadFromContextCell,0,31
+block_count,LoadFromContextCell,0,30
block_count,LoadFromContextCell,1,0
-block_count,LoadFromContextCell,2,31
-block_count,LoadFromContextCell,3,31
-block_count,LoadFromContextCell,4,31
-block_count,LoadFromContextCell,5,31
+block_count,LoadFromContextCell,2,30
+block_count,LoadFromContextCell,3,30
+block_count,LoadFromContextCell,4,30
+block_count,LoadFromContextCell,5,30
block_count,LoadFromContextCell,6,8
block_count,LoadFromContextCell,7,0
block_count,LoadFromContextCell,8,0
@@ -59778,7 +60062,7 @@
block_count,StoreCurrentContextElementBaseline,14,5
block_count,StoreCurrentContextElementBaseline,15,4
block_count,StoreCurrentContextElementBaseline,16,4
-block_count,StoreCurrentContextElementBaseline,17,3
+block_count,StoreCurrentContextElementBaseline,17,4
block_count,StoreCurrentContextElementBaseline,18,3
block_count,StoreCurrentContextElementBaseline,19,0
block_count,StoreCurrentContextElementBaseline,20,0
@@ -60061,10 +60345,10 @@
block_count,StringIndexOf,7,0
block_count,StringIndexOf,8,371
block_count,StringIndexOf,9,184
-block_count,StringIndexOf,10,215
-block_count,StringIndexOf,11,50
+block_count,StringIndexOf,10,214
+block_count,StringIndexOf,11,49
block_count,StringIndexOf,12,30
-block_count,StringIndexOf,13,29
+block_count,StringIndexOf,13,28
block_count,StringIndexOf,14,1
block_count,StringIndexOf,15,0
block_count,StringIndexOf,16,0
@@ -60206,10 +60490,10 @@
block_count,StringIndexOf,152,0
block_count,StringIndexOf,153,164
block_count,StringIndexOf,154,14
-block_count,StringIndexOf,155,150
+block_count,StringIndexOf,155,149
block_count,StringIndexOf,156,22
block_count,StringIndexOf,157,127
-block_count,StringIndexOf,158,150
+block_count,StringIndexOf,158,149
block_count,StringIndexOf,159,164
block_count,StringIndexOf,160,184
block_count,StringIndexOf,161,187
@@ -60249,14 +60533,14 @@
block_count,SortCompareDefault,9,3
block_count,SortCompareDefault,10,0
block_count,SortCompareDefault,11,3
-block_count,SortCompareUserFn,0,753
+block_count,SortCompareUserFn,0,752
block_count,SortCompareUserFn,1,0
block_count,SortCompareUserFn,2,0
block_count,SortCompareUserFn,3,0
block_count,SortCompareUserFn,4,0
-block_count,SortCompareUserFn,5,753
-block_count,SortCompareUserFn,6,753
-block_count,SortCompareUserFn,7,753
+block_count,SortCompareUserFn,5,752
+block_count,SortCompareUserFn,6,752
+block_count,SortCompareUserFn,7,752
block_count,Copy,0,2
block_count,Copy,1,1
block_count,Copy,2,141
@@ -60432,7 +60716,7 @@
block_count,MergeAt,155,112
block_count,MergeAt,156,112
block_count,MergeAt,157,0
-block_count,MergeAt,158,112
+block_count,MergeAt,158,111
block_count,MergeAt,159,112
block_count,MergeAt,160,0
block_count,MergeAt,161,0
@@ -60696,7 +60980,7 @@
block_count,ArrayTimSort,29,0
block_count,ArrayTimSort,30,282
block_count,ArrayTimSort,31,38
-block_count,ArrayTimSort,32,244
+block_count,ArrayTimSort,32,243
block_count,ArrayTimSort,33,0
block_count,ArrayTimSort,34,0
block_count,ArrayTimSort,35,0
@@ -60775,23 +61059,23 @@
block_count,ArrayTimSort,108,46
block_count,ArrayTimSort,109,46
block_count,ArrayTimSort,110,243
-block_count,ArrayTimSort,111,197
-block_count,ArrayTimSort,112,197
+block_count,ArrayTimSort,111,196
+block_count,ArrayTimSort,112,196
block_count,ArrayTimSort,113,3
block_count,ArrayTimSort,114,193
-block_count,ArrayTimSort,115,197
+block_count,ArrayTimSort,115,196
block_count,ArrayTimSort,116,0
block_count,ArrayTimSort,117,0
block_count,ArrayTimSort,118,0
-block_count,ArrayTimSort,119,197
+block_count,ArrayTimSort,119,196
block_count,ArrayTimSort,120,92
block_count,ArrayTimSort,121,104
block_count,ArrayTimSort,122,92
block_count,ArrayTimSort,123,104
-block_count,ArrayTimSort,124,197
+block_count,ArrayTimSort,124,196
block_count,ArrayTimSort,125,0
block_count,ArrayTimSort,126,46
-block_count,ArrayTimSort,127,521
+block_count,ArrayTimSort,127,520
block_count,ArrayTimSort,128,474
block_count,ArrayTimSort,129,474
block_count,ArrayTimSort,130,474
@@ -60865,8 +61149,8 @@
block_count,ArrayTimSort,198,0
block_count,ArrayTimSort,199,38
block_count,ArrayTimSort,200,192
-block_count,ArrayTimSort,201,154
-block_count,ArrayTimSort,202,154
+block_count,ArrayTimSort,201,153
+block_count,ArrayTimSort,202,153
block_count,ArrayTimSort,203,423
block_count,ArrayTimSort,204,269
block_count,ArrayTimSort,205,269
@@ -60883,15 +61167,15 @@
block_count,ArrayTimSort,216,140
block_count,ArrayTimSort,217,269
block_count,ArrayTimSort,218,0
-block_count,ArrayTimSort,219,154
+block_count,ArrayTimSort,219,153
block_count,ArrayTimSort,220,334
block_count,ArrayTimSort,221,180
block_count,ArrayTimSort,222,180
block_count,ArrayTimSort,223,180
block_count,ArrayTimSort,224,0
block_count,ArrayTimSort,225,0
-block_count,ArrayTimSort,226,154
-block_count,ArrayTimSort,227,154
+block_count,ArrayTimSort,226,153
+block_count,ArrayTimSort,227,153
block_count,ArrayTimSort,228,0
block_count,ArrayTimSort,229,0
block_count,ArrayTimSort,230,38
@@ -60941,8 +61225,8 @@
block_count,ArrayTimSort,274,0
block_count,ArrayTimSort,275,38
block_count,ArrayTimSort,276,282
-block_count,ArrayTimSort,277,244
-block_count,ArrayTimSort,278,244
+block_count,ArrayTimSort,277,243
+block_count,ArrayTimSort,278,243
block_count,ArrayTimSort,279,0
block_count,ArrayTimSort,280,38
block_count,ArrayTimSort,281,0
@@ -60973,10 +61257,10 @@
block_count,ArrayTimSort,306,0
block_count,ArrayTimSort,307,0
block_count,ArrayTimSort,308,38
-block_count,ArrayTimSort,309,244
-block_count,ArrayTimSort,310,244
-block_count,ArrayTimSort,311,244
-block_count,ArrayTimSort,312,244
+block_count,ArrayTimSort,309,243
+block_count,ArrayTimSort,310,243
+block_count,ArrayTimSort,311,243
+block_count,ArrayTimSort,312,243
block_count,ArrayTimSort,313,0
block_count,ArrayTimSort,314,0
block_count,ArrayTimSort,315,0
@@ -61001,13 +61285,13 @@
block_count,ArrayTimSort,334,0
block_count,ArrayTimSort,335,0
block_count,ArrayTimSort,336,0
-block_count,ArrayTimSort,337,244
-block_count,ArrayTimSort,338,244
+block_count,ArrayTimSort,337,243
+block_count,ArrayTimSort,338,243
block_count,ArrayTimSort,339,0
block_count,ArrayTimSort,340,0
-block_count,ArrayTimSort,341,244
+block_count,ArrayTimSort,341,243
block_count,ArrayTimSort,342,0
-block_count,ArrayTimSort,343,244
+block_count,ArrayTimSort,343,243
block_count,ArrayPrototypeSort,0,39
block_count,ArrayPrototypeSort,1,0
block_count,ArrayPrototypeSort,2,39
@@ -61127,11 +61411,11 @@
block_count,ArrayPrototypeSort,116,0
block_count,ArrayPrototypeSort,117,38
block_count,ArrayPrototypeSort,118,38
-block_count,StringFastLocaleCompare,0,1432
-block_count,StringFastLocaleCompare,1,1432
-block_count,StringFastLocaleCompare,2,1432
-block_count,StringFastLocaleCompare,3,1348
-block_count,StringFastLocaleCompare,4,1348
+block_count,StringFastLocaleCompare,0,1431
+block_count,StringFastLocaleCompare,1,1431
+block_count,StringFastLocaleCompare,2,1431
+block_count,StringFastLocaleCompare,3,1347
+block_count,StringFastLocaleCompare,4,1347
block_count,StringFastLocaleCompare,5,0
block_count,StringFastLocaleCompare,6,0
block_count,StringFastLocaleCompare,7,0
@@ -61334,16 +61618,16 @@
block_count,StringFastLocaleCompare,204,0
block_count,StringFastLocaleCompare,205,0
block_count,StringFastLocaleCompare,206,0
-block_count,StringFastLocaleCompare,207,1348
-block_count,StringFastLocaleCompare,208,1348
-block_count,StringFastLocaleCompare,209,1348
+block_count,StringFastLocaleCompare,207,1347
+block_count,StringFastLocaleCompare,208,1347
+block_count,StringFastLocaleCompare,209,1347
block_count,StringFastLocaleCompare,210,0
block_count,StringFastLocaleCompare,211,0
block_count,StringFastLocaleCompare,212,0
-block_count,StringFastLocaleCompare,213,1348
-block_count,StringFastLocaleCompare,214,1348
-block_count,StringFastLocaleCompare,215,1348
-block_count,StringFastLocaleCompare,216,1348
+block_count,StringFastLocaleCompare,213,1347
+block_count,StringFastLocaleCompare,214,1347
+block_count,StringFastLocaleCompare,215,1347
+block_count,StringFastLocaleCompare,216,1347
block_count,StringFastLocaleCompare,217,0
block_count,StringFastLocaleCompare,218,0
block_count,StringFastLocaleCompare,219,0
@@ -61435,18 +61719,18 @@
block_count,StringFastLocaleCompare,305,0
block_count,StringFastLocaleCompare,306,0
block_count,StringFastLocaleCompare,307,0
-block_count,StringFastLocaleCompare,308,1348
-block_count,StringFastLocaleCompare,309,1348
-block_count,StringFastLocaleCompare,310,1348
+block_count,StringFastLocaleCompare,308,1347
+block_count,StringFastLocaleCompare,309,1347
+block_count,StringFastLocaleCompare,310,1347
block_count,StringFastLocaleCompare,311,0
block_count,StringFastLocaleCompare,312,0
block_count,StringFastLocaleCompare,313,0
-block_count,StringFastLocaleCompare,314,1348
+block_count,StringFastLocaleCompare,314,1347
block_count,StringFastLocaleCompare,315,922
block_count,StringFastLocaleCompare,316,922
-block_count,StringFastLocaleCompare,317,983
-block_count,StringFastLocaleCompare,318,983
-block_count,StringFastLocaleCompare,319,983
+block_count,StringFastLocaleCompare,317,982
+block_count,StringFastLocaleCompare,318,982
+block_count,StringFastLocaleCompare,319,982
block_count,StringFastLocaleCompare,320,60
block_count,StringFastLocaleCompare,321,922
block_count,StringFastLocaleCompare,322,0
@@ -61454,15 +61738,15 @@
block_count,StringFastLocaleCompare,324,0
block_count,StringFastLocaleCompare,325,0
block_count,StringFastLocaleCompare,326,425
-block_count,StringFastLocaleCompare,327,1348
-block_count,StringFastLocaleCompare,328,6600
-block_count,StringFastLocaleCompare,329,6589
-block_count,StringFastLocaleCompare,330,6589
-block_count,StringFastLocaleCompare,331,6532
-block_count,StringFastLocaleCompare,332,6532
-block_count,StringFastLocaleCompare,333,5252
-block_count,StringFastLocaleCompare,334,1280
-block_count,StringFastLocaleCompare,335,843
+block_count,StringFastLocaleCompare,327,1347
+block_count,StringFastLocaleCompare,328,6597
+block_count,StringFastLocaleCompare,329,6586
+block_count,StringFastLocaleCompare,330,6586
+block_count,StringFastLocaleCompare,331,6529
+block_count,StringFastLocaleCompare,332,6529
+block_count,StringFastLocaleCompare,333,5249
+block_count,StringFastLocaleCompare,334,1279
+block_count,StringFastLocaleCompare,335,842
block_count,StringFastLocaleCompare,336,436
block_count,StringFastLocaleCompare,337,0
block_count,StringFastLocaleCompare,338,56
@@ -61485,7 +61769,7 @@
block_count,StringFastLocaleCompare,355,0
block_count,StringFastLocaleCompare,356,0
block_count,StringFastLocaleCompare,357,0
-block_count,StringFastLocaleCompare,358,84
+block_count,StringFastLocaleCompare,358,83
block_count,JSToWasmWrapper,0,0
block_count,JSToWasmWrapper,1,0
block_count,JSToWasmWrapper,2,0
@@ -62091,7 +62375,7 @@
block_count,StringPrototypeToLowerCaseIntl,8,1
block_count,StringToLowerCaseIntl,0,147
block_count,StringToLowerCaseIntl,1,30
-block_count,StringToLowerCaseIntl,2,56
+block_count,StringToLowerCaseIntl,2,55
block_count,StringToLowerCaseIntl,3,4
block_count,StringToLowerCaseIntl,4,0
block_count,StringToLowerCaseIntl,5,4
@@ -62131,14 +62415,14 @@
block_count,StringToLowerCaseIntl,39,0
block_count,StringToLowerCaseIntl,40,0
block_count,StringToLowerCaseIntl,41,0
-block_count,WideHandler,0,74
+block_count,WideHandler,0,73
block_count,ExtraWideHandler,0,18
block_count,LdarHandler,0,251
block_count,LdaZeroHandler,0,27
block_count,LdaZeroHandler,1,21
block_count,LdaZeroHandler,2,6
-block_count,LdaSmiHandler,0,26
-block_count,LdaSmiHandler,1,17
+block_count,LdaSmiHandler,0,27
+block_count,LdaSmiHandler,1,18
block_count,LdaSmiHandler,2,9
block_count,LdaUndefinedHandler,0,13
block_count,LdaUndefinedHandler,1,13
@@ -62154,7 +62438,7 @@
block_count,LdaConstantHandler,0,23
block_count,LdaConstantHandler,1,13
block_count,LdaConstantHandler,2,10
-block_count,LdaContextSlotNoCellHandler,0,2
+block_count,LdaContextSlotNoCellHandler,0,1
block_count,LdaContextSlotNoCellHandler,1,1
block_count,LdaContextSlotNoCellHandler,2,2
block_count,LdaContextSlotNoCellHandler,3,2
@@ -62162,9 +62446,9 @@
block_count,LdaContextSlotNoCellHandler,5,1
block_count,LdaContextSlotNoCellHandler,6,0
block_count,LdaContextSlotNoCellHandler,7,0
-block_count,LdaContextSlotNoCellHandler,8,2
+block_count,LdaContextSlotNoCellHandler,8,1
block_count,LdaContextSlotNoCellHandler,9,0
-block_count,LdaContextSlotNoCellHandler,10,2
+block_count,LdaContextSlotNoCellHandler,10,1
block_count,LdaContextSlotNoCellHandler,11,0
block_count,LdaContextSlotNoCellHandler,12,1
block_count,LdaContextSlotHandler,0,0
@@ -62242,10 +62526,10 @@
block_count,LdaImmutableCurrentContextSlotHandler,0,36
block_count,LdaImmutableCurrentContextSlotHandler,1,0
block_count,LdaImmutableCurrentContextSlotHandler,2,36
-block_count,LdaImmutableCurrentContextSlotHandler,3,6
+block_count,LdaImmutableCurrentContextSlotHandler,3,5
block_count,LdaImmutableCurrentContextSlotHandler,4,30
-block_count,StarHandler,0,35
-block_count,MovHandler,0,44
+block_count,StarHandler,0,37
+block_count,MovHandler,0,45
block_count,PushContextHandler,0,3
block_count,PopContextHandler,0,0
block_count,TestReferenceEqualHandler,0,1
@@ -62318,13 +62602,13 @@
block_count,TestTypeOfHandler,48,1
block_count,TestTypeOfHandler,49,0
block_count,TestTypeOfHandler,50,1
-block_count,LdaGlobalHandler,0,54
-block_count,LdaGlobalHandler,1,44
-block_count,LdaGlobalHandler,2,43
-block_count,LdaGlobalHandler,3,43
-block_count,LdaGlobalHandler,4,43
-block_count,LdaGlobalHandler,5,13
-block_count,LdaGlobalHandler,6,29
+block_count,LdaGlobalHandler,0,55
+block_count,LdaGlobalHandler,1,45
+block_count,LdaGlobalHandler,2,44
+block_count,LdaGlobalHandler,3,44
+block_count,LdaGlobalHandler,4,44
+block_count,LdaGlobalHandler,5,14
+block_count,LdaGlobalHandler,6,30
block_count,LdaGlobalHandler,7,0
block_count,LdaGlobalHandler,8,0
block_count,LdaGlobalHandler,9,0
@@ -62574,7 +62858,7 @@
block_count,LdaGlobalHandler,253,1
block_count,LdaGlobalHandler,254,1
block_count,LdaGlobalHandler,255,1
-block_count,LdaGlobalHandler,256,1
+block_count,LdaGlobalHandler,256,0
block_count,LdaGlobalHandler,257,0
block_count,LdaGlobalHandler,258,0
block_count,LdaGlobalHandler,259,0
@@ -62586,7 +62870,7 @@
block_count,LdaGlobalHandler,265,0
block_count,LdaGlobalHandler,266,0
block_count,LdaGlobalHandler,267,0
-block_count,LdaGlobalHandler,268,1
+block_count,LdaGlobalHandler,268,0
block_count,LdaGlobalHandler,269,0
block_count,LdaGlobalHandler,270,0
block_count,LdaGlobalHandler,271,0
@@ -63567,11 +63851,11 @@
block_count,StaLookupSlotHandler,3,0
block_count,StaLookupSlotHandler,4,0
block_count,StaLookupSlotHandler,5,0
-block_count,GetNamedPropertyHandler,0,163
-block_count,GetNamedPropertyHandler,1,135
-block_count,GetNamedPropertyHandler,2,135
+block_count,GetNamedPropertyHandler,0,162
+block_count,GetNamedPropertyHandler,1,134
+block_count,GetNamedPropertyHandler,2,134
block_count,GetNamedPropertyHandler,3,0
-block_count,GetNamedPropertyHandler,4,135
+block_count,GetNamedPropertyHandler,4,134
block_count,GetNamedPropertyHandler,5,13
block_count,GetNamedPropertyHandler,6,0
block_count,GetNamedPropertyHandler,7,13
@@ -63582,8 +63866,8 @@
block_count,GetNamedPropertyHandler,12,5
block_count,GetNamedPropertyHandler,13,0
block_count,GetNamedPropertyHandler,14,7
-block_count,GetNamedPropertyHandler,15,121
-block_count,GetNamedPropertyHandler,16,128
+block_count,GetNamedPropertyHandler,15,120
+block_count,GetNamedPropertyHandler,16,127
block_count,GetNamedPropertyHandler,17,41
block_count,GetNamedPropertyHandler,18,41
block_count,GetNamedPropertyHandler,19,37
@@ -63676,8 +63960,8 @@
block_count,GetNamedPropertyHandler,106,0
block_count,GetNamedPropertyHandler,107,0
block_count,GetNamedPropertyHandler,108,0
-block_count,GetNamedPropertyHandler,109,87
-block_count,GetNamedPropertyHandler,110,124
+block_count,GetNamedPropertyHandler,109,86
+block_count,GetNamedPropertyHandler,110,123
block_count,GetNamedPropertyHandler,111,38
block_count,GetNamedPropertyHandler,112,7
block_count,GetNamedPropertyHandler,113,6
@@ -63774,11 +64058,11 @@
block_count,GetNamedPropertyHandler,204,0
block_count,GetNamedPropertyHandler,205,1
block_count,GetNamedPropertyHandler,206,31
-block_count,GetNamedPropertyHandler,207,86
-block_count,GetNamedPropertyHandler,208,86
+block_count,GetNamedPropertyHandler,207,85
+block_count,GetNamedPropertyHandler,208,85
block_count,GetNamedPropertyHandler,209,16
block_count,GetNamedPropertyHandler,210,69
-block_count,GetNamedPropertyHandler,211,86
+block_count,GetNamedPropertyHandler,211,85
block_count,GetNamedPropertyHandler,212,81
block_count,GetNamedPropertyHandler,213,4
block_count,GetNamedPropertyHandler,214,4
@@ -63839,13 +64123,13 @@
block_count,GetNamedPropertyHandler,269,4
block_count,GetNamedPropertyHandler,270,0
block_count,GetNamedPropertyHandler,271,28
-block_count,GetNamedPropertyHandler,272,163
+block_count,GetNamedPropertyHandler,272,162
block_count,GetNamedPropertyHandler,273,42
block_count,GetNamedPropertyHandler,274,120
block_count,GetNamedPropertyFromSuperHandler,0,0
block_count,GetKeyedPropertyHandler,0,66
-block_count,GetKeyedPropertyHandler,1,30
-block_count,GetKeyedPropertyHandler,2,36
+block_count,GetKeyedPropertyHandler,1,31
+block_count,GetKeyedPropertyHandler,2,35
block_count,GetEnumeratedKeyedPropertyHandler,0,1
block_count,SetNamedPropertyHandler,0,17
block_count,DefineNamedOwnPropertyHandler,0,4
@@ -63866,7 +64150,7 @@
block_count,AddHandler,10,0
block_count,AddHandler,11,14
block_count,AddHandler,12,0
-block_count,AddHandler,13,22
+block_count,AddHandler,13,21
block_count,AddHandler,14,12
block_count,AddHandler,15,11
block_count,AddHandler,16,11
@@ -64091,7 +64375,7 @@
block_count,MulHandler,80,13
block_count,MulHandler,81,13
block_count,MulHandler,82,15
-block_count,MulHandler,83,13
+block_count,MulHandler,83,12
block_count,MulHandler,84,2
block_count,DivHandler,0,1
block_count,DivHandler,1,0
@@ -64315,7 +64599,7 @@
block_count,ExpHandler,56,0
block_count,ExpHandler,57,0
block_count,BitwiseOrHandler,0,3
-block_count,BitwiseOrHandler,1,2
+block_count,BitwiseOrHandler,1,3
block_count,BitwiseOrHandler,2,0
block_count,BitwiseOrHandler,3,0
block_count,BitwiseOrHandler,4,0
@@ -64410,8 +64694,8 @@
block_count,BitwiseOrHandler,93,3
block_count,BitwiseXorHandler,0,3
block_count,BitwiseXorHandler,1,1
-block_count,BitwiseXorHandler,2,1
-block_count,BitwiseXorHandler,3,1
+block_count,BitwiseXorHandler,2,2
+block_count,BitwiseXorHandler,3,2
block_count,BitwiseXorHandler,4,0
block_count,BitwiseXorHandler,5,0
block_count,BitwiseXorHandler,6,0
@@ -64459,11 +64743,11 @@
block_count,BitwiseXorHandler,48,0
block_count,BitwiseXorHandler,49,0
block_count,BitwiseXorHandler,50,0
-block_count,BitwiseXorHandler,51,1
+block_count,BitwiseXorHandler,51,2
block_count,BitwiseXorHandler,52,3
block_count,BitwiseXorHandler,53,1
-block_count,BitwiseXorHandler,54,1
-block_count,BitwiseXorHandler,55,1
+block_count,BitwiseXorHandler,54,2
+block_count,BitwiseXorHandler,55,2
block_count,BitwiseXorHandler,56,0
block_count,BitwiseXorHandler,57,0
block_count,BitwiseXorHandler,58,0
@@ -64485,7 +64769,7 @@
block_count,BitwiseXorHandler,74,0
block_count,BitwiseXorHandler,75,0
block_count,BitwiseXorHandler,76,0
-block_count,BitwiseXorHandler,77,1
+block_count,BitwiseXorHandler,77,2
block_count,BitwiseXorHandler,78,3
block_count,BitwiseXorHandler,79,2
block_count,BitwiseXorHandler,80,1
@@ -64504,8 +64788,8 @@
block_count,BitwiseXorHandler,93,3
block_count,BitwiseAndHandler,0,2
block_count,BitwiseAndHandler,1,1
-block_count,BitwiseAndHandler,2,0
-block_count,BitwiseAndHandler,3,0
+block_count,BitwiseAndHandler,2,1
+block_count,BitwiseAndHandler,3,1
block_count,BitwiseAndHandler,4,0
block_count,BitwiseAndHandler,5,0
block_count,BitwiseAndHandler,6,0
@@ -64553,7 +64837,7 @@
block_count,BitwiseAndHandler,48,0
block_count,BitwiseAndHandler,49,0
block_count,BitwiseAndHandler,50,0
-block_count,BitwiseAndHandler,51,0
+block_count,BitwiseAndHandler,51,1
block_count,BitwiseAndHandler,52,2
block_count,BitwiseAndHandler,53,1
block_count,BitwiseAndHandler,54,1
@@ -64690,7 +64974,7 @@
block_count,ShiftLeftHandler,91,0
block_count,ShiftLeftHandler,92,0
block_count,ShiftLeftHandler,93,0
-block_count,ShiftRightHandler,0,1
+block_count,ShiftRightHandler,0,0
block_count,ShiftRightHandler,1,0
block_count,ShiftRightHandler,2,0
block_count,ShiftRightHandler,3,0
@@ -64742,8 +65026,8 @@
block_count,ShiftRightHandler,49,0
block_count,ShiftRightHandler,50,0
block_count,ShiftRightHandler,51,0
-block_count,ShiftRightHandler,52,1
-block_count,ShiftRightHandler,53,1
+block_count,ShiftRightHandler,52,0
+block_count,ShiftRightHandler,53,0
block_count,ShiftRightHandler,54,0
block_count,ShiftRightHandler,55,0
block_count,ShiftRightHandler,56,0
@@ -64768,22 +65052,22 @@
block_count,ShiftRightHandler,75,0
block_count,ShiftRightHandler,76,0
block_count,ShiftRightHandler,77,0
-block_count,ShiftRightHandler,78,1
-block_count,ShiftRightHandler,79,1
+block_count,ShiftRightHandler,78,0
+block_count,ShiftRightHandler,79,0
block_count,ShiftRightHandler,80,0
block_count,ShiftRightHandler,81,0
block_count,ShiftRightHandler,82,0
block_count,ShiftRightHandler,83,0
-block_count,ShiftRightHandler,84,1
+block_count,ShiftRightHandler,84,0
block_count,ShiftRightHandler,85,0
-block_count,ShiftRightHandler,86,1
-block_count,ShiftRightHandler,87,1
-block_count,ShiftRightHandler,88,1
+block_count,ShiftRightHandler,86,0
+block_count,ShiftRightHandler,87,0
+block_count,ShiftRightHandler,88,0
block_count,ShiftRightHandler,89,0
-block_count,ShiftRightHandler,90,1
+block_count,ShiftRightHandler,90,0
block_count,ShiftRightHandler,91,0
-block_count,ShiftRightHandler,92,1
-block_count,ShiftRightHandler,93,1
+block_count,ShiftRightHandler,92,0
+block_count,ShiftRightHandler,93,0
block_count,ShiftRightLogicalHandler,0,0
block_count,ShiftRightLogicalHandler,1,0
block_count,ShiftRightLogicalHandler,2,0
@@ -65069,7 +65353,7 @@
block_count,Add_StringConstant_InternalizeHandler,193,0
block_count,Add_StringConstant_InternalizeHandler,194,0
block_count,Add_StringConstant_InternalizeHandler,195,0
-block_count,AddSmiHandler,0,13
+block_count,AddSmiHandler,0,12
block_count,AddSmiHandler,1,12
block_count,AddSmiHandler,2,12
block_count,AddSmiHandler,3,11
@@ -65142,7 +65426,7 @@
block_count,AddSmiHandler,70,0
block_count,AddSmiHandler,71,0
block_count,AddSmiHandler,72,0
-block_count,AddSmiHandler,73,13
+block_count,AddSmiHandler,73,12
block_count,AddSmiHandler,74,7
block_count,AddSmiHandler,75,5
block_count,SubSmiHandler,0,3
@@ -65203,7 +65487,7 @@
block_count,SubSmiHandler,55,0
block_count,SubSmiHandler,56,0
block_count,SubSmiHandler,57,3
-block_count,SubSmiHandler,58,1
+block_count,SubSmiHandler,58,2
block_count,SubSmiHandler,59,1
block_count,MulSmiHandler,0,5
block_count,MulSmiHandler,1,5
@@ -65598,7 +65882,7 @@
block_count,ShiftLeftSmiHandler,48,4
block_count,ShiftLeftSmiHandler,49,0
block_count,ShiftLeftSmiHandler,50,5
-block_count,ShiftRightSmiHandler,0,9
+block_count,ShiftRightSmiHandler,0,8
block_count,ShiftRightSmiHandler,1,0
block_count,ShiftRightSmiHandler,2,0
block_count,ShiftRightSmiHandler,3,0
@@ -65634,12 +65918,12 @@
block_count,ShiftRightSmiHandler,33,0
block_count,ShiftRightSmiHandler,34,0
block_count,ShiftRightSmiHandler,35,8
-block_count,ShiftRightSmiHandler,36,9
+block_count,ShiftRightSmiHandler,36,8
block_count,ShiftRightSmiHandler,37,8
block_count,ShiftRightSmiHandler,38,0
block_count,ShiftRightSmiHandler,39,8
block_count,ShiftRightSmiHandler,40,0
-block_count,ShiftRightSmiHandler,41,9
+block_count,ShiftRightSmiHandler,41,8
block_count,ShiftRightLogicalSmiHandler,0,1
block_count,ShiftRightLogicalSmiHandler,1,0
block_count,ShiftRightLogicalSmiHandler,2,0
@@ -65723,7 +66007,7 @@
block_count,IncHandler,29,0
block_count,IncHandler,30,46
block_count,IncHandler,31,3
-block_count,IncHandler,32,42
+block_count,IncHandler,32,43
block_count,DecHandler,0,10
block_count,DecHandler,1,10
block_count,DecHandler,2,0
@@ -65756,7 +66040,7 @@
block_count,DecHandler,29,0
block_count,DecHandler,30,10
block_count,DecHandler,31,2
-block_count,DecHandler,32,8
+block_count,DecHandler,32,7
block_count,NegateHandler,0,0
block_count,NegateHandler,1,0
block_count,NegateHandler,2,0
@@ -66153,7 +66437,7 @@
block_count,CallProperty0Handler,67,1
block_count,CallProperty0Handler,68,13
block_count,CallProperty1Handler,0,29
-block_count,CallProperty1Handler,1,25
+block_count,CallProperty1Handler,1,24
block_count,CallProperty1Handler,2,0
block_count,CallProperty1Handler,3,0
block_count,CallProperty1Handler,4,0
@@ -66356,10 +66640,10 @@
block_count,CallUndefinedReceiverHandler,63,0
block_count,CallUndefinedReceiverHandler,64,0
block_count,CallUndefinedReceiverHandler,65,0
-block_count,CallUndefinedReceiverHandler,66,0
+block_count,CallUndefinedReceiverHandler,66,1
block_count,CallUndefinedReceiverHandler,67,0
block_count,CallUndefinedReceiverHandler,68,1
-block_count,CallUndefinedReceiver0Handler,0,10
+block_count,CallUndefinedReceiver0Handler,0,11
block_count,CallUndefinedReceiver0Handler,1,10
block_count,CallUndefinedReceiver0Handler,2,1
block_count,CallUndefinedReceiver0Handler,3,1
@@ -66427,7 +66711,7 @@
block_count,CallUndefinedReceiver0Handler,65,0
block_count,CallUndefinedReceiver0Handler,66,8
block_count,CallUndefinedReceiver0Handler,67,0
-block_count,CallUndefinedReceiver0Handler,68,10
+block_count,CallUndefinedReceiver0Handler,68,11
block_count,CallUndefinedReceiver1Handler,0,9
block_count,CallUndefinedReceiver1Handler,1,6
block_count,CallUndefinedReceiver1Handler,2,0
@@ -66497,8 +66781,8 @@
block_count,CallUndefinedReceiver1Handler,66,5
block_count,CallUndefinedReceiver1Handler,67,3
block_count,CallUndefinedReceiver1Handler,68,9
-block_count,CallUndefinedReceiver2Handler,0,7
-block_count,CallUndefinedReceiver2Handler,1,6
+block_count,CallUndefinedReceiver2Handler,0,8
+block_count,CallUndefinedReceiver2Handler,1,7
block_count,CallUndefinedReceiver2Handler,2,1
block_count,CallUndefinedReceiver2Handler,3,1
block_count,CallUndefinedReceiver2Handler,4,1
@@ -66563,9 +66847,9 @@
block_count,CallUndefinedReceiver2Handler,63,0
block_count,CallUndefinedReceiver2Handler,64,0
block_count,CallUndefinedReceiver2Handler,65,0
-block_count,CallUndefinedReceiver2Handler,66,5
+block_count,CallUndefinedReceiver2Handler,66,6
block_count,CallUndefinedReceiver2Handler,67,1
-block_count,CallUndefinedReceiver2Handler,68,7
+block_count,CallUndefinedReceiver2Handler,68,8
block_count,CallWithSpreadHandler,0,0
block_count,CallWithSpreadHandler,1,0
block_count,CallWithSpreadHandler,2,0
@@ -66979,7 +67263,7 @@
block_count,TestEqualHandler,151,0
block_count,TestEqualHandler,152,15
block_count,TestEqualStrictHandler,0,12
-block_count,TestEqualStrictHandler,1,11
+block_count,TestEqualStrictHandler,1,10
block_count,TestEqualStrictHandler,2,8
block_count,TestEqualStrictHandler,3,8
block_count,TestEqualStrictHandler,4,8
@@ -67011,17 +67295,17 @@
block_count,TestEqualStrictHandler,30,0
block_count,TestEqualStrictHandler,31,0
block_count,TestEqualStrictHandler,32,0
-block_count,TestEqualStrictHandler,33,6
+block_count,TestEqualStrictHandler,33,5
block_count,TestEqualStrictHandler,34,0
block_count,TestEqualStrictHandler,35,0
block_count,TestEqualStrictHandler,36,0
-block_count,TestEqualStrictHandler,37,6
+block_count,TestEqualStrictHandler,37,5
block_count,TestEqualStrictHandler,38,0
block_count,TestEqualStrictHandler,39,5
-block_count,TestEqualStrictHandler,40,6
+block_count,TestEqualStrictHandler,40,5
block_count,TestEqualStrictHandler,41,0
block_count,TestEqualStrictHandler,42,5
-block_count,TestEqualStrictHandler,43,6
+block_count,TestEqualStrictHandler,43,5
block_count,TestEqualStrictHandler,44,4
block_count,TestEqualStrictHandler,45,1
block_count,TestEqualStrictHandler,46,1
@@ -67079,10 +67363,10 @@
block_count,TestEqualStrictHandler,98,10
block_count,TestEqualStrictHandler,99,2
block_count,TestEqualStrictHandler,100,12
-block_count,TestLessThanHandler,0,39
-block_count,TestLessThanHandler,1,39
+block_count,TestLessThanHandler,0,40
+block_count,TestLessThanHandler,1,40
block_count,TestLessThanHandler,2,1
-block_count,TestLessThanHandler,3,1
+block_count,TestLessThanHandler,3,0
block_count,TestLessThanHandler,4,0
block_count,TestLessThanHandler,5,0
block_count,TestLessThanHandler,6,0
@@ -67182,7 +67466,7 @@
block_count,TestLessThanHandler,100,0
block_count,TestLessThanHandler,101,0
block_count,TestLessThanHandler,102,0
-block_count,TestLessThanHandler,103,37
+block_count,TestLessThanHandler,103,38
block_count,TestLessThanHandler,104,0
block_count,TestLessThanHandler,105,0
block_count,TestLessThanHandler,106,0
@@ -67199,9 +67483,9 @@
block_count,TestLessThanHandler,117,0
block_count,TestLessThanHandler,118,0
block_count,TestLessThanHandler,119,0
-block_count,TestLessThanHandler,120,37
+block_count,TestLessThanHandler,120,38
block_count,TestLessThanHandler,121,3
-block_count,TestLessThanHandler,122,34
+block_count,TestLessThanHandler,122,35
block_count,TestLessThanHandler,123,0
block_count,TestLessThanHandler,124,0
block_count,TestLessThanHandler,125,0
@@ -67214,13 +67498,13 @@
block_count,TestLessThanHandler,132,0
block_count,TestLessThanHandler,133,0
block_count,TestLessThanHandler,134,4
-block_count,TestLessThanHandler,135,34
-block_count,TestLessThanHandler,136,39
-block_count,TestLessThanHandler,137,37
+block_count,TestLessThanHandler,135,35
+block_count,TestLessThanHandler,136,40
+block_count,TestLessThanHandler,137,38
block_count,TestLessThanHandler,138,0
-block_count,TestLessThanHandler,139,37
+block_count,TestLessThanHandler,139,38
block_count,TestLessThanHandler,140,1
-block_count,TestLessThanHandler,141,39
+block_count,TestLessThanHandler,141,40
block_count,TestGreaterThanHandler,0,5
block_count,TestGreaterThanHandler,1,5
block_count,TestGreaterThanHandler,2,1
@@ -67730,9 +68014,9 @@
block_count,ToNumericHandler,5,0
block_count,ToNumericHandler,6,18
block_count,ToNumericHandler,7,18
-block_count,ToNumericHandler,8,18
+block_count,ToNumericHandler,8,17
block_count,ToNumericHandler,9,0
-block_count,ToNumericHandler,10,18
+block_count,ToNumericHandler,10,17
block_count,ToNumericHandler,11,0
block_count,ToNumericHandler,12,18
block_count,ToObjectHandler,0,0
@@ -67779,7 +68063,7 @@
block_count,CreateRegExpLiteralHandler,9,0
block_count,CreateRegExpLiteralHandler,10,0
block_count,CreateRegExpLiteralHandler,11,0
-block_count,CreateArrayLiteralHandler,0,1
+block_count,CreateArrayLiteralHandler,0,2
block_count,CreateArrayLiteralHandler,1,1
block_count,CreateArrayLiteralHandler,2,0
block_count,CreateArrayLiteralHandler,3,0
@@ -67893,7 +68177,7 @@
block_count,CreateObjectLiteralHandler,2,0
block_count,CreateObjectLiteralHandler,3,0
block_count,CreateObjectLiteralHandler,4,0
-block_count,CreateObjectLiteralHandler,5,0
+block_count,CreateObjectLiteralHandler,5,1
block_count,CreateObjectLiteralHandler,6,0
block_count,CreateObjectLiteralHandler,7,0
block_count,CreateObjectLiteralHandler,8,0
@@ -68087,7 +68371,7 @@
block_count,CreateEmptyObjectLiteralHandler,18,0
block_count,CreateEmptyObjectLiteralHandler,19,0
block_count,CreateClosureHandler,0,8
-block_count,CreateClosureHandler,1,2
+block_count,CreateClosureHandler,1,1
block_count,CreateClosureHandler,2,6
block_count,CreateClosureHandler,3,8
block_count,CreateClosureHandler,4,1
@@ -68409,7 +68693,7 @@
block_count,JumpLoopHandler,53,0
block_count,JumpLoopHandler,54,51
block_count,JumpLoopHandler,55,0
-block_count,JumpLoopHandler,56,50
+block_count,JumpLoopHandler,56,51
block_count,JumpLoopHandler,57,51
block_count,JumpHandler,0,9
block_count,JumpConstantHandler,0,0
@@ -68422,8 +68706,8 @@
block_count,JumpIfUndefinedOrNullConstantHandler,0,0
block_count,JumpIfUndefinedOrNullConstantHandler,1,0
block_count,JumpIfUndefinedOrNullConstantHandler,2,0
-block_count,JumpIfTrueConstantHandler,0,1
-block_count,JumpIfTrueConstantHandler,1,1
+block_count,JumpIfTrueConstantHandler,0,0
+block_count,JumpIfTrueConstantHandler,1,0
block_count,JumpIfTrueConstantHandler,2,0
block_count,JumpIfFalseConstantHandler,0,1
block_count,JumpIfFalseConstantHandler,1,1
@@ -68518,7 +68802,7 @@
block_count,JumpIfToBooleanFalseHandler,15,0
block_count,JumpIfToBooleanFalseHandler,16,2
block_count,JumpIfToBooleanFalseHandler,17,4
-block_count,JumpIfToBooleanFalseHandler,18,16
+block_count,JumpIfToBooleanFalseHandler,18,15
block_count,JumpIfToBooleanFalseHandler,19,15
block_count,JumpIfToBooleanFalseHandler,20,0
block_count,JumpIfToBooleanFalseHandler,21,22
@@ -68527,7 +68811,7 @@
block_count,JumpIfTrueHandler,1,9
block_count,JumpIfTrueHandler,2,4
block_count,JumpIfFalseHandler,0,70
-block_count,JumpIfFalseHandler,1,43
+block_count,JumpIfFalseHandler,1,44
block_count,JumpIfFalseHandler,2,26
block_count,JumpIfNullHandler,0,0
block_count,JumpIfNullHandler,1,0
@@ -73393,7 +73677,7 @@
block_count,BitwiseXorSmiExtraWideHandler,39,0
block_count,BitwiseXorSmiExtraWideHandler,40,0
block_count,BitwiseXorSmiExtraWideHandler,41,0
-block_count,BitwiseAndSmiExtraWideHandler,0,2
+block_count,BitwiseAndSmiExtraWideHandler,0,1
block_count,BitwiseAndSmiExtraWideHandler,1,0
block_count,BitwiseAndSmiExtraWideHandler,2,0
block_count,BitwiseAndSmiExtraWideHandler,3,0
@@ -73429,12 +73713,12 @@
block_count,BitwiseAndSmiExtraWideHandler,33,0
block_count,BitwiseAndSmiExtraWideHandler,34,0
block_count,BitwiseAndSmiExtraWideHandler,35,1
-block_count,BitwiseAndSmiExtraWideHandler,36,2
-block_count,BitwiseAndSmiExtraWideHandler,37,2
+block_count,BitwiseAndSmiExtraWideHandler,36,1
+block_count,BitwiseAndSmiExtraWideHandler,37,1
block_count,BitwiseAndSmiExtraWideHandler,38,0
block_count,BitwiseAndSmiExtraWideHandler,39,1
block_count,BitwiseAndSmiExtraWideHandler,40,0
-block_count,BitwiseAndSmiExtraWideHandler,41,2
+block_count,BitwiseAndSmiExtraWideHandler,41,1
block_count,CallUndefinedReceiverExtraWideHandler,0,0
block_count,CallUndefinedReceiverExtraWideHandler,1,0
block_count,CallUndefinedReceiverExtraWideHandler,2,0