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
Container 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
alexbiehl-gc
GHC
Commits
d5b36ae3
Commit
d5b36ae3
authored
25 years ago
by
sof
Browse files
Options
Downloads
Patches
Plain Diff
[project @ 1999-09-30 15:50:02 by sof]
Simplified the interface between CPUTime.getCPUTime and getCPUTime()
parent
f9f307e1
Loading
Loading
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
ghc/lib/std/CPUTime.lhs
+6
-7
6 additions, 7 deletions
ghc/lib/std/CPUTime.lhs
ghc/lib/std/cbits/getCPUTime.c
+7
-7
7 additions, 7 deletions
ghc/lib/std/cbits/getCPUTime.c
ghc/lib/std/cbits/stgio.h
+2
-2
2 additions, 2 deletions
ghc/lib/std/cbits/stgio.h
with
15 additions
and
16 deletions
ghc/lib/std/CPUTime.lhs
+
6
−
7
View file @
d5b36ae3
...
...
@@ -20,7 +20,6 @@ import PrelArr ( ByteArray(..), newIntArray, unsafeFreezeByteArray )
import PrelMaybe
import PrelNum
import PrelNumExtra
import PrelAddr
import PrelIOBase
import PrelST
#endif
...
...
@@ -44,8 +43,8 @@ integral number of picoseconds.
getCPUTime :: IO Integer
getCPUTime = do
marr <- primNewByteArray (sizeof_int * 4)
ptr
<- getCPUTime marr
if
(ptr /= nullAddr)
then do
rc
<- getCPUTime marr
if
rc /= 0
then do
x0 <- primReadIntArray marr 0
x1 <- primReadIntArray marr 1
x2 <- primReadIntArray marr 2
...
...
@@ -61,11 +60,11 @@ getCPUTime = do
#else
getCPUTime :: IO Integer
getCPUTime =
getCPUTime =
stToIO (newIntArray ((0::Int),3)) >>= \ marr ->
stToIO (unsafeFreezeByteArray marr) >>= \ barr@(ByteArray _ frozen#) ->
primGetCPUTime barr >>= \
pt
r ->
if
(ptr::Addr) /= nullAddr
then
primGetCPUTime barr >>= \ r
c
->
if
rc /= 0
then
return ((fromIntegral (I# (indexIntArray# frozen# 0#)) * 1000000000 +
fromIntegral (I# (indexIntArray# frozen# 1#)) +
fromIntegral (I# (indexIntArray# frozen# 2#)) * 1000000000 +
...
...
@@ -86,7 +85,7 @@ cpuTimePrecision = round ((1000000000000::Integer) %
sizeof_int :: Int
sizeof_int = 4
foreign import "libHS_cbits" "getCPUTime" primGetCPUTime :: ByteArray Int -> IO
Addr
foreign import "libHS_cbits" "getCPUTime" primGetCPUTime :: ByteArray Int -> IO
Int
foreign import "libHS_cbits" "clockTicks" clockTicks :: IO Int
\end{code}
...
...
This diff is collapsed.
Click to expand it.
ghc/lib/std/cbits/getCPUTime.c
+
7
−
7
View file @
d5b36ae3
/*
* (c) The GRASP/AQUA Project, Glasgow University, 1994-1998
*
* $Id: getCPUTime.c,v 1.
5
1999/0
5/03 13:22:29
sof Exp $
* $Id: getCPUTime.c,v 1.
6
1999/0
9/30 15:50:02
sof Exp $
*
* getCPUTime Runtime Support
*/
...
...
@@ -76,7 +76,7 @@ clockTicks ()
*/
#ifndef _WIN32
Stg
ByteArray
Stg
Int
getCPUTime
(
StgByteArray
cpuStruct
)
{
StgInt
*
cpu
=
(
StgInt
*
)
cpuStruct
;
...
...
@@ -114,10 +114,10 @@ getCPUTime(StgByteArray cpuStruct)
cpu
[
3
]
=
(
t
.
tms_stime
-
cpu
[
2
]
*
ticks
)
*
(
1000000000
/
ticks
);
# else
return
NULL
;
return
0
;
# endif
#endif
return
(
StgByteArray
)
cpuStruct
;
return
1
;
}
#else
...
...
@@ -133,7 +133,7 @@ getCPUTime(StgByteArray cpuStruct)
#endif
/* cygwin32 or mingw32 version */
Stg
ByteArray
Stg
Int
getCPUTime
(
StgByteArray
cpuStruct
)
{
FILETIME
creationTime
,
exitTime
,
kernelTime
,
userTime
;
...
...
@@ -150,7 +150,7 @@ getCPUTime(StgByteArray cpuStruct)
cpu
[
1
]
=
0
;
cpu
[
2
]
=
0
;
cpu
[
3
]
=
0
;
return
(
StgByteArray
)
cpu
;
return
1
;
}
FT2usecs
(
uT
,
userTime
);
...
...
@@ -160,7 +160,7 @@ getCPUTime(StgByteArray cpuStruct)
cpu
[
1
]
=
(
unsigned
int
)(
uT
*
100
);
cpu
[
0
]
=
(
unsigned
int
)(
kT
/
NS_PER_SEC
);
cpu
[
1
]
=
(
unsigned
int
)(
kT
*
100
);
return
(
StgByteArray
)
cpu
;
return
1
;
}
#endif
/* _WIN32 */
This diff is collapsed.
Click to expand it.
ghc/lib/std/cbits/stgio.h
+
2
−
2
View file @
d5b36ae3
/*
* (c) The GRASP/AQUA Project, Glasgow University, 1994-1998
*
* $Id: stgio.h,v 1.1
3
1999/09/30 1
2:42:26
sof Exp $
* $Id: stgio.h,v 1.1
4
1999/09/30 1
5:50:03
sof Exp $
*
* Helper code for GHC's IO subsystem.
*/
...
...
@@ -136,7 +136,7 @@ StgInt getClockTime (StgByteArray, StgByteArray);
StgInt
prim_getClockTime
(
StgByteArray
,
StgByteArray
);
/* getCPUTime.c */
Stg
ByteArray
getCPUTime
(
StgByteArray
);
Stg
Int
getCPUTime
(
StgByteArray
);
StgInt
clockTicks
(
void
);
/* getCurrentDirectory.c */
...
...
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