Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Alex D
GHC
Commits
0d792bea
Commit
0d792bea
authored
Jul 10, 2008
by
Ian Lynagh
Browse files
Move some flags from the Makefile into module pragmas
parent
a31cf953
Changes
6
Hide whitespace changes
Inline
Side-by-side
compiler/Makefile
View file @
0d792bea
...
...
@@ -645,14 +645,6 @@ endif
# basicTypes/SrcLoc_HC_OPTS = -funbox-strict-fields
# We always optimise some low-level modules, otherwise performance of
# a non-optimised compiler is severely affected.
utils/
Binary_HC_OPTS
+=
-O
-funbox-strict-fields
utils/
FastMutInt_HC_OPTS
+=
-O
utils/
Encoding_HC_OPTS
+=
-O
utils/
StringBuffer_HC_OPTS
+=
-O
-funbox-strict-fields
utils/
FastString_HC_OPTS
+=
-O
-funbox-strict-fields
# ---- Profiling ----
#simplCore/Simplify_HC_OPTS = -auto-all
#simplCore/SimplEnv_HC_OPTS = -auto-all
...
...
compiler/utils/Binary.hs
View file @
0d792bea
{-# OPTIONS -cpp #-}
{-# OPTIONS_GHC -O -funbox-strict-fields #-}
-- We always optimise this, otherwise performance of a non-optimised
-- compiler is severely affected
--
-- (c) The University of Glasgow 2002-2006
--
...
...
compiler/utils/Encoding.hs
View file @
0d792bea
{-# OPTIONS_GHC -O #-}
-- We always optimise this, otherwise performance of a non-optimised
-- compiler is severely affected
-- -----------------------------------------------------------------------------
--
-- (c) The University of Glasgow, 1997-2006
...
...
compiler/utils/FastMutInt.lhs
View file @
0d792bea
\begin{code}
{-# OPTIONS -cpp #-}
{-# OPTIONS_GHC -O #-}
-- We always optimise this, otherwise performance of a non-optimised
-- compiler is severely affected
--
-- (c) The University of Glasgow 2002-2006
--
-- Unboxed mutable Ints
\begin{code}
module FastMutInt(
FastMutInt, newFastMutInt,
readFastMutInt, writeFastMutInt,
...
...
compiler/utils/FastString.lhs
View file @
0d792bea
...
...
@@ -2,6 +2,10 @@
% (c) The University of Glasgow, 1997-2006
%
\begin{code}
{-# OPTIONS_GHC -O -funbox-strict-fields #-}
-- We always optimise this, otherwise performance of a non-optimised
-- compiler is severely affected
{-
FastString: A compact, hash-consed, representation of character strings.
Comparison is O(1), and you can get a Unique from them.
...
...
compiler/utils/StringBuffer.lhs
View file @
0d792bea
...
...
@@ -6,6 +6,10 @@
Buffers for scanning string input stored in external arrays.
\begin{code}
{-# OPTIONS_GHC -O -funbox-strict-fields #-}
-- We always optimise this, otherwise performance of a non-optimised
-- compiler is severely affected
module StringBuffer
(
StringBuffer(..),
...
...
Write
Preview
Supports
Markdown
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