Y
Hacker News
new
|
ask
|
show
|
jobs
by
vetinari
3835 days ago
Is there a compelling reason for a browser JIT to comply with platform ABI? Third party binaries are not going to be linked in or called from the JIT-ted code anyway.
1 comments
yuhong
3835 days ago
Proper SEH support.
link
vetinari
3835 days ago
But why? Only sandboxed, JIT-ted js code is going to use this custom ABI. What exceptions do you expect to handle?
link
yuhong
3835 days ago
All exceptions including CPU exceptions like divide by zero or access violation uses SEH on Windows.
link
pcwalton
3835 days ago
…which you shouldn't be getting in jitcode.
link