diff options
author | Sylvain Henry <sylvain@haskus.fr> | 2019-08-13 17:26:32 +0200 |
---|---|---|
committer | Sylvain Henry <sylvain@haskus.fr> | 2019-09-10 00:04:50 +0200 |
commit | 447864a94a1679b5b079e08bb7208a0005381cef (patch) | |
tree | baa469c52620ce7ae02def3e5e6a6f109cc89f40 /docs/stg-spec/stg-spec.mng | |
parent | 270fbe8512f04b6107755fa22bdec62205c0a567 (diff) | |
download | haskell-447864a94a1679b5b079e08bb7208a0005381cef.tar.gz |
Module hierarchy: StgToCmm (#13009)
Add StgToCmm module hierarchy. Platform modules that are used in several
other places (NCG, LLVM codegen, Cmm transformations) are put into
GHC.Platform.
Diffstat (limited to 'docs/stg-spec/stg-spec.mng')
-rw-r--r-- | docs/stg-spec/stg-spec.mng | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/stg-spec/stg-spec.mng b/docs/stg-spec/stg-spec.mng index 325410e218..7e87c151d9 100644 --- a/docs/stg-spec/stg-spec.mng +++ b/docs/stg-spec/stg-spec.mng @@ -171,7 +171,7 @@ and over-saturated function application. The implementations of \textsc{App} rules are spread across two different calling conventions for functions: slow calls and direct calls. Direct calls handle saturated and over-applied -cases (\coderef{codeGen/StgCmmLayout.hs}{slowArgs}), while slow +cases (\coderef{GHC/StgToCmm/Layout.hs}{slowArgs}), while slow calls handle all cases (\textit{utils/genapply/GenApply.hs}); in particular, these cases ensure that the current cost-center reverts to the one originally at the call site. |