We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When compiling qdrant, in collect_crate_mono_items(), after collecting mono items
collect_crate_mono_items()
SURust/compiler/rustc_monomorphize/src/collector.rs
Line 318 in 6e4b607
compiler/rustc_metadata/src/rmeta/decoder.rs:1236:17: get_optimized_mir: missing MIR for `DefId(18:665 ~ syncbox[eed3]::run::Task::run)`
for item in visited.get_ref() { match item { MonoItem::Fn(instance) => { let def_id = instance.def_id(); let body = tcx.optimized_mir(def_id); }, _ => {} } }
Line 335 in 6e4b607
SURust/compiler/rustc_mir_transform/src/sandbox/summarize_fn.rs
Line 416 in 6e4b607
rustc --version --verbose:
rustc --version --verbose
rustc 1.58.1-dev binary: rustc commit-hash: unknown commit-date: unknown host: aarch64-apple-darwin release: 1.58.1-dev LLVM version: 13.0.0
compiler/rustc_metadata/src/rmeta/decoder.rs:1236:17: get_optimized_mir: missing MIR for `DefId(18:665 ~ syncbox[eed3]::run::Task::run)
thread 'rustc' panicked at 'Box<dyn Any>', compiler/rustc_errors/src/lib.rs:1169:9 stack backtrace: 0: std::panicking::begin_panic::<rustc_errors::ExplicitBug> 1: std::panic::panic_any::<rustc_errors::ExplicitBug> 2: <rustc_errors::HandlerInner>::bug 3: <rustc_errors::Handler>::bug 4: rustc_middle::util::bug::opt_span_bug_fmt::<rustc_span::span_encoding::Span>::{closure#0} 5: rustc_middle::ty::context::tls::with_opt::<rustc_middle::util::bug::opt_span_bug_fmt<rustc_span::span_encoding::Span>::{closure#0}, ()>::{closure#0} 6: rustc_middle::ty::context::tls::with_opt::<rustc_middle::util::bug::opt_span_bug_fmt<rustc_span::span_encoding::Span>::{closure#0}, ()> 7: rustc_middle::util::bug::opt_span_bug_fmt::<rustc_span::span_encoding::Span> 8: rustc_middle::util::bug::bug_fmt 9: <rustc_metadata::creader::CrateMetadataRef>::get_optimized_mir::{closure#0} 10: <rustc_metadata::creader::CrateMetadataRef>::get_optimized_mir 11: rustc_metadata::rmeta::decoder::cstore_impl::provide_extern::optimized_mir 12: rustc_query_system::query::plumbing::try_execute_query::<rustc_query_impl::plumbing::QueryCtxt, rustc_query_system::query::caches::DefaultCache<rustc_span::def_id::DefId, &rustc_middle::mir::Body>> 13: rustc_query_system::query::plumbing::get_query::<rustc_query_impl::queries::optimized_mir, rustc_query_impl::plumbing::QueryCtxt> 14: rustc_mir_transform::sandbox::summarize_fn::summarize 15: rustc_monomorphize::collector::collect_crate_mono_items 16: rustc_monomorphize::partitioning::collect_and_partition_mono_items 17: rustc_query_system::query::plumbing::try_execute_query::<rustc_query_impl::plumbing::QueryCtxt, rustc_query_system::query::caches::DefaultCache<(), (&std::collections::hash::set::HashSet<rustc_span::def_id::DefId, core::hash::BuildHasherDefault<rustc_hash::FxHasher>>, &[rustc_middle::mir::mono::CodegenUnit])>> 18: rustc_query_system::query::plumbing::get_query::<rustc_query_impl::queries::collect_and_partition_mono_items, rustc_query_impl::plumbing::QueryCtxt> 19: rustc_codegen_ssa::base::codegen_crate::<rustc_codegen_llvm::LlvmCodegenBackend> 20: <rustc_codegen_llvm::LlvmCodegenBackend as rustc_codegen_ssa::traits::backend::CodegenBackend>::codegen_crate 21: <rustc_session::session::Session>::time::<alloc::boxed::Box<dyn core::any::Any>, rustc_interface::passes::start_codegen::{closure#0}> 22: rustc_interface::passes::start_codegen 23: <rustc_interface::passes::QueryContext>::enter::<<rustc_interface::queries::Queries>::ongoing_codegen::{closure#0}::{closure#0}, core::result::Result<alloc::boxed::Box<dyn core::any::Any>, rustc_errors::ErrorReported>> 24: <rustc_interface::queries::Query<alloc::boxed::Box<dyn core::any::Any>>>::compute::<<rustc_interface::queries::Queries>::ongoing_codegen::{closure#0}> 25: <rustc_interface::interface::Compiler>::enter::<rustc_driver::run_compiler::{closure#1}::{closure#2}, core::result::Result<core::option::Option<rustc_interface::queries::Linker>, rustc_errors::ErrorReported>> 26: rustc_span::with_source_map::<core::result::Result<(), rustc_errors::ErrorReported>, rustc_interface::interface::create_compiler_and_run<core::result::Result<(), rustc_errors::ErrorReported>, rustc_driver::run_compiler::{closure#1}>::{closure#1}> 27: rustc_interface::interface::create_compiler_and_run::<core::result::Result<(), rustc_errors::ErrorReported>, rustc_driver::run_compiler::{closure#1}> 28: <scoped_tls::ScopedKey<rustc_span::SessionGlobals>>::set::<rustc_interface::util::setup_callbacks_and_run_in_thread_pool_with_globals<rustc_interface::interface::run_compiler<core::result::Result<(), rustc_errors::ErrorReported>, rustc_driver::run_compiler::{closure#1}>::{closure#0}, core::result::Result<(), rustc_errors::ErrorReported>>::{closure#0}::{closure#0}, core::result::Result<(), rustc_errors::ErrorReported>>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When compiling qdrant, in
collect_crate_mono_items()
, after collecting mono itemsSURust/compiler/rustc_monomorphize/src/collector.rs
Line 318 in 6e4b607
getting the optimized_mir for each item would cause an internal compiler error
Simiplied Code
Current related code
SURust/compiler/rustc_monomorphize/src/collector.rs
Line 335 in 6e4b607
SURust/compiler/rustc_mir_transform/src/sandbox/summarize_fn.rs
Line 416 in 6e4b607
Meta
rustc --version --verbose
:Error output
Backtrace
The text was updated successfully, but these errors were encountered: