Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Glasgow Haskell Compiler
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Shayne Fletcher
Glasgow Haskell Compiler
Commits
7930221e
Commit
7930221e
authored
Aug 01, 2012
by
Simon Marlow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't shortcut call-returns when not splitting proc points
See Note [shortcut call returns]
parent
6ede0067
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
51 additions
and
12 deletions
+51
-12
compiler/cmm/CmmContFlowOpt.hs
compiler/cmm/CmmContFlowOpt.hs
+45
-9
compiler/cmm/CmmPipeline.hs
compiler/cmm/CmmPipeline.hs
+6
-3
No files found.
compiler/cmm/CmmContFlowOpt.hs
View file @
7930221e
...
...
@@ -24,12 +24,12 @@ import Prelude hiding (succ, unzip, zip)
--
-----------------------------------------------------------------------------
cmmCfgOpts
::
CmmGraph
->
CmmGraph
cmmCfgOpts
g
=
fst
(
blockConca
t
g
)
cmmCfgOpts
::
Bool
->
CmmGraph
->
CmmGraph
cmmCfgOpts
split
g
=
fst
(
blockConcat
spli
t
g
)
cmmCfgOptsProc
::
CmmDecl
->
CmmDecl
cmmCfgOptsProc
(
CmmProc
info
lbl
g
)
=
CmmProc
info'
lbl
g'
where
(
g'
,
env
)
=
blockConcat
g
cmmCfgOptsProc
::
Bool
->
CmmDecl
->
CmmDecl
cmmCfgOptsProc
split
(
CmmProc
info
lbl
g
)
=
CmmProc
info'
lbl
g'
where
(
g'
,
env
)
=
blockConcat
split
g
info'
=
info
{
info_tbls
=
new_info_tbls
}
new_info_tbls
=
mapFromList
(
map
upd_info
(
mapToList
(
info_tbls
info
)))
...
...
@@ -44,7 +44,7 @@ cmmCfgOptsProc (CmmProc info lbl g) = CmmProc info' lbl g'
|
otherwise
=
(
k
,
info
)
cmmCfgOptsProc
top
=
top
cmmCfgOptsProc
_
top
=
top
-----------------------------------------------------------------------------
...
...
@@ -54,6 +54,7 @@ cmmCfgOptsProc top = top
-----------------------------------------------------------------------------
-- This optimisation does three things:
--
-- - If a block finishes with an unconditional branch, then we may
-- be able to concatenate the block it points to and remove the
-- branch. We do this either if the destination block is small
...
...
@@ -63,6 +64,7 @@ cmmCfgOptsProc top = top
-- - If a block finishes in a call whose continuation block is a
-- goto, then we can shortcut the destination, making the
-- continuation block the destination of the goto.
-- (but see Note [shortcut call returns])
--
-- - removes any unreachable blocks from the graph. This is a side
-- effect of starting with a postorder DFS traversal of the graph
...
...
@@ -93,8 +95,8 @@ cmmCfgOptsProc top = top
-- which labels we have renamed and apply the mapping at the end
-- with replaceLabels.
blockConcat
::
CmmGraph
->
(
CmmGraph
,
BlockEnv
BlockId
)
blockConcat
g
@
CmmGraph
{
g_entry
=
entry_id
}
blockConcat
::
Bool
->
CmmGraph
->
(
CmmGraph
,
BlockEnv
BlockId
)
blockConcat
splitting_procs
g
@
CmmGraph
{
g_entry
=
entry_id
}
=
(
replaceLabels
shortcut_map
$
ofBlockMap
new_entry
new_blocks
,
shortcut_map
)
where
-- we might be able to shortcut the entry BlockId itself
...
...
@@ -125,7 +127,8 @@ blockConcat g@CmmGraph { g_entry = entry_id }
-- calls: if we can shortcut the continuation label, then
-- we must *also* remember to substitute for the label in the
-- code, because we will push it somewhere.
|
Just
b'
<-
callContinuation_maybe
last
|
splitting_procs
-- Note [shortcut call returns]
,
Just
b'
<-
callContinuation_maybe
last
,
Just
blk'
<-
mapLookup
b'
blocks
,
Just
dest
<-
canShortcut
blk'
=
(
blocks
,
mapInsert
b'
dest
shortcut_map
)
...
...
@@ -184,6 +187,39 @@ okToDuplicate block
-- has a CmmExpr inside it.
_otherwise
->
False
{- Note [shortcut call returns]
Consider this code that you might get from a recursive let-no-escape:
goto L1
L1:
if (Hp > HpLim) then L2 else L3
L2:
call stg_gc_noregs returns to L4
L4:
goto L1
L3:
...
goto L1
Then the control-flow optimiser shortcuts L4. But that turns L1
into the call-return proc point, and every iteration of the loop
has to shuffle variables to and from the stack. So we must *not*
shortcut L4.
Moreover not shortcutting call returns is probably fine. If L4 can
concat with its branch target then it will still do so. And we
save some compile time because we don't have to traverse all the
code in replaceLabels.
However, we probably do want to do this if we are splitting proc
points, because L1 will be a proc-point anyway, so merging it with L4
reduces the number of proc points. Unfortunately recursive
let-no-escapes won't generate very good code with proc-point
splitting on - we should probably
-}
------------------------------------------------------------------------
-- Map over the CmmGraph, replacing each label with its mapping in the
-- supplied BlockEnv.
...
...
compiler/cmm/CmmPipeline.hs
View file @
7930221e
...
...
@@ -56,7 +56,8 @@ cpsTop _ p@(CmmData {}) = return (mapEmpty, [p])
cpsTop
hsc_env
(
CmmProc
h
@
(
TopInfo
{
stack_info
=
StackInfo
{
arg_space
=
entry_off
}})
l
g
)
=
do
----------- Control-flow optimisations ---------------
g
<-
{-# SCC "cmmCfgOpts(1)" #-}
return
$
cmmCfgOpts
g
g
<-
{-# SCC "cmmCfgOpts(1)" #-}
return
$
cmmCfgOpts
splitting_proc_points
g
dump
Opt_D_dump_cmmz_cfg
"Post control-flow optimsations"
g
----------- Eliminate common blocks -------------------
...
...
@@ -114,7 +115,8 @@ cpsTop hsc_env (CmmProc h@(TopInfo {stack_info=StackInfo {arg_space=entry_off}})
dumps
Opt_D_dump_cmmz_info
"after setInfoTableStackMap"
gs
----------- Control-flow optimisations ---------------
gs
<-
{-# SCC "cmmCfgOpts(2)" #-}
return
$
map
cmmCfgOptsProc
gs
gs
<-
{-# SCC "cmmCfgOpts(2)" #-}
return
$
map
(
cmmCfgOptsProc
splitting_proc_points
)
gs
dumps
Opt_D_dump_cmmz_cfg
"Post control-flow optimsations"
gs
return
(
cafEnv
,
gs
)
...
...
@@ -129,7 +131,8 @@ cpsTop hsc_env (CmmProc h@(TopInfo {stack_info=StackInfo {arg_space=entry_off}})
dump'
Opt_D_dump_cmmz_info
"after setInfoTableStackMap"
g
----------- Control-flow optimisations ---------------
g
<-
{-# SCC "cmmCfgOpts(2)" #-}
return
$
cmmCfgOptsProc
g
g
<-
{-# SCC "cmmCfgOpts(2)" #-}
return
$
cmmCfgOptsProc
splitting_proc_points
g
dump'
Opt_D_dump_cmmz_cfg
"Post control-flow optimsations"
g
return
(
cafEnv
,
[
g
])
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment