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
Terraform modules
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
Gesh
GHC
Commits
71a84ae8
Commit
71a84ae8
authored
26 years ago
by
sof
Browse files
Options
Downloads
Patches
Plain Diff
[project @ 1998-07-20 10:00:34 by sof]
non-standard extensions: intToWord and wordToInt coercion functions
parent
a69724d8
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ghc/lib/exts/Int.lhs
+9
-1
9 additions, 1 deletion
ghc/lib/exts/Int.lhs
ghc/lib/exts/Word.lhs
+6
-0
6 additions, 0 deletions
ghc/lib/exts/Word.lhs
with
15 additions
and
1 deletion
ghc/lib/exts/Int.lhs
+
9
−
1
View file @
71a84ae8
...
...
@@ -31,7 +31,8 @@ module Int
-- plus Eq, Ord, Num, Bounded, Real, Integral, Ix, Enum, Read,
-- Show and Bits instances for each of Int8, Int16, Int32 and Int64
-- The "official" place to get these from is Addr.
-- The "official" place to get these from is Addr, importing
-- them from Int is a non-standard thing to do.
, indexInt8OffAddr
, indexInt16OffAddr
, indexInt32OffAddr
...
...
@@ -51,6 +52,9 @@ module Int
, sizeofInt16
, sizeofInt32
, sizeofInt64
-- non-standard, GHC specific
, intToWord
) where
...
...
@@ -88,6 +92,10 @@ int16ToInt8 (I16# x) = I8# x
int16ToInt32 (I16# x) = I32# x
int32ToInt8 (I32# x) = I8# x
int32ToInt16 (I32# x) = I16# x
--GHC specific
intToWord :: Int -> Word
intToWord (I# i#) = W# (int2Word# i#)
\end{code}
\subsection[Int8]{The @Int8@ interface}
...
...
This diff is collapsed.
Click to expand it.
ghc/lib/exts/Word.lhs
+
6
−
0
View file @
71a84ae8
...
...
@@ -66,6 +66,9 @@ module Word
, sizeofWord32
, sizeofWord64
-- non-standard, GHC specific
, wordToInt
) where
import GlaExts
...
...
@@ -97,6 +100,9 @@ intToWord32 (I# x) = W32# ((int2Word# x) `and#` (case (maxBound::Word32) of W3
--intToWord32 (I# x) = W32# (int2Word# x)
word32ToInt (W32# x) = I# (word2Int# x)
wordToInt :: Word -> Int
wordToInt (W# w#) = I# (word2Int# w#)
\end{code}
\subsection[Word8]{The @Word8@ interface}
...
...
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