when i try two scripts in above example with v8shell, it doesn't crash. any idea what might be going wrong?
On Apr 10, 4:51 pm, Arun Patole <[email protected]> wrote: > thanks! > > Below piece of reduced html reproduces this issue(SIGILL/sometime > SIGSEGV) . Having everything in one <script> instead of two doesn't > reproduce the issue. Any pointers would be a great help. will also try > to file a bug for this. I have a customized build(arm) but code is > same as ics. > > <html> > <body> > <p> test.html!! </p> > <script language="javascript" type="text/javascript"> > function foo(s, o) { > > } > > var x = new Array(); > var y = new Array(); > var z = new Array(); > </script> > > <script language="javascript" type="text/javascript"> > tmpvar=2; > x.tmp = 2; > var a = new Array(); > a.push([1, 2, 3, 4, 5, 6, 7, 8]); > a.push([9, 10, 11, 12, 13, 14, 15, 16]); > > for(var i=0;i<a.length;i++){ > x.push([a[i][0],a[i][3],a[i][4],a[i][5],a[i][6],a[i][7]]); > y.push([a[i][1],a[i][3],a[i][4],a[i][5],a[i][6],a[i][7]]); > z.push([a[i][2],a[i][3],a[i][4],a[i][5],a[i][6],a[i][7]]);} > foo(x,'miniDL_left'); > </script> > </body> > </html> > > On Apr 10, 4:21 pm, Erik Corry <[email protected]> wrote: > > > > > > > > > On Tue, Apr 10, 2012 at 9:41 AM, ArunPatole<[email protected]> wrote: > > > Hello v8-dev, > > > I need some help related to Heap:max_semispace_size_. Actually, I am > > > seeing one V8 crash (SIGILL) on my android ics device and it gets > > > fixed when I increase max_semispace_size_ from 2MB to 8MB. I wanted to > > > know if there are any side effects of increasing max semispace size. > > > It is likely to use more memory (!) and reduce performance on machines > > that do not have 16Mbytes of cache (which is all Android machines I > > think). > > > Please file a bug for the crash if you can. > > > -- > > Erik Corry, Software Engineer > > Google Denmark ApS - Frederiksborggade 20B, 1 sal, > > 1360 København K - Denmark - CVR nr. 28 86 69 84 -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
