Implement JIT_MemSet and JIT_MemCpy for clang
authorGeoff Norton <grompf@gmail.com>
Wed, 11 Feb 2015 05:56:48 +0000 (21:56 -0800)
committerGeoff Norton <grompf@gmail.com>
Wed, 11 Feb 2015 18:49:10 +0000 (10:49 -0800)
commit4faa8611c04e6a39cfc9aee10115946989f35ec7
tree4701e326b2dcd9fbf140035f85dc1168e03eb949
parent9682244e4039676d18f7f8bf56f38a047c3bc9ec
Implement JIT_MemSet and JIT_MemCpy for clang

The windows build has a hand written version of these functions, but
modern systems should have an equivalent performant version of this.
We do need to wrap them to get the trap for a null reference exception,
but after that we can tail call directly.
src/vm/CMakeLists.txt
src/vm/amd64/crthelpers.S [new file with mode: 0644]