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

Fix #28, fix ShortString constructor #35

Merged
merged 1 commit into from
Nov 4, 2020

Conversation

ScottPJones
Copy link
Member

This fixes the access violations that ZJ had seen, where the unsafe_load was trying to access past the end of allocated memory.
Currently, it just does the loading a byte at a time for SubString{String}, but that will be fixed in a later PR to use the same techniques that I used in StrBase.jl, i.e. to align the pointer and only make aligned 4/8 byte loads that are guaranteed to be safe, and then mask / shift.

const CHUNKSZ = sizeof(UInt)
const CHUNKBITS = sizeof(UInt) == 4 ? 32 : 64

@inline function _ss(::Type{T}, str::String, sz) where {T}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why not write:

Suggested change
@inline function _ss(::Type{T}, str::String, sz) where {T}
@inline function _ss(T::Type, str::String, sz)

Also would be good with a docstring or a comment explaining what it is.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I originally just had T, but then worried that Julia might not specialize on that, didn't have the time to double check.
I'll had the docstring in the next PR!

@ScottPJones ScottPJones merged commit 2bba7d5 into JuliaString:master Nov 4, 2020
@ScottPJones ScottPJones deleted the spj/constructor branch November 4, 2020 19:51
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

Successfully merging this pull request may close these issues.

2 participants