Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ThreadSanitizer doesn't like rayon's work stealing? #812

Open
Gankra opened this issue Nov 2, 2020 · 6 comments
Open

ThreadSanitizer doesn't like rayon's work stealing? #812

Gankra opened this issue Nov 2, 2020 · 6 comments

Comments

@Gankra
Copy link

Gankra commented Nov 2, 2020

I'm working on increasing the tsan coverage in firefox, and it appears that tsan doesn't understand whatever tricks you're using in the work-stealing system -- specifically with crossbeam_deque (possibly this is just an issue with crossbeam deque).

If this design is relying on fences, it's a known issue that tsan doesn't work well with them. Although this is probably not a correctness issue, making rayon more tsan friendly would probably be good to do.

Firefox CI failure

Archived tsan backtrace
[task 2020-11-02T16:29:43.904Z] 16:29:43     INFO - GECKO(3384) | ==================
[task 2020-11-02T16:29:43.905Z] 16:29:43     INFO - GECKO(3384) | WARNING: ThreadSanitizer: data race (pid=3457)
[task 2020-11-02T16:29:43.905Z] 16:29:43     INFO - GECKO(3384) |   Write of size 8 at 0x7b80001712e0 by thread T22:
[task 2020-11-02T16:29:43.906Z] 16:29:43     INFO - GECKO(3384) |     #0 free /builds/worker/fetches/llvm-project/llvm/projects/compiler-rt/lib/tsan/rtl/tsan_interceptors_posix.cpp:708:3 (firefox+0x55468)
[task 2020-11-02T16:29:43.907Z] 16:29:43     INFO - GECKO(3384) |     #1 std::sys::unix::alloc::_$LT$impl$u20$core..alloc..global..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::dealloc::h904bd78302259e53 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/sys/unix/alloc.rs:42:9 (libxul.so+0x819ede6)
[task 2020-11-02T16:29:43.908Z] 16:29:43     INFO - GECKO(3384) |     #2 __rdl_dealloc /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/alloc.rs:364:18 (libxul.so+0x819ede6)
[task 2020-11-02T16:29:43.909Z] 16:29:43     INFO - GECKO(3384) |     #3 alloc::alloc::dealloc::h358895a269b9d524 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/alloc/src/alloc.rs:92:14 (libxul.so+0x8680695)
[task 2020-11-02T16:29:43.909Z] 16:29:43     INFO - GECKO(3384) |     #4 _$LT$alloc..alloc..Global$u20$as$u20$core..alloc..AllocRef$GT$::dealloc::h403eb10ab4e07cf9 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/alloc/src/alloc.rs:225:22 (libxul.so+0x8680695)
[task 2020-11-02T16:29:43.910Z] 16:29:43     INFO - GECKO(3384) |     #5 _$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h0e5ef6db394722a9 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/alloc/src/raw_vec.rs:504:22 (libxul.so+0x8680695)
[task 2020-11-02T16:29:43.911Z] 16:29:43     INFO - GECKO(3384) |     #6 core::ptr::drop_in_place::hf6640de8513b2b64 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/ptr/mod.rs:175:1 (libxul.so+0x8680695)
[task 2020-11-02T16:29:43.912Z] 16:29:43     INFO - GECKO(3384) |     #7 core::ptr::drop_in_place::h024df30f698f6fd2 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/ptr/mod.rs:175:1 (libxul.so+0x8680695)
[task 2020-11-02T16:29:43.912Z] 16:29:43     INFO - GECKO(3384) |     #8 core::mem::drop::h92bdce26849631c3 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/mem/mod.rs:881:24 (libxul.so+0x8680695)
[task 2020-11-02T16:29:43.913Z] 16:29:43     INFO - GECKO(3384) |     #9 crossbeam_deque::Buffer$LT$T$GT$::dealloc::h8197b1057cb75abb /builds/worker/checkouts/gecko/third_party/rust/crossbeam-deque/src/lib.rs:144:9 (libxul.so+0x8680695)
[task 2020-11-02T16:29:43.914Z] 16:29:43     INFO - GECKO(3384) |     #10 crossbeam_deque::Worker$LT$T$GT$::resize::_$u7b$$u7b$closure$u7d$$u7d$::h0e9b75bf991ff20b /builds/worker/checkouts/gecko/third_party/rust/crossbeam-deque/src/lib.rs:399:39 (libxul.so+0x8680695)
[task 2020-11-02T16:29:43.915Z] 16:29:43     INFO - GECKO(3384) |     #11 crossbeam_epoch::guard::Guard::defer_unchecked::_$u7b$$u7b$closure$u7d$$u7d$::h3bde31509a9b3e2c /builds/worker/checkouts/gecko/third_party/rust/crossbeam-epoch/src/guard.rs:195:52 (libxul.so+0x8680695)
[task 2020-11-02T16:29:43.915Z] 16:29:43     INFO - GECKO(3384) |     #12 crossbeam_epoch::deferred::Deferred::new::call::h08d84cf9b4062347 /builds/worker/checkouts/gecko/third_party/rust/crossbeam-epoch/src/deferred.rs:47:21 (libxul.so+0x8680695)
[task 2020-11-02T16:29:43.916Z] 16:29:43     INFO - GECKO(3384) |     #13 crossbeam_epoch::deferred::Deferred::call::hff39feccfda06e29 /builds/worker/checkouts/gecko/third_party/rust/crossbeam-epoch/src/deferred.rs:81:18 (libxul.so+0x7a02835)
[task 2020-11-02T16:29:43.917Z] 16:29:43     INFO - GECKO(3384) |     #14 _$LT$crossbeam_epoch..internal..Bag$u20$as$u20$core..ops..drop..Drop$GT$::drop::hdbf4ce8cd96c1153 /builds/worker/checkouts/gecko/third_party/rust/crossbeam-epoch/src/internal.rs:139:13 (libxul.so+0x7a02835)
[task 2020-11-02T16:29:43.917Z] 16:29:43     INFO - GECKO(3384) |     #15 core::ptr::drop_in_place::h77ed1757a59d8add /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/ptr/mod.rs:175:1 (libxul.so+0x7a02835)
[task 2020-11-02T16:29:43.918Z] 16:29:43     INFO - GECKO(3384) |     #16 core::ptr::drop_in_place::h32e0c3aff5307d1d /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/ptr/mod.rs:175:1 (libxul.so+0x7a02835)
[task 2020-11-02T16:29:43.919Z] 16:29:43     INFO - GECKO(3384) |     #17 core::mem::drop::hf57e286fdac32cb2 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/mem/mod.rs:881:24 (libxul.so+0x7a02835)
[task 2020-11-02T16:29:43.920Z] 16:29:43     INFO - GECKO(3384) |     #18 crossbeam_epoch::internal::Global::collect::h9e1bdddb67fc435b /builds/worker/checkouts/gecko/third_party/rust/crossbeam-epoch/src/internal.rs:231:37 (libxul.so+0x7a02835)
[task 2020-11-02T16:29:43.920Z] 16:29:43     INFO - GECKO(3384) |     #19 crossbeam_epoch::internal::Local::pin::ha695f85d9ce59f95 /builds/worker/checkouts/gecko/third_party/rust/crossbeam-epoch/src/internal.rs:433:17 (libxul.so+0x8035390)
[task 2020-11-02T16:29:43.921Z] 16:29:43     INFO - GECKO(3384) |     #20 crossbeam_epoch::collector::LocalHandle::pin::h15ee1f3e069b4836 /builds/worker/checkouts/gecko/third_party/rust/crossbeam-epoch/src/collector.rs:75:18 (libxul.so+0x8035390)
[task 2020-11-02T16:29:43.923Z] 16:29:43     INFO - GECKO(3384) |     #21 crossbeam_epoch::default::pin::_$u7b$$u7b$closure$u7d$$u7d$::h16878b7f2a05cb0c /builds/worker/checkouts/gecko/third_party/rust/crossbeam-epoch/src/default.rs:23:26 (libxul.so+0x8035390)
[task 2020-11-02T16:29:43.923Z] 16:29:43     INFO - GECKO(3384) |     #22 crossbeam_epoch::default::with_handle::_$u7b$$u7b$closure$u7d$$u7d$::h4db193497007c65e /builds/worker/checkouts/gecko/third_party/rust/crossbeam-epoch/src/default.rs:43:23 (libxul.so+0x8035390)
[task 2020-11-02T16:29:43.924Z] 16:29:43     INFO - GECKO(3384) |     #23 std::thread::local::LocalKey$LT$T$GT$::try_with::h40cde33dc3157aac /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/thread/local.rs:272:16 (libxul.so+0x8035390)
[task 2020-11-02T16:29:43.924Z] 16:29:43     INFO - GECKO(3384) |     #24 crossbeam_epoch::default::with_handle::h8a2e483a440914c1 /builds/worker/checkouts/gecko/third_party/rust/crossbeam-epoch/src/default.rs:42:5 (libxul.so+0x8035390)
[task 2020-11-02T16:29:43.924Z] 16:29:43     INFO - GECKO(3384) |     #25 crossbeam_epoch::default::pin::h60d388eba8f27ab5 /builds/worker/checkouts/gecko/third_party/rust/crossbeam-epoch/src/default.rs:23:5 (libxul.so+0x8035390)
[task 2020-11-02T16:29:43.925Z] 16:29:43     INFO - GECKO(3384) |     #26 crossbeam_deque::Stealer$LT$T$GT$::steal::hf1be4360911bba0e /builds/worker/checkouts/gecko/third_party/rust/crossbeam-deque/src/lib.rs:694:22 (libxul.so+0x8034e77)
[task 2020-11-02T16:29:43.925Z] 16:29:43     INFO - GECKO(3384) |     #27 rayon_core::registry::WorkerThread::steal::_$u7b$$u7b$closure$u7d$$u7d$::h28b40c1e61f77754 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:765:27 (libxul.so+0x8034e77)
[task 2020-11-02T16:29:43.927Z] 16:29:43     INFO - GECKO(3384) |     #28 core::ops::function::impls::_$LT$impl$u20$core..ops..function..FnMut$LT$A$GT$$u20$for$u20$$RF$mut$u20$F$GT$::call_mut::h60923fd1d99cb5fe /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/ops/function.rs:269:13 (libxul.so+0x8034e77)
[task 2020-11-02T16:29:43.928Z] 16:29:43     INFO - GECKO(3384) |     #29 core::iter::traits::iterator::Iterator::find_map::check::_$u7b$$u7b$closure$u7d$$u7d$::haa784f03b38858fc /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/iter/traits/iterator.rs:2261:32 (libxul.so+0x8034e77)
[task 2020-11-02T16:29:43.928Z] 16:29:43     INFO - GECKO(3384) |     #30 core::iter::adapters::filter_try_fold::_$u7b$$u7b$closure$u7d$$u7d$::he437a0c21bea1500 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/iter/adapters/mod.rs:1078:44 (libxul.so+0x8034e77)
[task 2020-11-02T16:29:43.929Z] 16:29:43     INFO - GECKO(3384) |     #31 core::ops::function::impls::_$LT$impl$u20$core..ops..function..FnMut$LT$A$GT$$u20$for$u20$$RF$mut$u20$F$GT$::call_mut::h170f0037c0f7fa69 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/ops/function.rs:269:13 (libxul.so+0x80349a0)
[task 2020-11-02T16:29:43.929Z] 16:29:43     INFO - GECKO(3384) |     #32 core::iter::traits::iterator::Iterator::try_fold::heb95ade5e279fe1e /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/iter/traits/iterator.rs:1888:21 (libxul.so+0x80349a0)
[task 2020-11-02T16:29:43.930Z] 16:29:43     INFO - GECKO(3384) |     #33 _$LT$core..iter..adapters..chain..Chain$LT$A$C$B$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::try_fold::h1160a9312c004af8 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/iter/adapters/chain.rs:105:19 (libxul.so+0x80349a0)
[task 2020-11-02T16:29:43.931Z] 16:29:43     INFO - GECKO(3384) |     #34 _$LT$core..iter..adapters..Filter$LT$I$C$P$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::try_fold::h349345346c4a397f /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/iter/adapters/mod.rs:1127:9 (libxul.so+0x80349a0)
[task 2020-11-02T16:29:43.932Z] 16:29:43     INFO - GECKO(3384) |     #35 core::iter::traits::iterator::Iterator::find_map::hcf1cb491f3a16e7b /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/iter/traits/iterator.rs:2267:9 (libxul.so+0x80349a0)
[task 2020-11-02T16:29:43.932Z] 16:29:43     INFO - GECKO(3384) |     #36 _$LT$core..iter..adapters..FilterMap$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::h74a6e3a642f9d7dc /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/iter/adapters/mod.rs:1245:9 (libxul.so+0x80349a0)
[task 2020-11-02T16:29:43.933Z] 16:29:43     INFO - GECKO(3384) |     #37 rayon_core::registry::WorkerThread::steal::hd08268a35b888f28 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:759:9 (libxul.so+0x80349a0)
[task 2020-11-02T16:29:43.933Z] 16:29:43     INFO - GECKO(3384) |     #38 rayon_core::registry::WorkerThread::wait_until_cold::_$u7b$$u7b$closure$u7d$$u7d$::h7a0f4b83d87d4449 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:715:29 (libxul.so+0x8035c93)
[task 2020-11-02T16:29:43.934Z] 16:29:43     INFO - GECKO(3384) |     #39 core::option::Option$LT$T$GT$::or_else::hbe865f7ac583246b /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/option.rs:752:21 (libxul.so+0x8035c93)
[task 2020-11-02T16:29:43.935Z] 16:29:43     INFO - GECKO(3384) |     #40 rayon_core::registry::WorkerThread::wait_until_cold::h418336e364ee99e4 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:713:32 (libxul.so+0x8035c93)
[task 2020-11-02T16:29:43.936Z] 16:29:43     INFO - GECKO(3384) |     #41 rayon_core::registry::WorkerThread::wait_until::hc4df4475bcc8cf8a /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:693:13 (libxul.so+0x8037642)
[task 2020-11-02T16:29:43.936Z] 16:29:43     INFO - GECKO(3384) |     #42 rayon_core::registry::main_loop::h8b28de35e2c4a82e /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:813:5 (libxul.so+0x8037642)
[task 2020-11-02T16:29:43.937Z] 16:29:43     INFO - GECKO(3384) |     #43 rayon_core::registry::ThreadBuilder::run::hd13e1ad36b0532ef /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:58:18 (libxul.so+0x8037642)
[task 2020-11-02T16:29:43.937Z] 16:29:43     INFO - GECKO(3384) |     #44 _$LT$rayon_core..registry..DefaultSpawn$u20$as$u20$rayon_core..registry..ThreadSpawn$GT$::spawn::_$u7b$$u7b$closure$u7d$$u7d$::h3708d056ad1a975f /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:103:20 (libxul.so+0x8037642)
[task 2020-11-02T16:29:43.938Z] 16:29:43     INFO - GECKO(3384) |     #45 std::sys_common::backtrace::__rust_begin_short_backtrace::h706b9c648746debb /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/sys_common/backtrace.rs:137:18 (libxul.so+0x8037642)
[task 2020-11-02T16:29:43.940Z] 16:29:43     INFO - GECKO(3384) |     #46 std::thread::Builder::spawn_unchecked::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::hcf19dff2c905a334 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/thread/mod.rs:464:17 (libxul.so+0x8036961)
[task 2020-11-02T16:29:43.940Z] 16:29:43     INFO - GECKO(3384) |     #47 _$LT$std..panic..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::h291be0176e73da1c /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panic.rs:308:9 (libxul.so+0x8036961)
[task 2020-11-02T16:29:43.941Z] 16:29:43     INFO - GECKO(3384) |     #48 std::panicking::try::do_call::h3bb197dc45a843fa /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panicking.rs:381:40 (libxul.so+0x8036961)
[task 2020-11-02T16:29:43.941Z] 16:29:43     INFO - GECKO(3384) |     #49 std::panicking::try::h1e496f98de7247d5 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panicking.rs:345:19 (libxul.so+0x8036961)
[task 2020-11-02T16:29:43.942Z] 16:29:43     INFO - GECKO(3384) |     #50 std::panic::catch_unwind::h7d0333dfb60f1566 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panic.rs:382:14 (libxul.so+0x8036961)
[task 2020-11-02T16:29:43.942Z] 16:29:43     INFO - GECKO(3384) |     #51 std::thread::Builder::spawn_unchecked::_$u7b$$u7b$closure$u7d$$u7d$::h456ad1847eb84c63 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/thread/mod.rs:463:30 (libxul.so+0x8036961)
[task 2020-11-02T16:29:43.944Z] 16:29:43     INFO - GECKO(3384) |     #52 core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::h8f96cc4188114fce /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/ops/function.rs:227:5 (libxul.so+0x8036961)
[task 2020-11-02T16:29:43.944Z] 16:29:43     INFO - GECKO(3384) |     #53 std::thread::Builder::spawn_unchecked::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::hcf19dff2c905a334 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/thread/mod.rs:464:17 (libxul.so+0x8036961)
[task 2020-11-02T16:29:43.945Z] 16:29:43     INFO - GECKO(3384) |     #54 _$LT$std..panic..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::h291be0176e73da1c /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panic.rs:308:9 (libxul.so+0x8036961)
[task 2020-11-02T16:29:43.945Z] 16:29:43     INFO - GECKO(3384) |     #55 std::panicking::try::do_call::h3bb197dc45a843fa /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panicking.rs:381:40 (libxul.so+0x8036961)
[task 2020-11-02T16:29:43.946Z] 16:29:43     INFO - GECKO(3384) |     #56 std::panicking::try::h1e496f98de7247d5 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panicking.rs:345:19 (libxul.so+0x8036961)
[task 2020-11-02T16:29:43.946Z] 16:29:43     INFO - GECKO(3384) |     #57 std::panic::catch_unwind::h7d0333dfb60f1566 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panic.rs:382:14 (libxul.so+0x8036961)
[task 2020-11-02T16:29:43.948Z] 16:29:43     INFO - GECKO(3384) |     #58 std::thread::Builder::spawn_unchecked::_$u7b$$u7b$closure$u7d$$u7d$::h456ad1847eb84c63 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/thread/mod.rs:463:30 (libxul.so+0x8036961)
[task 2020-11-02T16:29:43.948Z] 16:29:43     INFO - GECKO(3384) |     #59 core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::h8f96cc4188114fce /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/ops/function.rs:227:5 (libxul.so+0x8036961)
[task 2020-11-02T16:29:43.949Z] 16:29:43     INFO - GECKO(3384) |     #60 _$LT$alloc..boxed..Box$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$A$GT$$GT$::call_once::h1d48b3ddaef847cc /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/alloc/src/boxed.rs:1042:9 (libxul.so+0x81a1036)
[task 2020-11-02T16:29:43.949Z] 16:29:43     INFO - GECKO(3384) |     #61 _$LT$alloc..boxed..Box$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$A$GT$$GT$::call_once::hbf18e6b2580d74f3 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/alloc/src/boxed.rs:1042:9 (libxul.so+0x81a1036)
[task 2020-11-02T16:29:43.950Z] 16:29:43     INFO - GECKO(3384) |     #62 std::sys::unix::thread::Thread::new::thread_start::hf3347c71ec856762 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/sys/unix/thread.rs:87:17 (libxul.so+0x81a1036)
[task 2020-11-02T16:29:43.951Z] 16:29:43     INFO - GECKO(3384) |   Previous read of size 8 at 0x7b80001712e0 by thread T21:
[task 2020-11-02T16:29:43.951Z] 16:29:43     INFO - GECKO(3384) |     #0 core::ptr::read_volatile::h308471e556d99a28 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/ptr/mod.rs:1042:14 (libxul.so+0x8034f00)
[task 2020-11-02T16:29:43.952Z] 16:29:43     INFO - GECKO(3384) |     #1 crossbeam_deque::Buffer$LT$T$GT$::read::h8c5d11c7b6a72354 /builds/worker/checkouts/gecko/third_party/rust/crossbeam-deque/src/lib.rs:170:9 (libxul.so+0x8034f00)
[task 2020-11-02T16:29:43.952Z] 16:29:43     INFO - GECKO(3384) |     #2 crossbeam_deque::Stealer$LT$T$GT$::steal::hf1be4360911bba0e /builds/worker/checkouts/gecko/third_party/rust/crossbeam-deque/src/lib.rs:706:29 (libxul.so+0x8034f00)
[task 2020-11-02T16:29:43.954Z] 16:29:43     INFO - GECKO(3384) |     #3 rayon_core::registry::WorkerThread::steal::_$u7b$$u7b$closure$u7d$$u7d$::h28b40c1e61f77754 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:765:27 (libxul.so+0x8034f00)
[task 2020-11-02T16:29:43.955Z] 16:29:43     INFO - GECKO(3384) |     #4 core::ops::function::impls::_$LT$impl$u20$core..ops..function..FnMut$LT$A$GT$$u20$for$u20$$RF$mut$u20$F$GT$::call_mut::h60923fd1d99cb5fe /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/ops/function.rs:269:13 (libxul.so+0x8034f00)
[task 2020-11-02T16:29:43.955Z] 16:29:43     INFO - GECKO(3384) |     #5 core::iter::traits::iterator::Iterator::find_map::check::_$u7b$$u7b$closure$u7d$$u7d$::haa784f03b38858fc /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/iter/traits/iterator.rs:2261:32 (libxul.so+0x8034f00)
[task 2020-11-02T16:29:43.956Z] 16:29:43     INFO - GECKO(3384) |     #6 core::iter::adapters::filter_try_fold::_$u7b$$u7b$closure$u7d$$u7d$::he437a0c21bea1500 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/iter/adapters/mod.rs:1078:44 (libxul.so+0x8034f00)
[task 2020-11-02T16:29:43.956Z] 16:29:43     INFO - GECKO(3384) |     #7 core::ops::function::impls::_$LT$impl$u20$core..ops..function..FnMut$LT$A$GT$$u20$for$u20$$RF$mut$u20$F$GT$::call_mut::h170f0037c0f7fa69 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/ops/function.rs:269:13 (libxul.so+0x80349a0)
[task 2020-11-02T16:29:43.957Z] 16:29:43     INFO - GECKO(3384) |     #8 core::iter::traits::iterator::Iterator::try_fold::heb95ade5e279fe1e /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/iter/traits/iterator.rs:1888:21 (libxul.so+0x80349a0)
[task 2020-11-02T16:29:43.958Z] 16:29:43     INFO - GECKO(3384) |     #9 _$LT$core..iter..adapters..chain..Chain$LT$A$C$B$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::try_fold::h1160a9312c004af8 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/iter/adapters/chain.rs:105:19 (libxul.so+0x80349a0)
[task 2020-11-02T16:29:43.959Z] 16:29:43     INFO - GECKO(3384) |     #10 _$LT$core..iter..adapters..Filter$LT$I$C$P$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::try_fold::h349345346c4a397f /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/iter/adapters/mod.rs:1127:9 (libxul.so+0x80349a0)
[task 2020-11-02T16:29:43.960Z] 16:29:43     INFO - GECKO(3384) |     #11 core::iter::traits::iterator::Iterator::find_map::hcf1cb491f3a16e7b /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/iter/traits/iterator.rs:2267:9 (libxul.so+0x80349a0)
[task 2020-11-02T16:29:43.960Z] 16:29:43     INFO - GECKO(3384) |     #12 _$LT$core..iter..adapters..FilterMap$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::h74a6e3a642f9d7dc /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/iter/adapters/mod.rs:1245:9 (libxul.so+0x80349a0)
[task 2020-11-02T16:29:43.969Z] 16:29:43     INFO - GECKO(3384) |     #13 rayon_core::registry::WorkerThread::steal::hd08268a35b888f28 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:759:9 (libxul.so+0x80349a0)
[task 2020-11-02T16:29:43.969Z] 16:29:43     INFO - GECKO(3384) |     #14 rayon_core::registry::WorkerThread::wait_until_cold::_$u7b$$u7b$closure$u7d$$u7d$::h7a0f4b83d87d4449 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:715:29 (libxul.so+0x8035c93)
[task 2020-11-02T16:29:43.969Z] 16:29:43     INFO - GECKO(3384) |     #15 core::option::Option$LT$T$GT$::or_else::hbe865f7ac583246b /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/option.rs:752:21 (libxul.so+0x8035c93)
[task 2020-11-02T16:29:43.970Z] 16:29:43     INFO - GECKO(3384) |     #16 rayon_core::registry::WorkerThread::wait_until_cold::h418336e364ee99e4 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:713:32 (libxul.so+0x8035c93)
[task 2020-11-02T16:29:43.970Z] 16:29:43     INFO - GECKO(3384) |     #17 rayon_core::registry::WorkerThread::wait_until::hc4df4475bcc8cf8a /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:693:13 (libxul.so+0x8037642)
[task 2020-11-02T16:29:43.970Z] 16:29:43     INFO - GECKO(3384) |     #18 rayon_core::registry::main_loop::h8b28de35e2c4a82e /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:813:5 (libxul.so+0x8037642)
[task 2020-11-02T16:29:43.972Z] 16:29:43     INFO - GECKO(3384) |     #19 rayon_core::registry::ThreadBuilder::run::hd13e1ad36b0532ef /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:58:18 (libxul.so+0x8037642)
[task 2020-11-02T16:29:43.973Z] 16:29:43     INFO - GECKO(3384) |     #20 _$LT$rayon_core..registry..DefaultSpawn$u20$as$u20$rayon_core..registry..ThreadSpawn$GT$::spawn::_$u7b$$u7b$closure$u7d$$u7d$::h3708d056ad1a975f /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:103:20 (libxul.so+0x8037642)
[task 2020-11-02T16:29:43.974Z] 16:29:43     INFO - GECKO(3384) |     #21 std::sys_common::backtrace::__rust_begin_short_backtrace::h706b9c648746debb /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/sys_common/backtrace.rs:137:18 (libxul.so+0x8037642)
[task 2020-11-02T16:29:43.974Z] 16:29:43     INFO - GECKO(3384) |     #22 std::thread::Builder::spawn_unchecked::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::hcf19dff2c905a334 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/thread/mod.rs:464:17 (libxul.so+0x8036961)
[task 2020-11-02T16:29:43.975Z] 16:29:43     INFO - GECKO(3384) |     #23 _$LT$std..panic..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::h291be0176e73da1c /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panic.rs:308:9 (libxul.so+0x8036961)
[task 2020-11-02T16:29:43.975Z] 16:29:43     INFO - GECKO(3384) |     #24 std::panicking::try::do_call::h3bb197dc45a843fa /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panicking.rs:381:40 (libxul.so+0x8036961)
[task 2020-11-02T16:29:43.976Z] 16:29:43     INFO - GECKO(3384) |     #25 std::panicking::try::h1e496f98de7247d5 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panicking.rs:345:19 (libxul.so+0x8036961)
[task 2020-11-02T16:29:43.976Z] 16:29:43     INFO - GECKO(3384) |     #26 std::panic::catch_unwind::h7d0333dfb60f1566 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panic.rs:382:14 (libxul.so+0x8036961)
[task 2020-11-02T16:29:43.977Z] 16:29:43     INFO - GECKO(3384) |     #27 std::thread::Builder::spawn_unchecked::_$u7b$$u7b$closure$u7d$$u7d$::h456ad1847eb84c63 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/thread/mod.rs:463:30 (libxul.so+0x8036961)
[task 2020-11-02T16:29:43.977Z] 16:29:43     INFO - GECKO(3384) |     #28 core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::h8f96cc4188114fce /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/ops/function.rs:227:5 (libxul.so+0x8036961)
[task 2020-11-02T16:29:43.979Z] 16:29:43     INFO - GECKO(3384) |     #29 std::thread::Builder::spawn_unchecked::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::hcf19dff2c905a334 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/thread/mod.rs:464:17 (libxul.so+0x8036961)
[task 2020-11-02T16:29:43.979Z] 16:29:43     INFO - GECKO(3384) |     #30 _$LT$std..panic..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::h291be0176e73da1c /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panic.rs:308:9 (libxul.so+0x8036961)
[task 2020-11-02T16:29:43.979Z] 16:29:43     INFO - GECKO(3384) |     #31 std::panicking::try::do_call::h3bb197dc45a843fa /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panicking.rs:381:40 (libxul.so+0x8036961)
[task 2020-11-02T16:29:43.979Z] 16:29:43     INFO - GECKO(3384) |     #32 std::panicking::try::h1e496f98de7247d5 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panicking.rs:345:19 (libxul.so+0x8036961)
[task 2020-11-02T16:29:43.979Z] 16:29:43     INFO - GECKO(3384) |     #33 std::panic::catch_unwind::h7d0333dfb60f1566 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panic.rs:382:14 (libxul.so+0x8036961)
[task 2020-11-02T16:29:43.979Z] 16:29:43     INFO - GECKO(3384) |     #34 std::thread::Builder::spawn_unchecked::_$u7b$$u7b$closure$u7d$$u7d$::h456ad1847eb84c63 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/thread/mod.rs:463:30 (libxul.so+0x8036961)
[task 2020-11-02T16:29:43.979Z] 16:29:43     INFO - GECKO(3384) |     #35 core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::h8f96cc4188114fce /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/ops/function.rs:227:5 (libxul.so+0x8036961)
[task 2020-11-02T16:29:43.980Z] 16:29:43     INFO - GECKO(3384) |     #36 _$LT$alloc..boxed..Box$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$A$GT$$GT$::call_once::h1d48b3ddaef847cc /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/alloc/src/boxed.rs:1042:9 (libxul.so+0x81a1036)
[task 2020-11-02T16:29:43.980Z] 16:29:43     INFO - GECKO(3384) |     #37 _$LT$alloc..boxed..Box$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$A$GT$$GT$::call_once::hbf18e6b2580d74f3 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/alloc/src/boxed.rs:1042:9 (libxul.so+0x81a1036)
[task 2020-11-02T16:29:43.980Z] 16:29:43     INFO - GECKO(3384) |     #38 std::sys::unix::thread::Thread::new::thread_start::hf3347c71ec856762 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/sys/unix/thread.rs:87:17 (libxul.so+0x81a1036)
[task 2020-11-02T16:29:43.980Z] 16:29:43     INFO - GECKO(3384) |   Thread T22 'StyleThread#2' (tid=3522, running) created by main thread at:
[task 2020-11-02T16:29:43.980Z] 16:29:43     INFO - GECKO(3384) |     #0 pthread_create /builds/worker/fetches/llvm-project/llvm/projects/compiler-rt/lib/tsan/rtl/tsan_interceptors_posix.cpp:966:3 (firefox+0x5667b)
[task 2020-11-02T16:29:43.980Z] 16:29:43     INFO - GECKO(3384) |     #1 std::sys::unix::thread::Thread::new::h828bcbf015d72557 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/sys/unix/thread.rs:66:19 (libxul.so+0x81a0c05)
[task 2020-11-02T16:29:43.980Z] 16:29:43     INFO - GECKO(3384) |     #2 std::thread::Builder::spawn_unchecked::hd0401fe5cd051ab0 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/thread/mod.rs:488:22 (libxul.so+0x8036515)
[task 2020-11-02T16:29:43.980Z] 16:29:43     INFO - GECKO(3384) |     #3 std::thread::Builder::spawn::h48168d269111e821 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/thread/mod.rs:376:18 (libxul.so+0x8036515)
[task 2020-11-02T16:29:43.980Z] 16:29:43     INFO - GECKO(3384) |     #4 _$LT$rayon_core..registry..DefaultSpawn$u20$as$u20$rayon_core..registry..ThreadSpawn$GT$::spawn::h3db05523458a4ea6 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:103:9 (libxul.so+0x8036515)
[task 2020-11-02T16:29:43.980Z] 16:29:43     INFO - GECKO(3384) |     #5 rayon_core::registry::Registry::new::hac523ca08852ee0a /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:259:29 (libxul.so+0x82d5a8c)
[task 2020-11-02T16:29:43.980Z] 16:29:43     INFO - GECKO(3384) |     #6 rayon_core::thread_pool::ThreadPool::build::h0f3c4f80bac3af40 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/thread_pool/mod.rs:70:24 (libxul.so+0x82d5a8c)
[task 2020-11-02T16:29:43.988Z] 16:29:43     INFO - GECKO(3384) |     #7 rayon_core::ThreadPoolBuilder$LT$S$GT$::build::h63165b1c68034cc0 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/lib.rs:216:9 (libxul.so+0x82d5a8c)
[task 2020-11-02T16:29:43.990Z] 16:29:43     INFO - GECKO(3384) |     #8 _$LT$style..global_style_data..STYLE_THREAD_POOL$u20$as$u20$core..ops..deref..Deref$GT$::deref::__static_ref_initialize::ha3b676d2df323580 /builds/worker/checkouts/gecko/servo/components/style/global_style_data.rs:152:27 (libxul.so+0x82d5a8c)
[task 2020-11-02T16:29:43.990Z] 16:29:43     INFO - GECKO(3384) |     #9 core::ops::function::FnOnce::call_once::hd5c8ed57bd623c19 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/ops/function.rs:227:5 (libxul.so+0x82d5a8c)
[task 2020-11-02T16:29:43.990Z] 16:29:43     INFO - GECKO(3384) |     #10 lazy_static::lazy::Lazy$LT$T$GT$::get::_$u7b$$u7b$closure$u7d$$u7d$::hbeddb26531422c5c /builds/worker/checkouts/gecko/third_party/rust/lazy_static/src/inline_lazy.rs:31:29 (libxul.so+0x82d5a8c)
[task 2020-11-02T16:29:43.991Z] 16:29:43     INFO - GECKO(3384) |     #11 std::sync::once::Once::call_once::_$u7b$$u7b$closure$u7d$$u7d$::h8bafef3f662e87e1 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/sync/once.rs:261:41 (libxul.so+0x82d5a8c)
[task 2020-11-02T16:29:43.991Z] 16:29:43     INFO - GECKO(3384) |     #12 std::sync::once::Once::call_inner::h76a14c6380371ac9 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/sync/once.rs:419:21 (libxul.so+0x81935a2)
[task 2020-11-02T16:29:43.991Z] 16:29:43     INFO - GECKO(3384) |     #13 std::sync::once::Once::call_once::h49807469250c6d0e /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/sync/once.rs:261:9 (libxul.so+0x84e06cd)
[task 2020-11-02T16:29:43.991Z] 16:29:43     INFO - GECKO(3384) |     #14 lazy_static::lazy::Lazy$LT$T$GT$::get::hb876fa87e27b6e06 /builds/worker/checkouts/gecko/third_party/rust/lazy_static/src/inline_lazy.rs:30:9 (libxul.so+0x84e06cd)
[task 2020-11-02T16:29:43.993Z] 16:29:43     INFO - GECKO(3384) |     #15 _$LT$style..global_style_data..STYLE_THREAD_POOL$u20$as$u20$core..ops..deref..Deref$GT$::deref::__stability::h616d8550731da685 /builds/worker/checkouts/gecko/third_party/rust/lazy_static/src/lib.rs:142:21 (libxul.so+0x84e06cd)
[task 2020-11-02T16:29:43.996Z] 16:29:43     INFO - GECKO(3384) |     #16 _$LT$style..global_style_data..STYLE_THREAD_POOL$u20$as$u20$core..ops..deref..Deref$GT$::deref::h146ea3676b701098 /builds/worker/checkouts/gecko/third_party/rust/lazy_static/src/lib.rs:144:17 (libxul.so+0x84e06cd)
[task 2020-11-02T16:29:43.996Z] 16:29:43     INFO - GECKO(3384) |     #17 geckoservo::glue::traverse_subtree::hb842b52933c4b79e /builds/worker/checkouts/gecko/servo/ports/geckolib/glue.rs:257:31 (libxul.so+0x7bdbfcc)
[task 2020-11-02T16:29:43.996Z] 16:29:43     INFO - GECKO(3384) |     #18 Servo_TraverseSubtree /builds/worker/checkouts/gecko/servo/ports/geckolib/glue.rs:327:5 (libxul.so+0x7bdba95)
[task 2020-11-02T16:29:43.996Z] 16:29:43     INFO - GECKO(3384) |     #19 mozilla::ServoStyleSet::StyleNewSubtree(mozilla::dom::Element*) /builds/worker/checkouts/gecko/layout/style/ServoStyleSet.cpp:806:7 (libxul.so+0x4c7880d)
[task 2020-11-02T16:29:43.996Z] 16:29:43     INFO - GECKO(3384) |     #20 nsCSSFrameConstructor::ConstructDocElementFrame(mozilla::dom::Element*) /builds/worker/checkouts/gecko/layout/base/nsCSSFrameConstructor.cpp:2164:29 (libxul.so+0x4d5bc13)
[task 2020-11-02T16:29:43.996Z] 16:29:43     INFO - GECKO(3384) |     #21 nsCSSFrameConstructor::ContentRangeInserted(nsIContent*, nsIContent*, nsCSSFrameConstructor::InsertionKind) /builds/worker/checkouts/gecko/layout/base/nsCSSFrameConstructor.cpp:6929:9 (libxul.so+0x4d6ca4c)
[task 2020-11-02T16:29:43.997Z] 16:29:43     INFO - GECKO(3384) |     #22 nsCSSFrameConstructor::ContentInserted(nsIContent*, nsCSSFrameConstructor::InsertionKind) /builds/worker/checkouts/gecko/layout/base/nsCSSFrameConstructor.cpp:6847:3 (libxul.so+0x4d6c631)
[task 2020-11-02T16:29:43.997Z] 16:29:43     INFO - GECKO(3384) |     #23 mozilla::PresShell::Initialize() /builds/worker/checkouts/gecko/layout/base/PresShell.cpp:1866:26 (libxul.so+0x4d0e609)
[task 2020-11-02T16:29:43.997Z] 16:29:43     INFO - GECKO(3384) |     #24 nsContentSink::StartLayout(bool) /builds/worker/checkouts/gecko/dom/base/nsContentSink.cpp:1140:30 (libxul.so+0x25a8bc6)
[task 2020-11-02T16:29:43.997Z] 16:29:43     INFO - GECKO(3384) |     #25 HTMLContentSink::OpenBody() /builds/worker/checkouts/gecko/dom/html/nsHTMLContentSink.cpp:776:3 (libxul.so+0x3aad4b3)
[task 2020-11-02T16:29:44.004Z] 16:29:44     INFO - GECKO(3384) |     #26 HTMLContentSink::OpenContainer(nsIHTMLContentSink::ElementType) /builds/worker/checkouts/gecko/dom/html/nsHTMLContentSink.cpp:795:12 (libxul.so+0x3aad501)
[task 2020-11-02T16:29:44.004Z] 16:29:44     INFO - GECKO(3384) |     #27 non-virtual thunk to HTMLContentSink::OpenContainer(nsIHTMLContentSink::ElementType) /builds/worker/checkouts/gecko/dom/html/nsHTMLContentSink.cpp (libxul.so+0x3aad6a2)
[task 2020-11-02T16:29:44.005Z] 16:29:44     INFO - GECKO(3384) |     #28 CNavDTD::BuildModel(nsITokenizer*, nsIContentSink*) /builds/worker/checkouts/gecko/parser/htmlparser/CNavDTD.cpp:36:14 (libxul.so+0x1b8ac4d)
[task 2020-11-02T16:29:44.005Z] 16:29:44     INFO - GECKO(3384) |     #29 BuildModel /builds/worker/checkouts/gecko/parser/htmlparser/nsParser.cpp:1058:22 (libxul.so+0x1b93071)
[task 2020-11-02T16:29:44.006Z] 16:29:44     INFO - GECKO(3384) |     #30 nsParser::ResumeParse(bool, bool, bool) /builds/worker/checkouts/gecko/parser/htmlparser/nsParser.cpp:963:18 (libxul.so+0x1b93071)
[task 2020-11-02T16:29:44.006Z] 16:29:44     INFO - GECKO(3384) |     #31 OnStopRequest /builds/worker/checkouts/gecko/parser/htmlparser/nsParser.cpp:1352:10 (libxul.so+0x1b959a0)
[task 2020-11-02T16:29:44.006Z] 16:29:44     INFO - GECKO(3384) |     #32 non-virtual thunk to nsParser::OnStopRequest(nsIRequest*, nsresult) /builds/worker/checkouts/gecko/parser/htmlparser/nsParser.cpp (libxul.so+0x1b959a0)
[task 2020-11-02T16:29:44.007Z] 16:29:44     INFO - GECKO(3384) |     #33 nsDocumentOpenInfo::OnStopRequest(nsIRequest*, nsresult) /builds/worker/checkouts/gecko/uriloader/base/nsURILoader.cpp:215:15 (libxul.so+0x1b0f721)
[task 2020-11-02T16:29:44.007Z] 16:29:44     INFO - GECKO(3384) |     #34 nsBaseChannel::OnStopRequest(nsIRequest*, nsresult) /builds/worker/checkouts/gecko/netwerk/base/nsBaseChannel.cpp:853:16 (libxul.so+0xcae4a5)
[task 2020-11-02T16:29:44.007Z] 16:29:44     INFO - GECKO(3384) |     #35 non-virtual thunk to nsBaseChannel::OnStopRequest(nsIRequest*, nsresult) /builds/worker/checkouts/gecko/netwerk/base/nsBaseChannel.cpp (libxul.so+0xcae622)
[task 2020-11-02T16:29:44.007Z] 16:29:44     INFO - GECKO(3384) |     #36 nsInputStreamPump::OnStateStop() /builds/worker/checkouts/gecko/netwerk/base/nsInputStreamPump.cpp:649:16 (libxul.so+0xcd71a3)
[task 2020-11-02T16:29:44.008Z] 16:29:44     INFO - GECKO(3384) |     #37 nsInputStreamPump::OnInputStreamReady(nsIAsyncInputStream*) /builds/worker/checkouts/gecko/netwerk/base/nsInputStreamPump.cpp:397:21 (libxul.so+0xcd62f2)
[task 2020-11-02T16:29:44.008Z] 16:29:44     INFO - GECKO(3384) |     #38 non-virtual thunk to nsInputStreamPump::OnInputStreamReady(nsIAsyncInputStream*) /builds/worker/checkouts/gecko/netwerk/base/nsInputStreamPump.cpp (libxul.so+0xcd7429)
[task 2020-11-02T16:29:44.008Z] 16:29:44     INFO - GECKO(3384) |     #39 RunAsyncWaitCallback /builds/worker/checkouts/gecko/xpcom/io/NonBlockingAsyncInputStream.cpp:397:13 (libxul.so+0xb0da9c)
[task 2020-11-02T16:29:44.009Z] 16:29:44     INFO - GECKO(3384) |     #40 mozilla::NonBlockingAsyncInputStream::AsyncWaitRunnable::Run() /builds/worker/checkouts/gecko/xpcom/io/NonBlockingAsyncInputStream.cpp:33:14 (libxul.so+0xb0da9c)
[task 2020-11-02T16:29:44.009Z] 16:29:44     INFO - GECKO(3384) |     #41 mozilla::RunnableTask::Run() /builds/worker/checkouts/gecko/xpcom/threads/TaskController.cpp:450:16 (libxul.so+0xb6b542)
[task 2020-11-02T16:29:44.009Z] 16:29:44     INFO - GECKO(3384) |     #42 mozilla::TaskController::DoExecuteNextTaskOnlyMainThreadInternal(mozilla::detail::BaseAutoLock<mozilla::Mutex&> const&) /builds/worker/checkouts/gecko/xpcom/threads/TaskController.cpp:720:26 (libxul.so+0xb69570)
[task 2020-11-02T16:29:44.010Z] 16:29:44     INFO - GECKO(3384) |     #43 mozilla::TaskController::ExecuteNextTaskOnlyMainThreadInternal(mozilla::detail::BaseAutoLock<mozilla::Mutex&> const&) /builds/worker/checkouts/gecko/xpcom/threads/TaskController.cpp:579:15 (libxul.so+0xb681d6)
[task 2020-11-02T16:29:44.010Z] 16:29:44     INFO - GECKO(3384) |     #44 mozilla::TaskController::ProcessPendingMTTask(bool) /builds/worker/checkouts/gecko/xpcom/threads/TaskController.cpp:373:36 (libxul.so+0xb68474)
[task 2020-11-02T16:29:44.010Z] 16:29:44     INFO - GECKO(3384) |     #45 operator() /builds/worker/checkouts/gecko/xpcom/threads/TaskController.cpp:120:37 (libxul.so+0xb6e534)
[task 2020-11-02T16:29:44.014Z] 16:29:44     INFO - GECKO(3384) |     #46 mozilla::detail::RunnableFunction<mozilla::TaskController::InitializeInternal()::$_3>::Run() /builds/worker/workspace/obj-build/dist/include/nsThreadUtils.h:577:5 (libxul.so+0xb6e534)
[task 2020-11-02T16:29:44.014Z] 16:29:44     INFO - GECKO(3384) |     #47 nsThread::ProcessNextEvent(bool, bool*) /builds/worker/checkouts/gecko/xpcom/threads/nsThread.cpp:1197:14 (libxul.so+0xb7f4bb)
[task 2020-11-02T16:29:44.014Z] 16:29:44     INFO - GECKO(3384) |     #48 NS_ProcessNextEvent(nsIThread*, bool) /builds/worker/checkouts/gecko/xpcom/threads/nsThreadUtils.cpp:513:10 (libxul.so+0xb84bb2)
[task 2020-11-02T16:29:44.014Z] 16:29:44     INFO - GECKO(3384) |     #49 mozilla::ipc::MessagePump::Run(base::MessagePump::Delegate*) /builds/worker/checkouts/gecko/ipc/glue/MessagePump.cpp:87:21 (libxul.so+0x145dcdd)
[task 2020-11-02T16:29:44.014Z] 16:29:44     INFO - GECKO(3384) |     #50 mozilla::ipc::MessagePumpForChildProcess::Run(base::MessagePump::Delegate*) /builds/worker/checkouts/gecko/ipc/glue/MessagePump.cpp:270:30 (libxul.so+0x145e6bb)
[task 2020-11-02T16:29:44.015Z] 16:29:44     INFO - GECKO(3384) |     #51 RunInternal /builds/worker/checkouts/gecko/ipc/chromium/src/base/message_loop.cc:334:10 (libxul.so+0x13ee9ac)
[task 2020-11-02T16:29:44.015Z] 16:29:44     INFO - GECKO(3384) |     #52 RunHandler /builds/worker/checkouts/gecko/ipc/chromium/src/base/message_loop.cc:327:3 (libxul.so+0x13ee9ac)
[task 2020-11-02T16:29:44.015Z] 16:29:44     INFO - GECKO(3384) |     #53 MessageLoop::Run() /builds/worker/checkouts/gecko/ipc/chromium/src/base/message_loop.cc:309:3 (libxul.so+0x13ee9ac)
[task 2020-11-02T16:29:44.015Z] 16:29:44     INFO - GECKO(3384) |     #54 nsBaseAppShell::Run() /builds/worker/checkouts/gecko/widget/nsBaseAppShell.cpp:137:27 (libxul.so+0x4a1cd03)
[task 2020-11-02T16:29:44.015Z] 16:29:44     INFO - GECKO(3384) |     #55 XRE_RunAppShell() /builds/worker/checkouts/gecko/toolkit/xre/nsEmbedFunctions.cpp:913:20 (libxul.so+0x6672659)
[task 2020-11-02T16:29:44.015Z] 16:29:44     INFO - GECKO(3384) |     #56 mozilla::ipc::MessagePumpForChildProcess::Run(base::MessagePump::Delegate*) /builds/worker/checkouts/gecko/ipc/glue/MessagePump.cpp:237:9 (libxul.so+0x145e66a)
[task 2020-11-02T16:29:44.015Z] 16:29:44     INFO - GECKO(3384) |     #57 RunInternal /builds/worker/checkouts/gecko/ipc/chromium/src/base/message_loop.cc:334:10 (libxul.so+0x13ee9ac)
[task 2020-11-02T16:29:44.015Z] 16:29:44     INFO - GECKO(3384) |     #58 RunHandler /builds/worker/checkouts/gecko/ipc/chromium/src/base/message_loop.cc:327:3 (libxul.so+0x13ee9ac)
[task 2020-11-02T16:29:44.016Z] 16:29:44     INFO - GECKO(3384) |     #59 MessageLoop::Run() /builds/worker/checkouts/gecko/ipc/chromium/src/base/message_loop.cc:309:3 (libxul.so+0x13ee9ac)
[task 2020-11-02T16:29:44.016Z] 16:29:44     INFO - GECKO(3384) |     #60 XRE_InitChildProcess(int, char**, XREChildData const*) /builds/worker/checkouts/gecko/toolkit/xre/nsEmbedFunctions.cpp:744:34 (libxul.so+0x66723da)
[task 2020-11-02T16:29:44.016Z] 16:29:44     INFO - GECKO(3384) |     #61 mozilla::BootstrapImpl::XRE_InitChildProcess(int, char**, XREChildData const*) /builds/worker/checkouts/gecko/toolkit/xre/Bootstrap.cpp:67:12 (libxul.so+0x667a592)
[task 2020-11-02T16:29:44.016Z] 16:29:44     INFO - GECKO(3384) |     #62 content_process_main /builds/worker/checkouts/gecko/browser/app/../../ipc/contentproc/plugin-container.cpp:56:28 (firefox+0xc78e2)
[task 2020-11-02T16:29:44.016Z] 16:29:44     INFO - GECKO(3384) |     #63 main /builds/worker/checkouts/gecko/browser/app/nsBrowserApp.cpp:304:18 (firefox+0xc78e2)
[task 2020-11-02T16:29:44.017Z] 16:29:44     INFO - GECKO(3384) |   Thread T21 'StyleThread#1' (tid=3521, running) created by main thread at:
[task 2020-11-02T16:29:44.017Z] 16:29:44     INFO - GECKO(3384) |     #0 pthread_create /builds/worker/fetches/llvm-project/llvm/projects/compiler-rt/lib/tsan/rtl/tsan_interceptors_posix.cpp:966:3 (firefox+0x5667b)
[task 2020-11-02T16:29:44.018Z] 16:29:44     INFO - GECKO(3384) |     #1 std::sys::unix::thread::Thread::new::h828bcbf015d72557 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/sys/unix/thread.rs:66:19 (libxul.so+0x81a0c05)
[task 2020-11-02T16:29:44.018Z] 16:29:44     INFO - GECKO(3384) |     #2 std::thread::Builder::spawn_unchecked::hd0401fe5cd051ab0 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/thread/mod.rs:488:22 (libxul.so+0x8036515)
[task 2020-11-02T16:29:44.019Z] 16:29:44     INFO - GECKO(3384) |     #3 std::thread::Builder::spawn::h48168d269111e821 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/thread/mod.rs:376:18 (libxul.so+0x8036515)
[task 2020-11-02T16:29:44.019Z] 16:29:44     INFO - GECKO(3384) |     #4 _$LT$rayon_core..registry..DefaultSpawn$u20$as$u20$rayon_core..registry..ThreadSpawn$GT$::spawn::h3db05523458a4ea6 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:103:9 (libxul.so+0x8036515)
[task 2020-11-02T16:29:44.019Z] 16:29:44     INFO - GECKO(3384) |     #5 rayon_core::registry::Registry::new::hac523ca08852ee0a /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:259:29 (libxul.so+0x82d5a8c)
[task 2020-11-02T16:29:44.019Z] 16:29:44     INFO - GECKO(3384) |     #6 rayon_core::thread_pool::ThreadPool::build::h0f3c4f80bac3af40 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/thread_pool/mod.rs:70:24 (libxul.so+0x82d5a8c)
[task 2020-11-02T16:29:44.021Z] 16:29:44     INFO - GECKO(3384) |     #7 rayon_core::ThreadPoolBuilder$LT$S$GT$::build::h63165b1c68034cc0 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/lib.rs:216:9 (libxul.so+0x82d5a8c)
[task 2020-11-02T16:29:44.021Z] 16:29:44     INFO - GECKO(3384) |     #8 _$LT$style..global_style_data..STYLE_THREAD_POOL$u20$as$u20$core..ops..deref..Deref$GT$::deref::__static_ref_initialize::ha3b676d2df323580 /builds/worker/checkouts/gecko/servo/components/style/global_style_data.rs:152:27 (libxul.so+0x82d5a8c)
[task 2020-11-02T16:29:44.021Z] 16:29:44     INFO - GECKO(3384) |     #9 core::ops::function::FnOnce::call_once::hd5c8ed57bd623c19 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/ops/function.rs:227:5 (libxul.so+0x82d5a8c)
[task 2020-11-02T16:29:44.021Z] 16:29:44     INFO - GECKO(3384) |     #10 lazy_static::lazy::Lazy$LT$T$GT$::get::_$u7b$$u7b$closure$u7d$$u7d$::hbeddb26531422c5c /builds/worker/checkouts/gecko/third_party/rust/lazy_static/src/inline_lazy.rs:31:29 (libxul.so+0x82d5a8c)
[task 2020-11-02T16:29:44.022Z] 16:29:44     INFO - GECKO(3384) |     #11 std::sync::once::Once::call_once::_$u7b$$u7b$closure$u7d$$u7d$::h8bafef3f662e87e1 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/sync/once.rs:261:41 (libxul.so+0x82d5a8c)
[task 2020-11-02T16:29:44.022Z] 16:29:44     INFO - GECKO(3384) |     #12 std::sync::once::Once::call_inner::h76a14c6380371ac9 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/sync/once.rs:419:21 (libxul.so+0x81935a2)
[task 2020-11-02T16:29:44.022Z] 16:29:44     INFO - GECKO(3384) |     #13 std::sync::once::Once::call_once::h49807469250c6d0e /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/sync/once.rs:261:9 (libxul.so+0x84e06cd)
[task 2020-11-02T16:29:44.023Z] 16:29:44     INFO - GECKO(3384) |     #14 lazy_static::lazy::Lazy$LT$T$GT$::get::hb876fa87e27b6e06 /builds/worker/checkouts/gecko/third_party/rust/lazy_static/src/inline_lazy.rs:30:9 (libxul.so+0x84e06cd)
[task 2020-11-02T16:29:44.024Z] 16:29:44     INFO - GECKO(3384) |     #15 _$LT$style..global_style_data..STYLE_THREAD_POOL$u20$as$u20$core..ops..deref..Deref$GT$::deref::__stability::h616d8550731da685 /builds/worker/checkouts/gecko/third_party/rust/lazy_static/src/lib.rs:142:21 (libxul.so+0x84e06cd)
[task 2020-11-02T16:29:44.024Z] 16:29:44     INFO - GECKO(3384) |     #16 _$LT$style..global_style_data..STYLE_THREAD_POOL$u20$as$u20$core..ops..deref..Deref$GT$::deref::h146ea3676b701098 /builds/worker/checkouts/gecko/third_party/rust/lazy_static/src/lib.rs:144:17 (libxul.so+0x84e06cd)
[task 2020-11-02T16:29:44.024Z] 16:29:44     INFO - GECKO(3384) |     #17 geckoservo::glue::traverse_subtree::hb842b52933c4b79e /builds/worker/checkouts/gecko/servo/ports/geckolib/glue.rs:257:31 (libxul.so+0x7bdbfcc)
[task 2020-11-02T16:29:44.024Z] 16:29:44     INFO - GECKO(3384) |     #18 Servo_TraverseSubtree /builds/worker/checkouts/gecko/servo/ports/geckolib/glue.rs:327:5 (libxul.so+0x7bdba95)
[task 2020-11-02T16:29:44.024Z] 16:29:44     INFO - GECKO(3384) |     #19 mozilla::ServoStyleSet::StyleNewSubtree(mozilla::dom::Element*) /builds/worker/checkouts/gecko/layout/style/ServoStyleSet.cpp:806:7 (libxul.so+0x4c7880d)
[task 2020-11-02T16:29:44.026Z] 16:29:44     INFO - GECKO(3384) |     #20 nsCSSFrameConstructor::ConstructDocElementFrame(mozilla::dom::Element*) /builds/worker/checkouts/gecko/layout/base/nsCSSFrameConstructor.cpp:2164:29 (libxul.so+0x4d5bc13)
[task 2020-11-02T16:29:44.026Z] 16:29:44     INFO - GECKO(3384) |     #21 nsCSSFrameConstructor::ContentRangeInserted(nsIContent*, nsIContent*, nsCSSFrameConstructor::InsertionKind) /builds/worker/checkouts/gecko/layout/base/nsCSSFrameConstructor.cpp:6929:9 (libxul.so+0x4d6ca4c)
[task 2020-11-02T16:29:44.026Z] 16:29:44     INFO - GECKO(3384) |     #22 nsCSSFrameConstructor::ContentInserted(nsIContent*, nsCSSFrameConstructor::InsertionKind) /builds/worker/checkouts/gecko/layout/base/nsCSSFrameConstructor.cpp:6847:3 (libxul.so+0x4d6c631)
[task 2020-11-02T16:29:44.026Z] 16:29:44     INFO - GECKO(3384) |     #23 mozilla::PresShell::Initialize() /builds/worker/checkouts/gecko/layout/base/PresShell.cpp:1866:26 (libxul.so+0x4d0e609)
[task 2020-11-02T16:29:44.027Z] 16:29:44     INFO - GECKO(3384) |     #24 nsContentSink::StartLayout(bool) /builds/worker/checkouts/gecko/dom/base/nsContentSink.cpp:1140:30 (libxul.so+0x25a8bc6)
[task 2020-11-02T16:29:44.027Z] 16:29:44     INFO - GECKO(3384) |     #25 HTMLContentSink::OpenBody() /builds/worker/checkouts/gecko/dom/html/nsHTMLContentSink.cpp:776:3 (libxul.so+0x3aad4b3)
[task 2020-11-02T16:29:44.027Z] 16:29:44     INFO - GECKO(3384) |     #26 HTMLContentSink::OpenContainer(nsIHTMLContentSink::ElementType) /builds/worker/checkouts/gecko/dom/html/nsHTMLContentSink.cpp:795:12 (libxul.so+0x3aad501)
[task 2020-11-02T16:29:44.027Z] 16:29:44     INFO - GECKO(3384) |     #27 non-virtual thunk to HTMLContentSink::OpenContainer(nsIHTMLContentSink::ElementType) /builds/worker/checkouts/gecko/dom/html/nsHTMLContentSink.cpp (libxul.so+0x3aad6a2)
[task 2020-11-02T16:29:44.029Z] 16:29:44     INFO - GECKO(3384) |     #28 CNavDTD::BuildModel(nsITokenizer*, nsIContentSink*) /builds/worker/checkouts/gecko/parser/htmlparser/CNavDTD.cpp:36:14 (libxul.so+0x1b8ac4d)
[task 2020-11-02T16:29:44.029Z] 16:29:44     INFO - GECKO(3384) |     #29 BuildModel /builds/worker/checkouts/gecko/parser/htmlparser/nsParser.cpp:1058:22 (libxul.so+0x1b93071)
[task 2020-11-02T16:29:44.029Z] 16:29:44     INFO - GECKO(3384) |     #30 nsParser::ResumeParse(bool, bool, bool) /builds/worker/checkouts/gecko/parser/htmlparser/nsParser.cpp:963:18 (libxul.so+0x1b93071)
[task 2020-11-02T16:29:44.029Z] 16:29:44     INFO - GECKO(3384) |     #31 OnStopRequest /builds/worker/checkouts/gecko/parser/htmlparser/nsParser.cpp:1352:10 (libxul.so+0x1b959a0)
[task 2020-11-02T16:29:44.029Z] 16:29:44     INFO - GECKO(3384) |     #32 non-virtual thunk to nsParser::OnStopRequest(nsIRequest*, nsresult) /builds/worker/checkouts/gecko/parser/htmlparser/nsParser.cpp (libxul.so+0x1b959a0)
[task 2020-11-02T16:29:44.030Z] 16:29:44     INFO - GECKO(3384) |     #33 nsDocumentOpenInfo::OnStopRequest(nsIRequest*, nsresult) /builds/worker/checkouts/gecko/uriloader/base/nsURILoader.cpp:215:15 (libxul.so+0x1b0f721)
[task 2020-11-02T16:29:44.031Z] 16:29:44     INFO - GECKO(3384) |     #34 nsBaseChannel::OnStopRequest(nsIRequest*, nsresult) /builds/worker/checkouts/gecko/netwerk/base/nsBaseChannel.cpp:853:16 (libxul.so+0xcae4a5)
[task 2020-11-02T16:29:44.031Z] 16:29:44     INFO - GECKO(3384) |     #35 non-virtual thunk to nsBaseChannel::OnStopRequest(nsIRequest*, nsresult) /builds/worker/checkouts/gecko/netwerk/base/nsBaseChannel.cpp (libxul.so+0xcae622)
[task 2020-11-02T16:29:44.031Z] 16:29:44     INFO - GECKO(3384) |     #36 nsInputStreamPump::OnStateStop() /builds/worker/checkouts/gecko/netwerk/base/nsInputStreamPump.cpp:649:16 (libxul.so+0xcd71a3)
[task 2020-11-02T16:29:44.031Z] 16:29:44     INFO - GECKO(3384) |     #37 nsInputStreamPump::OnInputStreamReady(nsIAsyncInputStream*) /builds/worker/checkouts/gecko/netwerk/base/nsInputStreamPump.cpp:397:21 (libxul.so+0xcd62f2)
[task 2020-11-02T16:29:44.032Z] 16:29:44     INFO - GECKO(3384) |     #38 non-virtual thunk to nsInputStreamPump::OnInputStreamReady(nsIAsyncInputStream*) /builds/worker/checkouts/gecko/netwerk/base/nsInputStreamPump.cpp (libxul.so+0xcd7429)
[task 2020-11-02T16:29:44.032Z] 16:29:44     INFO - GECKO(3384) |     #39 RunAsyncWaitCallback /builds/worker/checkouts/gecko/xpcom/io/NonBlockingAsyncInputStream.cpp:397:13 (libxul.so+0xb0da9c)
[task 2020-11-02T16:29:44.032Z] 16:29:44     INFO - GECKO(3384) |     #40 mozilla::NonBlockingAsyncInputStream::AsyncWaitRunnable::Run() /builds/worker/checkouts/gecko/xpcom/io/NonBlockingAsyncInputStream.cpp:33:14 (libxul.so+0xb0da9c)
[task 2020-11-02T16:29:44.033Z] 16:29:44     INFO - GECKO(3384) |     #41 mozilla::RunnableTask::Run() /builds/worker/checkouts/gecko/xpcom/threads/TaskController.cpp:450:16 (libxul.so+0xb6b542)
[task 2020-11-02T16:29:44.034Z] 16:29:44     INFO - GECKO(3384) |     #42 mozilla::TaskController::DoExecuteNextTaskOnlyMainThreadInternal(mozilla::detail::BaseAutoLock<mozilla::Mutex&> const&) /builds/worker/checkouts/gecko/xpcom/threads/TaskController.cpp:720:26 (libxul.so+0xb69570)
[task 2020-11-02T16:29:44.034Z] 16:29:44     INFO - GECKO(3384) |     #43 mozilla::TaskController::ExecuteNextTaskOnlyMainThreadInternal(mozilla::detail::BaseAutoLock<mozilla::Mutex&> const&) /builds/worker/checkouts/gecko/xpcom/threads/TaskController.cpp:579:15 (libxul.so+0xb681d6)
[task 2020-11-02T16:29:44.034Z] 16:29:44     INFO - GECKO(3384) |     #44 mozilla::TaskController::ProcessPendingMTTask(bool) /builds/worker/checkouts/gecko/xpcom/threads/TaskController.cpp:373:36 (libxul.so+0xb68474)
[task 2020-11-02T16:29:44.034Z] 16:29:44     INFO - GECKO(3384) |     #45 operator() /builds/worker/checkouts/gecko/xpcom/threads/TaskController.cpp:120:37 (libxul.so+0xb6e534)
[task 2020-11-02T16:29:44.035Z] 16:29:44     INFO - GECKO(3384) |     #46 mozilla::detail::RunnableFunction<mozilla::TaskController::InitializeInternal()::$_3>::Run() /builds/worker/workspace/obj-build/dist/include/nsThreadUtils.h:577:5 (libxul.so+0xb6e534)
[task 2020-11-02T16:29:44.036Z] 16:29:44     INFO - GECKO(3384) |     #47 nsThread::ProcessNextEvent(bool, bool*) /builds/worker/checkouts/gecko/xpcom/threads/nsThread.cpp:1197:14 (libxul.so+0xb7f4bb)
[task 2020-11-02T16:29:44.036Z] 16:29:44     INFO - GECKO(3384) |     #48 NS_ProcessNextEvent(nsIThread*, bool) /builds/worker/checkouts/gecko/xpcom/threads/nsThreadUtils.cpp:513:10 (libxul.so+0xb84bb2)
[task 2020-11-02T16:29:44.036Z] 16:29:44     INFO - GECKO(3384) |     #49 mozilla::ipc::MessagePump::Run(base::MessagePump::Delegate*) /builds/worker/checkouts/gecko/ipc/glue/MessagePump.cpp:87:21 (libxul.so+0x145dcdd)
[task 2020-11-02T16:29:44.036Z] 16:29:44     INFO - GECKO(3384) |     #50 mozilla::ipc::MessagePumpForChildProcess::Run(base::MessagePump::Delegate*) /builds/worker/checkouts/gecko/ipc/glue/MessagePump.cpp:270:30 (libxul.so+0x145e6bb)
[task 2020-11-02T16:29:44.037Z] 16:29:44     INFO - GECKO(3384) |     #51 RunInternal /builds/worker/checkouts/gecko/ipc/chromium/src/base/message_loop.cc:334:10 (libxul.so+0x13ee9ac)
[task 2020-11-02T16:29:44.037Z] 16:29:44     INFO - GECKO(3384) |     #52 RunHandler /builds/worker/checkouts/gecko/ipc/chromium/src/base/message_loop.cc:327:3 (libxul.so+0x13ee9ac)
[task 2020-11-02T16:29:44.037Z] 16:29:44     INFO - GECKO(3384) |     #53 MessageLoop::Run() /builds/worker/checkouts/gecko/ipc/chromium/src/base/message_loop.cc:309:3 (libxul.so+0x13ee9ac)
[task 2020-11-02T16:29:44.038Z] 16:29:44     INFO - GECKO(3384) |     #54 nsBaseAppShell::Run() /builds/worker/checkouts/gecko/widget/nsBaseAppShell.cpp:137:27 (libxul.so+0x4a1cd03)
[task 2020-11-02T16:29:44.038Z] 16:29:44     INFO - GECKO(3384) |     #55 XRE_RunAppShell() /builds/worker/checkouts/gecko/toolkit/xre/nsEmbedFunctions.cpp:913:20 (libxul.so+0x6672659)
[task 2020-11-02T16:29:44.039Z] 16:29:44     INFO - GECKO(3384) |     #56 mozilla::ipc::MessagePumpForChildProcess::Run(base::MessagePump::Delegate*) /builds/worker/checkouts/gecko/ipc/glue/MessagePump.cpp:237:9 (libxul.so+0x145e66a)
[task 2020-11-02T16:29:44.039Z] 16:29:44     INFO - GECKO(3384) |     #57 RunInternal /builds/worker/checkouts/gecko/ipc/chromium/src/base/message_loop.cc:334:10 (libxul.so+0x13ee9ac)
[task 2020-11-02T16:29:44.039Z] 16:29:44     INFO - GECKO(3384) |     #58 RunHandler /builds/worker/checkouts/gecko/ipc/chromium/src/base/message_loop.cc:327:3 (libxul.so+0x13ee9ac)
[task 2020-11-02T16:29:44.039Z] 16:29:44     INFO - GECKO(3384) |     #59 MessageLoop::Run() /builds/worker/checkouts/gecko/ipc/chromium/src/base/message_loop.cc:309:3 (libxul.so+0x13ee9ac)
[task 2020-11-02T16:29:44.039Z] 16:29:44     INFO - GECKO(3384) |     #60 XRE_InitChildProcess(int, char**, XREChildData const*) /builds/worker/checkouts/gecko/toolkit/xre/nsEmbedFunctions.cpp:744:34 (libxul.so+0x66723da)
[task 2020-11-02T16:29:44.041Z] 16:29:44     INFO - GECKO(3384) |     #61 mozilla::BootstrapImpl::XRE_InitChildProcess(int, char**, XREChildData const*) /builds/worker/checkouts/gecko/toolkit/xre/Bootstrap.cpp:67:12 (libxul.so+0x667a592)
[task 2020-11-02T16:29:44.041Z] 16:29:44     INFO - GECKO(3384) |     #62 content_process_main /builds/worker/checkouts/gecko/browser/app/../../ipc/contentproc/plugin-container.cpp:56:28 (firefox+0xc78e2)
[task 2020-11-02T16:29:44.041Z] 16:29:44     INFO - GECKO(3384) |     #63 main /builds/worker/checkouts/gecko/browser/app/nsBrowserApp.cpp:304:18 (firefox+0xc78e2)
[task 2020-11-02T16:29:44.041Z] 16:29:44     INFO - GECKO(3384) | SUMMARY: ThreadSanitizer: data race /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/sys/unix/alloc.rs:42:9 in std::sys::unix::alloc::_$LT$impl$u20$core..alloc..global..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::dealloc::h904bd78302259e53
[task 2020-11-02T16:29:44.042Z] 16:29:44     INFO - GECKO(3384) | ==================
@cuviper
Copy link
Member

cuviper commented Nov 2, 2020

What are the versions of your rayon* and crossbeam* crates?

But yes, from the context of those backtraces, I think this will be solely in crossbeam's domain.

@Gankra
Copy link
Author

Gankra commented Nov 2, 2020

Our lockfiles currently contain:

  • rayon 1.2.0
  • rayon-core 1.6.0
  • crossbeam-utils 0.7.0
  • crossbeam-utils 0.6.5
  • crossbeam-queue 0.1.2
  • crossbeam-epoch 0.8.0
  • crossbeam-deque 0.7.2
  • crossbeam-channel 0.4.4

@cuviper
Copy link
Member

cuviper commented Nov 2, 2020

If you could update to rayon 1.5, that will bump rayon-core and the crossbeam dependencies as well. I have no idea if this will fix the issue, but better to be using the most current versions if possible...

@Gankra
Copy link
Author

Gankra commented Nov 2, 2020

Still happens with 1.5.0, although perhaps slightly rarer? (it's intermittent)

tsan backtrace
[task 2020-11-02T20:57:04.810Z] 20:57:04     INFO - GECKO(3373) | ==================
[task 2020-11-02T20:57:04.818Z] 20:57:04     INFO - GECKO(3373) | WARNING: ThreadSanitizer: data race (pid=3445)
[task 2020-11-02T20:57:04.819Z] 20:57:04     INFO - GECKO(3373) |   Write of size 8 at 0x7b70000c2f70 by thread T20:
[task 2020-11-02T20:57:04.819Z] 20:57:04     INFO - GECKO(3373) |     #0 core::ptr::write_volatile::h7a232bf65594a1ed /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/ptr/mod.rs:1114:9 (libxul.so+0x7bf833d)
[task 2020-11-02T20:57:04.820Z] 20:57:04     INFO - GECKO(3373) |     #1 crossbeam_deque::deque::Buffer$LT$T$GT$::write::h63b68037f8a04310 /builds/worker/checkouts/gecko/third_party/rust/crossbeam-deque/src/deque.rs:70:9 (libxul.so+0x7bf833d)
[task 2020-11-02T20:57:04.820Z] 20:57:04     INFO - GECKO(3373) |     #2 crossbeam_deque::deque::Worker$LT$T$GT$::push::hc46a359ad241db67 /builds/worker/checkouts/gecko/third_party/rust/crossbeam-deque/src/deque.rs:413:13 (libxul.so+0x7bf833d)
[task 2020-11-02T20:57:04.822Z] 20:57:04     INFO - GECKO(3373) |     #3 rayon_core::registry::WorkerThread::push::hc214b065b3433473 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:667:9 (libxul.so+0x7bf833d)
[task 2020-11-02T20:57:04.822Z] 20:57:04     INFO - GECKO(3373) |     #4 rayon_core::scope::ScopeFifo::spawn_fifo::ha2cf2d286db5ca9a /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/scope/mod.rs:504:21 (libxul.so+0x7bf833d)
[task 2020-11-02T20:57:04.823Z] 20:57:04     INFO - GECKO(3373) |     #5 style::parallel::traverse_nodes::hbd9b3d25ff3b2969 /builds/worker/checkouts/gecko/servo/components/style/parallel.rs:279:13 (libxul.so+0x7bf833d)
[task 2020-11-02T20:57:04.824Z] 20:57:04     INFO - GECKO(3373) |     #6 style::parallel::top_down_dom::h8ccacd154c392c3e /builds/worker/checkouts/gecko/servo/components/style/parallel.rs:182:17 (libxul.so+0x7bf48ec)
[task 2020-11-02T20:57:04.824Z] 20:57:04     INFO - GECKO(3373) |     #7 style::parallel::traverse_nodes::_$u7b$$u7b$closure$u7d$$u7d$::h135e94486e70aa7f /builds/worker/checkouts/gecko/servo/components/style/parallel.rs:292:17 (libxul.so+0x7bf48ec)
[task 2020-11-02T20:57:04.826Z] 20:57:04     INFO - GECKO(3373) |     #8 rayon_core::scope::ScopeFifo::spawn_fifo::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::hd4847ab82d664db8 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/scope/mod.rs:495:47 (libxul.so+0x7bf48ec)
[task 2020-11-02T20:57:04.826Z] 20:57:04     INFO - GECKO(3373) |     #9 _$LT$std..panic..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::hb66be32a47fb2195 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panic.rs:308:9 (libxul.so+0x7bf48ec)
[task 2020-11-02T20:57:04.837Z] 20:57:04     INFO - GECKO(3373) |     #10 std::panicking::try::do_call::h77069e6242c58198 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panicking.rs:381:40 (libxul.so+0x7bf48ec)
[task 2020-11-02T20:57:04.838Z] 20:57:04     INFO - GECKO(3373) |     #11 std::panicking::try::hd076c6262241c985 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panicking.rs:345:19 (libxul.so+0x7bf48ec)
[task 2020-11-02T20:57:04.838Z] 20:57:04     INFO - GECKO(3373) |     #12 std::panic::catch_unwind::h9e77a1727e8f1e80 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panic.rs:382:14 (libxul.so+0x7bf48ec)
[task 2020-11-02T20:57:04.839Z] 20:57:04     INFO - GECKO(3373) |     #13 rayon_core::unwind::halt_unwinding::h978db2810234be7d /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/unwind.rs:17:5 (libxul.so+0x7bf48ec)
[task 2020-11-02T20:57:04.840Z] 20:57:04     INFO - GECKO(3373) |     #14 rayon_core::scope::ScopeBase::execute_job_closure::hc940fc60a5a4bfc1 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/scope/mod.rs:561:15 (libxul.so+0x7bf48ec)
[task 2020-11-02T20:57:04.840Z] 20:57:04     INFO - GECKO(3373) |     #15 rayon_core::scope::ScopeBase::execute_job::h6e15ce953dc3ad45 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/scope/mod.rs:549:29 (libxul.so+0x7bf48ec)
[task 2020-11-02T20:57:04.841Z] 20:57:04     INFO - GECKO(3373) |     #16 rayon_core::scope::ScopeFifo::spawn_fifo::_$u7b$$u7b$closure$u7d$$u7d$::h69415693e82414b1 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/scope/mod.rs:495:17 (libxul.so+0x7bf48ec)
[task 2020-11-02T20:57:04.841Z] 20:57:04     INFO - GECKO(3373) |     #17 _$LT$rayon_core..job..HeapJob$LT$BODY$GT$$u20$as$u20$rayon_core..job..Job$GT$::execute::hc53d450d02f1814d /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/job.rs:167:9 (libxul.so+0x7bf48ec)
[task 2020-11-02T20:57:04.842Z] 20:57:04     INFO - GECKO(3373) |     #18 rayon_core::job::JobRef::execute::hf46dfa15baab2023 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/job.rs:59:9 (libxul.so+0x80364c3)
[task 2020-11-02T20:57:04.842Z] 20:57:04     INFO - GECKO(3373) |     #19 _$LT$rayon_core..job..JobFifo$u20$as$u20$rayon_core..job..Job$GT$::execute::ha2220ca6d076fa2b /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/job.rs:211:50 (libxul.so+0x80364c3)
[task 2020-11-02T20:57:04.842Z] 20:57:04     INFO - GECKO(3373) |     #20 rayon_core::job::JobRef::execute::hf46dfa15baab2023 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/job.rs:59:9 (libxul.so+0x80371d2)
[task 2020-11-02T20:57:04.843Z] 20:57:04     INFO - GECKO(3373) |     #21 rayon_core::registry::WorkerThread::execute::h7987cb1965f32b3a /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:753:9 (libxul.so+0x80371d2)
[task 2020-11-02T20:57:04.843Z] 20:57:04     INFO - GECKO(3373) |     #22 rayon_core::registry::WorkerThread::wait_until_cold::hc9b87dc7ba237589 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:730:17 (libxul.so+0x80371d2)
[task 2020-11-02T20:57:04.845Z] 20:57:04     INFO - GECKO(3373) |     #23 rayon_core::registry::WorkerThread::wait_until::h34c88b5f185c4196 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:704:13 (libxul.so+0x7bf4182)
[task 2020-11-02T20:57:04.846Z] 20:57:04     INFO - GECKO(3373) |     #24 rayon_core::scope::ScopeBase::steal_till_jobs_complete::h15eb8a919cccde9c /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/scope/mod.rs:596:9 (libxul.so+0x7bf4182)
[task 2020-11-02T20:57:04.846Z] 20:57:04     INFO - GECKO(3373) |     #25 rayon_core::scope::ScopeBase::complete::h574313fa23c95ea2 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/scope/mod.rs:537:9 (libxul.so+0x7bf4182)
[task 2020-11-02T20:57:04.847Z] 20:57:04     INFO - GECKO(3373) |     #26 rayon_core::scope::scope_fifo::_$u7b$$u7b$closure$u7d$$u7d$::h708691cf37a91342 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/scope/mod.rs:384:18 (libxul.so+0x7bf4182)
[task 2020-11-02T20:57:04.847Z] 20:57:04     INFO - GECKO(3373) |     #27 rayon_core::registry::in_worker::hd07dc8ea2a920a77 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:879:13 (libxul.so+0x7be7d15)
[task 2020-11-02T20:57:04.847Z] 20:57:04     INFO - GECKO(3373) |     #28 rayon_core::scope::scope_fifo::h9d8f453f37c11fc1 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/scope/mod.rs:382:5 (libxul.so+0x7be7d15)
[task 2020-11-02T20:57:04.847Z] 20:57:04     INFO - GECKO(3373) |     #29 style::driver::traverse_dom::_$u7b$$u7b$closure$u7d$$u7d$::hd4fa4d5c68effe7c /builds/worker/checkouts/gecko/servo/components/style/driver.rs:142:21 (libxul.so+0x7be7d15)
[task 2020-11-02T20:57:04.847Z] 20:57:04     INFO - GECKO(3373) |     #30 rayon_core::thread_pool::ThreadPool::install::_$u7b$$u7b$closure$u7d$$u7d$::h6fd69f52d1e9a68a /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/thread_pool/mod.rs:110:40 (libxul.so+0x7be7d15)
[task 2020-11-02T20:57:04.847Z] 20:57:04     INFO - GECKO(3373) |     #31 rayon_core::registry::in_worker::hd07dc8ea2a920a77 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:879:13 (libxul.so+0x7be7d15)
[task 2020-11-02T20:57:04.847Z] 20:57:04     INFO - GECKO(3373) |     #32 rayon_core::scope::scope_fifo::h9d8f453f37c11fc1 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/scope/mod.rs:382:5 (libxul.so+0x7be7d15)
[task 2020-11-02T20:57:04.847Z] 20:57:04     INFO - GECKO(3373) |     #33 style::driver::traverse_dom::_$u7b$$u7b$closure$u7d$$u7d$::hd4fa4d5c68effe7c /builds/worker/checkouts/gecko/servo/components/style/driver.rs:142:21 (libxul.so+0x7be7d15)
[task 2020-11-02T20:57:04.847Z] 20:57:04     INFO - GECKO(3373) |     #34 rayon_core::thread_pool::ThreadPool::install::_$u7b$$u7b$closure$u7d$$u7d$::h6fd69f52d1e9a68a /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/thread_pool/mod.rs:110:40 (libxul.so+0x7be7d15)
[task 2020-11-02T20:57:04.847Z] 20:57:04     INFO - GECKO(3373) |     #35 rayon_core::registry::Registry::in_worker_cold::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::he552276fac5aa66a /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:469:21 (libxul.so+0x7bf9de9)
[task 2020-11-02T20:57:04.847Z] 20:57:04     INFO - GECKO(3373) |     #36 _$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$::execute::call::_$u7b$$u7b$closure$u7d$$u7d$::h5ae0a54b864bda68 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/job.rs:113:21 (libxul.so+0x7bf9de9)
[task 2020-11-02T20:57:04.847Z] 20:57:04     INFO - GECKO(3373) |     #37 _$LT$std..panic..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::h392db912c0d63b48 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panic.rs:308:9 (libxul.so+0x7bf9de9)
[task 2020-11-02T20:57:04.847Z] 20:57:04     INFO - GECKO(3373) |     #38 std::panicking::try::do_call::h773e15727eab627f /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panicking.rs:381:40 (libxul.so+0x7bf9de9)
[task 2020-11-02T20:57:04.847Z] 20:57:04     INFO - GECKO(3373) |     #39 std::panicking::try::h65a5f344b13ed6f4 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panicking.rs:345:19 (libxul.so+0x7bf9de9)
[task 2020-11-02T20:57:04.847Z] 20:57:04     INFO - GECKO(3373) |     #40 std::panic::catch_unwind::h97ce491ac870fcaf /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panic.rs:382:14 (libxul.so+0x7bf9de9)
[task 2020-11-02T20:57:04.847Z] 20:57:04     INFO - GECKO(3373) |     #41 rayon_core::unwind::halt_unwinding::hc71f6b26678c32f7 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/unwind.rs:17:5 (libxul.so+0x7bf9de9)
[task 2020-11-02T20:57:04.847Z] 20:57:04     INFO - GECKO(3373) |     #42 _$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$::execute::h75e7802e1abf19c6 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/job.rs:119:38 (libxul.so+0x7bf9de9)
[task 2020-11-02T20:57:04.848Z] 20:57:04     INFO - GECKO(3373) |     #43 rayon_core::job::JobRef::execute::hf46dfa15baab2023 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/job.rs:59:9 (libxul.so+0x80371d2)
[task 2020-11-02T20:57:04.848Z] 20:57:04     INFO - GECKO(3373) |     #44 rayon_core::registry::WorkerThread::execute::h7987cb1965f32b3a /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:753:9 (libxul.so+0x80371d2)
[task 2020-11-02T20:57:04.848Z] 20:57:04     INFO - GECKO(3373) |     #45 rayon_core::registry::WorkerThread::wait_until_cold::hc9b87dc7ba237589 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:730:17 (libxul.so+0x80371d2)
[task 2020-11-02T20:57:04.848Z] 20:57:04     INFO - GECKO(3373) |     #46 rayon_core::registry::WorkerThread::wait_until::h34c88b5f185c4196 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:704:13 (libxul.so+0x803b1e5)
[task 2020-11-02T20:57:04.849Z] 20:57:04     INFO - GECKO(3373) |     #47 rayon_core::registry::main_loop::h77adb8f7b62ccbfc /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:837:5 (libxul.so+0x803b1e5)
[task 2020-11-02T20:57:04.849Z] 20:57:04     INFO - GECKO(3373) |     #48 rayon_core::registry::ThreadBuilder::run::h606bee133cc3d4d0 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:56:18 (libxul.so+0x803b1e5)
[task 2020-11-02T20:57:04.849Z] 20:57:04     INFO - GECKO(3373) |     #49 _$LT$rayon_core..registry..DefaultSpawn$u20$as$u20$rayon_core..registry..ThreadSpawn$GT$::spawn::_$u7b$$u7b$closure$u7d$$u7d$::h87120dd93cede270 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:101:20 (libxul.so+0x803b1e5)
[task 2020-11-02T20:57:04.849Z] 20:57:04     INFO - GECKO(3373) |     #50 std::sys_common::backtrace::__rust_begin_short_backtrace::ha509e8e339e9b9e8 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/sys_common/backtrace.rs:137:18 (libxul.so+0x803b1e5)
[task 2020-11-02T20:57:04.850Z] 20:57:04     INFO - GECKO(3373) |     #51 std::thread::Builder::spawn_unchecked::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::h1c5998768eb2033d /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/thread/mod.rs:464:17 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.850Z] 20:57:04     INFO - GECKO(3373) |     #52 _$LT$std..panic..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::hbf7f8e9d4b9e3254 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panic.rs:308:9 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.850Z] 20:57:04     INFO - GECKO(3373) |     #53 std::panicking::try::do_call::hc008ad2829ba5448 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panicking.rs:381:40 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.852Z] 20:57:04     INFO - GECKO(3373) |     #54 std::panicking::try::h5e7192a827f3d11c /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panicking.rs:345:19 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.852Z] 20:57:04     INFO - GECKO(3373) |     #55 std::panic::catch_unwind::hef77540818fa3d35 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panic.rs:382:14 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.852Z] 20:57:04     INFO - GECKO(3373) |     #56 std::thread::Builder::spawn_unchecked::_$u7b$$u7b$closure$u7d$$u7d$::hb7e260696462ea27 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/thread/mod.rs:463:30 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.853Z] 20:57:04     INFO - GECKO(3373) |     #57 core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::ha3d34324346694f4 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/ops/function.rs:227:5 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.854Z] 20:57:04     INFO - GECKO(3373) |     #58 std::thread::Builder::spawn_unchecked::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::h1c5998768eb2033d /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/thread/mod.rs:464:17 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.854Z] 20:57:04     INFO - GECKO(3373) |     #59 _$LT$std..panic..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::hbf7f8e9d4b9e3254 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panic.rs:308:9 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.855Z] 20:57:04     INFO - GECKO(3373) |     #60 std::panicking::try::do_call::hc008ad2829ba5448 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panicking.rs:381:40 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.855Z] 20:57:04     INFO - GECKO(3373) |     #61 std::panicking::try::h5e7192a827f3d11c /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panicking.rs:345:19 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.855Z] 20:57:04     INFO - GECKO(3373) |     #62 std::panic::catch_unwind::hef77540818fa3d35 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panic.rs:382:14 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.855Z] 20:57:04     INFO - GECKO(3373) |     #63 std::thread::Builder::spawn_unchecked::_$u7b$$u7b$closure$u7d$$u7d$::hb7e260696462ea27 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/thread/mod.rs:463:30 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.857Z] 20:57:04     INFO - GECKO(3373) |     #64 core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::ha3d34324346694f4 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/ops/function.rs:227:5 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.857Z] 20:57:04     INFO - GECKO(3373) |     #65 _$LT$alloc..boxed..Box$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$A$GT$$GT$::call_once::h1d48b3ddaef847cc /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/alloc/src/boxed.rs:1042:9 (libxul.so+0x81a4e56)
[task 2020-11-02T20:57:04.857Z] 20:57:04     INFO - GECKO(3373) |     #66 _$LT$alloc..boxed..Box$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$A$GT$$GT$::call_once::hbf18e6b2580d74f3 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/alloc/src/boxed.rs:1042:9 (libxul.so+0x81a4e56)
[task 2020-11-02T20:57:04.857Z] 20:57:04     INFO - GECKO(3373) |     #67 std::sys::unix::thread::Thread::new::thread_start::hf3347c71ec856762 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/sys/unix/thread.rs:87:17 (libxul.so+0x81a4e56)
[task 2020-11-02T20:57:04.858Z] 20:57:04     INFO - GECKO(3373) |   Previous read of size 8 at 0x7b70000c2f70 by thread T22:
[task 2020-11-02T20:57:04.859Z] 20:57:04     INFO - GECKO(3373) |     #0 core::ptr::read_volatile::h3a7547a8004312a8 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/ptr/mod.rs:1042:14 (libxul.so+0x803798e)
[task 2020-11-02T20:57:04.859Z] 20:57:04     INFO - GECKO(3373) |     #1 crossbeam_deque::deque::Buffer$LT$T$GT$::read::h9c90ee4f5fe65829 /builds/worker/checkouts/gecko/third_party/rust/crossbeam-deque/src/deque.rs:80:9 (libxul.so+0x803798e)
[task 2020-11-02T20:57:04.859Z] 20:57:04     INFO - GECKO(3373) |     #2 crossbeam_deque::deque::Stealer$LT$T$GT$::steal::he5a3b67abef74abd /builds/worker/checkouts/gecko/third_party/rust/crossbeam-deque/src/deque.rs:635:29 (libxul.so+0x803798e)
[task 2020-11-02T20:57:04.860Z] 20:57:04     INFO - GECKO(3373) |     #3 rayon_core::registry::WorkerThread::steal::_$u7b$$u7b$closure$u7d$$u7d$::hb603e9a7cb349e48 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:779:27 (libxul.so+0x803798e)
[task 2020-11-02T20:57:04.861Z] 20:57:04     INFO - GECKO(3373) |     #4 core::iter::traits::iterator::Iterator::find_map::check::_$u7b$$u7b$closure$u7d$$u7d$::h1c026756dda5e12c /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/iter/traits/iterator.rs:2261:32 (libxul.so+0x803798e)
[task 2020-11-02T20:57:04.861Z] 20:57:04     INFO - GECKO(3373) |     #5 core::iter::adapters::filter_try_fold::_$u7b$$u7b$closure$u7d$$u7d$::h3c84ec4d651d548b /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/iter/adapters/mod.rs:1078:44 (libxul.so+0x803798e)
[task 2020-11-02T20:57:04.861Z] 20:57:04     INFO - GECKO(3373) |     #6 core::iter::traits::iterator::Iterator::try_fold::hc89289ff96f5487f /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/iter/traits/iterator.rs:1888:21 (libxul.so+0x803709f)
[task 2020-11-02T20:57:04.862Z] 20:57:04     INFO - GECKO(3373) |     #7 _$LT$core..iter..adapters..chain..Chain$LT$A$C$B$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::try_fold::h30809693477b941a /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/iter/adapters/chain.rs:109:19 (libxul.so+0x803709f)
[task 2020-11-02T20:57:04.863Z] 20:57:04     INFO - GECKO(3373) |     #8 _$LT$core..iter..adapters..Filter$LT$I$C$P$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::try_fold::hf80f987b77adc791 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/iter/adapters/mod.rs:1127:9 (libxul.so+0x803709f)
[task 2020-11-02T20:57:04.863Z] 20:57:04     INFO - GECKO(3373) |     #9 core::iter::traits::iterator::Iterator::find_map::hae55e57674806194 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/iter/traits/iterator.rs:2267:9 (libxul.so+0x803709f)
[task 2020-11-02T20:57:04.863Z] 20:57:04     INFO - GECKO(3373) |     #10 rayon_core::registry::WorkerThread::steal::hdb5fcaeedf0d1f15 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:774:23 (libxul.so+0x803709f)
[task 2020-11-02T20:57:04.863Z] 20:57:04     INFO - GECKO(3373) |     #11 rayon_core::registry::WorkerThread::wait_until_cold::_$u7b$$u7b$closure$u7d$$u7d$::h616c9f3238848d93 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:726:29 (libxul.so+0x803709f)
[task 2020-11-02T20:57:04.863Z] 20:57:04     INFO - GECKO(3373) |     #12 core::option::Option$LT$T$GT$::or_else::hd2fb43ea345c272e /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/option.rs:752:21 (libxul.so+0x803709f)
[task 2020-11-02T20:57:04.865Z] 20:57:04     INFO - GECKO(3373) |     #13 rayon_core::registry::WorkerThread::wait_until_cold::hc9b87dc7ba237589 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:724:32 (libxul.so+0x803709f)
[task 2020-11-02T20:57:04.865Z] 20:57:04     INFO - GECKO(3373) |     #14 rayon_core::registry::WorkerThread::wait_until::h34c88b5f185c4196 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:704:13 (libxul.so+0x803b1e5)
[task 2020-11-02T20:57:04.865Z] 20:57:04     INFO - GECKO(3373) |     #15 rayon_core::registry::main_loop::h77adb8f7b62ccbfc /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:837:5 (libxul.so+0x803b1e5)
[task 2020-11-02T20:57:04.865Z] 20:57:04     INFO - GECKO(3373) |     #16 rayon_core::registry::ThreadBuilder::run::h606bee133cc3d4d0 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:56:18 (libxul.so+0x803b1e5)
[task 2020-11-02T20:57:04.867Z] 20:57:04     INFO - GECKO(3373) |     #17 _$LT$rayon_core..registry..DefaultSpawn$u20$as$u20$rayon_core..registry..ThreadSpawn$GT$::spawn::_$u7b$$u7b$closure$u7d$$u7d$::h87120dd93cede270 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:101:20 (libxul.so+0x803b1e5)
[task 2020-11-02T20:57:04.867Z] 20:57:04     INFO - GECKO(3373) |     #18 std::sys_common::backtrace::__rust_begin_short_backtrace::ha509e8e339e9b9e8 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/sys_common/backtrace.rs:137:18 (libxul.so+0x803b1e5)
[task 2020-11-02T20:57:04.867Z] 20:57:04     INFO - GECKO(3373) |     #19 std::thread::Builder::spawn_unchecked::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::h1c5998768eb2033d /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/thread/mod.rs:464:17 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.867Z] 20:57:04     INFO - GECKO(3373) |     #20 _$LT$std..panic..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::hbf7f8e9d4b9e3254 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panic.rs:308:9 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.867Z] 20:57:04     INFO - GECKO(3373) |     #21 std::panicking::try::do_call::hc008ad2829ba5448 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panicking.rs:381:40 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.868Z] 20:57:04     INFO - GECKO(3373) |     #22 std::panicking::try::h5e7192a827f3d11c /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panicking.rs:345:19 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.868Z] 20:57:04     INFO - GECKO(3373) |     #23 std::panic::catch_unwind::hef77540818fa3d35 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panic.rs:382:14 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.868Z] 20:57:04     INFO - GECKO(3373) |     #24 std::thread::Builder::spawn_unchecked::_$u7b$$u7b$closure$u7d$$u7d$::hb7e260696462ea27 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/thread/mod.rs:463:30 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.870Z] 20:57:04     INFO - GECKO(3373) |     #25 core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::ha3d34324346694f4 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/ops/function.rs:227:5 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.870Z] 20:57:04     INFO - GECKO(3373) |     #26 std::thread::Builder::spawn_unchecked::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::h1c5998768eb2033d /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/thread/mod.rs:464:17 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.870Z] 20:57:04     INFO - GECKO(3373) |     #27 _$LT$std..panic..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::hbf7f8e9d4b9e3254 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panic.rs:308:9 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.870Z] 20:57:04     INFO - GECKO(3373) |     #28 std::panicking::try::do_call::hc008ad2829ba5448 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panicking.rs:381:40 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.871Z] 20:57:04     INFO - GECKO(3373) |     #29 std::panicking::try::h5e7192a827f3d11c /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panicking.rs:345:19 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.871Z] 20:57:04     INFO - GECKO(3373) |     #30 std::panic::catch_unwind::hef77540818fa3d35 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panic.rs:382:14 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.871Z] 20:57:04     INFO - GECKO(3373) |     #31 std::thread::Builder::spawn_unchecked::_$u7b$$u7b$closure$u7d$$u7d$::hb7e260696462ea27 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/thread/mod.rs:463:30 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.872Z] 20:57:04     INFO - GECKO(3373) |     #32 core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::ha3d34324346694f4 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/ops/function.rs:227:5 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.872Z] 20:57:04     INFO - GECKO(3373) |     #33 _$LT$alloc..boxed..Box$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$A$GT$$GT$::call_once::h1d48b3ddaef847cc /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/alloc/src/boxed.rs:1042:9 (libxul.so+0x81a4e56)
[task 2020-11-02T20:57:04.873Z] 20:57:04     INFO - GECKO(3373) |     #34 _$LT$alloc..boxed..Box$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$A$GT$$GT$::call_once::hbf18e6b2580d74f3 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/alloc/src/boxed.rs:1042:9 (libxul.so+0x81a4e56)
[task 2020-11-02T20:57:04.873Z] 20:57:04     INFO - GECKO(3373) |     #35 std::sys::unix::thread::Thread::new::thread_start::hf3347c71ec856762 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/sys/unix/thread.rs:87:17 (libxul.so+0x81a4e56)
[task 2020-11-02T20:57:04.873Z] 20:57:04     INFO - GECKO(3373) |   Location is heap block of size 2048 at 0x7b70000c2800 allocated by thread T20:
[task 2020-11-02T20:57:04.874Z] 20:57:04     INFO - GECKO(3373) |     #0 malloc /builds/worker/fetches/llvm-project/llvm/projects/compiler-rt/lib/tsan/rtl/tsan_interceptors_posix.cpp:652:5 (firefox+0x54e4c)
[task 2020-11-02T20:57:04.874Z] 20:57:04     INFO - GECKO(3373) |     #1 std::sys::unix::alloc::_$LT$impl$u20$core..alloc..global..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::alloc::h69b42b7aa12fc0c2 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/sys/unix/alloc.rs:14:13 (libxul.so+0x81a2b8c)
[task 2020-11-02T20:57:04.874Z] 20:57:04     INFO - GECKO(3373) |     #2 __rdl_alloc /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/alloc.rs:356:13 (libxul.so+0x81a2b8c)
[task 2020-11-02T20:57:04.874Z] 20:57:04     INFO - GECKO(3373) |     #3 alloc::alloc::alloc::h5d9f570b7f35d1e4 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/alloc/src/alloc.rs:74:14 (libxul.so+0x7bf5883)
[task 2020-11-02T20:57:04.876Z] 20:57:04     INFO - GECKO(3373) |     #4 alloc::alloc::Global::alloc_impl::h462f7ec181a99b1e /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/alloc/src/alloc.rs:153:73 (libxul.so+0x7bf5883)
[task 2020-11-02T20:57:04.876Z] 20:57:04     INFO - GECKO(3373) |     #5 _$LT$alloc..alloc..Global$u20$as$u20$core..alloc..AllocRef$GT$::alloc::hd9a3a49e1b53f0a3 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/alloc/src/alloc.rs:212:9 (libxul.so+0x7bf5883)
[task 2020-11-02T20:57:04.876Z] 20:57:04     INFO - GECKO(3373) |     #6 alloc::raw_vec::RawVec$LT$T$C$A$GT$::allocate_in::hccc63a507a543ad3 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/alloc/src/raw_vec.rs:188:45 (libxul.so+0x7bf5883)
[task 2020-11-02T20:57:04.876Z] 20:57:04     INFO - GECKO(3373) |     #7 alloc::raw_vec::RawVec$LT$T$C$A$GT$::with_capacity_in::h7857af018b2d256e /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/alloc/src/raw_vec.rs:163:9 (libxul.so+0x7bf5883)
[task 2020-11-02T20:57:04.876Z] 20:57:04     INFO - GECKO(3373) |     #8 alloc::raw_vec::RawVec$LT$T$GT$::with_capacity::h93818be82b1d874b /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/alloc/src/raw_vec.rs:93:9 (libxul.so+0x7bf5883)
[task 2020-11-02T20:57:04.878Z] 20:57:04     INFO - GECKO(3373) |     #9 alloc::vec::Vec$LT$T$GT$::with_capacity::hfaeb49aa07735b55 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/alloc/src/vec.rs:363:20 (libxul.so+0x7bf5883)
[task 2020-11-02T20:57:04.878Z] 20:57:04     INFO - GECKO(3373) |     #10 crossbeam_deque::deque::Buffer$LT$T$GT$::alloc::h2aaba565e6989459 /builds/worker/checkouts/gecko/third_party/rust/crossbeam-deque/src/deque.rs:45:21 (libxul.so+0x7bf5883)
[task 2020-11-02T20:57:04.878Z] 20:57:04     INFO - GECKO(3373) |     #11 crossbeam_deque::deque::Worker$LT$T$GT$::resize::hacdfafd2e6ae18d0 /builds/worker/checkouts/gecko/third_party/rust/crossbeam-deque/src/deque.rs:292:19 (libxul.so+0x7bf5883)
[task 2020-11-02T20:57:04.879Z] 20:57:04     INFO - GECKO(3373) |     #12 crossbeam_deque::deque::Worker$LT$T$GT$::push::hc46a359ad241db67 /builds/worker/checkouts/gecko/third_party/rust/crossbeam-deque/src/deque.rs:406:17 (libxul.so+0x7bf2a0d)
[task 2020-11-02T20:57:04.880Z] 20:57:04     INFO - GECKO(3373) |     #13 rayon_core::registry::WorkerThread::push::hc214b065b3433473 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:667:9 (libxul.so+0x7bf2a0d)
[task 2020-11-02T20:57:04.880Z] 20:57:04     INFO - GECKO(3373) |     #14 rayon_core::scope::ScopeFifo::spawn_fifo::h409b6b3265a7555d /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/scope/mod.rs:504:21 (libxul.so+0x7bf2a0d)
[task 2020-11-02T20:57:04.881Z] 20:57:04     INFO - GECKO(3373) |     #15 style::parallel::traverse_nodes::hb4809e43e7c03dc3 /builds/worker/checkouts/gecko/servo/components/style/parallel.rs:289:13 (libxul.so+0x7bf2a0d)
[task 2020-11-02T20:57:04.881Z] 20:57:04     INFO - GECKO(3373) |     #16 style::driver::traverse_dom::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::h5365795a852d60d3 /builds/worker/checkouts/gecko/servo/components/style/driver.rs:144:25 (libxul.so+0x7bf2a0d)
[task 2020-11-02T20:57:04.881Z] 20:57:04     INFO - GECKO(3373) |     #17 rayon_core::scope::scope_fifo::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::h000ae4ce10f751fa /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/scope/mod.rs:384:55 (libxul.so+0x7bf2a0d)
[task 2020-11-02T20:57:04.882Z] 20:57:04     INFO - GECKO(3373) |     #18 _$LT$std..panic..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::h04f1e9eb21452270 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panic.rs:308:9 (libxul.so+0x7bf2a0d)
[task 2020-11-02T20:57:04.882Z] 20:57:04     INFO - GECKO(3373) |     #19 std::panicking::try::do_call::ha51cf6efa049c61b /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panicking.rs:381:40 (libxul.so+0x7bf2a0d)
[task 2020-11-02T20:57:04.882Z] 20:57:04     INFO - GECKO(3373) |     #20 std::panicking::try::h91ac288ba4de7ae7 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panicking.rs:345:19 (libxul.so+0x7bf2a0d)
[task 2020-11-02T20:57:04.883Z] 20:57:04     INFO - GECKO(3373) |     #21 std::panic::catch_unwind::h9223d0b60e69c80c /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panic.rs:382:14 (libxul.so+0x7bf2a0d)
[task 2020-11-02T20:57:04.883Z] 20:57:04     INFO - GECKO(3373) |     #22 rayon_core::unwind::halt_unwinding::he8f1efa1c5d6ee08 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/unwind.rs:17:5 (libxul.so+0x7bf2a0d)
[task 2020-11-02T20:57:04.883Z] 20:57:04     INFO - GECKO(3373) |     #23 rayon_core::scope::ScopeBase::execute_job_closure::he4b6fe6f377eaf0f /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/scope/mod.rs:561:15 (libxul.so+0x7bf2a0d)
[task 2020-11-02T20:57:04.885Z] 20:57:04     INFO - GECKO(3373) |     #24 rayon_core::scope::ScopeBase::complete::h574313fa23c95ea2 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/scope/mod.rs:536:22 (libxul.so+0x7bf2a0d)
[task 2020-11-02T20:57:04.885Z] 20:57:04     INFO - GECKO(3373) |     #25 rayon_core::scope::scope_fifo::_$u7b$$u7b$closure$u7d$$u7d$::h708691cf37a91342 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/scope/mod.rs:384:18 (libxul.so+0x7bf2a0d)
[task 2020-11-02T20:57:04.885Z] 20:57:04     INFO - GECKO(3373) |     #26 rayon_core::registry::in_worker::hd07dc8ea2a920a77 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:879:13 (libxul.so+0x7be7d15)
[task 2020-11-02T20:57:04.886Z] 20:57:04     INFO - GECKO(3373) |     #27 rayon_core::scope::scope_fifo::h9d8f453f37c11fc1 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/scope/mod.rs:382:5 (libxul.so+0x7be7d15)
[task 2020-11-02T20:57:04.886Z] 20:57:04     INFO - GECKO(3373) |     #28 style::driver::traverse_dom::_$u7b$$u7b$closure$u7d$$u7d$::hd4fa4d5c68effe7c /builds/worker/checkouts/gecko/servo/components/style/driver.rs:142:21 (libxul.so+0x7be7d15)
[task 2020-11-02T20:57:04.886Z] 20:57:04     INFO - GECKO(3373) |     #29 rayon_core::thread_pool::ThreadPool::install::_$u7b$$u7b$closure$u7d$$u7d$::h6fd69f52d1e9a68a /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/thread_pool/mod.rs:110:40 (libxul.so+0x7be7d15)
[task 2020-11-02T20:57:04.888Z] 20:57:04     INFO - GECKO(3373) |     #30 rayon_core::registry::Registry::in_worker_cold::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::he552276fac5aa66a /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:469:21 (libxul.so+0x7bf9de9)
[task 2020-11-02T20:57:04.888Z] 20:57:04     INFO - GECKO(3373) |     #31 _$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$::execute::call::_$u7b$$u7b$closure$u7d$$u7d$::h5ae0a54b864bda68 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/job.rs:113:21 (libxul.so+0x7bf9de9)
[task 2020-11-02T20:57:04.888Z] 20:57:04     INFO - GECKO(3373) |     #32 _$LT$std..panic..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::h392db912c0d63b48 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panic.rs:308:9 (libxul.so+0x7bf9de9)
[task 2020-11-02T20:57:04.889Z] 20:57:04     INFO - GECKO(3373) |     #33 std::panicking::try::do_call::h773e15727eab627f /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panicking.rs:381:40 (libxul.so+0x7bf9de9)
[task 2020-11-02T20:57:04.889Z] 20:57:04     INFO - GECKO(3373) |     #34 std::panicking::try::h65a5f344b13ed6f4 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panicking.rs:345:19 (libxul.so+0x7bf9de9)
[task 2020-11-02T20:57:04.889Z] 20:57:04     INFO - GECKO(3373) |     #35 std::panic::catch_unwind::h97ce491ac870fcaf /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panic.rs:382:14 (libxul.so+0x7bf9de9)
[task 2020-11-02T20:57:04.891Z] 20:57:04     INFO - GECKO(3373) |     #36 rayon_core::unwind::halt_unwinding::hc71f6b26678c32f7 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/unwind.rs:17:5 (libxul.so+0x7bf9de9)
[task 2020-11-02T20:57:04.891Z] 20:57:04     INFO - GECKO(3373) |     #37 _$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$::execute::h75e7802e1abf19c6 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/job.rs:119:38 (libxul.so+0x7bf9de9)
[task 2020-11-02T20:57:04.891Z] 20:57:04     INFO - GECKO(3373) |     #38 rayon_core::job::JobRef::execute::hf46dfa15baab2023 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/job.rs:59:9 (libxul.so+0x80371d2)
[task 2020-11-02T20:57:04.892Z] 20:57:04     INFO - GECKO(3373) |     #39 rayon_core::registry::WorkerThread::execute::h7987cb1965f32b3a /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:753:9 (libxul.so+0x80371d2)
[task 2020-11-02T20:57:04.892Z] 20:57:04     INFO - GECKO(3373) |     #40 rayon_core::registry::WorkerThread::wait_until_cold::hc9b87dc7ba237589 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:730:17 (libxul.so+0x80371d2)
[task 2020-11-02T20:57:04.892Z] 20:57:04     INFO - GECKO(3373) |     #41 rayon_core::registry::WorkerThread::wait_until::h34c88b5f185c4196 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:704:13 (libxul.so+0x803b1e5)
[task 2020-11-02T20:57:04.892Z] 20:57:04     INFO - GECKO(3373) |     #42 rayon_core::registry::main_loop::h77adb8f7b62ccbfc /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:837:5 (libxul.so+0x803b1e5)
[task 2020-11-02T20:57:04.893Z] 20:57:04     INFO - GECKO(3373) |     #43 rayon_core::registry::ThreadBuilder::run::h606bee133cc3d4d0 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:56:18 (libxul.so+0x803b1e5)
[task 2020-11-02T20:57:04.893Z] 20:57:04     INFO - GECKO(3373) |     #44 _$LT$rayon_core..registry..DefaultSpawn$u20$as$u20$rayon_core..registry..ThreadSpawn$GT$::spawn::_$u7b$$u7b$closure$u7d$$u7d$::h87120dd93cede270 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:101:20 (libxul.so+0x803b1e5)
[task 2020-11-02T20:57:04.894Z] 20:57:04     INFO - GECKO(3373) |     #45 std::sys_common::backtrace::__rust_begin_short_backtrace::ha509e8e339e9b9e8 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/sys_common/backtrace.rs:137:18 (libxul.so+0x803b1e5)
[task 2020-11-02T20:57:04.895Z] 20:57:04     INFO - GECKO(3373) |     #46 std::thread::Builder::spawn_unchecked::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::h1c5998768eb2033d /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/thread/mod.rs:464:17 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.895Z] 20:57:04     INFO - GECKO(3373) |     #47 _$LT$std..panic..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::hbf7f8e9d4b9e3254 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panic.rs:308:9 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.895Z] 20:57:04     INFO - GECKO(3373) |     #48 std::panicking::try::do_call::hc008ad2829ba5448 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panicking.rs:381:40 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.895Z] 20:57:04     INFO - GECKO(3373) |     #49 std::panicking::try::h5e7192a827f3d11c /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panicking.rs:345:19 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.896Z] 20:57:04     INFO - GECKO(3373) |     #50 std::panic::catch_unwind::hef77540818fa3d35 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panic.rs:382:14 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.896Z] 20:57:04     INFO - GECKO(3373) |     #51 std::thread::Builder::spawn_unchecked::_$u7b$$u7b$closure$u7d$$u7d$::hb7e260696462ea27 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/thread/mod.rs:463:30 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.896Z] 20:57:04     INFO - GECKO(3373) |     #52 core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::ha3d34324346694f4 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/ops/function.rs:227:5 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.898Z] 20:57:04     INFO - GECKO(3373) |     #53 std::thread::Builder::spawn_unchecked::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::h1c5998768eb2033d /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/thread/mod.rs:464:17 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.898Z] 20:57:04     INFO - GECKO(3373) |     #54 _$LT$std..panic..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::hbf7f8e9d4b9e3254 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panic.rs:308:9 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.899Z] 20:57:04     INFO - GECKO(3373) |     #55 std::panicking::try::do_call::hc008ad2829ba5448 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panicking.rs:381:40 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.899Z] 20:57:04     INFO - GECKO(3373) |     #56 std::panicking::try::h5e7192a827f3d11c /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panicking.rs:345:19 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.900Z] 20:57:04     INFO - GECKO(3373) |     #57 std::panic::catch_unwind::hef77540818fa3d35 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/panic.rs:382:14 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.900Z] 20:57:04     INFO - GECKO(3373) |     #58 std::thread::Builder::spawn_unchecked::_$u7b$$u7b$closure$u7d$$u7d$::hb7e260696462ea27 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/thread/mod.rs:463:30 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.902Z] 20:57:04     INFO - GECKO(3373) |     #59 core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::ha3d34324346694f4 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/ops/function.rs:227:5 (libxul.so+0x803a311)
[task 2020-11-02T20:57:04.902Z] 20:57:04     INFO - GECKO(3373) |     #60 _$LT$alloc..boxed..Box$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$A$GT$$GT$::call_once::h1d48b3ddaef847cc /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/alloc/src/boxed.rs:1042:9 (libxul.so+0x81a4e56)
[task 2020-11-02T20:57:04.902Z] 20:57:04     INFO - GECKO(3373) |     #61 _$LT$alloc..boxed..Box$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$A$GT$$GT$::call_once::hbf18e6b2580d74f3 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/alloc/src/boxed.rs:1042:9 (libxul.so+0x81a4e56)
[task 2020-11-02T20:57:04.903Z] 20:57:04     INFO - GECKO(3373) |     #62 std::sys::unix::thread::Thread::new::thread_start::hf3347c71ec856762 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/sys/unix/thread.rs:87:17 (libxul.so+0x81a4e56)
[task 2020-11-02T20:57:04.903Z] 20:57:04     INFO - GECKO(3373) |   Thread T20 'StyleThread#0' (tid=3507, running) created by main thread at:
[task 2020-11-02T20:57:04.903Z] 20:57:04     INFO - GECKO(3373) |     #0 pthread_create /builds/worker/fetches/llvm-project/llvm/projects/compiler-rt/lib/tsan/rtl/tsan_interceptors_posix.cpp:966:3 (firefox+0x5667b)
[task 2020-11-02T20:57:04.903Z] 20:57:04     INFO - GECKO(3373) |     #1 std::sys::unix::thread::Thread::new::h828bcbf015d72557 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/sys/unix/thread.rs:66:19 (libxul.so+0x81a4a25)
[task 2020-11-02T20:57:04.903Z] 20:57:04     INFO - GECKO(3373) |     #2 std::thread::Builder::spawn_unchecked::hb1eae7d0c0f74c73 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/thread/mod.rs:488:22 (libxul.so+0x8039ec5)
[task 2020-11-02T20:57:04.905Z] 20:57:04     INFO - GECKO(3373) |     #3 std::thread::Builder::spawn::h292a09af8e2387fe /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/thread/mod.rs:376:18 (libxul.so+0x8039ec5)
[task 2020-11-02T20:57:04.905Z] 20:57:04     INFO - GECKO(3373) |     #4 _$LT$rayon_core..registry..DefaultSpawn$u20$as$u20$rayon_core..registry..ThreadSpawn$GT$::spawn::h2bac91a9bec049a6 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:101:9 (libxul.so+0x8039ec5)
[task 2020-11-02T20:57:04.905Z] 20:57:04     INFO - GECKO(3373) |     #5 rayon_core::registry::Registry::new::h28ba0d33731a600f /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:260:29 (libxul.so+0x82da277)
[task 2020-11-02T20:57:04.906Z] 20:57:04     INFO - GECKO(3373) |     #6 rayon_core::thread_pool::ThreadPool::build::h1a8c1e514ed2a498 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/thread_pool/mod.rs:69:24 (libxul.so+0x82da277)
[task 2020-11-02T20:57:04.906Z] 20:57:04     INFO - GECKO(3373) |     #7 rayon_core::ThreadPoolBuilder$LT$S$GT$::build::h5aa8aeed04db6df8 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/lib.rs:202:9 (libxul.so+0x82da277)
[task 2020-11-02T20:57:04.906Z] 20:57:04     INFO - GECKO(3373) |     #8 _$LT$style..global_style_data..STYLE_THREAD_POOL$u20$as$u20$core..ops..deref..Deref$GT$::deref::__static_ref_initialize::hf52aa0cb8dd5d4c0 /builds/worker/checkouts/gecko/servo/components/style/global_style_data.rs:152:27 (libxul.so+0x82da277)
[task 2020-11-02T20:57:04.906Z] 20:57:04     INFO - GECKO(3373) |     #9 core::ops::function::FnOnce::call_once::hbe1c4d81cb5a7d5d /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/ops/function.rs:227:5 (libxul.so+0x82da277)
[task 2020-11-02T20:57:04.908Z] 20:57:04     INFO - GECKO(3373) |     #10 lazy_static::lazy::Lazy$LT$T$GT$::get::_$u7b$$u7b$closure$u7d$$u7d$::h12d6802a0e227526 /builds/worker/checkouts/gecko/third_party/rust/lazy_static/src/inline_lazy.rs:31:29 (libxul.so+0x82da277)
[task 2020-11-02T20:57:04.908Z] 20:57:04     INFO - GECKO(3373) |     #11 std::sync::once::Once::call_once::_$u7b$$u7b$closure$u7d$$u7d$::h06bb9131f78da655 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/sync/once.rs:261:41 (libxul.so+0x82da277)
[task 2020-11-02T20:57:04.908Z] 20:57:04     INFO - GECKO(3373) |     #12 std::sync::once::Once::call_inner::h76a14c6380371ac9 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/sync/once.rs:419:21 (libxul.so+0x81973c2)
[task 2020-11-02T20:57:04.908Z] 20:57:04     INFO - GECKO(3373) |     #13 std::sync::once::Once::call_once::ha4358448b53b173e /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/sync/once.rs:261:9 (libxul.so+0x84e3f5d)
[task 2020-11-02T20:57:04.908Z] 20:57:04     INFO - GECKO(3373) |     #14 lazy_static::lazy::Lazy$LT$T$GT$::get::hc9dca1f1c579fab7 /builds/worker/checkouts/gecko/third_party/rust/lazy_static/src/inline_lazy.rs:30:9 (libxul.so+0x84e3f5d)
[task 2020-11-02T20:57:04.909Z] 20:57:04     INFO - GECKO(3373) |     #15 _$LT$style..global_style_data..STYLE_THREAD_POOL$u20$as$u20$core..ops..deref..Deref$GT$::deref::__stability::hb5e379b5f34d0877 /builds/worker/checkouts/gecko/third_party/rust/lazy_static/src/lib.rs:142:21 (libxul.so+0x84e3f5d)
[task 2020-11-02T20:57:04.909Z] 20:57:04     INFO - GECKO(3373) |     #16 _$LT$style..global_style_data..STYLE_THREAD_POOL$u20$as$u20$core..ops..deref..Deref$GT$::deref::h3d6b7c0ec888b62c /builds/worker/checkouts/gecko/third_party/rust/lazy_static/src/lib.rs:144:17 (libxul.so+0x84e3f5d)
[task 2020-11-02T20:57:04.909Z] 20:57:04     INFO - GECKO(3373) |     #17 geckoservo::glue::traverse_subtree::h8966d782c04d7cf3 /builds/worker/checkouts/gecko/servo/ports/geckolib/glue.rs:257:31 (libxul.so+0x7bdc86c)
[task 2020-11-02T20:57:04.911Z] 20:57:04     INFO - GECKO(3373) |     #18 Servo_TraverseSubtree /builds/worker/checkouts/gecko/servo/ports/geckolib/glue.rs:327:5 (libxul.so+0x7bdc335)
[task 2020-11-02T20:57:04.911Z] 20:57:04     INFO - GECKO(3373) |     #19 mozilla::ServoStyleSet::StyleNewSubtree(mozilla::dom::Element*) /builds/worker/checkouts/gecko/layout/style/ServoStyleSet.cpp:806:7 (libxul.so+0x4c7880d)
[task 2020-11-02T20:57:04.911Z] 20:57:04     INFO - GECKO(3373) |     #20 nsCSSFrameConstructor::ConstructDocElementFrame(mozilla::dom::Element*) /builds/worker/checkouts/gecko/layout/base/nsCSSFrameConstructor.cpp:2164:29 (libxul.so+0x4d5bc13)
[task 2020-11-02T20:57:04.911Z] 20:57:04     INFO - GECKO(3373) |     #21 nsCSSFrameConstructor::ContentRangeInserted(nsIContent*, nsIContent*, nsCSSFrameConstructor::InsertionKind) /builds/worker/checkouts/gecko/layout/base/nsCSSFrameConstructor.cpp:6929:9 (libxul.so+0x4d6ca4c)
[task 2020-11-02T20:57:04.912Z] 20:57:04     INFO - GECKO(3373) |     #22 nsCSSFrameConstructor::ContentInserted(nsIContent*, nsCSSFrameConstructor::InsertionKind) /builds/worker/checkouts/gecko/layout/base/nsCSSFrameConstructor.cpp:6847:3 (libxul.so+0x4d6c631)
[task 2020-11-02T20:57:04.912Z] 20:57:04     INFO - GECKO(3373) |     #23 mozilla::PresShell::Initialize() /builds/worker/checkouts/gecko/layout/base/PresShell.cpp:1866:26 (libxul.so+0x4d0e609)
[task 2020-11-02T20:57:04.912Z] 20:57:04     INFO - GECKO(3373) |     #24 nsContentSink::StartLayout(bool) /builds/worker/checkouts/gecko/dom/base/nsContentSink.cpp:1140:30 (libxul.so+0x25a8bc6)
[task 2020-11-02T20:57:04.912Z] 20:57:04     INFO - GECKO(3373) |     #25 HTMLContentSink::OpenBody() /builds/worker/checkouts/gecko/dom/html/nsHTMLContentSink.cpp:776:3 (libxul.so+0x3aad4b3)
[task 2020-11-02T20:57:04.914Z] 20:57:04     INFO - GECKO(3373) |     #26 HTMLContentSink::OpenContainer(nsIHTMLContentSink::ElementType) /builds/worker/checkouts/gecko/dom/html/nsHTMLContentSink.cpp:795:12 (libxul.so+0x3aad501)
[task 2020-11-02T20:57:04.914Z] 20:57:04     INFO - GECKO(3373) |     #27 non-virtual thunk to HTMLContentSink::OpenContainer(nsIHTMLContentSink::ElementType) /builds/worker/checkouts/gecko/dom/html/nsHTMLContentSink.cpp (libxul.so+0x3aad6a2)
[task 2020-11-02T20:57:04.914Z] 20:57:04     INFO - GECKO(3373) |     #28 CNavDTD::BuildModel(nsITokenizer*, nsIContentSink*) /builds/worker/checkouts/gecko/parser/htmlparser/CNavDTD.cpp:36:14 (libxul.so+0x1b8ac4d)
[task 2020-11-02T20:57:04.914Z] 20:57:04     INFO - GECKO(3373) |     #29 BuildModel /builds/worker/checkouts/gecko/parser/htmlparser/nsParser.cpp:1058:22 (libxul.so+0x1b93071)
[task 2020-11-02T20:57:04.914Z] 20:57:04     INFO - GECKO(3373) |     #30 nsParser::ResumeParse(bool, bool, bool) /builds/worker/checkouts/gecko/parser/htmlparser/nsParser.cpp:963:18 (libxul.so+0x1b93071)
[task 2020-11-02T20:57:04.915Z] 20:57:04     INFO - GECKO(3373) |     #31 OnStopRequest /builds/worker/checkouts/gecko/parser/htmlparser/nsParser.cpp:1352:10 (libxul.so+0x1b959a0)
[task 2020-11-02T20:57:04.915Z] 20:57:04     INFO - GECKO(3373) |     #32 non-virtual thunk to nsParser::OnStopRequest(nsIRequest*, nsresult) /builds/worker/checkouts/gecko/parser/htmlparser/nsParser.cpp (libxul.so+0x1b959a0)
[task 2020-11-02T20:57:04.915Z] 20:57:04     INFO - GECKO(3373) |     #33 nsDocumentOpenInfo::OnStopRequest(nsIRequest*, nsresult) /builds/worker/checkouts/gecko/uriloader/base/nsURILoader.cpp:215:15 (libxul.so+0x1b0f721)
[task 2020-11-02T20:57:04.915Z] 20:57:04     INFO - GECKO(3373) |     #34 nsBaseChannel::OnStopRequest(nsIRequest*, nsresult) /builds/worker/checkouts/gecko/netwerk/base/nsBaseChannel.cpp:853:16 (libxul.so+0xcae4a5)
[task 2020-11-02T20:57:04.917Z] 20:57:04     INFO - GECKO(3373) |     #35 non-virtual thunk to nsBaseChannel::OnStopRequest(nsIRequest*, nsresult) /builds/worker/checkouts/gecko/netwerk/base/nsBaseChannel.cpp (libxul.so+0xcae622)
[task 2020-11-02T20:57:04.917Z] 20:57:04     INFO - GECKO(3373) |     #36 nsInputStreamPump::OnStateStop() /builds/worker/checkouts/gecko/netwerk/base/nsInputStreamPump.cpp:649:16 (libxul.so+0xcd71a3)
[task 2020-11-02T20:57:04.917Z] 20:57:04     INFO - GECKO(3373) |     #37 nsInputStreamPump::OnInputStreamReady(nsIAsyncInputStream*) /builds/worker/checkouts/gecko/netwerk/base/nsInputStreamPump.cpp:397:21 (libxul.so+0xcd62f2)
[task 2020-11-02T20:57:04.918Z] 20:57:04     INFO - GECKO(3373) |     #38 non-virtual thunk to nsInputStreamPump::OnInputStreamReady(nsIAsyncInputStream*) /builds/worker/checkouts/gecko/netwerk/base/nsInputStreamPump.cpp (libxul.so+0xcd7429)
[task 2020-11-02T20:57:04.918Z] 20:57:04     INFO - GECKO(3373) |     #39 RunAsyncWaitCallback /builds/worker/checkouts/gecko/xpcom/io/NonBlockingAsyncInputStream.cpp:397:13 (libxul.so+0xb0da9c)
[task 2020-11-02T20:57:04.918Z] 20:57:04     INFO - GECKO(3373) |     #40 mozilla::NonBlockingAsyncInputStream::AsyncWaitRunnable::Run() /builds/worker/checkouts/gecko/xpcom/io/NonBlockingAsyncInputStream.cpp:33:14 (libxul.so+0xb0da9c)
[task 2020-11-02T20:57:04.918Z] 20:57:04     INFO - GECKO(3373) |     #41 mozilla::RunnableTask::Run() /builds/worker/checkouts/gecko/xpcom/threads/TaskController.cpp:450:16 (libxul.so+0xb6b542)
[task 2020-11-02T20:57:04.920Z] 20:57:04     INFO - GECKO(3373) |     #42 mozilla::TaskController::DoExecuteNextTaskOnlyMainThreadInternal(mozilla::detail::BaseAutoLock<mozilla::Mutex&> const&) /builds/worker/checkouts/gecko/xpcom/threads/TaskController.cpp:720:26 (libxul.so+0xb69570)
[task 2020-11-02T20:57:04.920Z] 20:57:04     INFO - GECKO(3373) |     #43 mozilla::TaskController::ExecuteNextTaskOnlyMainThreadInternal(mozilla::detail::BaseAutoLock<mozilla::Mutex&> const&) /builds/worker/checkouts/gecko/xpcom/threads/TaskController.cpp:579:15 (libxul.so+0xb681d6)
[task 2020-11-02T20:57:04.920Z] 20:57:04     INFO - GECKO(3373) |     #44 mozilla::TaskController::ProcessPendingMTTask(bool) /builds/worker/checkouts/gecko/xpcom/threads/TaskController.cpp:373:36 (libxul.so+0xb68474)
[task 2020-11-02T20:57:04.920Z] 20:57:04     INFO - GECKO(3373) |     #45 operator() /builds/worker/checkouts/gecko/xpcom/threads/TaskController.cpp:120:37 (libxul.so+0xb6e534)
[task 2020-11-02T20:57:04.921Z] 20:57:04     INFO - GECKO(3373) |     #46 mozilla::detail::RunnableFunction<mozilla::TaskController::InitializeInternal()::$_3>::Run() /builds/worker/workspace/obj-build/dist/include/nsThreadUtils.h:577:5 (libxul.so+0xb6e534)
[task 2020-11-02T20:57:04.921Z] 20:57:04     INFO - GECKO(3373) |     #47 nsThread::ProcessNextEvent(bool, bool*) /builds/worker/checkouts/gecko/xpcom/threads/nsThread.cpp:1197:14 (libxul.so+0xb7f4bb)
[task 2020-11-02T20:57:04.921Z] 20:57:04     INFO - GECKO(3373) |     #48 NS_ProcessNextEvent(nsIThread*, bool) /builds/worker/checkouts/gecko/xpcom/threads/nsThreadUtils.cpp:513:10 (libxul.so+0xb84bb2)
[task 2020-11-02T20:57:04.921Z] 20:57:04     INFO - GECKO(3373) |     #49 mozilla::ipc::MessagePump::Run(base::MessagePump::Delegate*) /builds/worker/checkouts/gecko/ipc/glue/MessagePump.cpp:87:21 (libxul.so+0x145dcdd)
[task 2020-11-02T20:57:04.923Z] 20:57:04     INFO - GECKO(3373) |     #50 mozilla::ipc::MessagePumpForChildProcess::Run(base::MessagePump::Delegate*) /builds/worker/checkouts/gecko/ipc/glue/MessagePump.cpp:270:30 (libxul.so+0x145e6bb)
[task 2020-11-02T20:57:04.923Z] 20:57:04     INFO - GECKO(3373) |     #51 RunInternal /builds/worker/checkouts/gecko/ipc/chromium/src/base/message_loop.cc:334:10 (libxul.so+0x13ee9ac)
[task 2020-11-02T20:57:04.923Z] 20:57:04     INFO - GECKO(3373) |     #52 RunHandler /builds/worker/checkouts/gecko/ipc/chromium/src/base/message_loop.cc:327:3 (libxul.so+0x13ee9ac)
[task 2020-11-02T20:57:04.923Z] 20:57:04     INFO - GECKO(3373) |     #53 MessageLoop::Run() /builds/worker/checkouts/gecko/ipc/chromium/src/base/message_loop.cc:309:3 (libxul.so+0x13ee9ac)
[task 2020-11-02T20:57:04.924Z] 20:57:04     INFO - GECKO(3373) |     #54 nsBaseAppShell::Run() /builds/worker/checkouts/gecko/widget/nsBaseAppShell.cpp:137:27 (libxul.so+0x4a1cd03)
[task 2020-11-02T20:57:04.924Z] 20:57:04     INFO - GECKO(3373) |     #55 XRE_RunAppShell() /builds/worker/checkouts/gecko/toolkit/xre/nsEmbedFunctions.cpp:913:20 (libxul.so+0x6672659)
[task 2020-11-02T20:57:04.924Z] 20:57:04     INFO - GECKO(3373) |     #56 mozilla::ipc::MessagePumpForChildProcess::Run(base::MessagePump::Delegate*) /builds/worker/checkouts/gecko/ipc/glue/MessagePump.cpp:237:9 (libxul.so+0x145e66a)
[task 2020-11-02T20:57:04.924Z] 20:57:04     INFO - GECKO(3373) |     #57 RunInternal /builds/worker/checkouts/gecko/ipc/chromium/src/base/message_loop.cc:334:10 (libxul.so+0x13ee9ac)
[task 2020-11-02T20:57:04.926Z] 20:57:04     INFO - GECKO(3373) |     #58 RunHandler /builds/worker/checkouts/gecko/ipc/chromium/src/base/message_loop.cc:327:3 (libxul.so+0x13ee9ac)
[task 2020-11-02T20:57:04.926Z] 20:57:04     INFO - GECKO(3373) |     #59 MessageLoop::Run() /builds/worker/checkouts/gecko/ipc/chromium/src/base/message_loop.cc:309:3 (libxul.so+0x13ee9ac)
[task 2020-11-02T20:57:04.926Z] 20:57:04     INFO - GECKO(3373) |     #60 XRE_InitChildProcess(int, char**, XREChildData const*) /builds/worker/checkouts/gecko/toolkit/xre/nsEmbedFunctions.cpp:744:34 (libxul.so+0x66723da)
[task 2020-11-02T20:57:04.926Z] 20:57:04     INFO - GECKO(3373) |     #61 mozilla::BootstrapImpl::XRE_InitChildProcess(int, char**, XREChildData const*) /builds/worker/checkouts/gecko/toolkit/xre/Bootstrap.cpp:67:12 (libxul.so+0x667a592)
[task 2020-11-02T20:57:04.927Z] 20:57:04     INFO - GECKO(3373) |     #62 content_process_main /builds/worker/checkouts/gecko/browser/app/../../ipc/contentproc/plugin-container.cpp:56:28 (firefox+0xc78e2)
[task 2020-11-02T20:57:04.927Z] 20:57:04     INFO - GECKO(3373) |     #63 main /builds/worker/checkouts/gecko/browser/app/nsBrowserApp.cpp:304:18 (firefox+0xc78e2)
[task 2020-11-02T20:57:04.927Z] 20:57:04     INFO - GECKO(3373) |   Thread T22 'StyleThread#2' (tid=3509, running) created by main thread at:
[task 2020-11-02T20:57:04.927Z] 20:57:04     INFO - GECKO(3373) |     #0 pthread_create /builds/worker/fetches/llvm-project/llvm/projects/compiler-rt/lib/tsan/rtl/tsan_interceptors_posix.cpp:966:3 (firefox+0x5667b)
[task 2020-11-02T20:57:04.929Z] 20:57:04     INFO - GECKO(3373) |     #1 std::sys::unix::thread::Thread::new::h828bcbf015d72557 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/sys/unix/thread.rs:66:19 (libxul.so+0x81a4a25)
[task 2020-11-02T20:57:04.929Z] 20:57:04     INFO - GECKO(3373) |     #2 std::thread::Builder::spawn_unchecked::hb1eae7d0c0f74c73 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/thread/mod.rs:488:22 (libxul.so+0x8039ec5)
[task 2020-11-02T20:57:04.929Z] 20:57:04     INFO - GECKO(3373) |     #3 std::thread::Builder::spawn::h292a09af8e2387fe /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/thread/mod.rs:376:18 (libxul.so+0x8039ec5)
[task 2020-11-02T20:57:04.929Z] 20:57:04     INFO - GECKO(3373) |     #4 _$LT$rayon_core..registry..DefaultSpawn$u20$as$u20$rayon_core..registry..ThreadSpawn$GT$::spawn::h2bac91a9bec049a6 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:101:9 (libxul.so+0x8039ec5)
[task 2020-11-02T20:57:04.930Z] 20:57:04     INFO - GECKO(3373) |     #5 rayon_core::registry::Registry::new::h28ba0d33731a600f /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/registry.rs:260:29 (libxul.so+0x82da277)
[task 2020-11-02T20:57:04.930Z] 20:57:04     INFO - GECKO(3373) |     #6 rayon_core::thread_pool::ThreadPool::build::h1a8c1e514ed2a498 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/thread_pool/mod.rs:69:24 (libxul.so+0x82da277)
[task 2020-11-02T20:57:04.930Z] 20:57:04     INFO - GECKO(3373) |     #7 rayon_core::ThreadPoolBuilder$LT$S$GT$::build::h5aa8aeed04db6df8 /builds/worker/checkouts/gecko/third_party/rust/rayon-core/src/lib.rs:202:9 (libxul.so+0x82da277)
[task 2020-11-02T20:57:04.932Z] 20:57:04     INFO - GECKO(3373) |     #8 _$LT$style..global_style_data..STYLE_THREAD_POOL$u20$as$u20$core..ops..deref..Deref$GT$::deref::__static_ref_initialize::hf52aa0cb8dd5d4c0 /builds/worker/checkouts/gecko/servo/components/style/global_style_data.rs:152:27 (libxul.so+0x82da277)
[task 2020-11-02T20:57:04.932Z] 20:57:04     INFO - GECKO(3373) |     #9 core::ops::function::FnOnce::call_once::hbe1c4d81cb5a7d5d /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/ops/function.rs:227:5 (libxul.so+0x82da277)
[task 2020-11-02T20:57:04.932Z] 20:57:04     INFO - GECKO(3373) |     #10 lazy_static::lazy::Lazy$LT$T$GT$::get::_$u7b$$u7b$closure$u7d$$u7d$::h12d6802a0e227526 /builds/worker/checkouts/gecko/third_party/rust/lazy_static/src/inline_lazy.rs:31:29 (libxul.so+0x82da277)
[task 2020-11-02T20:57:04.932Z] 20:57:04     INFO - GECKO(3373) |     #11 std::sync::once::Once::call_once::_$u7b$$u7b$closure$u7d$$u7d$::h06bb9131f78da655 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/sync/once.rs:261:41 (libxul.so+0x82da277)
[task 2020-11-02T20:57:04.933Z] 20:57:04     INFO - GECKO(3373) |     #12 std::sync::once::Once::call_inner::h76a14c6380371ac9 /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/sync/once.rs:419:21 (libxul.so+0x81973c2)
[task 2020-11-02T20:57:04.933Z] 20:57:04     INFO - GECKO(3373) |     #13 std::sync::once::Once::call_once::ha4358448b53b173e /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/std/src/sync/once.rs:261:9 (libxul.so+0x84e3f5d)
[task 2020-11-02T20:57:04.933Z] 20:57:04     INFO - GECKO(3373) |     #14 lazy_static::lazy::Lazy$LT$T$GT$::get::hc9dca1f1c579fab7 /builds/worker/checkouts/gecko/third_party/rust/lazy_static/src/inline_lazy.rs:30:9 (libxul.so+0x84e3f5d)
[task 2020-11-02T20:57:04.935Z] 20:57:04     INFO - GECKO(3373) |     #15 _$LT$style..global_style_data..STYLE_THREAD_POOL$u20$as$u20$core..ops..deref..Deref$GT$::deref::__stability::hb5e379b5f34d0877 /builds/worker/checkouts/gecko/third_party/rust/lazy_static/src/lib.rs:142:21 (libxul.so+0x84e3f5d)
[task 2020-11-02T20:57:04.935Z] 20:57:04     INFO - GECKO(3373) |     #16 _$LT$style..global_style_data..STYLE_THREAD_POOL$u20$as$u20$core..ops..deref..Deref$GT$::deref::h3d6b7c0ec888b62c /builds/worker/checkouts/gecko/third_party/rust/lazy_static/src/lib.rs:144:17 (libxul.so+0x84e3f5d)
[task 2020-11-02T20:57:04.935Z] 20:57:04     INFO - GECKO(3373) |     #17 geckoservo::glue::traverse_subtree::h8966d782c04d7cf3 /builds/worker/checkouts/gecko/servo/ports/geckolib/glue.rs:257:31 (libxul.so+0x7bdc86c)
[task 2020-11-02T20:57:04.935Z] 20:57:04     INFO - GECKO(3373) |     #18 Servo_TraverseSubtree /builds/worker/checkouts/gecko/servo/ports/geckolib/glue.rs:327:5 (libxul.so+0x7bdc335)
[task 2020-11-02T20:57:04.936Z] 20:57:04     INFO - GECKO(3373) |     #19 mozilla::ServoStyleSet::StyleNewSubtree(mozilla::dom::Element*) /builds/worker/checkouts/gecko/layout/style/ServoStyleSet.cpp:806:7 (libxul.so+0x4c7880d)
[task 2020-11-02T20:57:04.936Z] 20:57:04     INFO - GECKO(3373) |     #20 nsCSSFrameConstructor::ConstructDocElementFrame(mozilla::dom::Element*) /builds/worker/checkouts/gecko/layout/base/nsCSSFrameConstructor.cpp:2164:29 (libxul.so+0x4d5bc13)
[task 2020-11-02T20:57:04.936Z] 20:57:04     INFO - GECKO(3373) |     #21 nsCSSFrameConstructor::ContentRangeInserted(nsIContent*, nsIContent*, nsCSSFrameConstructor::InsertionKind) /builds/worker/checkouts/gecko/layout/base/nsCSSFrameConstructor.cpp:6929:9 (libxul.so+0x4d6ca4c)
[task 2020-11-02T20:57:04.938Z] 20:57:04     INFO - GECKO(3373) |     #22 nsCSSFrameConstructor::ContentInserted(nsIContent*, nsCSSFrameConstructor::InsertionKind) /builds/worker/checkouts/gecko/layout/base/nsCSSFrameConstructor.cpp:6847:3 (libxul.so+0x4d6c631)
[task 2020-11-02T20:57:04.938Z] 20:57:04     INFO - GECKO(3373) |     #23 mozilla::PresShell::Initialize() /builds/worker/checkouts/gecko/layout/base/PresShell.cpp:1866:26 (libxul.so+0x4d0e609)
[task 2020-11-02T20:57:04.938Z] 20:57:04     INFO - GECKO(3373) |     #24 nsContentSink::StartLayout(bool) /builds/worker/checkouts/gecko/dom/base/nsContentSink.cpp:1140:30 (libxul.so+0x25a8bc6)
[task 2020-11-02T20:57:04.938Z] 20:57:04     INFO - GECKO(3373) |     #25 HTMLContentSink::OpenBody() /builds/worker/checkouts/gecko/dom/html/nsHTMLContentSink.cpp:776:3 (libxul.so+0x3aad4b3)
[task 2020-11-02T20:57:04.939Z] 20:57:04     INFO - GECKO(3373) |     #26 HTMLContentSink::OpenContainer(nsIHTMLContentSink::ElementType) /builds/worker/checkouts/gecko/dom/html/nsHTMLContentSink.cpp:795:12 (libxul.so+0x3aad501)
[task 2020-11-02T20:57:04.939Z] 20:57:04     INFO - GECKO(3373) |     #27 non-virtual thunk to HTMLContentSink::OpenContainer(nsIHTMLContentSink::ElementType) /builds/worker/checkouts/gecko/dom/html/nsHTMLContentSink.cpp (libxul.so+0x3aad6a2)
[task 2020-11-02T20:57:04.939Z] 20:57:04     INFO - GECKO(3373) |     #28 CNavDTD::BuildModel(nsITokenizer*, nsIContentSink*) /builds/worker/checkouts/gecko/parser/htmlparser/CNavDTD.cpp:36:14 (libxul.so+0x1b8ac4d)
[task 2020-11-02T20:57:04.939Z] 20:57:04     INFO - GECKO(3373) |     #29 BuildModel /builds/worker/checkouts/gecko/parser/htmlparser/nsParser.cpp:1058:22 (libxul.so+0x1b93071)
[task 2020-11-02T20:57:04.941Z] 20:57:04     INFO - GECKO(3373) |     #30 nsParser::ResumeParse(bool, bool, bool) /builds/worker/checkouts/gecko/parser/htmlparser/nsParser.cpp:963:18 (libxul.so+0x1b93071)
[task 2020-11-02T20:57:04.941Z] 20:57:04     INFO - GECKO(3373) |     #31 OnStopRequest /builds/worker/checkouts/gecko/parser/htmlparser/nsParser.cpp:1352:10 (libxul.so+0x1b959a0)
[task 2020-11-02T20:57:04.941Z] 20:57:04     INFO - GECKO(3373) |     #32 non-virtual thunk to nsParser::OnStopRequest(nsIRequest*, nsresult) /builds/worker/checkouts/gecko/parser/htmlparser/nsParser.cpp (libxul.so+0x1b959a0)
[task 2020-11-02T20:57:04.941Z] 20:57:04     INFO - GECKO(3373) |     #33 nsDocumentOpenInfo::OnStopRequest(nsIRequest*, nsresult) /builds/worker/checkouts/gecko/uriloader/base/nsURILoader.cpp:215:15 (libxul.so+0x1b0f721)
[task 2020-11-02T20:57:04.942Z] 20:57:04     INFO - GECKO(3373) |     #34 nsBaseChannel::OnStopRequest(nsIRequest*, nsresult) /builds/worker/checkouts/gecko/netwerk/base/nsBaseChannel.cpp:853:16 (libxul.so+0xcae4a5)
[task 2020-11-02T20:57:04.942Z] 20:57:04     INFO - GECKO(3373) |     #35 non-virtual thunk to nsBaseChannel::OnStopRequest(nsIRequest*, nsresult) /builds/worker/checkouts/gecko/netwerk/base/nsBaseChannel.cpp (libxul.so+0xcae622)
[task 2020-11-02T20:57:04.942Z] 20:57:04     INFO - GECKO(3373) |     #36 nsInputStreamPump::OnStateStop() /builds/worker/checkouts/gecko/netwerk/base/nsInputStreamPump.cpp:649:16 (libxul.so+0xcd71a3)
[task 2020-11-02T20:57:04.942Z] 20:57:04     INFO - GECKO(3373) |     #37 nsInputStreamPump::OnInputStreamReady(nsIAsyncInputStream*) /builds/worker/checkouts/gecko/netwerk/base/nsInputStreamPump.cpp:397:21 (libxul.so+0xcd62f2)
[task 2020-11-02T20:57:04.944Z] 20:57:04     INFO - GECKO(3373) |     #38 non-virtual thunk to nsInputStreamPump::OnInputStreamReady(nsIAsyncInputStream*) /builds/worker/checkouts/gecko/netwerk/base/nsInputStreamPump.cpp (libxul.so+0xcd7429)
[task 2020-11-02T20:57:04.944Z] 20:57:04     INFO - GECKO(3373) |     #39 RunAsyncWaitCallback /builds/worker/checkouts/gecko/xpcom/io/NonBlockingAsyncInputStream.cpp:397:13 (libxul.so+0xb0da9c)
[task 2020-11-02T20:57:04.944Z] 20:57:04     INFO - GECKO(3373) |     #40 mozilla::NonBlockingAsyncInputStream::AsyncWaitRunnable::Run() /builds/worker/checkouts/gecko/xpcom/io/NonBlockingAsyncInputStream.cpp:33:14 (libxul.so+0xb0da9c)
[task 2020-11-02T20:57:04.944Z] 20:57:04     INFO - GECKO(3373) |     #41 mozilla::RunnableTask::Run() /builds/worker/checkouts/gecko/xpcom/threads/TaskController.cpp:450:16 (libxul.so+0xb6b542)
[task 2020-11-02T20:57:04.945Z] 20:57:04     INFO - GECKO(3373) |     #42 mozilla::TaskController::DoExecuteNextTaskOnlyMainThreadInternal(mozilla::detail::BaseAutoLock<mozilla::Mutex&> const&) /builds/worker/checkouts/gecko/xpcom/threads/TaskController.cpp:720:26 (libxul.so+0xb69570)
[task 2020-11-02T20:57:04.945Z] 20:57:04     INFO - GECKO(3373) |     #43 mozilla::TaskController::ExecuteNextTaskOnlyMainThreadInternal(mozilla::detail::BaseAutoLock<mozilla::Mutex&> const&) /builds/worker/checkouts/gecko/xpcom/threads/TaskController.cpp:579:15 (libxul.so+0xb681d6)
[task 2020-11-02T20:57:04.945Z] 20:57:04     INFO - GECKO(3373) |     #44 mozilla::TaskController::ProcessPendingMTTask(bool) /builds/worker/checkouts/gecko/xpcom/threads/TaskController.cpp:373:36 (libxul.so+0xb68474)
[task 2020-11-02T20:57:04.945Z] 20:57:04     INFO - GECKO(3373) |     #45 operator() /builds/worker/checkouts/gecko/xpcom/threads/TaskController.cpp:120:37 (libxul.so+0xb6e534)
[task 2020-11-02T20:57:04.947Z] 20:57:04     INFO - GECKO(3373) |     #46 mozilla::detail::RunnableFunction<mozilla::TaskController::InitializeInternal()::$_3>::Run() /builds/worker/workspace/obj-build/dist/include/nsThreadUtils.h:577:5 (libxul.so+0xb6e534)
[task 2020-11-02T20:57:04.947Z] 20:57:04     INFO - GECKO(3373) |     #47 nsThread::ProcessNextEvent(bool, bool*) /builds/worker/checkouts/gecko/xpcom/threads/nsThread.cpp:1197:14 (libxul.so+0xb7f4bb)
[task 2020-11-02T20:57:04.947Z] 20:57:04     INFO - GECKO(3373) |     #48 NS_ProcessNextEvent(nsIThread*, bool) /builds/worker/checkouts/gecko/xpcom/threads/nsThreadUtils.cpp:513:10 (libxul.so+0xb84bb2)
[task 2020-11-02T20:57:04.948Z] 20:57:04     INFO - GECKO(3373) |     #49 mozilla::ipc::MessagePump::Run(base::MessagePump::Delegate*) /builds/worker/checkouts/gecko/ipc/glue/MessagePump.cpp:87:21 (libxul.so+0x145dcdd)
[task 2020-11-02T20:57:04.948Z] 20:57:04     INFO - GECKO(3373) |     #50 mozilla::ipc::MessagePumpForChildProcess::Run(base::MessagePump::Delegate*) /builds/worker/checkouts/gecko/ipc/glue/MessagePump.cpp:270:30 (libxul.so+0x145e6bb)
[task 2020-11-02T20:57:04.948Z] 20:57:04     INFO - GECKO(3373) |     #51 RunInternal /builds/worker/checkouts/gecko/ipc/chromium/src/base/message_loop.cc:334:10 (libxul.so+0x13ee9ac)
[task 2020-11-02T20:57:04.948Z] 20:57:04     INFO - GECKO(3373) |     #52 RunHandler /builds/worker/checkouts/gecko/ipc/chromium/src/base/message_loop.cc:327:3 (libxul.so+0x13ee9ac)
[task 2020-11-02T20:57:04.949Z] 20:57:04     INFO - GECKO(3373) |     #53 MessageLoop::Run() /builds/worker/checkouts/gecko/ipc/chromium/src/base/message_loop.cc:309:3 (libxul.so+0x13ee9ac)
[task 2020-11-02T20:57:04.950Z] 20:57:04     INFO - GECKO(3373) |     #54 nsBaseAppShell::Run() /builds/worker/checkouts/gecko/widget/nsBaseAppShell.cpp:137:27 (libxul.so+0x4a1cd03)
[task 2020-11-02T20:57:04.950Z] 20:57:04     INFO - GECKO(3373) |     #55 XRE_RunAppShell() /builds/worker/checkouts/gecko/toolkit/xre/nsEmbedFunctions.cpp:913:20 (libxul.so+0x6672659)
[task 2020-11-02T20:57:04.951Z] 20:57:04     INFO - GECKO(3373) |     #56 mozilla::ipc::MessagePumpForChildProcess::Run(base::MessagePump::Delegate*) /builds/worker/checkouts/gecko/ipc/glue/MessagePump.cpp:237:9 (libxul.so+0x145e66a)
[task 2020-11-02T20:57:04.951Z] 20:57:04     INFO - GECKO(3373) |     #57 RunInternal /builds/worker/checkouts/gecko/ipc/chromium/src/base/message_loop.cc:334:10 (libxul.so+0x13ee9ac)
[task 2020-11-02T20:57:04.951Z] 20:57:04     INFO - GECKO(3373) |     #58 RunHandler /builds/worker/checkouts/gecko/ipc/chromium/src/base/message_loop.cc:327:3 (libxul.so+0x13ee9ac)
[task 2020-11-02T20:57:04.952Z] 20:57:04     INFO - GECKO(3373) |     #59 MessageLoop::Run() /builds/worker/checkouts/gecko/ipc/chromium/src/base/message_loop.cc:309:3 (libxul.so+0x13ee9ac)
[task 2020-11-02T20:57:04.953Z] 20:57:04     INFO - GECKO(3373) |     #60 XRE_InitChildProcess(int, char**, XREChildData const*) /builds/worker/checkouts/gecko/toolkit/xre/nsEmbedFunctions.cpp:744:34 (libxul.so+0x66723da)
[task 2020-11-02T20:57:04.953Z] 20:57:04     INFO - GECKO(3373) |     #61 mozilla::BootstrapImpl::XRE_InitChildProcess(int, char**, XREChildData const*) /builds/worker/checkouts/gecko/toolkit/xre/Bootstrap.cpp:67:12 (libxul.so+0x667a592)
[task 2020-11-02T20:57:04.953Z] 20:57:04     INFO - GECKO(3373) |     #62 content_process_main /builds/worker/checkouts/gecko/browser/app/../../ipc/contentproc/plugin-container.cpp:56:28 (firefox+0xc78e2)
[task 2020-11-02T20:57:04.953Z] 20:57:04     INFO - GECKO(3373) |     #63 main /builds/worker/checkouts/gecko/browser/app/nsBrowserApp.cpp:304:18 (firefox+0xc78e2)
[task 2020-11-02T20:57:04.954Z] 20:57:04     INFO - GECKO(3373) | SUMMARY: ThreadSanitizer: data race /builds/worker/fetches/rustc/lib/rustlib/src/rust/library/core/src/ptr/mod.rs:1114:9 in core::ptr::write_volatile::h7a232bf65594a1ed
[task 2020-11-02T20:57:04.955Z] 20:57:04     INFO - GECKO(3373) | ==================

@Gankra
Copy link
Author

Gankra commented Nov 2, 2020

Also: if you want to test rayon with tsan, you just need to build/run your tests with:

RUSTFLAGS=-Zsanitizer=thread cargo test -Zbuild-std

Sadly this is limited to Rust nightly, and only on x64(?) linux. I don't have a linux machine setup right now so I can't try to reproduce this locally.

@cuviper
Copy link
Member

cuviper commented Nov 2, 2020

Running crossbeam-deque's testsuite that way finds a lot of warnings, including a Buffer::write/read race like your report.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants