johnson 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.autotest +14 -0
- data/CHANGELOG.rdoc +11 -0
- data/Manifest.txt +370 -0
- data/README.rdoc +60 -0
- data/Rakefile +42 -0
- data/bin/johnson +108 -0
- data/docs/MINGW32.mk +124 -0
- data/docs/cross-compile.txt +38 -0
- data/ext/spidermonkey/context.c +115 -0
- data/ext/spidermonkey/context.h +19 -0
- data/ext/spidermonkey/conversions.c +320 -0
- data/ext/spidermonkey/conversions.h +18 -0
- data/ext/spidermonkey/debugger.c +226 -0
- data/ext/spidermonkey/debugger.h +9 -0
- data/ext/spidermonkey/extconf.rb +30 -0
- data/ext/spidermonkey/extensions.c +37 -0
- data/ext/spidermonkey/extensions.h +12 -0
- data/ext/spidermonkey/global.c +40 -0
- data/ext/spidermonkey/global.h +11 -0
- data/ext/spidermonkey/idhash.c +16 -0
- data/ext/spidermonkey/idhash.h +8 -0
- data/ext/spidermonkey/immutable_node.c +1153 -0
- data/ext/spidermonkey/immutable_node.c.erb +523 -0
- data/ext/spidermonkey/immutable_node.h +22 -0
- data/ext/spidermonkey/jroot.h +187 -0
- data/ext/spidermonkey/js_land_proxy.c +610 -0
- data/ext/spidermonkey/js_land_proxy.h +20 -0
- data/ext/spidermonkey/ruby_land_proxy.c +543 -0
- data/ext/spidermonkey/ruby_land_proxy.h +17 -0
- data/ext/spidermonkey/runtime.c +330 -0
- data/ext/spidermonkey/runtime.h +25 -0
- data/ext/spidermonkey/spidermonkey.c +20 -0
- data/ext/spidermonkey/spidermonkey.h +29 -0
- data/johnson.gemspec +44 -0
- data/js/johnson/cli.js +30 -0
- data/js/johnson/prelude.js +80 -0
- data/lib/johnson.rb +55 -0
- data/lib/johnson/cli.rb +7 -0
- data/lib/johnson/cli/options.rb +67 -0
- data/lib/johnson/error.rb +4 -0
- data/lib/johnson/nodes.rb +7 -0
- data/lib/johnson/nodes/binary_node.rb +65 -0
- data/lib/johnson/nodes/for.rb +14 -0
- data/lib/johnson/nodes/for_in.rb +12 -0
- data/lib/johnson/nodes/function.rb +13 -0
- data/lib/johnson/nodes/list.rb +28 -0
- data/lib/johnson/nodes/node.rb +68 -0
- data/lib/johnson/nodes/ternary_node.rb +20 -0
- data/lib/johnson/parser.rb +21 -0
- data/lib/johnson/parser/syntax_error.rb +13 -0
- data/lib/johnson/runtime.rb +63 -0
- data/lib/johnson/spidermonkey/context.rb +10 -0
- data/lib/johnson/spidermonkey/debugger.rb +67 -0
- data/lib/johnson/spidermonkey/immutable_node.rb +282 -0
- data/lib/johnson/spidermonkey/js_land_proxy.rb +62 -0
- data/lib/johnson/spidermonkey/mutable_tree_visitor.rb +242 -0
- data/lib/johnson/spidermonkey/ruby_land_proxy.rb +54 -0
- data/lib/johnson/spidermonkey/runtime.rb +103 -0
- data/lib/johnson/version.rb +3 -0
- data/lib/johnson/visitable.rb +16 -0
- data/lib/johnson/visitors.rb +5 -0
- data/lib/johnson/visitors/dot_visitor.rb +169 -0
- data/lib/johnson/visitors/ecma_visitor.rb +323 -0
- data/lib/johnson/visitors/enumerating_visitor.rb +15 -0
- data/lib/johnson/visitors/sexp_visitor.rb +174 -0
- data/lib/johnson/visitors/visitor.rb +91 -0
- data/lib/rails/init.rb +37 -0
- data/lib/tasks/gem.rake +9 -0
- data/lib/tasks/parsing.rake +37 -0
- data/lib/tasks/testing.rake +36 -0
- data/lib/tasks/vendor.rake +20 -0
- data/test/helper.rb +55 -0
- data/test/johnson/browser_test.rb +43 -0
- data/test/johnson/conversions/array_test.rb +32 -0
- data/test/johnson/conversions/boolean_test.rb +17 -0
- data/test/johnson/conversions/callable_test.rb +34 -0
- data/test/johnson/conversions/file_test.rb +15 -0
- data/test/johnson/conversions/nil_test.rb +20 -0
- data/test/johnson/conversions/number_test.rb +34 -0
- data/test/johnson/conversions/regexp_test.rb +24 -0
- data/test/johnson/conversions/string_test.rb +26 -0
- data/test/johnson/conversions/struct_test.rb +15 -0
- data/test/johnson/conversions/symbol_test.rb +19 -0
- data/test/johnson/conversions/thread_test.rb +24 -0
- data/test/johnson/error_test.rb +9 -0
- data/test/johnson/extensions_test.rb +56 -0
- data/test/johnson/nodes/array_literal_test.rb +57 -0
- data/test/johnson/nodes/array_node_test.rb +26 -0
- data/test/johnson/nodes/binary_node_test.rb +61 -0
- data/test/johnson/nodes/bracket_access_test.rb +16 -0
- data/test/johnson/nodes/delete_test.rb +11 -0
- data/test/johnson/nodes/do_while_test.rb +12 -0
- data/test/johnson/nodes/dot_accessor_test.rb +15 -0
- data/test/johnson/nodes/export_test.rb +9 -0
- data/test/johnson/nodes/for_test.rb +54 -0
- data/test/johnson/nodes/function_test.rb +71 -0
- data/test/johnson/nodes/if_test.rb +41 -0
- data/test/johnson/nodes/import_test.rb +13 -0
- data/test/johnson/nodes/label_test.rb +19 -0
- data/test/johnson/nodes/let_test.rb +31 -0
- data/test/johnson/nodes/object_literal_test.rb +110 -0
- data/test/johnson/nodes/return_test.rb +16 -0
- data/test/johnson/nodes/semi_test.rb +8 -0
- data/test/johnson/nodes/switch_test.rb +55 -0
- data/test/johnson/nodes/ternary_test.rb +25 -0
- data/test/johnson/nodes/throw_test.rb +9 -0
- data/test/johnson/nodes/try_node_test.rb +59 -0
- data/test/johnson/nodes/typeof_test.rb +11 -0
- data/test/johnson/nodes/unary_node_test.rb +23 -0
- data/test/johnson/nodes/void_test.rb +11 -0
- data/test/johnson/nodes/while_test.rb +26 -0
- data/test/johnson/nodes/with_test.rb +10 -0
- data/test/johnson/prelude_test.rb +56 -0
- data/test/johnson/runtime_test.rb +64 -0
- data/test/johnson/spidermonkey/context_test.rb +21 -0
- data/test/johnson/spidermonkey/immutable_node_test.rb +34 -0
- data/test/johnson/spidermonkey/js_land_proxy_test.rb +236 -0
- data/test/johnson/spidermonkey/ruby_land_proxy_test.rb +240 -0
- data/test/johnson/spidermonkey/runtime_test.rb +17 -0
- data/test/johnson/version_test.rb +13 -0
- data/test/johnson/visitors/dot_visitor_test.rb +39 -0
- data/test/johnson/visitors/enumerating_visitor_test.rb +12 -0
- data/test/johnson_test.rb +16 -0
- data/test/parser_test.rb +276 -0
- data/vendor/spidermonkey/.cvsignore +9 -0
- data/vendor/spidermonkey/Makefile.in +449 -0
- data/vendor/spidermonkey/Makefile.ref +365 -0
- data/vendor/spidermonkey/README.html +820 -0
- data/vendor/spidermonkey/SpiderMonkey.rsp +12 -0
- data/vendor/spidermonkey/Y.js +19 -0
- data/vendor/spidermonkey/build.mk +43 -0
- data/vendor/spidermonkey/config.mk +192 -0
- data/vendor/spidermonkey/config/AIX4.1.mk +65 -0
- data/vendor/spidermonkey/config/AIX4.2.mk +64 -0
- data/vendor/spidermonkey/config/AIX4.3.mk +65 -0
- data/vendor/spidermonkey/config/Darwin.mk +83 -0
- data/vendor/spidermonkey/config/Darwin1.3.mk +81 -0
- data/vendor/spidermonkey/config/Darwin1.4.mk +41 -0
- data/vendor/spidermonkey/config/Darwin5.2.mk +81 -0
- data/vendor/spidermonkey/config/Darwin5.3.mk +81 -0
- data/vendor/spidermonkey/config/HP-UXB.10.10.mk +77 -0
- data/vendor/spidermonkey/config/HP-UXB.10.20.mk +77 -0
- data/vendor/spidermonkey/config/HP-UXB.11.00.mk +80 -0
- data/vendor/spidermonkey/config/IRIX.mk +87 -0
- data/vendor/spidermonkey/config/IRIX5.3.mk +44 -0
- data/vendor/spidermonkey/config/IRIX6.1.mk +44 -0
- data/vendor/spidermonkey/config/IRIX6.2.mk +44 -0
- data/vendor/spidermonkey/config/IRIX6.3.mk +44 -0
- data/vendor/spidermonkey/config/IRIX6.5.mk +44 -0
- data/vendor/spidermonkey/config/Linux_All.mk +103 -0
- data/vendor/spidermonkey/config/Mac_OS10.0.mk +82 -0
- data/vendor/spidermonkey/config/OSF1V4.0.mk +72 -0
- data/vendor/spidermonkey/config/OSF1V5.0.mk +69 -0
- data/vendor/spidermonkey/config/SunOS4.1.4.mk +101 -0
- data/vendor/spidermonkey/config/SunOS5.10.mk +50 -0
- data/vendor/spidermonkey/config/SunOS5.3.mk +91 -0
- data/vendor/spidermonkey/config/SunOS5.4.mk +92 -0
- data/vendor/spidermonkey/config/SunOS5.5.1.mk +44 -0
- data/vendor/spidermonkey/config/SunOS5.5.mk +87 -0
- data/vendor/spidermonkey/config/SunOS5.6.mk +89 -0
- data/vendor/spidermonkey/config/SunOS5.7.mk +44 -0
- data/vendor/spidermonkey/config/SunOS5.8.mk +44 -0
- data/vendor/spidermonkey/config/SunOS5.9.mk +44 -0
- data/vendor/spidermonkey/config/WINNT4.0.mk +117 -0
- data/vendor/spidermonkey/config/WINNT5.0.mk +117 -0
- data/vendor/spidermonkey/config/WINNT5.1.mk +117 -0
- data/vendor/spidermonkey/config/WINNT5.2.mk +117 -0
- data/vendor/spidermonkey/config/WINNT6.0.mk +117 -0
- data/vendor/spidermonkey/config/dgux.mk +64 -0
- data/vendor/spidermonkey/editline/Makefile.ref +144 -0
- data/vendor/spidermonkey/editline/README +83 -0
- data/vendor/spidermonkey/editline/editline.3 +175 -0
- data/vendor/spidermonkey/editline/editline.c +1369 -0
- data/vendor/spidermonkey/editline/editline.h +135 -0
- data/vendor/spidermonkey/editline/sysunix.c +182 -0
- data/vendor/spidermonkey/editline/unix.h +82 -0
- data/vendor/spidermonkey/fdlibm/.cvsignore +7 -0
- data/vendor/spidermonkey/fdlibm/Makefile.in +127 -0
- data/vendor/spidermonkey/fdlibm/Makefile.ref +192 -0
- data/vendor/spidermonkey/fdlibm/e_acos.c +147 -0
- data/vendor/spidermonkey/fdlibm/e_acosh.c +105 -0
- data/vendor/spidermonkey/fdlibm/e_asin.c +156 -0
- data/vendor/spidermonkey/fdlibm/e_atan2.c +165 -0
- data/vendor/spidermonkey/fdlibm/e_atanh.c +110 -0
- data/vendor/spidermonkey/fdlibm/e_cosh.c +133 -0
- data/vendor/spidermonkey/fdlibm/e_exp.c +202 -0
- data/vendor/spidermonkey/fdlibm/e_fmod.c +184 -0
- data/vendor/spidermonkey/fdlibm/e_gamma.c +71 -0
- data/vendor/spidermonkey/fdlibm/e_gamma_r.c +70 -0
- data/vendor/spidermonkey/fdlibm/e_hypot.c +173 -0
- data/vendor/spidermonkey/fdlibm/e_j0.c +524 -0
- data/vendor/spidermonkey/fdlibm/e_j1.c +523 -0
- data/vendor/spidermonkey/fdlibm/e_jn.c +315 -0
- data/vendor/spidermonkey/fdlibm/e_lgamma.c +71 -0
- data/vendor/spidermonkey/fdlibm/e_lgamma_r.c +347 -0
- data/vendor/spidermonkey/fdlibm/e_log.c +184 -0
- data/vendor/spidermonkey/fdlibm/e_log10.c +134 -0
- data/vendor/spidermonkey/fdlibm/e_pow.c +386 -0
- data/vendor/spidermonkey/fdlibm/e_rem_pio2.c +222 -0
- data/vendor/spidermonkey/fdlibm/e_remainder.c +120 -0
- data/vendor/spidermonkey/fdlibm/e_scalb.c +89 -0
- data/vendor/spidermonkey/fdlibm/e_sinh.c +122 -0
- data/vendor/spidermonkey/fdlibm/e_sqrt.c +497 -0
- data/vendor/spidermonkey/fdlibm/fdlibm.h +273 -0
- data/vendor/spidermonkey/fdlibm/fdlibm.mak +1453 -0
- data/vendor/spidermonkey/fdlibm/fdlibm.mdp +0 -0
- data/vendor/spidermonkey/fdlibm/k_cos.c +135 -0
- data/vendor/spidermonkey/fdlibm/k_rem_pio2.c +354 -0
- data/vendor/spidermonkey/fdlibm/k_sin.c +114 -0
- data/vendor/spidermonkey/fdlibm/k_standard.c +785 -0
- data/vendor/spidermonkey/fdlibm/k_tan.c +170 -0
- data/vendor/spidermonkey/fdlibm/s_asinh.c +101 -0
- data/vendor/spidermonkey/fdlibm/s_atan.c +175 -0
- data/vendor/spidermonkey/fdlibm/s_cbrt.c +133 -0
- data/vendor/spidermonkey/fdlibm/s_ceil.c +120 -0
- data/vendor/spidermonkey/fdlibm/s_copysign.c +72 -0
- data/vendor/spidermonkey/fdlibm/s_cos.c +118 -0
- data/vendor/spidermonkey/fdlibm/s_erf.c +356 -0
- data/vendor/spidermonkey/fdlibm/s_expm1.c +267 -0
- data/vendor/spidermonkey/fdlibm/s_fabs.c +70 -0
- data/vendor/spidermonkey/fdlibm/s_finite.c +71 -0
- data/vendor/spidermonkey/fdlibm/s_floor.c +121 -0
- data/vendor/spidermonkey/fdlibm/s_frexp.c +99 -0
- data/vendor/spidermonkey/fdlibm/s_ilogb.c +85 -0
- data/vendor/spidermonkey/fdlibm/s_isnan.c +74 -0
- data/vendor/spidermonkey/fdlibm/s_ldexp.c +66 -0
- data/vendor/spidermonkey/fdlibm/s_lib_version.c +73 -0
- data/vendor/spidermonkey/fdlibm/s_log1p.c +211 -0
- data/vendor/spidermonkey/fdlibm/s_logb.c +79 -0
- data/vendor/spidermonkey/fdlibm/s_matherr.c +64 -0
- data/vendor/spidermonkey/fdlibm/s_modf.c +132 -0
- data/vendor/spidermonkey/fdlibm/s_nextafter.c +124 -0
- data/vendor/spidermonkey/fdlibm/s_rint.c +131 -0
- data/vendor/spidermonkey/fdlibm/s_scalbn.c +107 -0
- data/vendor/spidermonkey/fdlibm/s_signgam.c +40 -0
- data/vendor/spidermonkey/fdlibm/s_significand.c +68 -0
- data/vendor/spidermonkey/fdlibm/s_sin.c +118 -0
- data/vendor/spidermonkey/fdlibm/s_tan.c +112 -0
- data/vendor/spidermonkey/fdlibm/s_tanh.c +122 -0
- data/vendor/spidermonkey/fdlibm/w_acos.c +78 -0
- data/vendor/spidermonkey/fdlibm/w_acosh.c +78 -0
- data/vendor/spidermonkey/fdlibm/w_asin.c +80 -0
- data/vendor/spidermonkey/fdlibm/w_atan2.c +79 -0
- data/vendor/spidermonkey/fdlibm/w_atanh.c +81 -0
- data/vendor/spidermonkey/fdlibm/w_cosh.c +77 -0
- data/vendor/spidermonkey/fdlibm/w_exp.c +88 -0
- data/vendor/spidermonkey/fdlibm/w_fmod.c +78 -0
- data/vendor/spidermonkey/fdlibm/w_gamma.c +85 -0
- data/vendor/spidermonkey/fdlibm/w_gamma_r.c +81 -0
- data/vendor/spidermonkey/fdlibm/w_hypot.c +78 -0
- data/vendor/spidermonkey/fdlibm/w_j0.c +105 -0
- data/vendor/spidermonkey/fdlibm/w_j1.c +106 -0
- data/vendor/spidermonkey/fdlibm/w_jn.c +128 -0
- data/vendor/spidermonkey/fdlibm/w_lgamma.c +85 -0
- data/vendor/spidermonkey/fdlibm/w_lgamma_r.c +81 -0
- data/vendor/spidermonkey/fdlibm/w_log.c +78 -0
- data/vendor/spidermonkey/fdlibm/w_log10.c +81 -0
- data/vendor/spidermonkey/fdlibm/w_pow.c +99 -0
- data/vendor/spidermonkey/fdlibm/w_remainder.c +77 -0
- data/vendor/spidermonkey/fdlibm/w_scalb.c +95 -0
- data/vendor/spidermonkey/fdlibm/w_sinh.c +77 -0
- data/vendor/spidermonkey/fdlibm/w_sqrt.c +77 -0
- data/vendor/spidermonkey/javascript-trace.d +73 -0
- data/vendor/spidermonkey/js.c +3951 -0
- data/vendor/spidermonkey/js.mdp +0 -0
- data/vendor/spidermonkey/js.msg +308 -0
- data/vendor/spidermonkey/js3240.rc +79 -0
- data/vendor/spidermonkey/jsOS240.def +654 -0
- data/vendor/spidermonkey/jsapi.c +5836 -0
- data/vendor/spidermonkey/jsapi.h +2624 -0
- data/vendor/spidermonkey/jsarena.c +450 -0
- data/vendor/spidermonkey/jsarena.h +318 -0
- data/vendor/spidermonkey/jsarray.c +2996 -0
- data/vendor/spidermonkey/jsarray.h +127 -0
- data/vendor/spidermonkey/jsatom.c +1045 -0
- data/vendor/spidermonkey/jsatom.h +442 -0
- data/vendor/spidermonkey/jsbit.h +253 -0
- data/vendor/spidermonkey/jsbool.c +176 -0
- data/vendor/spidermonkey/jsbool.h +73 -0
- data/vendor/spidermonkey/jsclist.h +139 -0
- data/vendor/spidermonkey/jscntxt.c +1348 -0
- data/vendor/spidermonkey/jscntxt.h +1120 -0
- data/vendor/spidermonkey/jscompat.h +57 -0
- data/vendor/spidermonkey/jsconfig.h +248 -0
- data/vendor/spidermonkey/jsconfig.mk +181 -0
- data/vendor/spidermonkey/jscpucfg.c +396 -0
- data/vendor/spidermonkey/jscpucfg.h +212 -0
- data/vendor/spidermonkey/jsdate.c +2390 -0
- data/vendor/spidermonkey/jsdate.h +124 -0
- data/vendor/spidermonkey/jsdbgapi.c +1802 -0
- data/vendor/spidermonkey/jsdbgapi.h +464 -0
- data/vendor/spidermonkey/jsdhash.c +868 -0
- data/vendor/spidermonkey/jsdhash.h +592 -0
- data/vendor/spidermonkey/jsdtoa.c +3167 -0
- data/vendor/spidermonkey/jsdtoa.h +130 -0
- data/vendor/spidermonkey/jsdtracef.c +317 -0
- data/vendor/spidermonkey/jsdtracef.h +77 -0
- data/vendor/spidermonkey/jsemit.c +6909 -0
- data/vendor/spidermonkey/jsemit.h +741 -0
- data/vendor/spidermonkey/jsexn.c +1371 -0
- data/vendor/spidermonkey/jsexn.h +96 -0
- data/vendor/spidermonkey/jsfile.c +2736 -0
- data/vendor/spidermonkey/jsfile.h +56 -0
- data/vendor/spidermonkey/jsfile.msg +90 -0
- data/vendor/spidermonkey/jsfun.c +2634 -0
- data/vendor/spidermonkey/jsfun.h +254 -0
- data/vendor/spidermonkey/jsgc.c +3562 -0
- data/vendor/spidermonkey/jsgc.h +403 -0
- data/vendor/spidermonkey/jshash.c +476 -0
- data/vendor/spidermonkey/jshash.h +151 -0
- data/vendor/spidermonkey/jsify.pl +485 -0
- data/vendor/spidermonkey/jsinterp.c +7007 -0
- data/vendor/spidermonkey/jsinterp.h +525 -0
- data/vendor/spidermonkey/jsinvoke.c +43 -0
- data/vendor/spidermonkey/jsiter.c +1067 -0
- data/vendor/spidermonkey/jsiter.h +122 -0
- data/vendor/spidermonkey/jskeyword.tbl +124 -0
- data/vendor/spidermonkey/jskwgen.c +460 -0
- data/vendor/spidermonkey/jslibmath.h +266 -0
- data/vendor/spidermonkey/jslock.c +1309 -0
- data/vendor/spidermonkey/jslock.h +313 -0
- data/vendor/spidermonkey/jslocko.asm +60 -0
- data/vendor/spidermonkey/jslog2.c +94 -0
- data/vendor/spidermonkey/jslong.c +264 -0
- data/vendor/spidermonkey/jslong.h +412 -0
- data/vendor/spidermonkey/jsmath.c +567 -0
- data/vendor/spidermonkey/jsmath.h +57 -0
- data/vendor/spidermonkey/jsnum.c +1239 -0
- data/vendor/spidermonkey/jsnum.h +283 -0
- data/vendor/spidermonkey/jsobj.c +5282 -0
- data/vendor/spidermonkey/jsobj.h +709 -0
- data/vendor/spidermonkey/jsopcode.c +5245 -0
- data/vendor/spidermonkey/jsopcode.h +394 -0
- data/vendor/spidermonkey/jsopcode.tbl +523 -0
- data/vendor/spidermonkey/jsotypes.h +202 -0
- data/vendor/spidermonkey/jsparse.c +6704 -0
- data/vendor/spidermonkey/jsparse.h +511 -0
- data/vendor/spidermonkey/jsprf.c +1262 -0
- data/vendor/spidermonkey/jsprf.h +150 -0
- data/vendor/spidermonkey/jsproto.tbl +128 -0
- data/vendor/spidermonkey/jsprvtd.h +267 -0
- data/vendor/spidermonkey/jspubtd.h +744 -0
- data/vendor/spidermonkey/jsregexp.c +4364 -0
- data/vendor/spidermonkey/jsregexp.h +183 -0
- data/vendor/spidermonkey/jsreops.tbl +145 -0
- data/vendor/spidermonkey/jsscan.c +2012 -0
- data/vendor/spidermonkey/jsscan.h +387 -0
- data/vendor/spidermonkey/jsscope.c +1957 -0
- data/vendor/spidermonkey/jsscope.h +418 -0
- data/vendor/spidermonkey/jsscript.c +1832 -0
- data/vendor/spidermonkey/jsscript.h +287 -0
- data/vendor/spidermonkey/jsshell.msg +50 -0
- data/vendor/spidermonkey/jsstddef.h +83 -0
- data/vendor/spidermonkey/jsstr.c +5005 -0
- data/vendor/spidermonkey/jsstr.h +641 -0
- data/vendor/spidermonkey/jstypes.h +475 -0
- data/vendor/spidermonkey/jsutil.c +345 -0
- data/vendor/spidermonkey/jsutil.h +157 -0
- data/vendor/spidermonkey/jsxdrapi.c +800 -0
- data/vendor/spidermonkey/jsxdrapi.h +218 -0
- data/vendor/spidermonkey/jsxml.c +8476 -0
- data/vendor/spidermonkey/jsxml.h +349 -0
- data/vendor/spidermonkey/lock_SunOS.s +119 -0
- data/vendor/spidermonkey/perfect.js +39 -0
- data/vendor/spidermonkey/plify_jsdhash.sed +36 -0
- data/vendor/spidermonkey/prmjtime.c +846 -0
- data/vendor/spidermonkey/prmjtime.h +103 -0
- data/vendor/spidermonkey/resource.h +15 -0
- data/vendor/spidermonkey/rules.mk +197 -0
- data/vendor/spidermonkey/win32.order +384 -0
- metadata +513 -0
@@ -0,0 +1,1120 @@
|
|
1
|
+
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
2
|
+
* vim: set ts=8 sw=4 et tw=78:
|
3
|
+
*
|
4
|
+
* ***** BEGIN LICENSE BLOCK *****
|
5
|
+
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
6
|
+
*
|
7
|
+
* The contents of this file are subject to the Mozilla Public License Version
|
8
|
+
* 1.1 (the "License"); you may not use this file except in compliance with
|
9
|
+
* the License. You may obtain a copy of the License at
|
10
|
+
* http://www.mozilla.org/MPL/
|
11
|
+
*
|
12
|
+
* Software distributed under the License is distributed on an "AS IS" basis,
|
13
|
+
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
14
|
+
* for the specific language governing rights and limitations under the
|
15
|
+
* License.
|
16
|
+
*
|
17
|
+
* The Original Code is Mozilla Communicator client code, released
|
18
|
+
* March 31, 1998.
|
19
|
+
*
|
20
|
+
* The Initial Developer of the Original Code is
|
21
|
+
* Netscape Communications Corporation.
|
22
|
+
* Portions created by the Initial Developer are Copyright (C) 1998
|
23
|
+
* the Initial Developer. All Rights Reserved.
|
24
|
+
*
|
25
|
+
* Contributor(s):
|
26
|
+
*
|
27
|
+
* Alternatively, the contents of this file may be used under the terms of
|
28
|
+
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
29
|
+
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
30
|
+
* in which case the provisions of the GPL or the LGPL are applicable instead
|
31
|
+
* of those above. If you wish to allow use of your version of this file only
|
32
|
+
* under the terms of either the GPL or the LGPL, and not to allow others to
|
33
|
+
* use your version of this file under the terms of the MPL, indicate your
|
34
|
+
* decision by deleting the provisions above and replace them with the notice
|
35
|
+
* and other provisions required by the GPL or the LGPL. If you do not delete
|
36
|
+
* the provisions above, a recipient may use your version of this file under
|
37
|
+
* the terms of any one of the MPL, the GPL or the LGPL.
|
38
|
+
*
|
39
|
+
* ***** END LICENSE BLOCK ***** */
|
40
|
+
|
41
|
+
#ifndef jscntxt_h___
|
42
|
+
#define jscntxt_h___
|
43
|
+
/*
|
44
|
+
* JS execution context.
|
45
|
+
*/
|
46
|
+
#include "jsarena.h" /* Added by JSIFY */
|
47
|
+
#include "jsclist.h"
|
48
|
+
#include "jslong.h"
|
49
|
+
#include "jsatom.h"
|
50
|
+
#include "jsconfig.h"
|
51
|
+
#include "jsdhash.h"
|
52
|
+
#include "jsgc.h"
|
53
|
+
#include "jsinterp.h"
|
54
|
+
#include "jsobj.h"
|
55
|
+
#include "jsprvtd.h"
|
56
|
+
#include "jspubtd.h"
|
57
|
+
#include "jsregexp.h"
|
58
|
+
#include "jsutil.h"
|
59
|
+
|
60
|
+
JS_BEGIN_EXTERN_C
|
61
|
+
|
62
|
+
/*
|
63
|
+
* js_GetSrcNote cache to avoid O(n^2) growth in finding a source note for a
|
64
|
+
* given pc in a script. We use the script->code pointer to tag the cache,
|
65
|
+
* instead of the script address itself, so that source notes are always found
|
66
|
+
* by offset from the bytecode with which they were generated.
|
67
|
+
*/
|
68
|
+
typedef struct JSGSNCache {
|
69
|
+
jsbytecode *code;
|
70
|
+
JSDHashTable table;
|
71
|
+
#ifdef JS_GSNMETER
|
72
|
+
uint32 hits;
|
73
|
+
uint32 misses;
|
74
|
+
uint32 fills;
|
75
|
+
uint32 clears;
|
76
|
+
# define GSN_CACHE_METER(cache,cnt) (++(cache)->cnt)
|
77
|
+
#else
|
78
|
+
# define GSN_CACHE_METER(cache,cnt) /* nothing */
|
79
|
+
#endif
|
80
|
+
} JSGSNCache;
|
81
|
+
|
82
|
+
#define GSN_CACHE_CLEAR(cache) \
|
83
|
+
JS_BEGIN_MACRO \
|
84
|
+
(cache)->code = NULL; \
|
85
|
+
if ((cache)->table.ops) { \
|
86
|
+
JS_DHashTableFinish(&(cache)->table); \
|
87
|
+
(cache)->table.ops = NULL; \
|
88
|
+
} \
|
89
|
+
GSN_CACHE_METER(cache, clears); \
|
90
|
+
JS_END_MACRO
|
91
|
+
|
92
|
+
/* These helper macros take a cx as parameter and operate on its GSN cache. */
|
93
|
+
#define JS_CLEAR_GSN_CACHE(cx) GSN_CACHE_CLEAR(&JS_GSN_CACHE(cx))
|
94
|
+
#define JS_METER_GSN_CACHE(cx,cnt) GSN_CACHE_METER(&JS_GSN_CACHE(cx), cnt)
|
95
|
+
|
96
|
+
#ifdef JS_THREADSAFE
|
97
|
+
|
98
|
+
/*
|
99
|
+
* Structure uniquely representing a thread. It holds thread-private data
|
100
|
+
* that can be accessed without a global lock.
|
101
|
+
*/
|
102
|
+
struct JSThread {
|
103
|
+
/* Linked list of all contexts active on this thread. */
|
104
|
+
JSCList contextList;
|
105
|
+
|
106
|
+
/* Opaque thread-id, from NSPR's PR_GetCurrentThread(). */
|
107
|
+
jsword id;
|
108
|
+
|
109
|
+
/*
|
110
|
+
* Thread-local version of JSRuntime.gcMallocBytes to avoid taking
|
111
|
+
* locks on each JS_malloc.
|
112
|
+
*/
|
113
|
+
uint32 gcMallocBytes;
|
114
|
+
|
115
|
+
/* Thread-local gc free lists array. */
|
116
|
+
JSGCThing *gcFreeLists[GC_NUM_FREELISTS];
|
117
|
+
|
118
|
+
/*
|
119
|
+
* Store the GSN cache in struct JSThread, not struct JSContext, both to
|
120
|
+
* save space and to simplify cleanup in js_GC. Any embedding (Firefox
|
121
|
+
* or another Gecko application) that uses many contexts per thread is
|
122
|
+
* unlikely to interleave js_GetSrcNote-intensive loops in the decompiler
|
123
|
+
* among two or more contexts running script in one thread.
|
124
|
+
*/
|
125
|
+
JSGSNCache gsnCache;
|
126
|
+
|
127
|
+
/* Property cache for faster call/get/set invocation. */
|
128
|
+
JSPropertyCache propertyCache;
|
129
|
+
};
|
130
|
+
|
131
|
+
#define JS_GSN_CACHE(cx) ((cx)->thread->gsnCache)
|
132
|
+
#define JS_PROPERTY_CACHE(cx) ((cx)->thread->propertyCache)
|
133
|
+
|
134
|
+
extern void JS_DLL_CALLBACK
|
135
|
+
js_ThreadDestructorCB(void *ptr);
|
136
|
+
|
137
|
+
extern JSBool
|
138
|
+
js_SetContextThread(JSContext *cx);
|
139
|
+
|
140
|
+
extern void
|
141
|
+
js_ClearContextThread(JSContext *cx);
|
142
|
+
|
143
|
+
extern JSThread *
|
144
|
+
js_GetCurrentThread(JSRuntime *rt);
|
145
|
+
|
146
|
+
#endif /* JS_THREADSAFE */
|
147
|
+
|
148
|
+
typedef enum JSDestroyContextMode {
|
149
|
+
JSDCM_NO_GC,
|
150
|
+
JSDCM_MAYBE_GC,
|
151
|
+
JSDCM_FORCE_GC,
|
152
|
+
JSDCM_NEW_FAILED
|
153
|
+
} JSDestroyContextMode;
|
154
|
+
|
155
|
+
typedef enum JSRuntimeState {
|
156
|
+
JSRTS_DOWN,
|
157
|
+
JSRTS_LAUNCHING,
|
158
|
+
JSRTS_UP,
|
159
|
+
JSRTS_LANDING
|
160
|
+
} JSRuntimeState;
|
161
|
+
|
162
|
+
typedef struct JSPropertyTreeEntry {
|
163
|
+
JSDHashEntryHdr hdr;
|
164
|
+
JSScopeProperty *child;
|
165
|
+
} JSPropertyTreeEntry;
|
166
|
+
|
167
|
+
/*
|
168
|
+
* Forward declaration for opaque JSRuntime.nativeIteratorStates.
|
169
|
+
*/
|
170
|
+
typedef struct JSNativeIteratorState JSNativeIteratorState;
|
171
|
+
|
172
|
+
typedef struct JSSetSlotRequest JSSetSlotRequest;
|
173
|
+
|
174
|
+
struct JSSetSlotRequest {
|
175
|
+
JSObject *obj; /* object containing slot to set */
|
176
|
+
JSObject *pobj; /* new proto or parent reference */
|
177
|
+
uint16 slot; /* which to set, proto or parent */
|
178
|
+
uint16 errnum; /* JSMSG_NO_ERROR or error result */
|
179
|
+
JSSetSlotRequest *next; /* next request in GC worklist */
|
180
|
+
};
|
181
|
+
|
182
|
+
struct JSRuntime {
|
183
|
+
/* Runtime state, synchronized by the stateChange/gcLock condvar/lock. */
|
184
|
+
JSRuntimeState state;
|
185
|
+
|
186
|
+
/* Context create/destroy callback. */
|
187
|
+
JSContextCallback cxCallback;
|
188
|
+
|
189
|
+
/* Garbage collector state, used by jsgc.c. */
|
190
|
+
JSGCChunkInfo *gcChunkList;
|
191
|
+
JSGCArenaList gcArenaList[GC_NUM_FREELISTS];
|
192
|
+
JSGCDoubleArenaList gcDoubleArenaList;
|
193
|
+
JSDHashTable gcRootsHash;
|
194
|
+
JSDHashTable *gcLocksHash;
|
195
|
+
jsrefcount gcKeepAtoms;
|
196
|
+
uint32 gcBytes;
|
197
|
+
uint32 gcLastBytes;
|
198
|
+
uint32 gcMaxBytes;
|
199
|
+
uint32 gcMaxMallocBytes;
|
200
|
+
uint32 gcStackPoolLifespan;
|
201
|
+
uint32 gcLevel;
|
202
|
+
uint32 gcNumber;
|
203
|
+
JSTracer *gcMarkingTracer;
|
204
|
+
|
205
|
+
/*
|
206
|
+
* NB: do not pack another flag here by claiming gcPadding unless the new
|
207
|
+
* flag is written only by the GC thread. Atomic updates to packed bytes
|
208
|
+
* are not guaranteed, so stores issued by one thread may be lost due to
|
209
|
+
* unsynchronized read-modify-write cycles on other threads.
|
210
|
+
*/
|
211
|
+
JSPackedBool gcPoke;
|
212
|
+
JSPackedBool gcRunning;
|
213
|
+
uint16 gcPadding;
|
214
|
+
#ifdef JS_GC_ZEAL
|
215
|
+
jsrefcount gcZeal;
|
216
|
+
#endif
|
217
|
+
|
218
|
+
JSGCCallback gcCallback;
|
219
|
+
uint32 gcMallocBytes;
|
220
|
+
JSGCArenaInfo *gcUntracedArenaStackTop;
|
221
|
+
#ifdef DEBUG
|
222
|
+
size_t gcTraceLaterCount;
|
223
|
+
#endif
|
224
|
+
|
225
|
+
/*
|
226
|
+
* Table for tracking iterators to ensure that we close iterator's state
|
227
|
+
* before finalizing the iterable object.
|
228
|
+
*/
|
229
|
+
JSPtrTable gcIteratorTable;
|
230
|
+
|
231
|
+
/*
|
232
|
+
* The trace operation and its data argument to trace embedding-specific
|
233
|
+
* GC roots.
|
234
|
+
*/
|
235
|
+
JSTraceDataOp gcExtraRootsTraceOp;
|
236
|
+
void *gcExtraRootsData;
|
237
|
+
|
238
|
+
/*
|
239
|
+
* Used to serialize cycle checks when setting __proto__ or __parent__ by
|
240
|
+
* requesting the GC handle the required cycle detection. If the GC hasn't
|
241
|
+
* been poked, it won't scan for garbage. This member is protected by
|
242
|
+
* rt->gcLock.
|
243
|
+
*/
|
244
|
+
JSSetSlotRequest *setSlotRequests;
|
245
|
+
|
246
|
+
/* Random number generator state, used by jsmath.c. */
|
247
|
+
JSBool rngInitialized;
|
248
|
+
int64 rngMultiplier;
|
249
|
+
int64 rngAddend;
|
250
|
+
int64 rngMask;
|
251
|
+
int64 rngSeed;
|
252
|
+
jsdouble rngDscale;
|
253
|
+
|
254
|
+
/* Well-known numbers held for use by this runtime's contexts. */
|
255
|
+
jsdouble *jsNaN;
|
256
|
+
jsdouble *jsNegativeInfinity;
|
257
|
+
jsdouble *jsPositiveInfinity;
|
258
|
+
|
259
|
+
#ifdef JS_THREADSAFE
|
260
|
+
JSLock *deflatedStringCacheLock;
|
261
|
+
#endif
|
262
|
+
JSHashTable *deflatedStringCache;
|
263
|
+
#ifdef DEBUG
|
264
|
+
uint32 deflatedStringCacheBytes;
|
265
|
+
#endif
|
266
|
+
|
267
|
+
/*
|
268
|
+
* Empty and unit-length strings held for use by this runtime's contexts.
|
269
|
+
* The unitStrings array and its elements are created on demand.
|
270
|
+
*/
|
271
|
+
JSString *emptyString;
|
272
|
+
JSString **unitStrings;
|
273
|
+
|
274
|
+
/* List of active contexts sharing this runtime; protected by gcLock. */
|
275
|
+
JSCList contextList;
|
276
|
+
|
277
|
+
/* Per runtime debug hooks -- see jsprvtd.h and jsdbgapi.h. */
|
278
|
+
JSDebugHooks globalDebugHooks;
|
279
|
+
|
280
|
+
/* More debugging state, see jsdbgapi.c. */
|
281
|
+
JSCList trapList;
|
282
|
+
JSCList watchPointList;
|
283
|
+
|
284
|
+
/* Client opaque pointer */
|
285
|
+
void *data;
|
286
|
+
|
287
|
+
#ifdef JS_THREADSAFE
|
288
|
+
/* These combine to interlock the GC and new requests. */
|
289
|
+
PRLock *gcLock;
|
290
|
+
PRCondVar *gcDone;
|
291
|
+
PRCondVar *requestDone;
|
292
|
+
uint32 requestCount;
|
293
|
+
JSThread *gcThread;
|
294
|
+
|
295
|
+
/* Lock and owning thread pointer for JS_LOCK_RUNTIME. */
|
296
|
+
PRLock *rtLock;
|
297
|
+
#ifdef DEBUG
|
298
|
+
jsword rtLockOwner;
|
299
|
+
#endif
|
300
|
+
|
301
|
+
/* Used to synchronize down/up state change; protected by gcLock. */
|
302
|
+
PRCondVar *stateChange;
|
303
|
+
|
304
|
+
/*
|
305
|
+
* State for sharing single-threaded titles, once a second thread tries to
|
306
|
+
* lock a title. The titleSharingDone condvar is protected by rt->gcLock
|
307
|
+
* to minimize number of locks taken in JS_EndRequest.
|
308
|
+
*
|
309
|
+
* The titleSharingTodo linked list is likewise "global" per runtime, not
|
310
|
+
* one-list-per-context, to conserve space over all contexts, optimizing
|
311
|
+
* for the likely case that titles become shared rarely, and among a very
|
312
|
+
* small set of threads (contexts).
|
313
|
+
*/
|
314
|
+
PRCondVar *titleSharingDone;
|
315
|
+
JSTitle *titleSharingTodo;
|
316
|
+
|
317
|
+
/*
|
318
|
+
* Magic terminator for the rt->titleSharingTodo linked list, threaded through
|
319
|
+
* title->u.link. This hack allows us to test whether a title is on the list
|
320
|
+
* by asking whether title->u.link is non-null. We use a large, likely bogus
|
321
|
+
* pointer here to distinguish this value from any valid u.count (small int)
|
322
|
+
* value.
|
323
|
+
*/
|
324
|
+
#define NO_TITLE_SHARING_TODO ((JSTitle *) 0xfeedbeef)
|
325
|
+
|
326
|
+
/*
|
327
|
+
* Lock serializing trapList and watchPointList accesses, and count of all
|
328
|
+
* mutations to trapList and watchPointList made by debugger threads. To
|
329
|
+
* keep the code simple, we define debuggerMutations for the thread-unsafe
|
330
|
+
* case too.
|
331
|
+
*/
|
332
|
+
PRLock *debuggerLock;
|
333
|
+
#endif /* JS_THREADSAFE */
|
334
|
+
uint32 debuggerMutations;
|
335
|
+
|
336
|
+
/*
|
337
|
+
* Check property accessibility for objects of arbitrary class. Used at
|
338
|
+
* present to check f.caller accessibility for any function object f.
|
339
|
+
*/
|
340
|
+
JSCheckAccessOp checkObjectAccess;
|
341
|
+
|
342
|
+
/* Security principals serialization support. */
|
343
|
+
JSPrincipalsTranscoder principalsTranscoder;
|
344
|
+
|
345
|
+
/* Optional hook to find principals for an object in this runtime. */
|
346
|
+
JSObjectPrincipalsFinder findObjectPrincipals;
|
347
|
+
|
348
|
+
/*
|
349
|
+
* Shared scope property tree, and arena-pool for allocating its nodes.
|
350
|
+
* The propertyRemovals counter is incremented for every js_ClearScope,
|
351
|
+
* and for each js_RemoveScopeProperty that frees a slot in an object.
|
352
|
+
* See js_NativeGet and js_NativeSet in jsobj.c.
|
353
|
+
*/
|
354
|
+
JSDHashTable propertyTreeHash;
|
355
|
+
JSScopeProperty *propertyFreeList;
|
356
|
+
JSArenaPool propertyArenaPool;
|
357
|
+
int32 propertyRemovals;
|
358
|
+
|
359
|
+
/* Script filename table. */
|
360
|
+
struct JSHashTable *scriptFilenameTable;
|
361
|
+
JSCList scriptFilenamePrefixes;
|
362
|
+
#ifdef JS_THREADSAFE
|
363
|
+
PRLock *scriptFilenameTableLock;
|
364
|
+
#endif
|
365
|
+
|
366
|
+
/* Number localization, used by jsnum.c */
|
367
|
+
const char *thousandsSeparator;
|
368
|
+
const char *decimalSeparator;
|
369
|
+
const char *numGrouping;
|
370
|
+
|
371
|
+
/*
|
372
|
+
* Weak references to lazily-created, well-known XML singletons.
|
373
|
+
*
|
374
|
+
* NB: Singleton objects must be carefully disconnected from the rest of
|
375
|
+
* the object graph usually associated with a JSContext's global object,
|
376
|
+
* including the set of standard class objects. See jsxml.c for details.
|
377
|
+
*/
|
378
|
+
JSObject *anynameObject;
|
379
|
+
JSObject *functionNamespaceObject;
|
380
|
+
|
381
|
+
/*
|
382
|
+
* A helper list for the GC, so it can mark native iterator states. See
|
383
|
+
* js_TraceNativeIteratorStates for details.
|
384
|
+
*/
|
385
|
+
JSNativeIteratorState *nativeIteratorStates;
|
386
|
+
|
387
|
+
#ifndef JS_THREADSAFE
|
388
|
+
/*
|
389
|
+
* For thread-unsafe embeddings, the GSN cache lives in the runtime and
|
390
|
+
* not each context, since we expect it to be filled once when decompiling
|
391
|
+
* a longer script, then hit repeatedly as js_GetSrcNote is called during
|
392
|
+
* the decompiler activation that filled it.
|
393
|
+
*/
|
394
|
+
JSGSNCache gsnCache;
|
395
|
+
|
396
|
+
/* Property cache for faster call/get/set invocation. */
|
397
|
+
JSPropertyCache propertyCache;
|
398
|
+
|
399
|
+
#define JS_GSN_CACHE(cx) ((cx)->runtime->gsnCache)
|
400
|
+
#define JS_PROPERTY_CACHE(cx) ((cx)->runtime->propertyCache)
|
401
|
+
#endif
|
402
|
+
|
403
|
+
/*
|
404
|
+
* Object shape (property cache structural type) identifier generator.
|
405
|
+
*
|
406
|
+
* Type 0 stands for the empty scope, and must not be regenerated due to
|
407
|
+
* uint32 wrap-around. Since we use atomic pre-increment, the initial
|
408
|
+
* value for the first typed non-empty scope will be 1.
|
409
|
+
*
|
410
|
+
* The GC compresses live types, minimizing rt->shapeGen in the process.
|
411
|
+
* If this counter overflows into SHAPE_OVERFLOW_BIT (in jsinterp.h), the
|
412
|
+
* GC will disable property caches for all threads, to avoid aliasing two
|
413
|
+
* different types. Updated by js_GenerateShape (in jsinterp.c).
|
414
|
+
*/
|
415
|
+
uint32 shapeGen;
|
416
|
+
|
417
|
+
/* Literal table maintained by jsatom.c functions. */
|
418
|
+
JSAtomState atomState;
|
419
|
+
|
420
|
+
/*
|
421
|
+
* Various metering fields are defined at the end of JSRuntime. In this
|
422
|
+
* way there is no need to recompile all the code that refers to other
|
423
|
+
* fields of JSRuntime after enabling the corresponding metering macro.
|
424
|
+
*/
|
425
|
+
|
426
|
+
#if defined DEBUG || defined JS_DUMP_PROPTREE_STATS
|
427
|
+
/* Function invocation metering. */
|
428
|
+
jsrefcount inlineCalls;
|
429
|
+
jsrefcount nativeCalls;
|
430
|
+
jsrefcount nonInlineCalls;
|
431
|
+
jsrefcount constructs;
|
432
|
+
|
433
|
+
/* Title lock and scope property metering. */
|
434
|
+
jsrefcount claimAttempts;
|
435
|
+
jsrefcount claimedTitles;
|
436
|
+
jsrefcount deadContexts;
|
437
|
+
jsrefcount deadlocksAvoided;
|
438
|
+
jsrefcount liveScopes;
|
439
|
+
jsrefcount sharedTitles;
|
440
|
+
jsrefcount totalScopes;
|
441
|
+
jsrefcount liveScopeProps;
|
442
|
+
jsrefcount liveScopePropsPreSweep;
|
443
|
+
jsrefcount totalScopeProps;
|
444
|
+
jsrefcount livePropTreeNodes;
|
445
|
+
jsrefcount duplicatePropTreeNodes;
|
446
|
+
jsrefcount totalPropTreeNodes;
|
447
|
+
jsrefcount propTreeKidsChunks;
|
448
|
+
jsrefcount middleDeleteFixups;
|
449
|
+
|
450
|
+
/* String instrumentation. */
|
451
|
+
jsrefcount liveStrings;
|
452
|
+
jsrefcount totalStrings;
|
453
|
+
jsrefcount liveDependentStrings;
|
454
|
+
jsrefcount totalDependentStrings;
|
455
|
+
jsrefcount badUndependStrings;
|
456
|
+
double lengthSum;
|
457
|
+
double lengthSquaredSum;
|
458
|
+
double strdepLengthSum;
|
459
|
+
double strdepLengthSquaredSum;
|
460
|
+
#endif /* DEBUG || JS_DUMP_PROPTREE_STATS */
|
461
|
+
|
462
|
+
#ifdef JS_SCOPE_DEPTH_METER
|
463
|
+
/*
|
464
|
+
* Stats on runtime prototype chain lookups and scope chain depths, i.e.,
|
465
|
+
* counts of objects traversed on a chain until the wanted id is found.
|
466
|
+
*/
|
467
|
+
JSBasicStats protoLookupDepthStats;
|
468
|
+
JSBasicStats scopeSearchDepthStats;
|
469
|
+
|
470
|
+
/*
|
471
|
+
* Stats on compile-time host environment and lexical scope chain lengths
|
472
|
+
* (maximum depths).
|
473
|
+
*/
|
474
|
+
JSBasicStats hostenvScopeDepthStats;
|
475
|
+
JSBasicStats lexicalScopeDepthStats;
|
476
|
+
#endif
|
477
|
+
|
478
|
+
#ifdef JS_GCMETER
|
479
|
+
JSGCStats gcStats;
|
480
|
+
#endif
|
481
|
+
};
|
482
|
+
|
483
|
+
#ifdef DEBUG
|
484
|
+
# define JS_RUNTIME_METER(rt, which) JS_ATOMIC_INCREMENT(&(rt)->which)
|
485
|
+
# define JS_RUNTIME_UNMETER(rt, which) JS_ATOMIC_DECREMENT(&(rt)->which)
|
486
|
+
#else
|
487
|
+
# define JS_RUNTIME_METER(rt, which) /* nothing */
|
488
|
+
# define JS_RUNTIME_UNMETER(rt, which) /* nothing */
|
489
|
+
#endif
|
490
|
+
|
491
|
+
#define JS_KEEP_ATOMS(rt) JS_ATOMIC_INCREMENT(&(rt)->gcKeepAtoms);
|
492
|
+
#define JS_UNKEEP_ATOMS(rt) JS_ATOMIC_DECREMENT(&(rt)->gcKeepAtoms);
|
493
|
+
|
494
|
+
#ifdef JS_ARGUMENT_FORMATTER_DEFINED
|
495
|
+
/*
|
496
|
+
* Linked list mapping format strings for JS_{Convert,Push}Arguments{,VA} to
|
497
|
+
* formatter functions. Elements are sorted in non-increasing format string
|
498
|
+
* length order.
|
499
|
+
*/
|
500
|
+
struct JSArgumentFormatMap {
|
501
|
+
const char *format;
|
502
|
+
size_t length;
|
503
|
+
JSArgumentFormatter formatter;
|
504
|
+
JSArgumentFormatMap *next;
|
505
|
+
};
|
506
|
+
#endif
|
507
|
+
|
508
|
+
struct JSStackHeader {
|
509
|
+
uintN nslots;
|
510
|
+
JSStackHeader *down;
|
511
|
+
};
|
512
|
+
|
513
|
+
#define JS_STACK_SEGMENT(sh) ((jsval *)(sh) + 2)
|
514
|
+
|
515
|
+
/*
|
516
|
+
* Key and entry types for the JSContext.resolvingTable hash table, typedef'd
|
517
|
+
* here because all consumers need to see these declarations (and not just the
|
518
|
+
* typedef names, as would be the case for an opaque pointer-to-typedef'd-type
|
519
|
+
* declaration), along with cx->resolvingTable.
|
520
|
+
*/
|
521
|
+
typedef struct JSResolvingKey {
|
522
|
+
JSObject *obj;
|
523
|
+
jsid id;
|
524
|
+
} JSResolvingKey;
|
525
|
+
|
526
|
+
typedef struct JSResolvingEntry {
|
527
|
+
JSDHashEntryHdr hdr;
|
528
|
+
JSResolvingKey key;
|
529
|
+
uint32 flags;
|
530
|
+
} JSResolvingEntry;
|
531
|
+
|
532
|
+
#define JSRESFLAG_LOOKUP 0x1 /* resolving id from lookup */
|
533
|
+
#define JSRESFLAG_WATCH 0x2 /* resolving id from watch */
|
534
|
+
|
535
|
+
typedef struct JSLocalRootChunk JSLocalRootChunk;
|
536
|
+
|
537
|
+
#define JSLRS_CHUNK_SHIFT 8
|
538
|
+
#define JSLRS_CHUNK_SIZE JS_BIT(JSLRS_CHUNK_SHIFT)
|
539
|
+
#define JSLRS_CHUNK_MASK JS_BITMASK(JSLRS_CHUNK_SHIFT)
|
540
|
+
|
541
|
+
struct JSLocalRootChunk {
|
542
|
+
jsval roots[JSLRS_CHUNK_SIZE];
|
543
|
+
JSLocalRootChunk *down;
|
544
|
+
};
|
545
|
+
|
546
|
+
typedef struct JSLocalRootStack {
|
547
|
+
uint32 scopeMark;
|
548
|
+
uint32 rootCount;
|
549
|
+
JSLocalRootChunk *topChunk;
|
550
|
+
JSLocalRootChunk firstChunk;
|
551
|
+
} JSLocalRootStack;
|
552
|
+
|
553
|
+
#define JSLRS_NULL_MARK ((uint32) -1)
|
554
|
+
|
555
|
+
/*
|
556
|
+
* Macros to push/pop JSTempValueRooter instances to context-linked stack of
|
557
|
+
* temporary GC roots. If you need to protect a result value that flows out of
|
558
|
+
* a C function across several layers of other functions, use the
|
559
|
+
* js_LeaveLocalRootScopeWithResult internal API (see further below) instead.
|
560
|
+
*
|
561
|
+
* The macros also provide a simple way to get a single rooted pointer via
|
562
|
+
* JS_PUSH_TEMP_ROOT_<KIND>(cx, NULL, &tvr). Then &tvr.u.<kind> gives the
|
563
|
+
* necessary pointer.
|
564
|
+
*
|
565
|
+
* JSTempValueRooter.count defines the type of the rooted value referenced by
|
566
|
+
* JSTempValueRooter.u union of type JSTempValueUnion. When count is positive
|
567
|
+
* or zero, u.array points to a vector of jsvals. Otherwise it must be one of
|
568
|
+
* the following constants:
|
569
|
+
*/
|
570
|
+
#define JSTVU_SINGLE (-1) /* u.value or u.<gcthing> is single jsval
|
571
|
+
or GC-thing */
|
572
|
+
#define JSTVU_TRACE (-2) /* u.trace is a hook to trace a custom
|
573
|
+
* structure */
|
574
|
+
#define JSTVU_SPROP (-3) /* u.sprop roots property tree node */
|
575
|
+
#define JSTVU_WEAK_ROOTS (-4) /* u.weakRoots points to saved weak roots */
|
576
|
+
#define JSTVU_PARSE_CONTEXT (-5) /* u.parseContext roots JSParseContext* */
|
577
|
+
#define JSTVU_SCRIPT (-6) /* u.script roots JSScript* */
|
578
|
+
|
579
|
+
/*
|
580
|
+
* Here single JSTVU_SINGLE covers both jsval and pointers to any GC-thing via
|
581
|
+
* reinterpreting the thing as JSVAL_OBJECT. It works because the GC-thing is
|
582
|
+
* aligned on a 0 mod 8 boundary, and object has the 0 jsval tag. So any
|
583
|
+
* GC-thing may be tagged as if it were an object and untagged, if it's then
|
584
|
+
* used only as an opaque pointer until discriminated by other means than tag
|
585
|
+
* bits. This is how, for example, js_GetGCThingTraceKind uses its |thing|
|
586
|
+
* parameter -- it consults GC-thing flags stored separately from the thing to
|
587
|
+
* decide the kind of thing.
|
588
|
+
*
|
589
|
+
* The following checks that this type-punning is possible.
|
590
|
+
*/
|
591
|
+
JS_STATIC_ASSERT(sizeof(JSTempValueUnion) == sizeof(jsval));
|
592
|
+
JS_STATIC_ASSERT(sizeof(JSTempValueUnion) == sizeof(void *));
|
593
|
+
|
594
|
+
#define JS_PUSH_TEMP_ROOT_COMMON(cx,x,tvr,cnt,kind) \
|
595
|
+
JS_BEGIN_MACRO \
|
596
|
+
JS_ASSERT((cx)->tempValueRooters != (tvr)); \
|
597
|
+
(tvr)->count = (cnt); \
|
598
|
+
(tvr)->u.kind = (x); \
|
599
|
+
(tvr)->down = (cx)->tempValueRooters; \
|
600
|
+
(cx)->tempValueRooters = (tvr); \
|
601
|
+
JS_END_MACRO
|
602
|
+
|
603
|
+
#define JS_POP_TEMP_ROOT(cx,tvr) \
|
604
|
+
JS_BEGIN_MACRO \
|
605
|
+
JS_ASSERT((cx)->tempValueRooters == (tvr)); \
|
606
|
+
(cx)->tempValueRooters = (tvr)->down; \
|
607
|
+
JS_END_MACRO
|
608
|
+
|
609
|
+
#define JS_PUSH_TEMP_ROOT(cx,cnt,arr,tvr) \
|
610
|
+
JS_BEGIN_MACRO \
|
611
|
+
JS_ASSERT((int)(cnt) >= 0); \
|
612
|
+
JS_PUSH_TEMP_ROOT_COMMON(cx, arr, tvr, (ptrdiff_t) (cnt), array); \
|
613
|
+
JS_END_MACRO
|
614
|
+
|
615
|
+
#define JS_PUSH_SINGLE_TEMP_ROOT(cx,val,tvr) \
|
616
|
+
JS_PUSH_TEMP_ROOT_COMMON(cx, val, tvr, JSTVU_SINGLE, value)
|
617
|
+
|
618
|
+
#define JS_PUSH_TEMP_ROOT_OBJECT(cx,obj,tvr) \
|
619
|
+
JS_PUSH_TEMP_ROOT_COMMON(cx, obj, tvr, JSTVU_SINGLE, object)
|
620
|
+
|
621
|
+
#define JS_PUSH_TEMP_ROOT_STRING(cx,str,tvr) \
|
622
|
+
JS_PUSH_TEMP_ROOT_COMMON(cx, str, tvr, JSTVU_SINGLE, string)
|
623
|
+
|
624
|
+
#define JS_PUSH_TEMP_ROOT_QNAME(cx,qn,tvr) \
|
625
|
+
JS_PUSH_TEMP_ROOT_COMMON(cx, qn, tvr, JSTVU_SINGLE, qname)
|
626
|
+
|
627
|
+
#define JS_PUSH_TEMP_ROOT_NAMESPACE(cx,ns,tvr) \
|
628
|
+
JS_PUSH_TEMP_ROOT_COMMON(cx, ns, tvr, JSTVU_SINGLE, nspace)
|
629
|
+
|
630
|
+
#define JS_PUSH_TEMP_ROOT_XML(cx,xml_,tvr) \
|
631
|
+
JS_PUSH_TEMP_ROOT_COMMON(cx, xml_, tvr, JSTVU_SINGLE, xml)
|
632
|
+
|
633
|
+
#define JS_PUSH_TEMP_ROOT_TRACE(cx,trace_,tvr) \
|
634
|
+
JS_PUSH_TEMP_ROOT_COMMON(cx, trace_, tvr, JSTVU_TRACE, trace)
|
635
|
+
|
636
|
+
#define JS_PUSH_TEMP_ROOT_SPROP(cx,sprop_,tvr) \
|
637
|
+
JS_PUSH_TEMP_ROOT_COMMON(cx, sprop_, tvr, JSTVU_SPROP, sprop)
|
638
|
+
|
639
|
+
#define JS_PUSH_TEMP_ROOT_WEAK_COPY(cx,weakRoots_,tvr) \
|
640
|
+
JS_PUSH_TEMP_ROOT_COMMON(cx, weakRoots_, tvr, JSTVU_WEAK_ROOTS, weakRoots)
|
641
|
+
|
642
|
+
#define JS_PUSH_TEMP_ROOT_PARSE_CONTEXT(cx,pc,tvr) \
|
643
|
+
JS_PUSH_TEMP_ROOT_COMMON(cx, pc, tvr, JSTVU_PARSE_CONTEXT, parseContext)
|
644
|
+
|
645
|
+
#define JS_PUSH_TEMP_ROOT_SCRIPT(cx,script_,tvr) \
|
646
|
+
JS_PUSH_TEMP_ROOT_COMMON(cx, script_, tvr, JSTVU_SCRIPT, script)
|
647
|
+
|
648
|
+
struct JSContext {
|
649
|
+
/* JSRuntime contextList linkage. */
|
650
|
+
JSCList links;
|
651
|
+
|
652
|
+
/*
|
653
|
+
* Operation count. It is declared early in the structure as a frequently
|
654
|
+
* accessed field.
|
655
|
+
*/
|
656
|
+
int32 operationCount;
|
657
|
+
|
658
|
+
#if JS_HAS_XML_SUPPORT
|
659
|
+
/*
|
660
|
+
* Bit-set formed from binary exponentials of the XML_* tiny-ids defined
|
661
|
+
* for boolean settings in jsxml.c, plus an XSF_CACHE_VALID bit. Together
|
662
|
+
* these act as a cache of the boolean XML.ignore* and XML.prettyPrinting
|
663
|
+
* property values associated with this context's global object.
|
664
|
+
*/
|
665
|
+
uint8 xmlSettingFlags;
|
666
|
+
uint8 padding;
|
667
|
+
#else
|
668
|
+
uint16 padding;
|
669
|
+
#endif
|
670
|
+
|
671
|
+
/* Runtime version control identifier. */
|
672
|
+
uint16 version;
|
673
|
+
|
674
|
+
/* Per-context options. */
|
675
|
+
uint32 options; /* see jsapi.h for JSOPTION_* */
|
676
|
+
|
677
|
+
/* Locale specific callbacks for string conversion. */
|
678
|
+
JSLocaleCallbacks *localeCallbacks;
|
679
|
+
|
680
|
+
/*
|
681
|
+
* cx->resolvingTable is non-null and non-empty if we are initializing
|
682
|
+
* standard classes lazily, or if we are otherwise recursing indirectly
|
683
|
+
* from js_LookupProperty through a JSClass.resolve hook. It is used to
|
684
|
+
* limit runaway recursion (see jsapi.c and jsobj.c).
|
685
|
+
*/
|
686
|
+
JSDHashTable *resolvingTable;
|
687
|
+
|
688
|
+
#if JS_HAS_LVALUE_RETURN
|
689
|
+
/*
|
690
|
+
* Secondary return value from native method called on the left-hand side
|
691
|
+
* of an assignment operator. The native should store the object in which
|
692
|
+
* to set a property in *rval, and return the property's id expressed as a
|
693
|
+
* jsval by calling JS_SetCallReturnValue2(cx, idval).
|
694
|
+
*/
|
695
|
+
jsval rval2;
|
696
|
+
JSPackedBool rval2set;
|
697
|
+
#endif
|
698
|
+
|
699
|
+
/*
|
700
|
+
* True if generating an error, to prevent runaway recursion.
|
701
|
+
* NB: generatingError packs with rval2set, #if JS_HAS_LVALUE_RETURN;
|
702
|
+
* with insideGCMarkCallback and with throwing below.
|
703
|
+
*/
|
704
|
+
JSPackedBool generatingError;
|
705
|
+
|
706
|
+
/* Flag to indicate that we run inside gcCallback(cx, JSGC_MARK_END). */
|
707
|
+
JSPackedBool insideGCMarkCallback;
|
708
|
+
|
709
|
+
/* Exception state -- the exception member is a GC root by definition. */
|
710
|
+
JSPackedBool throwing; /* is there a pending exception? */
|
711
|
+
jsval exception; /* most-recently-thrown exception */
|
712
|
+
|
713
|
+
/* Limit pointer for checking native stack consumption during recursion. */
|
714
|
+
jsuword stackLimit;
|
715
|
+
|
716
|
+
/* Quota on the size of arenas used to compile and execute scripts. */
|
717
|
+
size_t scriptStackQuota;
|
718
|
+
|
719
|
+
/* Data shared by threads in an address space. */
|
720
|
+
JSRuntime *runtime;
|
721
|
+
|
722
|
+
/* Stack arena pool and frame pointer register. */
|
723
|
+
JSArenaPool stackPool;
|
724
|
+
JSStackFrame *fp;
|
725
|
+
|
726
|
+
/* Temporary arena pool used while compiling and decompiling. */
|
727
|
+
JSArenaPool tempPool;
|
728
|
+
|
729
|
+
/* Top-level object and pointer to top stack frame's scope chain. */
|
730
|
+
JSObject *globalObject;
|
731
|
+
|
732
|
+
/* Storage to root recently allocated GC things and script result. */
|
733
|
+
JSWeakRoots weakRoots;
|
734
|
+
|
735
|
+
/* Regular expression class statics (XXX not shared globally). */
|
736
|
+
JSRegExpStatics regExpStatics;
|
737
|
+
|
738
|
+
/* State for object and array toSource conversion. */
|
739
|
+
JSSharpObjectMap sharpObjectMap;
|
740
|
+
|
741
|
+
/* Argument formatter support for JS_{Convert,Push}Arguments{,VA}. */
|
742
|
+
JSArgumentFormatMap *argumentFormatMap;
|
743
|
+
|
744
|
+
/* Last message string and trace file for debugging. */
|
745
|
+
char *lastMessage;
|
746
|
+
#ifdef DEBUG
|
747
|
+
void *tracefp;
|
748
|
+
#endif
|
749
|
+
|
750
|
+
/* Per-context optional error reporter. */
|
751
|
+
JSErrorReporter errorReporter;
|
752
|
+
|
753
|
+
/*
|
754
|
+
* Flag indicating that the operation callback is set. When the flag is 0
|
755
|
+
* but operationCallback is not null, operationCallback stores the branch
|
756
|
+
* callback.
|
757
|
+
*/
|
758
|
+
uint32 operationCallbackIsSet : 1;
|
759
|
+
uint32 operationLimit : 31;
|
760
|
+
JSOperationCallback operationCallback;
|
761
|
+
|
762
|
+
/* Interpreter activation count. */
|
763
|
+
uintN interpLevel;
|
764
|
+
|
765
|
+
/* Client opaque pointer */
|
766
|
+
void *data;
|
767
|
+
|
768
|
+
/* GC and thread-safe state. */
|
769
|
+
JSStackFrame *dormantFrameChain; /* dormant stack frame to scan */
|
770
|
+
#ifdef JS_THREADSAFE
|
771
|
+
JSThread *thread;
|
772
|
+
jsrefcount requestDepth;
|
773
|
+
/* Same as requestDepth but ignoring JS_SuspendRequest/JS_ResumeRequest */
|
774
|
+
jsrefcount outstandingRequests;
|
775
|
+
JSTitle *titleToShare; /* weak reference, see jslock.c */
|
776
|
+
JSTitle *lockedSealedTitle; /* weak ref, for low-cost sealed
|
777
|
+
title locking */
|
778
|
+
JSCList threadLinks; /* JSThread contextList linkage */
|
779
|
+
|
780
|
+
#define CX_FROM_THREAD_LINKS(tl) \
|
781
|
+
((JSContext *)((char *)(tl) - offsetof(JSContext, threadLinks)))
|
782
|
+
#endif
|
783
|
+
|
784
|
+
/* PDL of stack headers describing stack slots not rooted by argv, etc. */
|
785
|
+
JSStackHeader *stackHeaders;
|
786
|
+
|
787
|
+
/* Optional stack of heap-allocated scoped local GC roots. */
|
788
|
+
JSLocalRootStack *localRootStack;
|
789
|
+
|
790
|
+
/* Stack of thread-stack-allocated temporary GC roots. */
|
791
|
+
JSTempValueRooter *tempValueRooters;
|
792
|
+
|
793
|
+
/* List of pre-allocated doubles. */
|
794
|
+
JSGCDoubleCell *doubleFreeList;
|
795
|
+
|
796
|
+
/* Debug hooks associated with the current context. */
|
797
|
+
JSDebugHooks *debugHooks;
|
798
|
+
};
|
799
|
+
|
800
|
+
#ifdef JS_THREADSAFE
|
801
|
+
# define JS_THREAD_ID(cx) ((cx)->thread ? (cx)->thread->id : 0)
|
802
|
+
#endif
|
803
|
+
|
804
|
+
#ifdef __cplusplus
|
805
|
+
/* FIXME(bug 332648): Move this into a public header. */
|
806
|
+
class JSAutoTempValueRooter
|
807
|
+
{
|
808
|
+
public:
|
809
|
+
JSAutoTempValueRooter(JSContext *cx, size_t len, jsval *vec)
|
810
|
+
: mContext(cx) {
|
811
|
+
JS_PUSH_TEMP_ROOT(mContext, len, vec, &mTvr);
|
812
|
+
}
|
813
|
+
JSAutoTempValueRooter(JSContext *cx, jsval v)
|
814
|
+
: mContext(cx) {
|
815
|
+
JS_PUSH_SINGLE_TEMP_ROOT(mContext, v, &mTvr);
|
816
|
+
}
|
817
|
+
|
818
|
+
~JSAutoTempValueRooter() {
|
819
|
+
JS_POP_TEMP_ROOT(mContext, &mTvr);
|
820
|
+
}
|
821
|
+
|
822
|
+
private:
|
823
|
+
#ifndef AIX
|
824
|
+
static void *operator new(size_t);
|
825
|
+
static void operator delete(void *, size_t);
|
826
|
+
#endif
|
827
|
+
|
828
|
+
JSContext *mContext;
|
829
|
+
JSTempValueRooter mTvr;
|
830
|
+
};
|
831
|
+
#endif
|
832
|
+
|
833
|
+
/*
|
834
|
+
* Slightly more readable macros for testing per-context option settings (also
|
835
|
+
* to hide bitset implementation detail).
|
836
|
+
*
|
837
|
+
* JSOPTION_XML must be handled specially in order to propagate from compile-
|
838
|
+
* to run-time (from cx->options to script->version/cx->version). To do that,
|
839
|
+
* we copy JSOPTION_XML from cx->options into cx->version as JSVERSION_HAS_XML
|
840
|
+
* whenever options are set, and preserve this XML flag across version number
|
841
|
+
* changes done via the JS_SetVersion API.
|
842
|
+
*
|
843
|
+
* But when executing a script or scripted function, the interpreter changes
|
844
|
+
* cx->version, including the XML flag, to script->version. Thus JSOPTION_XML
|
845
|
+
* is a compile-time option that causes a run-time version change during each
|
846
|
+
* activation of the compiled script. That version change has the effect of
|
847
|
+
* changing JS_HAS_XML_OPTION, so that any compiling done via eval enables XML
|
848
|
+
* support. If an XML-enabled script or function calls a non-XML function,
|
849
|
+
* the flag bit will be cleared during the callee's activation.
|
850
|
+
*
|
851
|
+
* Note that JS_SetVersion API calls never pass JSVERSION_HAS_XML or'd into
|
852
|
+
* that API's version parameter.
|
853
|
+
*
|
854
|
+
* Note also that script->version must contain this XML option flag in order
|
855
|
+
* for XDR'ed scripts to serialize and deserialize with that option preserved
|
856
|
+
* for detection at run-time. We can't copy other compile-time options into
|
857
|
+
* script->version because that would break backward compatibility (certain
|
858
|
+
* other options, e.g. JSOPTION_VAROBJFIX, are analogous to JSOPTION_XML).
|
859
|
+
*/
|
860
|
+
#define JS_HAS_OPTION(cx,option) (((cx)->options & (option)) != 0)
|
861
|
+
#define JS_HAS_STRICT_OPTION(cx) JS_HAS_OPTION(cx, JSOPTION_STRICT)
|
862
|
+
#define JS_HAS_WERROR_OPTION(cx) JS_HAS_OPTION(cx, JSOPTION_WERROR)
|
863
|
+
#define JS_HAS_COMPILE_N_GO_OPTION(cx) JS_HAS_OPTION(cx, JSOPTION_COMPILE_N_GO)
|
864
|
+
#define JS_HAS_ATLINE_OPTION(cx) JS_HAS_OPTION(cx, JSOPTION_ATLINE)
|
865
|
+
|
866
|
+
#define JSVERSION_MASK 0x0FFF /* see JSVersion in jspubtd.h */
|
867
|
+
#define JSVERSION_HAS_XML 0x1000 /* flag induced by XML option */
|
868
|
+
|
869
|
+
#define JSVERSION_NUMBER(cx) ((JSVersion)((cx)->version & \
|
870
|
+
JSVERSION_MASK))
|
871
|
+
#define JS_HAS_XML_OPTION(cx) ((cx)->version & JSVERSION_HAS_XML || \
|
872
|
+
JSVERSION_NUMBER(cx) >= JSVERSION_1_6)
|
873
|
+
|
874
|
+
/*
|
875
|
+
* Initialize a library-wide thread private data index, and remember that it
|
876
|
+
* has already been done, so that it happens only once ever. Returns true on
|
877
|
+
* success.
|
878
|
+
*/
|
879
|
+
extern JSBool
|
880
|
+
js_InitThreadPrivateIndex(void (JS_DLL_CALLBACK *ptr)(void *));
|
881
|
+
|
882
|
+
/*
|
883
|
+
* Common subroutine of JS_SetVersion and js_SetVersion, to update per-context
|
884
|
+
* data that depends on version.
|
885
|
+
*/
|
886
|
+
extern void
|
887
|
+
js_OnVersionChange(JSContext *cx);
|
888
|
+
|
889
|
+
/*
|
890
|
+
* Unlike the JS_SetVersion API, this function stores JSVERSION_HAS_XML and
|
891
|
+
* any future non-version-number flags induced by compiler options.
|
892
|
+
*/
|
893
|
+
extern void
|
894
|
+
js_SetVersion(JSContext *cx, JSVersion version);
|
895
|
+
|
896
|
+
/*
|
897
|
+
* Create and destroy functions for JSContext, which is manually allocated
|
898
|
+
* and exclusively owned.
|
899
|
+
*/
|
900
|
+
extern JSContext *
|
901
|
+
js_NewContext(JSRuntime *rt, size_t stackChunkSize);
|
902
|
+
|
903
|
+
extern void
|
904
|
+
js_DestroyContext(JSContext *cx, JSDestroyContextMode mode);
|
905
|
+
|
906
|
+
/*
|
907
|
+
* Return true if cx points to a context in rt->contextList, else return false.
|
908
|
+
* NB: the caller (see jslock.c:ClaimTitle) must hold rt->gcLock.
|
909
|
+
*/
|
910
|
+
extern JSBool
|
911
|
+
js_ValidContextPointer(JSRuntime *rt, JSContext *cx);
|
912
|
+
|
913
|
+
/*
|
914
|
+
* If unlocked, acquire and release rt->gcLock around *iterp update; otherwise
|
915
|
+
* the caller must be holding rt->gcLock.
|
916
|
+
*/
|
917
|
+
extern JSContext *
|
918
|
+
js_ContextIterator(JSRuntime *rt, JSBool unlocked, JSContext **iterp);
|
919
|
+
|
920
|
+
/*
|
921
|
+
* JSClass.resolve and watchpoint recursion damping machinery.
|
922
|
+
*/
|
923
|
+
extern JSBool
|
924
|
+
js_StartResolving(JSContext *cx, JSResolvingKey *key, uint32 flag,
|
925
|
+
JSResolvingEntry **entryp);
|
926
|
+
|
927
|
+
extern void
|
928
|
+
js_StopResolving(JSContext *cx, JSResolvingKey *key, uint32 flag,
|
929
|
+
JSResolvingEntry *entry, uint32 generation);
|
930
|
+
|
931
|
+
/*
|
932
|
+
* Local root set management.
|
933
|
+
*
|
934
|
+
* NB: the jsval parameters below may be properly tagged jsvals, or GC-thing
|
935
|
+
* pointers cast to (jsval). This relies on JSObject's tag being zero, but
|
936
|
+
* on the up side it lets us push int-jsval-encoded scopeMark values on the
|
937
|
+
* local root stack.
|
938
|
+
*/
|
939
|
+
extern JSBool
|
940
|
+
js_EnterLocalRootScope(JSContext *cx);
|
941
|
+
|
942
|
+
#define js_LeaveLocalRootScope(cx) \
|
943
|
+
js_LeaveLocalRootScopeWithResult(cx, JSVAL_NULL)
|
944
|
+
|
945
|
+
extern void
|
946
|
+
js_LeaveLocalRootScopeWithResult(JSContext *cx, jsval rval);
|
947
|
+
|
948
|
+
extern void
|
949
|
+
js_ForgetLocalRoot(JSContext *cx, jsval v);
|
950
|
+
|
951
|
+
extern int
|
952
|
+
js_PushLocalRoot(JSContext *cx, JSLocalRootStack *lrs, jsval v);
|
953
|
+
|
954
|
+
extern void
|
955
|
+
js_TraceLocalRoots(JSTracer *trc, JSLocalRootStack *lrs);
|
956
|
+
|
957
|
+
/*
|
958
|
+
* Report an exception, which is currently realized as a printf-style format
|
959
|
+
* string and its arguments.
|
960
|
+
*/
|
961
|
+
typedef enum JSErrNum {
|
962
|
+
#define MSG_DEF(name, number, count, exception, format) \
|
963
|
+
name = number,
|
964
|
+
#include "js.msg"
|
965
|
+
#undef MSG_DEF
|
966
|
+
JSErr_Limit
|
967
|
+
} JSErrNum;
|
968
|
+
|
969
|
+
extern const JSErrorFormatString *
|
970
|
+
js_GetErrorMessage(void *userRef, const char *locale, const uintN errorNumber);
|
971
|
+
|
972
|
+
#ifdef va_start
|
973
|
+
extern JSBool
|
974
|
+
js_ReportErrorVA(JSContext *cx, uintN flags, const char *format, va_list ap);
|
975
|
+
|
976
|
+
extern JSBool
|
977
|
+
js_ReportErrorNumberVA(JSContext *cx, uintN flags, JSErrorCallback callback,
|
978
|
+
void *userRef, const uintN errorNumber,
|
979
|
+
JSBool charArgs, va_list ap);
|
980
|
+
|
981
|
+
extern JSBool
|
982
|
+
js_ExpandErrorArguments(JSContext *cx, JSErrorCallback callback,
|
983
|
+
void *userRef, const uintN errorNumber,
|
984
|
+
char **message, JSErrorReport *reportp,
|
985
|
+
JSBool *warningp, JSBool charArgs, va_list ap);
|
986
|
+
#endif
|
987
|
+
|
988
|
+
extern void
|
989
|
+
js_ReportOutOfMemory(JSContext *cx);
|
990
|
+
|
991
|
+
/*
|
992
|
+
* Report that cx->scriptStackQuota is exhausted.
|
993
|
+
*/
|
994
|
+
extern void
|
995
|
+
js_ReportOutOfScriptQuota(JSContext *cx);
|
996
|
+
|
997
|
+
extern void
|
998
|
+
js_ReportOverRecursed(JSContext *cx);
|
999
|
+
|
1000
|
+
extern void
|
1001
|
+
js_ReportAllocationOverflow(JSContext *cx);
|
1002
|
+
|
1003
|
+
#define JS_CHECK_RECURSION(cx, onerror) \
|
1004
|
+
JS_BEGIN_MACRO \
|
1005
|
+
int stackDummy_; \
|
1006
|
+
\
|
1007
|
+
if (!JS_CHECK_STACK_SIZE(cx, stackDummy_)) { \
|
1008
|
+
js_ReportOverRecursed(cx); \
|
1009
|
+
onerror; \
|
1010
|
+
} \
|
1011
|
+
JS_END_MACRO
|
1012
|
+
|
1013
|
+
/*
|
1014
|
+
* Report an exception using a previously composed JSErrorReport.
|
1015
|
+
* XXXbe remove from "friend" API
|
1016
|
+
*/
|
1017
|
+
extern JS_FRIEND_API(void)
|
1018
|
+
js_ReportErrorAgain(JSContext *cx, const char *message, JSErrorReport *report);
|
1019
|
+
|
1020
|
+
extern void
|
1021
|
+
js_ReportIsNotDefined(JSContext *cx, const char *name);
|
1022
|
+
|
1023
|
+
/*
|
1024
|
+
* Report an attempt to access the property of a null or undefined value (v).
|
1025
|
+
*/
|
1026
|
+
extern JSBool
|
1027
|
+
js_ReportIsNullOrUndefined(JSContext *cx, intN spindex, jsval v,
|
1028
|
+
JSString *fallback);
|
1029
|
+
|
1030
|
+
/*
|
1031
|
+
* Report error using js_DecompileValueGenerator(cx, spindex, v, fallback) as
|
1032
|
+
* the first argument for the error message. If the error message has less
|
1033
|
+
* then 3 arguments, use null for arg1 or arg2.
|
1034
|
+
*/
|
1035
|
+
extern JSBool
|
1036
|
+
js_ReportValueErrorFlags(JSContext *cx, uintN flags, const uintN errorNumber,
|
1037
|
+
intN spindex, jsval v, JSString *fallback,
|
1038
|
+
const char *arg1, const char *arg2);
|
1039
|
+
|
1040
|
+
#define js_ReportValueError(cx,errorNumber,spindex,v,fallback) \
|
1041
|
+
((void)js_ReportValueErrorFlags(cx, JSREPORT_ERROR, errorNumber, \
|
1042
|
+
spindex, v, fallback, NULL, NULL))
|
1043
|
+
|
1044
|
+
#define js_ReportValueError2(cx,errorNumber,spindex,v,fallback,arg1) \
|
1045
|
+
((void)js_ReportValueErrorFlags(cx, JSREPORT_ERROR, errorNumber, \
|
1046
|
+
spindex, v, fallback, arg1, NULL))
|
1047
|
+
|
1048
|
+
#define js_ReportValueError3(cx,errorNumber,spindex,v,fallback,arg1,arg2) \
|
1049
|
+
((void)js_ReportValueErrorFlags(cx, JSREPORT_ERROR, errorNumber, \
|
1050
|
+
spindex, v, fallback, arg1, arg2))
|
1051
|
+
|
1052
|
+
extern JSErrorFormatString js_ErrorFormatString[JSErr_Limit];
|
1053
|
+
|
1054
|
+
/*
|
1055
|
+
* See JS_SetThreadStackLimit in jsapi.c, where we check that the stack grows
|
1056
|
+
* in the expected direction. On Unix-y systems, JS_STACK_GROWTH_DIRECTION is
|
1057
|
+
* computed on the build host by jscpucfg.c and written into jsautocfg.h. The
|
1058
|
+
* macro is hardcoded in jscpucfg.h on Windows and Mac systems (for historical
|
1059
|
+
* reasons pre-dating autoconf usage).
|
1060
|
+
*/
|
1061
|
+
#if JS_STACK_GROWTH_DIRECTION > 0
|
1062
|
+
# define JS_CHECK_STACK_SIZE(cx, lval) ((jsuword)&(lval) < (cx)->stackLimit)
|
1063
|
+
#else
|
1064
|
+
# define JS_CHECK_STACK_SIZE(cx, lval) ((jsuword)&(lval) > (cx)->stackLimit)
|
1065
|
+
#endif
|
1066
|
+
|
1067
|
+
/*
|
1068
|
+
* Update the operation counter according to the given weight and call the
|
1069
|
+
* operation callback when we reach the operation limit. To make this
|
1070
|
+
* frequently executed macro faster we decrease the counter from
|
1071
|
+
* JSContext.operationLimit and compare against zero to check the limit.
|
1072
|
+
*
|
1073
|
+
* This macro can run the full GC. Return true if it is OK to continue and
|
1074
|
+
* false otherwise.
|
1075
|
+
*/
|
1076
|
+
#define JS_CHECK_OPERATION_LIMIT(cx, weight) \
|
1077
|
+
(JS_CHECK_OPERATION_WEIGHT(weight), \
|
1078
|
+
(((cx)->operationCount -= (weight)) > 0 || js_ResetOperationCount(cx)))
|
1079
|
+
|
1080
|
+
/*
|
1081
|
+
* A version of JS_CHECK_OPERATION_LIMIT that just updates the operation count
|
1082
|
+
* without calling the operation callback or any other API. This macro resets
|
1083
|
+
* the count to 0 when it becomes negative to prevent a wrap-around when the
|
1084
|
+
* macro is called repeatably.
|
1085
|
+
*/
|
1086
|
+
#define JS_COUNT_OPERATION(cx, weight) \
|
1087
|
+
((void)(JS_CHECK_OPERATION_WEIGHT(weight), \
|
1088
|
+
(cx)->operationCount = ((cx)->operationCount > 0) \
|
1089
|
+
? (cx)->operationCount - (weight) \
|
1090
|
+
: 0))
|
1091
|
+
|
1092
|
+
/*
|
1093
|
+
* The implementation of the above macros assumes that subtracting weights
|
1094
|
+
* twice from a positive number does not wrap-around INT32_MIN.
|
1095
|
+
*/
|
1096
|
+
#define JS_CHECK_OPERATION_WEIGHT(weight) \
|
1097
|
+
(JS_ASSERT((uint32) (weight) > 0), \
|
1098
|
+
JS_ASSERT((uint32) (weight) < JS_BIT(30)))
|
1099
|
+
|
1100
|
+
/* Relative operations weights. */
|
1101
|
+
#define JSOW_JUMP 1
|
1102
|
+
#define JSOW_ALLOCATION 100
|
1103
|
+
#define JSOW_LOOKUP_PROPERTY 5
|
1104
|
+
#define JSOW_GET_PROPERTY 10
|
1105
|
+
#define JSOW_SET_PROPERTY 20
|
1106
|
+
#define JSOW_NEW_PROPERTY 200
|
1107
|
+
#define JSOW_DELETE_PROPERTY 30
|
1108
|
+
#define JSOW_ENTER_SHARP JS_OPERATION_WEIGHT_BASE
|
1109
|
+
#define JSOW_SCRIPT_JUMP JS_OPERATION_WEIGHT_BASE
|
1110
|
+
|
1111
|
+
/*
|
1112
|
+
* Reset the operation count and call the operation callback assuming that the
|
1113
|
+
* operation limit is reached.
|
1114
|
+
*/
|
1115
|
+
extern JSBool
|
1116
|
+
js_ResetOperationCount(JSContext *cx);
|
1117
|
+
|
1118
|
+
JS_END_EXTERN_C
|
1119
|
+
|
1120
|
+
#endif /* jscntxt_h___ */
|