diff options
author | Ben.Lippmeier@anu.edu.au <unknown> | 2009-01-21 23:24:23 +0000 |
---|---|---|
committer | Ben.Lippmeier@anu.edu.au <unknown> | 2009-01-21 23:24:23 +0000 |
commit | 581a6a7cf8102a933259d576bdc0e7828fae16af (patch) | |
tree | 7b3268ece41df29075a02b1acc4d372554b1d1fb /rts | |
parent | 485ab9c9f772c98b42c203b6b0a37af5a06c2b6c (diff) | |
download | haskell-581a6a7cf8102a933259d576bdc0e7828fae16af.tar.gz |
SPARC NCG: Also do misaligned reads
Diffstat (limited to 'rts')
-rw-r--r-- | rts/RtsAPI.c | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/rts/RtsAPI.c b/rts/RtsAPI.c index 9fa0e01427..c5c5561d57 100644 --- a/rts/RtsAPI.c +++ b/rts/RtsAPI.c @@ -292,6 +292,12 @@ rts_getInt32 (HaskellObj p) return (HsInt32)(HsInt)(UNTAG_CLOSURE(p)->payload[0]); } + +#ifdef sparc_HOST_ARCH +/* The closures returned by allocateLocal are only guaranteed to be 32 bit + aligned, because that's the size of pointers. SPARC v9 can't do + misaligned loads/stores, so we have to read the 64bit word in chunks */ + HsInt64 rts_getInt64 (HaskellObj p) { @@ -302,6 +308,25 @@ rts_getInt64 (HaskellObj p) tmp = (HsInt64*)&(UNTAG_CLOSURE(p)->payload[0]); return *tmp; } + +#else + +HsInt64 +rts_getInt64 (HaskellObj p) +{ + HsInt32* tmp; + // See comment above: + // ASSERT(p->header.info == I64zh_con_info || + // p->header.info == I64zh_static_info); + tmp = (HsInt32*)&(UNTAG_CLOSURE(p)->payload[0]); + + HsInt64 i = (HsInt64)(tmp[0] << 32) | (HsInt64)tmp[1]; + return i +} + +#endif /* sparc_HOST_ARCH */ + + HsWord rts_getWord (HaskellObj p) { |