summaryrefslogtreecommitdiff
path: root/rts/Interpreter.c
diff options
context:
space:
mode:
authorErik de Castro Lopo <erikd@mega-nerd.com>2016-05-02 06:37:14 +1000
committerErik de Castro Lopo <erikd@mega-nerd.com>2016-05-05 08:29:27 +1000
commitdb9de7eb3e91820024f673bfdb6fb8064cfed20d (patch)
tree5e1c3ef0b6dee7f40fedbc118ba36cfe6ffdd1ee /rts/Interpreter.c
parentad4392c142696d5092533480a82ed65322e9d413 (diff)
downloadhaskell-db9de7eb3e91820024f673bfdb6fb8064cfed20d.tar.gz
rts: Replace `nat` with `uint32_t`
The `nat` type was an alias for `unsigned int` with a comment saying it was at least 32 bits. We keep the typedef in case client code is using it but mark it as deprecated. Test Plan: Validated on Linux, OS X and Windows Reviewers: simonmar, austin, thomie, hvr, bgamari, hsyl20 Differential Revision: https://phabricator.haskell.org/D2166
Diffstat (limited to 'rts/Interpreter.c')
-rw-r--r--rts/Interpreter.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/rts/Interpreter.c b/rts/Interpreter.c
index 7734aacd36..f88e47493c 100644
--- a/rts/Interpreter.c
+++ b/rts/Interpreter.c
@@ -234,7 +234,7 @@ interpretBCO (Capability* cap)
register StgPtr Sp; // local state -- stack pointer
register StgPtr SpLim; // local state -- stack lim pointer
register StgClosure *tagged_obj = 0, *obj;
- nat n, m;
+ uint32_t n, m;
LOAD_THREAD_STATE();
@@ -363,7 +363,7 @@ eval_obj:
case AP: /* Copied from stg_AP_entry. */
{
- nat i, words;
+ uint32_t i, words;
StgAP *ap;
ap = (StgAP*)obj;
@@ -643,7 +643,7 @@ do_apply:
case PAP: {
StgPAP *pap;
- nat i, arity;
+ uint32_t i, arity;
pap = (StgPAP *)obj;
@@ -722,7 +722,7 @@ do_apply:
}
case BCO: {
- nat arity, i;
+ uint32_t arity, i;
Sp++;
arity = ((StgBCO *)obj)->arity;
@@ -748,7 +748,7 @@ do_apply:
else /* arity > n */ {
// build a PAP and return it.
StgPAP *pap;
- nat i;
+ uint32_t i;
pap = (StgPAP *)allocate(cap, PAP_sizeW(m));
SET_HDR(pap, &stg_PAP_info,cap->r.rCCCS);
pap->arity = arity - n;
@@ -1558,9 +1558,9 @@ run_BCO:
#define ROUND_UP_WDS(p) ((((StgWord)(p)) + sizeof(W_)-1)/sizeof(W_))
ffi_cif *cif = (ffi_cif *)marshall_fn;
- nat nargs = cif->nargs;
- nat ret_size;
- nat i;
+ uint32_t nargs = cif->nargs;
+ uint32_t ret_size;
+ uint32_t i;
int j;
StgPtr p;
W_ ret[2]; // max needed