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
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
Alexander Kaznacheev
GHC
Commits
9021737d
Commit
9021737d
authored
11 years ago
by
Simon Marlow
Browse files
Options
Downloads
Patches
Plain Diff
Comments on slow-call-shortcutting
parent
e9b0d368
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
compiler/codeGen/StgCmmLayout.hs
+36
-0
36 additions, 0 deletions
compiler/codeGen/StgCmmLayout.hs
with
36 additions
and
0 deletions
compiler/codeGen/StgCmmLayout.hs
+
36
−
0
View file @
9021737d
...
...
@@ -188,6 +188,7 @@ slowCall fun stg_args
" with pat "
++
unpackFS
rts_fun
)
return
r
-- Note [avoid intermediate PAPs]
let
n_args
=
length
stg_args
if
n_args
>
arity
&&
optLevel
dflags
>=
2
then
do
...
...
@@ -195,6 +196,15 @@ slowCall fun stg_args
fun_iptr
<-
(
CmmReg
.
CmmLocal
)
`
fmap
`
assignTemp
(
closureInfoPtr
dflags
(
cmmUntag
dflags
funv
))
-- ToDo: we could do slightly better here by reusing the
-- continuation from the slow call, which we have in r.
-- Also we'd like to push the continuation on the stack
-- before the branch, so that we only get one copy of the
-- code that saves all the live variables across the
-- call, but that might need some improvements to the
-- special case in the stack layout code to handle this
-- (see Note [diamond proc point]).
fast_code
<-
getCode
$
emitCall
(
NativeNodeCall
,
NativeReturn
)
(
entryCode
dflags
fun_iptr
)
...
...
@@ -224,6 +234,32 @@ slowCall fun stg_args
return
r
-- Note [avoid intermediate PAPs]
--
-- A slow call which needs multiple generic apply patterns will be
-- almost guaranteed to create one or more intermediate PAPs when
-- applied to a function that takes the correct number of arguments.
-- We try to avoid this situation by generating code to test whether
-- we are calling a function with the correct number of arguments
-- first, i.e.:
--
-- if (TAG(f) != 0} { // f is not a thunk
-- if (f->info.arity == n) {
-- ... make a fast call to f ...
-- }
-- }
-- ... otherwise make the slow call ...
--
-- We *only* do this when the call requires multiple generic apply
-- functions, which requires pushing extra stack frames and probably
-- results in intermediate PAPs. (I say probably, because it might be
-- that we're over-applying a function, but that seems even less
-- likely).
--
-- This very rarely applies, but if it does happen in an inner loop it
-- can have a severe impact on performance (#6084).
--------------
direct_call
::
String
->
Convention
-- e.g. NativeNodeCall or NativeDirectCall
...
...
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