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

StringLiteral consumers may not be CR-aware #2163

Closed
headius opened this issue Nov 9, 2014 · 3 comments
Closed

StringLiteral consumers may not be CR-aware #2163

headius opened this issue Nov 9, 2014 · 3 comments

Comments

@headius
Copy link
Member

headius commented Nov 9, 2014

The old StrNode propagated CR from the parser into the eventual String. Our new IR was not doing so until @cheald added it in 1899c26 to fix test_slice in mri/ruby/test_string.rb. However, there may be (are likely) other consumers of StringLiteral that are just going straight for the ByteList.

We need to audit all consumers of StringLiteral and make sure they are made CR-aware.

The changes made in 1899c26 broke the JIT logic because that logic was not re-checking the CR of the string as it is being built...it only checked it based on the operands. So for the moment I'm disabling the optimized ByteList logic in the JIT. That will need to be fixed and restored for this bug.

@headius headius added this to the JRuby 9.0.0.0 milestone Nov 9, 2014
@cheald
Copy link
Contributor

cheald commented Nov 9, 2014

There are a number of places where StringLiterals are created, as well, and CR information isn't passed into them, so both consumers and creators should probably be audited.

@enebo
Copy link
Member

enebo commented Nov 10, 2014

CR is a weird beast but I think if we CODERANGE_UNKNOWN all internal String code should be able to cope with recalculating it.

@enebo enebo modified the milestones: 9.0.0.0.pre2, JRuby 9.0.0.0 Feb 10, 2015
@headius
Copy link
Member Author

headius commented Apr 17, 2015

I did a review of all StringLiteral.byteList/getByteList consumers and fixed a few places (d2ea85f) where we weren't using the cr from StringLiteral. Calling this done.

@headius headius closed this as completed Apr 17, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants