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

assertion failure while compiling code with multibytes characters #11178

Closed
youknowone opened this issue Dec 28, 2013 · 4 comments
Closed

assertion failure while compiling code with multibytes characters #11178

youknowone opened this issue Dec 28, 2013 · 4 comments
Labels
A-diagnostics Area: Messages for errors, warnings, and lints I-ICE Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️

Comments

@youknowone
Copy link
Contributor

by @klutzy, this is related to #4780

test code:

I used 2 files

a.rs

a아b희c방d맣e희f

b.rs

mod a;

error

$ rustc b.rs 
task 'rustc' failed at 'assertion failed: bpos == mbc.pos || bpos.to_uint() >= mbc.pos.to_uint() + mbc.bytes', /Users/youknowone/Projects/rust/src/libsyntax/codemap.rs:479
task '<main>' failed at 'explicit failure', /Users/youknowone/Projects/rust/src/librustc/lib.rs:441

rustc version is d2a4a10

@chris-morgan
Copy link
Member

My own observations with box drawing characters is that the precise position of things matters:

        // Let us imagine it modelled thus:
        //       <----x++++>
        //     ^ ┌─┬─┬─┬─┬─┐
        //     - ├─┼─┼─┼─┼─┤
        //     y ├─┼─╆━╅─┼─┤
        //     + ├─┼─╄━╃─┼─┤
        //     + ├─┼─┼─┼─┼─┤
        //     v └─┴─┴─┴─┴─┘
        // The current cell (x, y) is that one in the middle.
        // The top left is (x−2, y−2), &c.

I had it thus and it didn't work. I removed the <----x++++> line and the ^-y++v and space-to-its-right columns and lo! it was working—only one of those remedies and it ICEs, but both and it works. Or once it's working, make some other modifications earlier in the file and it ICEs up again.

I guess there's some dodgy multibyte character counting happening somewhere, or something very similar.

@klutzy
Copy link
Contributor

klutzy commented Jan 21, 2014

I originally got this error (1~2 months ago) when I tried to build small subset of libstd: when I added some lines from ascii.rs, rustc ICEd.
I think we need to fix this before 1.0.

@SiegeLord
Copy link
Contributor

Probably same as #11136. Hit the same issue today, and worked around it by shuffling some lines: SiegeLord/RustAlgebloat@78bc6e6.

@lambda-fairy
Copy link
Contributor

I managed to wrangle a backtrace out of rustc: https://gist.github.com/lfairy/9011238

From what I've seen, the ICE happens right after a.rs fails to parse. The parser then attempts to print a diagnostic; unfortunately, it creates an invalid span, triggering the assertion.

lambda-fairy added a commit to lambda-fairy/rose that referenced this issue Feb 18, 2014
huonw added a commit to huonw/rust that referenced this issue Feb 23, 2014
file.

Previously multibyte UTF-8 chars were being recorded as byte offsets
from the start of the file, and then later compared against global byte
positions, resulting in the compiler possibly thinking it had a byte
position pointing inside a multibyte character, if there were multibyte
characters in any non-crate files. (Although, sometimes the byte offsets
line up just right to not ICE, but that was a coincidence.)

Fixes rust-lang#11136.
Fixes rust-lang#11178.
@huonw huonw closed this as completed in ff79a44 Feb 25, 2014
larsbergstrom pushed a commit to larsbergstrom/rust that referenced this issue Apr 1, 2014
file.

Previously multibyte UTF-8 chars were being recorded as byte offsets
from the start of the file, and then later compared against global byte
positions, resulting in the compiler possibly thinking it had a byte
position pointing inside a multibyte character, if there were multibyte
characters in any non-crate files. (Although, sometimes the byte offsets
line up just right to not ICE, but that was a coincidence.)

Fixes rust-lang#11136.
Fixes rust-lang#11178.
flip1995 pushed a commit to flip1995/rust that referenced this issue Jul 31, 2023
Allow `Self::cmp(self, other)` as a correct impl

Fixes rust-lang#11178

Also no longer checks if the method name is *just* cmp, but the path. That was an oversight on my part ^^

r? `@xFrednet`
(and `@blyxyas` too!)

changelog: [`incorrect_partial_ord_impl_on_ord_type`]: Now allows non-method calls to `cmp` like `Self::cmp(self, other)`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-diagnostics Area: Messages for errors, warnings, and lints I-ICE Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
Projects
None yet
Development

No branches or pull requests

6 participants