mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1005 B
53 lines
1005 B
12 years ago
|
/*
|
||
|
* Large join() needs a valstack check. Even larger joins run
|
||
|
* out of valstack unless the join is done in stages.
|
||
|
*
|
||
|
* These were broken at some point.
|
||
|
*/
|
||
|
|
||
|
/*===
|
||
|
100
|
||
|
0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
|
||
|
===*/
|
||
|
|
||
|
/* 100 elements */
|
||
|
tmp = [
|
||
|
0,1,2,3,4,5,6,7,8,9,
|
||
|
0,1,2,3,4,5,6,7,8,9,
|
||
|
0,1,2,3,4,5,6,7,8,9,
|
||
|
0,1,2,3,4,5,6,7,8,9,
|
||
|
0,1,2,3,4,5,6,7,8,9,
|
||
|
0,1,2,3,4,5,6,7,8,9,
|
||
|
0,1,2,3,4,5,6,7,8,9,
|
||
|
0,1,2,3,4,5,6,7,8,9,
|
||
|
0,1,2,3,4,5,6,7,8,9,
|
||
|
0,1,2,3,4,5,6,7,8,9
|
||
|
];
|
||
|
|
||
|
print(tmp.length);
|
||
|
|
||
|
print(tmp.join(''));
|
||
|
|
||
|
/*===
|
||
|
building
|
||
|
joining
|
||
|
1000000
|
||
|
===*/
|
||
|
|
||
|
/* This was broken at some point: joining happened through the valstack whose
|
||
|
* size topped out for large joins.
|
||
|
*/
|
||
|
|
||
|
tmp = [];
|
||
|
|
||
|
/* FIXME: why is this so slow now? */
|
||
|
|
||
|
print('building');
|
||
|
for (i = 1000000; i; i -= 1) { // funny syntax; current version does not support comparisons yet
|
||
|
tmp[tmp.length] = 'x';
|
||
|
}
|
||
|
|
||
|
print('joining');
|
||
|
print(tmp.join('').length);
|
||
|
|