Skip to content

Commit d200932

Browse files
targosrvagg
authored andcommitted
src: disable vector ICs on arm
A bug on ARMv6 makes the process crash when the V8 debugger is used. Disabling vector ICs as a workaround. V8-Bug: https://code.google.com/p/v8/issues/detail?id=4338 PR-URL: #2220 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Ali Ijaz Sheikh <[email protected]> Reviewed-By: Rod Vagg <[email protected]>
1 parent 3d3c687 commit d200932

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/node.cc

+5
Original file line numberDiff line numberDiff line change
@@ -3657,6 +3657,11 @@ void Init(int* argc,
36573657
// TODO(bnoordhuis): Remove test/parallel/test-arm-math-exp-regress-1376.js
36583658
// and this workaround when v8:4019 has been fixed and the patch back-ported.
36593659
V8::SetFlagsFromString("--nofast_math", sizeof("--nofast_math") - 1);
3660+
// See https://github.com/nodejs/io.js/pull/2220#issuecomment-126200059
3661+
// and https://code.google.com/p/v8/issues/detail?id=4338
3662+
// TODO(targos): Remove this workaround when v8:4338 has been fixed and the
3663+
// patch back-ported.
3664+
V8::SetFlagsFromString("--novector_ics", sizeof("--novector_ics") - 1);
36603665
#endif
36613666

36623667
#if defined(NODE_V8_OPTIONS)

0 commit comments

Comments
 (0)