Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
GHC
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
gershomb
GHC
Commits
aa9dc323
Commit
aa9dc323
authored
4 years ago
by
Ben Gamari
Browse files
Options
Downloads
Patches
Plain Diff
FastString: Use FastMutInt instead of IORef Int
This saves at least one I# allocation per FastString.
parent
41b183d6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
compiler/GHC/Data/FastString.hs
+13
-12
13 additions, 12 deletions
compiler/GHC/Data/FastString.hs
with
13 additions
and
12 deletions
compiler/GHC/Data/FastString.hs
+
13
−
12
View file @
aa9dc323
...
...
@@ -120,6 +120,7 @@ import GHC.Utils.Encoding
import
GHC.Utils.IO.Unsafe
import
GHC.Utils.Panic.Plain
import
GHC.Utils.Misc
import
GHC.Data.FastMutInt
import
Control.Concurrent.MVar
import
Control.DeepSeq
...
...
@@ -339,7 +340,7 @@ maybeResizeSegment segmentRef = do
segment
@
(
FastStringTableSegment
lock
counter
old
#
)
<-
readIORef
segmentRef
let
oldSize
#
=
sizeofMutableArray
#
old
#
newSize
#
=
oldSize
#
*#
2
#
(
I
#
n
#
)
<-
read
IORef
counter
(
I
#
n
#
)
<-
read
FastMutInt
counter
if
isTrue
#
(
n
#
<#
newSize
#
)
-- maximum load of 1
then
return
segment
else
do
...
...
@@ -373,8 +374,8 @@ stringTable = unsafePerformIO $ do
(
FastStringTableSegment
lock
counter
buckets
#
)
`
unIO
`
s4
#
of
(
#
s5
#
,
segment
#
)
->
case
writeArray
#
a
#
i
#
segment
s5
#
of
s6
#
->
loop
a
#
(
i
#
+#
1
#
)
s6
#
uid
<-
new
IORef
603979776
-- ord '$' * 0x01000000
n_zencs
<-
new
IORef
0
uid
<-
new
FastMutInt
603979776
-- ord '$' * 0x01000000
n_zencs
<-
new
FastMutInt
0
tab
<-
IO
$
\
s1
#
->
case
newArray
#
numSegments
#
(
panic
"string_table"
)
s1
#
of
(
#
s2
#
,
arr
#
#
)
->
case
loop
arr
#
0
#
s2
#
of
...
...
@@ -456,7 +457,7 @@ The procedure goes like this:
-}
mkFastStringWith
::
(
Int
->
IORef
Int
->
IO
FastString
)
->
ShortByteString
->
IO
FastString
::
(
Int
->
FastMut
Int
->
IO
FastString
)
->
ShortByteString
->
IO
FastString
mkFastStringWith
mk_fs
sbs
=
do
FastStringTableSegment
lock
_
buckets
#
<-
readIORef
segmentRef
let
idx
#
=
hashToIndex
#
buckets
#
hash
#
...
...
@@ -473,7 +474,7 @@ mkFastStringWith mk_fs sbs = do
withMVar
lock
$
\
_
->
insert
new_fs
where
!
(
FastStringTable
uid
n_zencs
segments
#
)
=
stringTable
get_uid
=
atomic
ModifyIORef'
uid
$
\
n
->
(
n
+
1
,
n
)
get_uid
=
atomic
FetchAddFastMut
uid
1
!
(
I
#
hash
#
)
=
hashStr
sbs
(
#
segmentRef
#
)
=
indexArray
#
segments
#
(
hashToSegment
#
hash
#
)
...
...
@@ -488,9 +489,9 @@ mkFastStringWith mk_fs sbs = do
Just
found
->
return
found
Nothing
->
do
IO
$
\
s1
#
->
case
writeArray
#
buckets
#
idx
#
(
fs
:
bucket
)
s1
#
of
case
writeArray
#
buckets
#
idx
#
(
fs
:
bucket
)
s1
#
of
s2
#
->
(
#
s2
#
,
()
#
)
modifyIORef'
counter
succ
_
<-
atomicFetchAddFastMut
counter
1
return
fs
bucket_match
::
[
FastString
]
->
ShortByteString
->
IO
(
Maybe
FastString
)
...
...
@@ -540,14 +541,14 @@ mkFastStringByteList :: [Word8] -> FastString
mkFastStringByteList
str
=
mkFastStringShortByteString
(
SBS
.
pack
str
)
-- | Creates a (lazy) Z-encoded 'FastString' from a 'ShortByteString' and
-- account the number of forced z-strings into the passed 'IORef'.
-- account the number of forced z-strings into the passed 'FastMutInt'.
mkZFastString
::
FastMutInt
->
ShortByteString
->
FastZString
mkZFastString
n_zencs
sbs
=
unsafePerformIO
$
do
mkZFastS
tring
n_zencs
sbs
=
unsafePerformIO
$
do
_
<-
atomic
FetchAddFastMut
n_zencs
1
return
$
mkFastZStringString
(
zEncodeString
(
utf8DecodeShortByteString
sbs
))
mkNewFastStringShortByteString
::
ShortByteString
->
Int
mkNewFastStringShortByteString
::
ShortB
yteString
->
Int
->
FastMut
Int
->
IO
FastString
mkNewFastStringShortByteString
sbs
uid
n_zencs
=
do
let
zstr
=
mkZFastString
n_zencs
sbs
chars
<-
countUTF8Chars
sbs
...
...
@@ -643,7 +644,7 @@ getFastStringTable =
!
(
FastStringTable
_
_
segments
#
)
=
stringTable
getFastStringZEncCounter
::
IO
Int
getFastStringZEncCounter
=
read
IORef
n_zencs
getFastStringZEncCounter
=
read
FastMutInt
n_zencs
where
!
(
FastStringTable
_
n_zencs
_
)
=
stringTable
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment