search for: 7806e67b

Displaying 3 results from an estimated 3 matches for "7806e67b".

2011 Jan 28
0
[LLVMdev] Non-standard byte sizes
On Fri, Jan 28, 2011 at 6:29 AM, David Given <dg at cowlark.com> wrote: > For a hypothetical Evil Project(tm), I would like to do a LLVM backend > for a virtual machine that does not use 8-bit bytes. Does LLVM support > this sort of thing? Not without some modification. I've developed an LLVM back end for a DSP with 24-bit word-addressable memory, basically by defining the
2011 Jan 28
2
[LLVMdev] Non-standard byte sizes
...ull of dead mice." │ --- Anonymous, on rasfc -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 254 bytes Desc: OpenPGP digital signature URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110128/7806e67b/attachment.sig>
2011 Jan 28
2
[LLVMdev] Non-standard byte sizes
For a hypothetical Evil Project(tm), I would like to do a LLVM backend for a virtual machine that does not use 8-bit bytes. Does LLVM support this sort of thing? The details are: each addressing unit in the virtual machine can store a single value of any type, except for data pointers, which are stored as pairs (handle and offset). As such, sizeof(char) == sizeof(int) == sizeof(long long) ==