Lines Matching refs:Stack
586 // Note that string arguments will be stored on the stack (the JS string will become a C string on the stack).
606 var stack = 0;
614 if (!stack) stack = Runtime.stackSave();
633 if (stack) Runtime.stackRestore(stack);
808 var MAX_CHUNK = 1024; // split up into chunks, because .apply on a huge string can overflow the stack
1056 var stack = new Error().stack;
1057 return stack ? demangleAll(stack) : '(no stack trace available)'; // Stack trace is not available at least on IE10 and Safari 6.
1071 var STACK_BASE = 0, STACKTOP = 0, STACK_MAX = 0; // stack area
1471 if (e && typeof e === 'object' && e.stack) Module.printErr('exception thrown: ' + [e, e.stack]);
3682 // Some errors may happen quite a bit, to avoid overhead we reuse them (and suffer a lack of stack info)
3685 FS.genericErrors[code].stack = '<generic error, no stack>';
5112 var stack = Runtime.stackSave();
5114 Runtime.stackRestore(stack);
5922 assert(DYNAMIC_BASE < TOTAL_MEMORY, "TOTAL_MEMORY not big enough for stack");
6035 Module.print('int ' + x + ',' + y);// + ' ' + new Error().stack);
6038 Module.print('float ' + x + ',' + y);// + ' ' + new Error().stack);
20214 if (e && typeof e === 'object' && e.stack) Module.printErr('exception thrown: ' + [e, e.stack]);