/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/unit/script/size_of.rs
39 строк
2 KB
webbeef
script: Use a u16 for prototype id to speed up Castable::is<T>() (#44364)
25 апр 2026, 10:54
Не верифицирован
25 апр 2026, 10:54
87daffa
Код
Авторство
О чём код?
/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ use script::test::size_of; // Macro so that we can stringify type names // I'd really prefer the tests themselves to be run at plugin time, // however rustc::middle doesn't have access to the full type data macro_rules! sizeof_checker ( ($testname: ident, $t: ident, $known_size: expr) => ( #[test] fn $testname() { let new = size_of::$t(); let old = $known_size; if new < old { panic!("Your changes have decreased the stack size of commonly used DOM struct {} from {} to {}. \ Good work! Please update the size in tests/unit/script/size_of.rs.", stringify!($t), old, new) } else if new > old { panic!("Your changes have increased the stack size of commonly used DOM struct {} from {} to {}. \ These structs are present in large quantities in the DOM, and increasing the size \ may dramatically affect our memory footprint. Please consider choosing a design which \ avoids this increase. If you feel that the increase is necessary, \ update to the new size in tests/unit/script/size_of.rs.", stringify!($t), old, new) } }); ); // Update the sizes here sizeof_checker!(size_event_target, EventTarget, 56); sizeof_checker!(size_node, Node, 160); sizeof_checker!(size_element, Element, 352); sizeof_checker!(size_htmlelement, HTMLElement, 368); sizeof_checker!(size_div, HTMLDivElement, 368); sizeof_checker!(size_span, HTMLSpanElement, 368); sizeof_checker!(size_text, Text, 192); sizeof_checker!(size_characterdata, CharacterData, 192);