diff options
author | Simon Marlow <marlowsd@gmail.com> | 2012-11-13 11:43:09 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2012-11-13 11:43:09 +0000 |
commit | 4270d7e7485b124dd153399dfe3f571253dc0d1d (patch) | |
tree | ed539eab1f3019ad7910bc51af426f1b46468683 /compiler/codeGen/StgCmmBind.hs | |
parent | 1c160e588706f4ff6b4e391602e38f0a2044ec13 (diff) | |
download | haskell-4270d7e7485b124dd153399dfe3f571253dc0d1d.tar.gz |
Fix the Slow calling convention (#7192)
The Slow calling convention passes the closure in R1, but we were
ignoring this and hoping it would work, which it often did. However,
this bug seems to have been the cause of #7192, because the
graph-colouring allocator is more sensitive to having correct liveness
information on jumps.
Diffstat (limited to 'compiler/codeGen/StgCmmBind.hs')
-rw-r--r-- | compiler/codeGen/StgCmmBind.hs | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/compiler/codeGen/StgCmmBind.hs b/compiler/codeGen/StgCmmBind.hs index 439a2aa67e..60eeaa12db 100644 --- a/compiler/codeGen/StgCmmBind.hs +++ b/compiler/codeGen/StgCmmBind.hs @@ -450,7 +450,7 @@ closureCodeBody top_lvl bndr cl_info cc args arity body fv_details ; emitClosureProcAndInfoTable top_lvl bndr lf_info info_tbl args $ \(_offset, node, arg_regs) -> do -- Emit slow-entry code (for entering a closure through a PAP) - { mkSlowEntryCode cl_info arg_regs + { mkSlowEntryCode bndr cl_info arg_regs ; dflags <- getDynFlags ; let lf_info = closureLFInfo cl_info @@ -494,21 +494,22 @@ load_fvs node lf_info = mapM_ (\ (reg, off) -> -- -- The slow entry point is used for unknown calls: eg. stg_PAP_entry -mkSlowEntryCode :: ClosureInfo -> [LocalReg] -> FCode () +mkSlowEntryCode :: Id -> ClosureInfo -> [LocalReg] -> FCode () -- If this function doesn't have a specialised ArgDescr, we need -- to generate the function's arg bitmap and slow-entry code. -- Here, we emit the slow-entry code. -mkSlowEntryCode cl_info arg_regs -- function closure is already in `Node' +mkSlowEntryCode bndr cl_info arg_regs -- function closure is already in `Node' | Just (_, ArgGen _) <- closureFunInfo cl_info = do dflags <- getDynFlags - let slow_lbl = closureSlowEntryLabel cl_info + let node = idToReg dflags (NonVoid bndr) + slow_lbl = closureSlowEntryLabel cl_info fast_lbl = closureLocalEntryLabel dflags cl_info -- mkDirectJump does not clobber `Node' containing function closure - jump = mkDirectJump dflags - (mkLblExpr fast_lbl) - (map (CmmReg . CmmLocal) arg_regs) - (initUpdFrameOff dflags) - emitProcWithConvention Slow Nothing slow_lbl arg_regs jump + jump = mkJump dflags NativeNodeCall + (mkLblExpr fast_lbl) + (map (CmmReg . CmmLocal) (node : arg_regs)) + (initUpdFrameOff dflags) + emitProcWithConvention Slow Nothing slow_lbl (node : arg_regs) jump | otherwise = return () ----------------------------------------- @@ -728,7 +729,7 @@ link_caf node _is_upd = do -- assuming lots of things, like the stack pointer hasn't -- moved since we entered the CAF. (let target = entryCode dflags (closureInfoPtr dflags (CmmReg (CmmLocal node))) in - mkJump dflags target [] updfr) + mkJump dflags NativeNodeCall target [] updfr) ; return hp_rel } |