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

ICE: assertion failed: i < this.fields.count() #86050

Closed
max-cura opened this issue Jun 6, 2021 · 1 comment
Closed

ICE: assertion failed: i < this.fields.count() #86050

max-cura opened this issue Jun 6, 2021 · 1 comment
Labels
C-bug Category: This is a bug. I-ICE Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️ T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.

Comments

@max-cura
Copy link

max-cura commented Jun 6, 2021

The key line seems to be the Box::from_raw_in(/*pointer*/, allocator) where allocator is specifically coming out of an Option; other than that I haven't the faintest where this is coming from.

Code

#![feature(allocator_api)]

use std::alloc::{Allocator, Global};
use std::ops::Drop;

pub struct CirqueLog<A: Allocator> {
    allocator: Option<A>,
}

fn main() {
    CirqueLog::<Global>::new();
}

impl<A: Allocator> Drop for CirqueLog<A> {
    fn drop(&mut self) {
        match &self.allocator {
            None => (),
            Some(allocator) => unsafe {
                Box::from_raw_in(std::ptr::null_mut() as *mut u8, allocator);
            },
        }
        // also will error:
        //if let Some(allocator) = &self.allocator {
        //    unsafe { Box::from_raw_in(std::ptr::null_mut() as *mut u8, allocator); }
        //}
    }
}

impl<A: Allocator> CirqueLog<A> {
    pub fn new() -> CirqueLog<Global> {
        CirqueLog {
            allocator: Some(Global),
        }
    }
}

Meta

rustc --version --verbose:

rustc 1.54.0-nightly (9111b8ae9 2021-05-26)
binary: rustc
commit-hash: 9111b8ae9793f18179a1336417618fc07a9cac85
commit-date: 2021-05-26
host: x86_64-apple-darwin
release: 1.54.0-nightly
LLVM version: 12.0.1

(also breaks on playground)

Error output

thread 'rustc' panicked at 'assertion failed: i < this.fields.count()', /rustc/9111b8ae9793f18179a1336417618fc07a9cac85/compiler/rustc_middle/src/ty/layout.rs:2189:21
Backtrace

stack backtrace:
   0: _rust_begin_unwind
   1: core::panicking::panic_fmt
   2: core::panicking::panic
   3: rustc_middle::ty::layout::<impl rustc_target::abi::TyAndLayoutMethods<C> for &rustc_middle::ty::TyS>::field::ty_and_layout_kind
   4: <rustc_target::abi::TyAndLayout<&rustc_middle::ty::TyS> as rustc_codegen_llvm::type_of::LayoutLlvmExt>::scalar_pair_element_llvm_type
   5: <rustc_target::abi::TyAndLayout<&rustc_middle::ty::TyS> as rustc_codegen_llvm::type_of::LayoutLlvmExt>::scalar_pair_element_llvm_type
   6: <rustc_target::abi::call::FnAbi<&rustc_middle::ty::TyS> as rustc_codegen_llvm::abi::FnAbiLlvmExt>::llvm_type
   7: rustc_codegen_llvm::mono_item::<impl rustc_codegen_ssa::traits::declare::PreDefineMethods for rustc_codegen_llvm::context::CodegenCx>::predefine_fn
   8: rustc_codegen_llvm::base::compile_codegen_unit::module_codegen
   9: rustc_query_system::dep_graph::graph::DepGraph<K>::with_task
  10: rustc_codegen_llvm::base::compile_codegen_unit
  11: rustc_codegen_ssa::base::codegen_crate
  12: <rustc_codegen_llvm::LlvmCodegenBackend as rustc_codegen_ssa::traits::backend::CodegenBackend>::codegen_crate
  13: rustc_interface::queries::Queries::ongoing_codegen
  14: rustc_span::with_session_globals

@max-cura max-cura added C-bug Category: This is a bug. I-ICE Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️ T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. labels Jun 6, 2021
@max-cura max-cura changed the title ICE, probably from Box::from_raw_in ICE, unknown origin Jun 6, 2021
@max-cura max-cura changed the title ICE, unknown origin ICE: assertion failed: i < this.fields.count() Jun 6, 2021
@jyn514
Copy link
Member

jyn514 commented Jun 6, 2021

Duplicate of #78459.

@jyn514 jyn514 closed this as completed Jun 6, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C-bug Category: This is a bug. I-ICE Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️ T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
Projects
None yet
Development

No branches or pull requests

2 participants