johnson 1.2.0 → 2.0.0.pre0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.rdoc +8 -0
- data/Manifest.txt +762 -48
- data/README.rdoc +2 -1
- data/Rakefile +90 -18
- data/ext/spidermonkey/conversions.c +9 -2
- data/ext/spidermonkey/ruby_land_proxy.c +1 -1
- data/ext/spidermonkey/runtime.h +1 -1
- data/ext/tracemonkey/context.cc +125 -0
- data/ext/tracemonkey/context.h +19 -0
- data/ext/tracemonkey/conversions.cc +365 -0
- data/ext/tracemonkey/conversions.h +32 -0
- data/ext/tracemonkey/debugger.cc +234 -0
- data/ext/tracemonkey/debugger.h +10 -0
- data/ext/tracemonkey/extconf.rb +37 -0
- data/ext/tracemonkey/extensions.cc +37 -0
- data/ext/tracemonkey/extensions.h +12 -0
- data/ext/tracemonkey/global.cc +40 -0
- data/ext/tracemonkey/global.h +11 -0
- data/ext/tracemonkey/idhash.cc +16 -0
- data/ext/tracemonkey/idhash.h +8 -0
- data/ext/tracemonkey/immutable_node.cc +1199 -0
- data/ext/tracemonkey/immutable_node.cc.erb +559 -0
- data/ext/tracemonkey/immutable_node.h +22 -0
- data/ext/tracemonkey/jroot.h +215 -0
- data/ext/tracemonkey/js_land_proxy.cc +620 -0
- data/ext/tracemonkey/js_land_proxy.h +20 -0
- data/ext/tracemonkey/ruby_land_proxy.cc +618 -0
- data/ext/tracemonkey/ruby_land_proxy.h +38 -0
- data/ext/tracemonkey/runtime.cc +454 -0
- data/ext/tracemonkey/runtime.h +27 -0
- data/ext/tracemonkey/split_global.cc +392 -0
- data/ext/tracemonkey/split_global.h +11 -0
- data/ext/tracemonkey/tracemonkey.cc +23 -0
- data/ext/tracemonkey/tracemonkey.h +32 -0
- data/lib/johnson.rb +12 -4
- data/lib/johnson/error.rb +5 -0
- data/lib/johnson/js/prelude.js +16 -1
- data/lib/johnson/parser.rb +2 -1
- data/lib/johnson/runtime.rb +87 -26
- data/lib/johnson/spidermonkey/runtime.rb +7 -16
- data/lib/johnson/tracemonkey.rb +13 -0
- data/lib/johnson/tracemonkey/context.rb +10 -0
- data/lib/johnson/tracemonkey/debugger.rb +67 -0
- data/lib/johnson/tracemonkey/immutable_node.rb +282 -0
- data/lib/johnson/tracemonkey/js_land_proxy.rb +64 -0
- data/lib/johnson/tracemonkey/mutable_tree_visitor.rb +242 -0
- data/lib/johnson/tracemonkey/ruby_land_proxy.rb +17 -0
- data/lib/johnson/tracemonkey/runtime.rb +80 -0
- data/test/{johnson_test.rb → generic/johnson_test.rb} +1 -1
- data/test/{parser_test.rb → generic/parser_test.rb} +1 -1
- data/test/helper.rb +23 -4
- data/test/johnson/{browser_test.rb → generic/browser_test.rb} +1 -1
- data/test/johnson/{conversions → generic/conversions}/array_test.rb +1 -1
- data/test/johnson/{conversions → generic/conversions}/boolean_test.rb +1 -1
- data/test/johnson/{conversions → generic/conversions}/callable_test.rb +1 -1
- data/test/johnson/{conversions → generic/conversions}/file_test.rb +1 -1
- data/test/johnson/generic/conversions/helper.rb +1 -0
- data/test/johnson/{conversions → generic/conversions}/nil_test.rb +1 -1
- data/test/johnson/{conversions → generic/conversions}/number_test.rb +1 -1
- data/test/johnson/{conversions → generic/conversions}/regexp_test.rb +1 -1
- data/test/johnson/{conversions → generic/conversions}/string_test.rb +1 -1
- data/test/johnson/{conversions → generic/conversions}/struct_test.rb +1 -1
- data/test/johnson/{conversions → generic/conversions}/symbol_test.rb +1 -1
- data/test/johnson/{conversions → generic/conversions}/thread_test.rb +1 -1
- data/test/johnson/{custom_conversions_test.rb → generic/custom_conversions_test.rb} +1 -1
- data/test/johnson/generic/default_test.rb +12 -0
- data/test/johnson/{error_test.rb → generic/error_test.rb} +1 -1
- data/test/johnson/{extensions_test.rb → generic/extensions_test.rb} +1 -1
- data/test/johnson/generic/helper.rb +1 -0
- data/test/johnson/{nodes → generic/nodes}/array_literal_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/array_node_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/binary_node_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/bracket_access_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/delete_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/do_while_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/dot_accessor_test.rb +1 -1
- data/test/johnson/generic/nodes/export_test.rb +11 -0
- data/test/johnson/{nodes → generic/nodes}/for_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/function_test.rb +1 -1
- data/test/johnson/generic/nodes/helper.rb +1 -0
- data/test/johnson/{nodes → generic/nodes}/if_test.rb +16 -6
- data/test/johnson/generic/nodes/import_test.rb +15 -0
- data/test/johnson/{nodes → generic/nodes}/label_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/let_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/object_literal_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/return_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/semi_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/switch_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/ternary_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/throw_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/try_node_test.rb +36 -6
- data/test/johnson/{nodes → generic/nodes}/typeof_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/unary_node_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/void_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/while_test.rb +1 -1
- data/test/johnson/{nodes → generic/nodes}/with_test.rb +1 -1
- data/test/johnson/{prelude_test.rb → generic/prelude_test.rb} +1 -1
- data/test/johnson/{runtime_test.rb → generic/runtime_test.rb} +3 -6
- data/test/johnson/generic/version_test.rb +13 -0
- data/test/johnson/{visitors → generic/visitors}/dot_visitor_test.rb +1 -1
- data/test/johnson/{visitors → generic/visitors}/enumerating_visitor_test.rb +1 -1
- data/test/johnson/generic/visitors/helper.rb +1 -0
- data/test/johnson/spidermonkey/js_land_proxy_test.rb +1 -5
- data/test/johnson/spidermonkey/ruby_land_proxy_test.rb +11 -7
- data/test/johnson/tracemonkey/context_test.rb +21 -0
- data/test/johnson/tracemonkey/immutable_node_test.rb +34 -0
- data/test/johnson/tracemonkey/js_land_proxy_test.rb +273 -0
- data/test/johnson/tracemonkey/ruby_land_proxy_test.rb +274 -0
- data/test/johnson/tracemonkey/runtime_test.rb +41 -0
- data/test/johnson/tracemonkey/split_global_test.rb +32 -0
- data/vendor/spidermonkey/js.pkg +2 -0
- data/vendor/tracemonkey/Makefile.in +668 -0
- data/vendor/tracemonkey/Makefile.ref +483 -0
- data/vendor/tracemonkey/README.html +54 -0
- data/vendor/tracemonkey/SpiderMonkey.rsp +11 -0
- data/vendor/tracemonkey/Y.js +19 -0
- data/vendor/tracemonkey/aclocal.m4 +9 -0
- data/vendor/tracemonkey/bench.sh +5 -0
- data/vendor/tracemonkey/build/autoconf/acoutput-fast.pl +202 -0
- data/vendor/tracemonkey/build/autoconf/altoptions.m4 +154 -0
- data/vendor/tracemonkey/build/autoconf/config.guess +1537 -0
- data/vendor/tracemonkey/build/autoconf/config.sub +1595 -0
- data/vendor/tracemonkey/build/autoconf/install-sh +119 -0
- data/vendor/tracemonkey/build/autoconf/make-makefile +315 -0
- data/vendor/tracemonkey/build/autoconf/match-dir.sh +101 -0
- data/vendor/tracemonkey/build/autoconf/moznbytetype.m4 +136 -0
- data/vendor/tracemonkey/build/autoconf/nspr.m4 +82 -0
- data/vendor/tracemonkey/build/autoconf/pkg.m4 +59 -0
- data/vendor/tracemonkey/build/autoconf/update-makefile.sh +118 -0
- data/vendor/tracemonkey/build/cygwin-wrapper +75 -0
- data/vendor/tracemonkey/build/hcc +111 -0
- data/vendor/tracemonkey/build/hcpp +155 -0
- data/vendor/tracemonkey/build/unix/mddepend.pl +165 -0
- data/vendor/tracemonkey/build/unix/uniq.pl +63 -0
- data/vendor/tracemonkey/build/win32/pgomerge.py +40 -0
- data/vendor/tracemonkey/builtins.tbl +91 -0
- data/vendor/tracemonkey/call.js +13 -0
- data/vendor/tracemonkey/config.mk +206 -0
- data/vendor/tracemonkey/config/Makefile.in +106 -0
- data/vendor/tracemonkey/config/Moz/Milestone.pm +232 -0
- data/vendor/tracemonkey/config/autoconf.mk.in +362 -0
- data/vendor/tracemonkey/config/check-sync-dirs.py +103 -0
- data/vendor/tracemonkey/config/check-sync-exceptions +7 -0
- data/vendor/tracemonkey/config/config.mk +881 -0
- data/vendor/tracemonkey/config/fastcwd.pl +66 -0
- data/vendor/tracemonkey/config/gcc_hidden.h +2 -0
- data/vendor/tracemonkey/config/insure.mk +53 -0
- data/vendor/tracemonkey/config/make-system-wrappers.pl +59 -0
- data/vendor/tracemonkey/config/milestone.pl +112 -0
- data/vendor/tracemonkey/config/milestone.txt +13 -0
- data/vendor/tracemonkey/config/mkdepend/Makefile.in +84 -0
- data/vendor/tracemonkey/config/mkdepend/cppsetup.c +233 -0
- data/vendor/tracemonkey/config/mkdepend/def.h +184 -0
- data/vendor/tracemonkey/config/mkdepend/ifparser.c +551 -0
- data/vendor/tracemonkey/config/mkdepend/ifparser.h +83 -0
- data/vendor/tracemonkey/config/mkdepend/imakemdep.h +733 -0
- data/vendor/tracemonkey/config/mkdepend/include.c +337 -0
- data/vendor/tracemonkey/config/mkdepend/main.c +860 -0
- data/vendor/tracemonkey/config/mkdepend/mkdepend.man +382 -0
- data/vendor/tracemonkey/config/mkdepend/parse.c +686 -0
- data/vendor/tracemonkey/config/mkdepend/pr.c +124 -0
- data/vendor/tracemonkey/config/nfspwd.pl +50 -0
- data/vendor/tracemonkey/config/nsinstall.c +481 -0
- data/vendor/tracemonkey/config/nsinstall.py +155 -0
- data/vendor/tracemonkey/config/pathsub.c +247 -0
- data/vendor/tracemonkey/config/pathsub.h +74 -0
- data/vendor/tracemonkey/config/preprocessor.pl +671 -0
- data/vendor/tracemonkey/config/revdepth-nt.pl +48 -0
- data/vendor/tracemonkey/config/revdepth.pl +51 -0
- data/vendor/tracemonkey/config/rules.mk +2310 -0
- data/vendor/tracemonkey/config/static-checking-config.mk +21 -0
- data/vendor/tracemonkey/config/static-checking.js +92 -0
- data/vendor/tracemonkey/config/string-format.js +61 -0
- data/vendor/tracemonkey/config/system-headers +1035 -0
- data/vendor/tracemonkey/config/version.mk +85 -0
- data/vendor/tracemonkey/config/version_win.pl +442 -0
- data/vendor/tracemonkey/configure +14183 -0
- data/vendor/tracemonkey/configure.in +5363 -0
- data/vendor/tracemonkey/correct.sh +23 -0
- data/vendor/tracemonkey/correct/check-3d-morph.js +55 -0
- data/vendor/tracemonkey/correct/check-3d-raytrace.js +445 -0
- data/vendor/tracemonkey/correct/check-access-binary-trees.js +52 -0
- data/vendor/tracemonkey/correct/check-access-fannkuch.js +66 -0
- data/vendor/tracemonkey/correct/check-access-nbody.js +171 -0
- data/vendor/tracemonkey/correct/check-access-nsieve.js +40 -0
- data/vendor/tracemonkey/correct/check-bitops-3bit-bits-in-byte.js +35 -0
- data/vendor/tracemonkey/correct/check-bitops-bits-in-byte.js +24 -0
- data/vendor/tracemonkey/correct/check-bitops-bitwise-and.js +29 -0
- data/vendor/tracemonkey/correct/check-bitops-nsieve-bits.js +40 -0
- data/vendor/tracemonkey/correct/check-controlflow-recursive.js +27 -0
- data/vendor/tracemonkey/correct/check-date-format-tofte.js +302 -0
- data/vendor/tracemonkey/correct/check-date-format-xparb.js +421 -0
- data/vendor/tracemonkey/correct/check-mont.js +119 -0
- data/vendor/tracemonkey/dtoa.c +3335 -0
- data/vendor/tracemonkey/editline/Makefile.in +55 -0
- data/vendor/tracemonkey/editline/Makefile.ref +143 -0
- data/vendor/tracemonkey/editline/README +83 -0
- data/vendor/tracemonkey/editline/editline.3 +175 -0
- data/vendor/tracemonkey/editline/editline.c +1371 -0
- data/vendor/tracemonkey/editline/editline.h +135 -0
- data/vendor/tracemonkey/editline/sysunix.c +182 -0
- data/vendor/tracemonkey/editline/unix.h +82 -0
- data/vendor/tracemonkey/if.js +13 -0
- data/vendor/tracemonkey/imacro_asm.js.in +396 -0
- data/vendor/tracemonkey/imacros.c.out +1034 -0
- data/vendor/tracemonkey/imacros.jsasm +770 -0
- data/vendor/tracemonkey/javascript-trace.d +73 -0
- data/vendor/tracemonkey/jitstats.tbl +55 -0
- data/vendor/tracemonkey/js-config.h.in +82 -0
- data/vendor/tracemonkey/js-config.in +111 -0
- data/vendor/tracemonkey/js.mdp +0 -0
- data/vendor/tracemonkey/js.msg +312 -0
- data/vendor/tracemonkey/js3240.rc +79 -0
- data/vendor/tracemonkey/jsOS240.def +654 -0
- data/vendor/tracemonkey/jsapi.cpp +6005 -0
- data/vendor/tracemonkey/jsapi.h +2727 -0
- data/vendor/tracemonkey/jsarena.cpp +450 -0
- data/vendor/tracemonkey/jsarena.h +318 -0
- data/vendor/tracemonkey/jsarray.cpp +3664 -0
- data/vendor/tracemonkey/jsarray.h +238 -0
- data/vendor/tracemonkey/jsatom.cpp +1244 -0
- data/vendor/tracemonkey/jsatom.h +493 -0
- data/vendor/tracemonkey/jsbit.h +249 -0
- data/vendor/tracemonkey/jsbool.cpp +184 -0
- data/vendor/tracemonkey/jsbool.h +88 -0
- data/vendor/tracemonkey/jsbuiltins.cpp +415 -0
- data/vendor/tracemonkey/jsbuiltins.h +456 -0
- data/vendor/tracemonkey/jsclist.h +139 -0
- data/vendor/tracemonkey/jscntxt.cpp +1816 -0
- data/vendor/tracemonkey/jscntxt.h +1541 -0
- data/vendor/tracemonkey/jscompat.h +57 -0
- data/vendor/tracemonkey/jsconfig.mk +181 -0
- data/vendor/tracemonkey/jscpucfg.cpp +194 -0
- data/vendor/tracemonkey/jscpucfg.h +91 -0
- data/vendor/tracemonkey/jsdate.cpp +2465 -0
- data/vendor/tracemonkey/jsdate.h +129 -0
- data/vendor/tracemonkey/jsdbgapi.cpp +2017 -0
- data/vendor/tracemonkey/jsdbgapi.h +500 -0
- data/vendor/tracemonkey/jsdhash.cpp +876 -0
- data/vendor/tracemonkey/jsdhash.h +588 -0
- data/vendor/tracemonkey/jsdtoa.cpp +572 -0
- data/vendor/tracemonkey/jsdtoa.h +131 -0
- data/vendor/tracemonkey/jsdtracef.c +318 -0
- data/vendor/tracemonkey/jsdtracef.h +81 -0
- data/vendor/tracemonkey/jsemit.cpp +7292 -0
- data/vendor/tracemonkey/jsemit.h +802 -0
- data/vendor/tracemonkey/jsexn.cpp +1337 -0
- data/vendor/tracemonkey/jsexn.h +96 -0
- data/vendor/tracemonkey/jsfile.cpp +2747 -0
- data/vendor/tracemonkey/jsfile.h +56 -0
- data/vendor/tracemonkey/jsfile.msg +90 -0
- data/vendor/tracemonkey/jsfun.cpp +3089 -0
- data/vendor/tracemonkey/jsfun.h +366 -0
- data/vendor/tracemonkey/jsgc.cpp +3816 -0
- data/vendor/tracemonkey/jsgc.h +429 -0
- data/vendor/tracemonkey/jshash.cpp +477 -0
- data/vendor/tracemonkey/jshash.h +151 -0
- data/vendor/tracemonkey/jsify.pl +483 -0
- data/vendor/tracemonkey/jsinterp.cpp +7441 -0
- data/vendor/tracemonkey/jsinterp.h +666 -0
- data/vendor/tracemonkey/jsinvoke.cpp +42 -0
- data/vendor/tracemonkey/jsiter.cpp +1040 -0
- data/vendor/tracemonkey/jsiter.h +140 -0
- data/vendor/tracemonkey/jskeyword.tbl +124 -0
- data/vendor/tracemonkey/jskwgen.cpp +460 -0
- data/vendor/tracemonkey/jslibmath.h +69 -0
- data/vendor/tracemonkey/jslock.cpp +1512 -0
- data/vendor/tracemonkey/jslock.h +325 -0
- data/vendor/tracemonkey/jslocko.asm +60 -0
- data/vendor/tracemonkey/jslog2.cpp +111 -0
- data/vendor/tracemonkey/jslong.h +167 -0
- data/vendor/tracemonkey/jsmath.cpp +806 -0
- data/vendor/tracemonkey/jsmath.h +63 -0
- data/vendor/tracemonkey/jsnum.cpp +1374 -0
- data/vendor/tracemonkey/jsnum.h +280 -0
- data/vendor/tracemonkey/jsobj.cpp +6165 -0
- data/vendor/tracemonkey/jsobj.h +870 -0
- data/vendor/tracemonkey/json.cpp +1338 -0
- data/vendor/tracemonkey/json.h +108 -0
- data/vendor/tracemonkey/jsopcode.cpp +5484 -0
- data/vendor/tracemonkey/jsopcode.h +434 -0
- data/vendor/tracemonkey/jsopcode.tbl +591 -0
- data/vendor/tracemonkey/jsoplengen.cpp +121 -0
- data/vendor/tracemonkey/jsotypes.h +202 -0
- data/vendor/tracemonkey/jsparse.cpp +9257 -0
- data/vendor/tracemonkey/jsparse.h +900 -0
- data/vendor/tracemonkey/jsprf.cpp +1262 -0
- data/vendor/tracemonkey/jsprf.h +150 -0
- data/vendor/tracemonkey/jsproto.tbl +117 -0
- data/vendor/tracemonkey/jsprvtd.h +366 -0
- data/vendor/tracemonkey/jspubtd.h +585 -0
- data/vendor/tracemonkey/jsregexp.cpp +5051 -0
- data/vendor/tracemonkey/jsregexp.h +199 -0
- data/vendor/tracemonkey/jsreops.tbl +145 -0
- data/vendor/tracemonkey/jsscan.cpp +2040 -0
- data/vendor/tracemonkey/jsscan.h +467 -0
- data/vendor/tracemonkey/jsscope.cpp +1966 -0
- data/vendor/tracemonkey/jsscope.h +487 -0
- data/vendor/tracemonkey/jsscript.cpp +1932 -0
- data/vendor/tracemonkey/jsscript.h +345 -0
- data/vendor/tracemonkey/jsshell.msg +54 -0
- data/vendor/tracemonkey/jsstack.js +167 -0
- data/vendor/tracemonkey/jsstaticcheck.h +69 -0
- data/vendor/tracemonkey/jsstddef.h +87 -0
- data/vendor/tracemonkey/jsstdint.h +96 -0
- data/vendor/tracemonkey/jsstr.cpp +5277 -0
- data/vendor/tracemonkey/jsstr.h +702 -0
- data/vendor/tracemonkey/jstracer.cpp +10991 -0
- data/vendor/tracemonkey/jstracer.h +794 -0
- data/vendor/tracemonkey/jstypes.h +481 -0
- data/vendor/tracemonkey/jsutil.cpp +361 -0
- data/vendor/tracemonkey/jsutil.h +178 -0
- data/vendor/tracemonkey/jsversion.h +243 -0
- data/vendor/tracemonkey/jswince.asm +44 -0
- data/vendor/tracemonkey/jsxdrapi.cpp +800 -0
- data/vendor/tracemonkey/jsxdrapi.h +220 -0
- data/vendor/tracemonkey/jsxml.cpp +8327 -0
- data/vendor/tracemonkey/jsxml.h +305 -0
- data/vendor/tracemonkey/liveconnect/LiveConnect.dsp +157 -0
- data/vendor/tracemonkey/liveconnect/LiveConnectShell.dsp +120 -0
- data/vendor/tracemonkey/liveconnect/LiveConnectShell.dsw +44 -0
- data/vendor/tracemonkey/liveconnect/Makefile.in +105 -0
- data/vendor/tracemonkey/liveconnect/Makefile.ref +169 -0
- data/vendor/tracemonkey/liveconnect/README.html +712 -0
- data/vendor/tracemonkey/liveconnect/_jni/netscape_javascript_JSException.h +14 -0
- data/vendor/tracemonkey/liveconnect/_jni/netscape_javascript_JSObject.h +155 -0
- data/vendor/tracemonkey/liveconnect/classes/Makefile.in +89 -0
- data/vendor/tracemonkey/liveconnect/classes/Makefile.ref +57 -0
- data/vendor/tracemonkey/liveconnect/classes/netscape/Makefile.ref +47 -0
- data/vendor/tracemonkey/liveconnect/classes/netscape/javascript/JSException.java +140 -0
- data/vendor/tracemonkey/liveconnect/classes/netscape/javascript/JSObject.java +183 -0
- data/vendor/tracemonkey/liveconnect/classes/netscape/javascript/JSProxy.java +58 -0
- data/vendor/tracemonkey/liveconnect/classes/netscape/javascript/JSRunnable.java +70 -0
- data/vendor/tracemonkey/liveconnect/classes/netscape/javascript/JSUtil.java +59 -0
- data/vendor/tracemonkey/liveconnect/classes/netscape/javascript/Makefile.ref +53 -0
- data/vendor/tracemonkey/liveconnect/config/AIX4.1.mk +45 -0
- data/vendor/tracemonkey/liveconnect/config/AIX4.2.mk +45 -0
- data/vendor/tracemonkey/liveconnect/config/AIX4.3.mk +50 -0
- data/vendor/tracemonkey/liveconnect/config/HP-UXB.10.10.mk +43 -0
- data/vendor/tracemonkey/liveconnect/config/HP-UXB.10.20.mk +43 -0
- data/vendor/tracemonkey/liveconnect/config/HP-UXB.11.00.mk +43 -0
- data/vendor/tracemonkey/liveconnect/config/IRIX6.2.mk +43 -0
- data/vendor/tracemonkey/liveconnect/config/IRIX6.3.mk +43 -0
- data/vendor/tracemonkey/liveconnect/config/IRIX6.5.mk +43 -0
- data/vendor/tracemonkey/liveconnect/config/Linux_All.mk +73 -0
- data/vendor/tracemonkey/liveconnect/config/OSF1V4.0.mk +65 -0
- data/vendor/tracemonkey/liveconnect/config/OSF1V5.0.mk +62 -0
- data/vendor/tracemonkey/liveconnect/config/SunOS5.5.1.mk +55 -0
- data/vendor/tracemonkey/liveconnect/config/SunOS5.6.mk +39 -0
- data/vendor/tracemonkey/liveconnect/config/SunOS5.7.mk +39 -0
- data/vendor/tracemonkey/liveconnect/config/SunOS5.8.mk +39 -0
- data/vendor/tracemonkey/liveconnect/config/WINNT4.0.mk +53 -0
- data/vendor/tracemonkey/liveconnect/jsj.c +886 -0
- data/vendor/tracemonkey/liveconnect/jsj.msg +98 -0
- data/vendor/tracemonkey/liveconnect/jsj_JSObject.c +1377 -0
- data/vendor/tracemonkey/liveconnect/jsj_JavaArray.c +474 -0
- data/vendor/tracemonkey/liveconnect/jsj_JavaClass.c +737 -0
- data/vendor/tracemonkey/liveconnect/jsj_JavaMember.c +191 -0
- data/vendor/tracemonkey/liveconnect/jsj_JavaObject.c +1079 -0
- data/vendor/tracemonkey/liveconnect/jsj_JavaPackage.c +569 -0
- data/vendor/tracemonkey/liveconnect/jsj_array.c +207 -0
- data/vendor/tracemonkey/liveconnect/jsj_class.c +770 -0
- data/vendor/tracemonkey/liveconnect/jsj_convert.c +902 -0
- data/vendor/tracemonkey/liveconnect/jsj_field.c +421 -0
- data/vendor/tracemonkey/liveconnect/jsj_hash.c +488 -0
- data/vendor/tracemonkey/liveconnect/jsj_hash.h +161 -0
- data/vendor/tracemonkey/liveconnect/jsj_method.c +1825 -0
- data/vendor/tracemonkey/liveconnect/jsj_nodl.c +1 -0
- data/vendor/tracemonkey/liveconnect/jsj_private.h +677 -0
- data/vendor/tracemonkey/liveconnect/jsj_simpleapi.c +219 -0
- data/vendor/tracemonkey/liveconnect/jsj_utils.c +513 -0
- data/vendor/tracemonkey/liveconnect/jsjava.h +316 -0
- data/vendor/tracemonkey/liveconnect/netscape_javascript_JSObject.h +155 -0
- data/vendor/tracemonkey/liveconnect/nsCLiveconnect.cpp +785 -0
- data/vendor/tracemonkey/liveconnect/nsCLiveconnect.h +197 -0
- data/vendor/tracemonkey/liveconnect/nsCLiveconnectFactory.cpp +118 -0
- data/vendor/tracemonkey/liveconnect/nsCLiveconnectFactory.h +76 -0
- data/vendor/tracemonkey/liveconnect/nsILiveconnect.h +197 -0
- data/vendor/tracemonkey/liveconnect/nsISecureLiveconnect.h +94 -0
- data/vendor/tracemonkey/liveconnect/nsISecurityContext.h +136 -0
- data/vendor/tracemonkey/lock_SunOS.s +119 -0
- data/vendor/tracemonkey/mandelbrot-results.js +3 -0
- data/vendor/tracemonkey/math-partial-sums.js +32 -0
- data/vendor/tracemonkey/math-trace-tests.js +507 -0
- data/vendor/tracemonkey/md5.js +289 -0
- data/vendor/tracemonkey/nanojit/Assembler.cpp +1984 -0
- data/vendor/tracemonkey/nanojit/Assembler.h +375 -0
- data/vendor/tracemonkey/nanojit/Fragmento.cpp +651 -0
- data/vendor/tracemonkey/nanojit/Fragmento.h +237 -0
- data/vendor/tracemonkey/nanojit/LIR.cpp +2314 -0
- data/vendor/tracemonkey/nanojit/LIR.h +879 -0
- data/vendor/tracemonkey/nanojit/LIRopcode.tbl +252 -0
- data/vendor/tracemonkey/nanojit/Native.h +127 -0
- data/vendor/tracemonkey/nanojit/NativeARM.cpp +1742 -0
- data/vendor/tracemonkey/nanojit/NativeARM.h +844 -0
- data/vendor/tracemonkey/nanojit/NativeSparc.cpp +1130 -0
- data/vendor/tracemonkey/nanojit/NativeSparc.h +948 -0
- data/vendor/tracemonkey/nanojit/NativeThumb.cpp +1322 -0
- data/vendor/tracemonkey/nanojit/NativeThumb.h +525 -0
- data/vendor/tracemonkey/nanojit/Nativei386.cpp +1748 -0
- data/vendor/tracemonkey/nanojit/Nativei386.h +857 -0
- data/vendor/tracemonkey/nanojit/RegAlloc.cpp +183 -0
- data/vendor/tracemonkey/nanojit/RegAlloc.h +95 -0
- data/vendor/tracemonkey/nanojit/TraceTreeDrawer.cpp +306 -0
- data/vendor/tracemonkey/nanojit/TraceTreeDrawer.h +88 -0
- data/vendor/tracemonkey/nanojit/avmplus.cpp +56 -0
- data/vendor/tracemonkey/nanojit/avmplus.h +1016 -0
- data/vendor/tracemonkey/nanojit/nanojit.h +253 -0
- data/vendor/tracemonkey/perfect.js +39 -0
- data/vendor/tracemonkey/plify_jsdhash.sed +35 -0
- data/vendor/tracemonkey/prmjtime.cpp +869 -0
- data/vendor/tracemonkey/prmjtime.h +103 -0
- data/vendor/tracemonkey/ref-config/AIX4.1.mk +65 -0
- data/vendor/tracemonkey/ref-config/AIX4.2.mk +64 -0
- data/vendor/tracemonkey/ref-config/AIX4.3.mk +65 -0
- data/vendor/tracemonkey/ref-config/Darwin.mk +85 -0
- data/vendor/tracemonkey/ref-config/Darwin1.3.mk +81 -0
- data/vendor/tracemonkey/ref-config/Darwin1.4.mk +41 -0
- data/vendor/tracemonkey/ref-config/Darwin5.2.mk +81 -0
- data/vendor/tracemonkey/ref-config/Darwin5.3.mk +81 -0
- data/vendor/tracemonkey/ref-config/Darwin64.mk +72 -0
- data/vendor/tracemonkey/ref-config/HP-UXB.10.10.mk +77 -0
- data/vendor/tracemonkey/ref-config/HP-UXB.10.20.mk +77 -0
- data/vendor/tracemonkey/ref-config/HP-UXB.11.00.mk +80 -0
- data/vendor/tracemonkey/ref-config/IRIX.mk +87 -0
- data/vendor/tracemonkey/ref-config/IRIX5.3.mk +44 -0
- data/vendor/tracemonkey/ref-config/IRIX6.1.mk +44 -0
- data/vendor/tracemonkey/ref-config/IRIX6.2.mk +44 -0
- data/vendor/tracemonkey/ref-config/IRIX6.3.mk +44 -0
- data/vendor/tracemonkey/ref-config/IRIX6.5.mk +44 -0
- data/vendor/tracemonkey/ref-config/Linux_All.mk +105 -0
- data/vendor/tracemonkey/ref-config/Mac_OS10.0.mk +82 -0
- data/vendor/tracemonkey/ref-config/OSF1V4.0.mk +72 -0
- data/vendor/tracemonkey/ref-config/OSF1V5.0.mk +69 -0
- data/vendor/tracemonkey/ref-config/SunOS4.1.4.mk +101 -0
- data/vendor/tracemonkey/ref-config/SunOS5.10.mk +50 -0
- data/vendor/tracemonkey/ref-config/SunOS5.3.mk +91 -0
- data/vendor/tracemonkey/ref-config/SunOS5.4.mk +92 -0
- data/vendor/tracemonkey/ref-config/SunOS5.5.1.mk +44 -0
- data/vendor/tracemonkey/ref-config/SunOS5.5.mk +87 -0
- data/vendor/tracemonkey/ref-config/SunOS5.6.mk +89 -0
- data/vendor/tracemonkey/ref-config/SunOS5.7.mk +44 -0
- data/vendor/tracemonkey/ref-config/SunOS5.8.mk +44 -0
- data/vendor/tracemonkey/ref-config/SunOS5.9.mk +44 -0
- data/vendor/tracemonkey/ref-config/WINNT4.0.mk +118 -0
- data/vendor/tracemonkey/ref-config/WINNT5.0.mk +118 -0
- data/vendor/tracemonkey/ref-config/WINNT5.1.mk +118 -0
- data/vendor/tracemonkey/ref-config/WINNT5.2.mk +118 -0
- data/vendor/tracemonkey/ref-config/WINNT6.0.mk +118 -0
- data/vendor/tracemonkey/ref-config/dgux.mk +64 -0
- data/vendor/tracemonkey/resource.h +15 -0
- data/vendor/tracemonkey/rules.mk +206 -0
- data/vendor/tracemonkey/shell/Makefile.in +72 -0
- data/vendor/tracemonkey/shell/js.cpp +4719 -0
- data/vendor/tracemonkey/t/3d-cube.js +337 -0
- data/vendor/tracemonkey/t/3d-morph.js +54 -0
- data/vendor/tracemonkey/t/3d-raytrace.js +441 -0
- data/vendor/tracemonkey/t/access-binary-trees.js +50 -0
- data/vendor/tracemonkey/t/access-fannkuch.js +66 -0
- data/vendor/tracemonkey/t/access-nbody.js +169 -0
- data/vendor/tracemonkey/t/access-nsieve.js +38 -0
- data/vendor/tracemonkey/t/bitops-3bit-bits-in-byte.js +32 -0
- data/vendor/tracemonkey/t/bitops-bits-in-byte.js +21 -0
- data/vendor/tracemonkey/t/bitops-bitwise-and.js +28 -0
- data/vendor/tracemonkey/t/bitops-nsieve-bits.js +32 -0
- data/vendor/tracemonkey/t/controlflow-recursive.js +25 -0
- data/vendor/tracemonkey/t/crypto-aes.js +422 -0
- data/vendor/tracemonkey/t/crypto-md5.js +286 -0
- data/vendor/tracemonkey/t/crypto-sha1.js +224 -0
- data/vendor/tracemonkey/t/date-format-tofte.js +299 -0
- data/vendor/tracemonkey/t/date-format-xparb.js +417 -0
- data/vendor/tracemonkey/t/math-cordic.js +95 -0
- data/vendor/tracemonkey/t/math-partial-sums.js +33 -0
- data/vendor/tracemonkey/t/math-spectral-norm.js +51 -0
- data/vendor/tracemonkey/t/regexp-dna.js +1712 -0
- data/vendor/tracemonkey/t/string-base64.js +135 -0
- data/vendor/tracemonkey/t/string-fasta.js +85 -0
- data/vendor/tracemonkey/t/string-tagcloud.js +265 -0
- data/vendor/tracemonkey/t/string-unpack-code.js +68 -0
- data/vendor/tracemonkey/t/string-validate-input.js +89 -0
- data/vendor/tracemonkey/time.sh +13 -0
- data/vendor/tracemonkey/trace-test.js +5564 -0
- data/vendor/tracemonkey/v8/base.js +187 -0
- data/vendor/tracemonkey/v8/crypto.js +1689 -0
- data/vendor/tracemonkey/v8/deltablue.js +880 -0
- data/vendor/tracemonkey/v8/earley-boyer.js +4682 -0
- data/vendor/tracemonkey/v8/raytrace.js +3418 -0
- data/vendor/tracemonkey/v8/richards.js +539 -0
- data/vendor/tracemonkey/v8/run-crypto.js +44 -0
- data/vendor/tracemonkey/v8/run-deltablue.js +44 -0
- data/vendor/tracemonkey/v8/run-earley-boyer.js +44 -0
- data/vendor/tracemonkey/v8/run-raytrace.js +44 -0
- data/vendor/tracemonkey/v8/run-richards.js +44 -0
- data/vendor/tracemonkey/v8/run.js +49 -0
- data/vendor/tracemonkey/vprof/readme.txt +93 -0
- data/vendor/tracemonkey/vprof/vprof.cpp +360 -0
- data/vendor/tracemonkey/vprof/vprof.h +245 -0
- data/vendor/tracemonkey/xpconnect/Makefile.in +67 -0
- data/vendor/tracemonkey/xpconnect/crashtests/117307-1.html +20 -0
- data/vendor/tracemonkey/xpconnect/crashtests/193710.html +11 -0
- data/vendor/tracemonkey/xpconnect/crashtests/290162-1.html +5 -0
- data/vendor/tracemonkey/xpconnect/crashtests/326615-1.html +16 -0
- data/vendor/tracemonkey/xpconnect/crashtests/328553-1.html +13 -0
- data/vendor/tracemonkey/xpconnect/crashtests/346258-1.html +12 -0
- data/vendor/tracemonkey/xpconnect/crashtests/346512-1-frame1.xhtml +16 -0
- data/vendor/tracemonkey/xpconnect/crashtests/346512-1-frame2.xhtml +15 -0
- data/vendor/tracemonkey/xpconnect/crashtests/346512-1.xhtml +30 -0
- data/vendor/tracemonkey/xpconnect/crashtests/382133-1.html +3 -0
- data/vendor/tracemonkey/xpconnect/crashtests/386680-1.html +22 -0
- data/vendor/tracemonkey/xpconnect/crashtests/394810-1.html +4 -0
- data/vendor/tracemonkey/xpconnect/crashtests/400349-1.html +20 -0
- data/vendor/tracemonkey/xpconnect/crashtests/403356-1.html +13 -0
- data/vendor/tracemonkey/xpconnect/crashtests/418139-1.svg +22 -0
- data/vendor/tracemonkey/xpconnect/crashtests/420513-1.html +11 -0
- data/vendor/tracemonkey/xpconnect/crashtests/453935-1.html +37 -0
- data/vendor/tracemonkey/xpconnect/crashtests/462926.html +12 -0
- data/vendor/tracemonkey/xpconnect/crashtests/468552-1.html +18 -0
- data/vendor/tracemonkey/xpconnect/crashtests/471366-1.html +12 -0
- data/vendor/tracemonkey/xpconnect/crashtests/475185-1.html +13 -0
- data/vendor/tracemonkey/xpconnect/crashtests/475291-1.html +14 -0
- data/vendor/tracemonkey/xpconnect/crashtests/503286-1.html +23 -0
- data/vendor/tracemonkey/xpconnect/crashtests/crashtests.list +21 -0
- data/vendor/tracemonkey/xpconnect/idl/Makefile.in +78 -0
- data/vendor/tracemonkey/xpconnect/idl/XPCIDispatch.idl +51 -0
- data/vendor/tracemonkey/xpconnect/idl/mozIJSSubScriptLoader.idl +64 -0
- data/vendor/tracemonkey/xpconnect/idl/nsIActiveXSecurityPolicy.idl +67 -0
- data/vendor/tracemonkey/xpconnect/idl/nsIDispatchSupport.idl +119 -0
- data/vendor/tracemonkey/xpconnect/idl/nsIJSContextStack.idl +85 -0
- data/vendor/tracemonkey/xpconnect/idl/nsIJSRuntimeService.idl +51 -0
- data/vendor/tracemonkey/xpconnect/idl/nsIScriptError.idl +102 -0
- data/vendor/tracemonkey/xpconnect/idl/nsIScriptableInterfaces.idl +67 -0
- data/vendor/tracemonkey/xpconnect/idl/nsIXPCScriptNotify.idl +66 -0
- data/vendor/tracemonkey/xpconnect/idl/nsIXPCScriptable.idl +183 -0
- data/vendor/tracemonkey/xpconnect/idl/nsIXPCSecurityManager.idl +114 -0
- data/vendor/tracemonkey/xpconnect/idl/nsIXPConnect.idl +819 -0
- data/vendor/tracemonkey/xpconnect/idl/xpcIJSModuleLoader.idl +95 -0
- data/vendor/tracemonkey/xpconnect/idl/xpcIJSWeakReference.idl +49 -0
- data/vendor/tracemonkey/xpconnect/idl/xpccomponents.idl +254 -0
- data/vendor/tracemonkey/xpconnect/idl/xpcexception.idl +66 -0
- data/vendor/tracemonkey/xpconnect/idl/xpcjsid.idl +83 -0
- data/vendor/tracemonkey/xpconnect/loader/ISO8601DateUtils.jsm +176 -0
- data/vendor/tracemonkey/xpconnect/loader/Makefile.in +63 -0
- data/vendor/tracemonkey/xpconnect/loader/XPCOMUtils.jsm +267 -0
- data/vendor/tracemonkey/xpconnect/loader/mozJSComponentLoader.cpp +1717 -0
- data/vendor/tracemonkey/xpconnect/loader/mozJSComponentLoader.h +172 -0
- data/vendor/tracemonkey/xpconnect/loader/mozJSLoaderConstructors.h +101 -0
- data/vendor/tracemonkey/xpconnect/loader/mozJSSubScriptLoader.cpp +360 -0
- data/vendor/tracemonkey/xpconnect/loader/mozJSSubScriptLoader.h +66 -0
- data/vendor/tracemonkey/xpconnect/public/Makefile.in +54 -0
- data/vendor/tracemonkey/xpconnect/public/nsAXPCNativeCallContext.h +89 -0
- data/vendor/tracemonkey/xpconnect/public/nsAutoJSValHolder.h +168 -0
- data/vendor/tracemonkey/xpconnect/public/xpc_map_end.h +327 -0
- data/vendor/tracemonkey/xpconnect/sample/Makefile.in +71 -0
- data/vendor/tracemonkey/xpconnect/sample/README +39 -0
- data/vendor/tracemonkey/xpconnect/sample/xpcsample1.cpp +337 -0
- data/vendor/tracemonkey/xpconnect/sample/xpcsample1.idl +82 -0
- data/vendor/tracemonkey/xpconnect/sample/xpcsample1.js +21 -0
- data/vendor/tracemonkey/xpconnect/shell/Makefile.in +106 -0
- data/vendor/tracemonkey/xpconnect/shell/jsshell.msg +50 -0
- data/vendor/tracemonkey/xpconnect/shell/xpcshell.cpp +1817 -0
- data/vendor/tracemonkey/xpconnect/shell/xpcshellMacUtils.h +43 -0
- data/vendor/tracemonkey/xpconnect/shell/xpcshellMacUtils.mm +54 -0
- data/vendor/tracemonkey/xpconnect/src/Makefile.in +228 -0
- data/vendor/tracemonkey/xpconnect/src/README +3 -0
- data/vendor/tracemonkey/xpconnect/src/XPCCrossOriginWrapper.cpp +1186 -0
- data/vendor/tracemonkey/xpconnect/src/XPCDispConvert.cpp +593 -0
- data/vendor/tracemonkey/xpconnect/src/XPCDispInlines.h +667 -0
- data/vendor/tracemonkey/xpconnect/src/XPCDispInterface.cpp +383 -0
- data/vendor/tracemonkey/xpconnect/src/XPCDispObject.cpp +516 -0
- data/vendor/tracemonkey/xpconnect/src/XPCDispParamPropJSClass.cpp +223 -0
- data/vendor/tracemonkey/xpconnect/src/XPCDispParams.cpp +103 -0
- data/vendor/tracemonkey/xpconnect/src/XPCDispPrivate.h +1401 -0
- data/vendor/tracemonkey/xpconnect/src/XPCDispTearOff.cpp +547 -0
- data/vendor/tracemonkey/xpconnect/src/XPCDispTypeInfo.cpp +471 -0
- data/vendor/tracemonkey/xpconnect/src/XPCIDispatchClassInfo.cpp +139 -0
- data/vendor/tracemonkey/xpconnect/src/XPCIDispatchExtension.cpp +362 -0
- data/vendor/tracemonkey/xpconnect/src/XPCNativeWrapper.cpp +1350 -0
- data/vendor/tracemonkey/xpconnect/src/XPCNativeWrapper.h +88 -0
- data/vendor/tracemonkey/xpconnect/src/XPCSafeJSObjectWrapper.cpp +1148 -0
- data/vendor/tracemonkey/xpconnect/src/XPCSystemOnlyWrapper.cpp +718 -0
- data/vendor/tracemonkey/xpconnect/src/XPCWrapper.cpp +850 -0
- data/vendor/tracemonkey/xpconnect/src/XPCWrapper.h +394 -0
- data/vendor/tracemonkey/xpconnect/src/dom_quickstubs.qsconf +568 -0
- data/vendor/tracemonkey/xpconnect/src/nsDispatchSupport.cpp +348 -0
- data/vendor/tracemonkey/xpconnect/src/nsScriptError.cpp +201 -0
- data/vendor/tracemonkey/xpconnect/src/nsXPConnect.cpp +2609 -0
- data/vendor/tracemonkey/xpconnect/src/qsgen.py +1487 -0
- data/vendor/tracemonkey/xpconnect/src/xpc.msg +217 -0
- data/vendor/tracemonkey/xpconnect/src/xpcJSWeakReference.cpp +148 -0
- data/vendor/tracemonkey/xpconnect/src/xpcJSWeakReference.h +56 -0
- data/vendor/tracemonkey/xpconnect/src/xpccallcontext.cpp +579 -0
- data/vendor/tracemonkey/xpconnect/src/xpccomponents.cpp +4144 -0
- data/vendor/tracemonkey/xpconnect/src/xpccontext.cpp +115 -0
- data/vendor/tracemonkey/xpconnect/src/xpcconvert.cpp +2298 -0
- data/vendor/tracemonkey/xpconnect/src/xpcdebug.cpp +481 -0
- data/vendor/tracemonkey/xpconnect/src/xpcexception.cpp +502 -0
- data/vendor/tracemonkey/xpconnect/src/xpcforwards.h +114 -0
- data/vendor/tracemonkey/xpconnect/src/xpcinlines.h +772 -0
- data/vendor/tracemonkey/xpconnect/src/xpcjsid.cpp +1025 -0
- data/vendor/tracemonkey/xpconnect/src/xpcjsruntime.cpp +1342 -0
- data/vendor/tracemonkey/xpconnect/src/xpclog.cpp +128 -0
- data/vendor/tracemonkey/xpconnect/src/xpclog.h +101 -0
- data/vendor/tracemonkey/xpconnect/src/xpcmaps.cpp +761 -0
- data/vendor/tracemonkey/xpconnect/src/xpcmaps.h +713 -0
- data/vendor/tracemonkey/xpconnect/src/xpcmodule.cpp +136 -0
- data/vendor/tracemonkey/xpconnect/src/xpcprivate.h +4138 -0
- data/vendor/tracemonkey/xpconnect/src/xpcquickstubs.cpp +1128 -0
- data/vendor/tracemonkey/xpconnect/src/xpcquickstubs.h +480 -0
- data/vendor/tracemonkey/xpconnect/src/xpcruntimesvc.cpp +179 -0
- data/vendor/tracemonkey/xpconnect/src/xpcstack.cpp +342 -0
- data/vendor/tracemonkey/xpconnect/src/xpcstring.cpp +139 -0
- data/vendor/tracemonkey/xpconnect/src/xpcthreadcontext.cpp +599 -0
- data/vendor/tracemonkey/xpconnect/src/xpcthrower.cpp +399 -0
- data/vendor/tracemonkey/xpconnect/src/xpcvariant.cpp +850 -0
- data/vendor/tracemonkey/xpconnect/src/xpcwrappedjs.cpp +670 -0
- data/vendor/tracemonkey/xpconnect/src/xpcwrappedjsclass.cpp +2015 -0
- data/vendor/tracemonkey/xpconnect/src/xpcwrappednative.cpp +3482 -0
- data/vendor/tracemonkey/xpconnect/src/xpcwrappednativeinfo.cpp +945 -0
- data/vendor/tracemonkey/xpconnect/src/xpcwrappednativejsops.cpp +2003 -0
- data/vendor/tracemonkey/xpconnect/src/xpcwrappednativeproto.cpp +302 -0
- data/vendor/tracemonkey/xpconnect/src/xpcwrappednativescope.cpp +991 -0
- data/vendor/tracemonkey/xpconnect/tests/Makefile.in +75 -0
- data/vendor/tracemonkey/xpconnect/tests/TestXPC.cpp +785 -0
- data/vendor/tracemonkey/xpconnect/tests/chrome/Makefile.in +51 -0
- data/vendor/tracemonkey/xpconnect/tests/chrome/test_bug500931.xul +43 -0
- data/vendor/tracemonkey/xpconnect/tests/components/Makefile.in +85 -0
- data/vendor/tracemonkey/xpconnect/tests/components/xpctest_array.cpp +388 -0
- data/vendor/tracemonkey/xpconnect/tests/components/xpctest_attributes.cpp +305 -0
- data/vendor/tracemonkey/xpconnect/tests/components/xpctest_calljs.cpp +135 -0
- data/vendor/tracemonkey/xpconnect/tests/components/xpctest_child.cpp +225 -0
- data/vendor/tracemonkey/xpconnect/tests/components/xpctest_const.cpp +76 -0
- data/vendor/tracemonkey/xpconnect/tests/components/xpctest_domstring.cpp +118 -0
- data/vendor/tracemonkey/xpconnect/tests/components/xpctest_echo.cpp +616 -0
- data/vendor/tracemonkey/xpconnect/tests/components/xpctest_in.cpp +204 -0
- data/vendor/tracemonkey/xpconnect/tests/components/xpctest_inout.cpp +171 -0
- data/vendor/tracemonkey/xpconnect/tests/components/xpctest_module.cpp +77 -0
- data/vendor/tracemonkey/xpconnect/tests/components/xpctest_multiple.cpp +554 -0
- data/vendor/tracemonkey/xpconnect/tests/components/xpctest_noisy.cpp +154 -0
- data/vendor/tracemonkey/xpconnect/tests/components/xpctest_out.cpp +335 -0
- data/vendor/tracemonkey/xpconnect/tests/components/xpctest_overloaded.cpp +250 -0
- data/vendor/tracemonkey/xpconnect/tests/components/xpctest_private.h +192 -0
- data/vendor/tracemonkey/xpconnect/tests/components/xpctest_string.cpp +185 -0
- data/vendor/tracemonkey/xpconnect/tests/components/xpctest_variant.cpp +355 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/StdAfx.cpp +12 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/StdAfx.h +28 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/XPCDispUtilities.h +28 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/XPCIDispatchTest.cpp +86 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/XPCIDispatchTest.def +9 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/XPCIDispatchTest.dsp +318 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/XPCIDispatchTest.dsw +29 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/XPCIDispatchTest.idl +454 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/XPCIDispatchTest.rc +145 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispSimple.cpp +44 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispSimple.h +56 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispSimple.rgs +23 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestArrays.cpp +221 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestArrays.h +53 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestArrays.rgs +23 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestMethods.cpp +699 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestMethods.h +138 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestMethods.rgs +23 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestNoIDispatch.cpp +23 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestNoIDispatch.h +41 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestNoIDispatch.rgs +23 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestProperties.cpp +256 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestProperties.h +88 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestProperties.rgs +23 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestScriptOff.cpp +23 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestScriptOff.h +43 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestScriptOff.rgs +23 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestScriptOn.cpp +29 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestScriptOn.h +45 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestScriptOn.rgs +23 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestWrappedJS.cpp +177 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestWrappedJS.h +50 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestWrappedJS.rgs +23 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/resource.h +36 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/WrappedCOM/Arrays/XPCIDispatchArrayTests.js +54 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/WrappedCOM/Attributes/XPCIDispatchAttributeTests.js +150 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/WrappedCOM/General/XPCIDispatchInstantiations.js +122 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/WrappedCOM/General/XPCStress.js +58 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/WrappedCOM/Methods/XPCIDispatchMethodTests.js +376 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/WrappedCOM/shell.js +377 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/WrappedJS/General/XPCIDispatchTestWrappedJS.js +76 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/WrappedJS/shell.js +377 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/exectests.cmd +1 -0
- data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/jsDriver.pl +1288 -0
- data/vendor/tracemonkey/xpconnect/tests/idl/Makefile.in +61 -0
- data/vendor/tracemonkey/xpconnect/tests/idl/xpctest.idl +312 -0
- data/vendor/tracemonkey/xpconnect/tests/idl/xpctest2.idl +51 -0
- data/vendor/tracemonkey/xpconnect/tests/idl/xpctest_attributes.idl +67 -0
- data/vendor/tracemonkey/xpconnect/tests/idl/xpctest_calljs.idl +59 -0
- data/vendor/tracemonkey/xpconnect/tests/idl/xpctest_const.idl +61 -0
- data/vendor/tracemonkey/xpconnect/tests/idl/xpctest_domstring.idl +59 -0
- data/vendor/tracemonkey/xpconnect/tests/idl/xpctest_in.idl +88 -0
- data/vendor/tracemonkey/xpconnect/tests/idl/xpctest_inout.idl +86 -0
- data/vendor/tracemonkey/xpconnect/tests/idl/xpctest_multiple.idl +77 -0
- data/vendor/tracemonkey/xpconnect/tests/idl/xpctest_out.idl +142 -0
- data/vendor/tracemonkey/xpconnect/tests/js/checkid.js +82 -0
- data/vendor/tracemonkey/xpconnect/tests/js/evaluate.js +311 -0
- data/vendor/tracemonkey/xpconnect/tests/js/exceptions-2.js +153 -0
- data/vendor/tracemonkey/xpconnect/tests/js/exceptions-3.js +194 -0
- data/vendor/tracemonkey/xpconnect/tests/js/exceptions-4.js +297 -0
- data/vendor/tracemonkey/xpconnect/tests/js/exceptions-5.js +343 -0
- data/vendor/tracemonkey/xpconnect/tests/js/exceptions.js +230 -0
- data/vendor/tracemonkey/xpconnect/tests/js/javascript.js +96 -0
- data/vendor/tracemonkey/xpconnect/tests/js/multiple-2.js +151 -0
- data/vendor/tracemonkey/xpconnect/tests/js/multiple-3.js +148 -0
- data/vendor/tracemonkey/xpconnect/tests/js/multiple-4.js +152 -0
- data/vendor/tracemonkey/xpconnect/tests/js/multiple.js +137 -0
- data/vendor/tracemonkey/xpconnect/tests/js/notscriptable.js +104 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/simpletest.js +36 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/speed.js +60 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/testxpc.js +464 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/threads.js +74 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/try.js +27 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_array.js +308 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_callcontext.js +68 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_echo.js +636 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_enum_and_sort.js +28 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_enum_constants.js +15 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_enum_create.js +200 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_exceptions.js +167 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_ids.js +135 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_observer.js +36 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_overloaded.js +14 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_primitives.js +141 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_propertybag.js +36 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_variant.js +339 -0
- data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_variant_array.js +30 -0
- data/vendor/tracemonkey/xpconnect/tests/js/readonlyattributes.js +74 -0
- data/vendor/tracemonkey/xpconnect/tests/js/readwriteattributes.js +101 -0
- data/vendor/tracemonkey/xpconnect/tests/js/scriptable.js +120 -0
- data/vendor/tracemonkey/xpconnect/tests/js/testin.js +203 -0
- data/vendor/tracemonkey/xpconnect/tests/js/xpcfun.js +234 -0
- data/vendor/tracemonkey/xpconnect/tests/js/xpctest_primitives.js +200 -0
- data/vendor/tracemonkey/xpconnect/tests/mochitest/Makefile.in +66 -0
- data/vendor/tracemonkey/xpconnect/tests/mochitest/bug500931_helper.html +7 -0
- data/vendor/tracemonkey/xpconnect/tests/mochitest/inner.html +7 -0
- data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug361111.xul +29 -0
- data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug384632.html +32 -0
- data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug390488.html +65 -0
- data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug393269.html +46 -0
- data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug396851.html +43 -0
- data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug428021.html +41 -0
- data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug446584.html +49 -0
- data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug448587.html +31 -0
- data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug462428.html +42 -0
- data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug478438.html +66 -0
- data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug484107.html +100 -0
- data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug484459.html +36 -0
- data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug500691.html +28 -0
- data/vendor/tracemonkey/xpconnect/tests/mochitest/test_wrappers.html +116 -0
- data/vendor/tracemonkey/xpconnect/tests/unit/bogus_element_type.jsm +1 -0
- data/vendor/tracemonkey/xpconnect/tests/unit/bogus_exports_type.jsm +1 -0
- data/vendor/tracemonkey/xpconnect/tests/unit/bug451678_subscript.js +2 -0
- data/vendor/tracemonkey/xpconnect/tests/unit/component_import.js +144 -0
- data/vendor/tracemonkey/xpconnect/tests/unit/recursive_importA.jsm +44 -0
- data/vendor/tracemonkey/xpconnect/tests/unit/recursive_importB.jsm +45 -0
- data/vendor/tracemonkey/xpconnect/tests/unit/syntax_error.jsm +1 -0
- data/vendor/tracemonkey/xpconnect/tests/unit/test_bogus_files.js +88 -0
- data/vendor/tracemonkey/xpconnect/tests/unit/test_bug408412.js +51 -0
- data/vendor/tracemonkey/xpconnect/tests/unit/test_bug451678.js +52 -0
- data/vendor/tracemonkey/xpconnect/tests/unit/test_bug_442086.js +68 -0
- data/vendor/tracemonkey/xpconnect/tests/unit/test_import.js +127 -0
- data/vendor/tracemonkey/xpconnect/tests/unit/test_js_weak_references.js +63 -0
- data/vendor/tracemonkey/xpconnect/tests/unit/test_recursive_import.js +62 -0
- data/vendor/tracemonkey/xpconnect/tools/Makefile.in +49 -0
- data/vendor/tracemonkey/xpconnect/tools/idl/Makefile.in +53 -0
- data/vendor/tracemonkey/xpconnect/tools/idl/nsIXPCToolsCompiler.idl +60 -0
- data/vendor/tracemonkey/xpconnect/tools/idl/nsIXPCToolsProfiler.idl +57 -0
- data/vendor/tracemonkey/xpconnect/tools/js/CompileJSFiles.js +28 -0
- data/vendor/tracemonkey/xpconnect/tools/js/ListJSFiles.js +18 -0
- data/vendor/tracemonkey/xpconnect/tools/src/Makefile.in +76 -0
- data/vendor/tracemonkey/xpconnect/tools/src/nsXPCToolsCompiler.cpp +161 -0
- data/vendor/tracemonkey/xpconnect/tools/src/nsXPCToolsModule.cpp +65 -0
- data/vendor/tracemonkey/xpconnect/tools/src/nsXPCToolsProfiler.cpp +370 -0
- data/vendor/tracemonkey/xpconnect/tools/src/xpctools_private.h +236 -0
- metadata +782 -107
- data/test/johnson/nodes/export_test.rb +0 -9
- data/test/johnson/nodes/import_test.rb +0 -13
- data/test/johnson/version_test.rb +0 -13
@@ -0,0 +1,429 @@
|
|
1
|
+
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
2
|
+
*
|
3
|
+
* ***** BEGIN LICENSE BLOCK *****
|
4
|
+
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
5
|
+
*
|
6
|
+
* The contents of this file are subject to the Mozilla Public License Version
|
7
|
+
* 1.1 (the "License"); you may not use this file except in compliance with
|
8
|
+
* the License. You may obtain a copy of the License at
|
9
|
+
* http://www.mozilla.org/MPL/
|
10
|
+
*
|
11
|
+
* Software distributed under the License is distributed on an "AS IS" basis,
|
12
|
+
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
13
|
+
* for the specific language governing rights and limitations under the
|
14
|
+
* License.
|
15
|
+
*
|
16
|
+
* The Original Code is Mozilla Communicator client code, released
|
17
|
+
* March 31, 1998.
|
18
|
+
*
|
19
|
+
* The Initial Developer of the Original Code is
|
20
|
+
* Netscape Communications Corporation.
|
21
|
+
* Portions created by the Initial Developer are Copyright (C) 1998
|
22
|
+
* the Initial Developer. All Rights Reserved.
|
23
|
+
*
|
24
|
+
* Contributor(s):
|
25
|
+
*
|
26
|
+
* Alternatively, the contents of this file may be used under the terms of
|
27
|
+
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
28
|
+
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
29
|
+
* in which case the provisions of the GPL or the LGPL are applicable instead
|
30
|
+
* of those above. If you wish to allow use of your version of this file only
|
31
|
+
* under the terms of either the GPL or the LGPL, and not to allow others to
|
32
|
+
* use your version of this file under the terms of the MPL, indicate your
|
33
|
+
* decision by deleting the provisions above and replace them with the notice
|
34
|
+
* and other provisions required by the GPL or the LGPL. If you do not delete
|
35
|
+
* the provisions above, a recipient may use your version of this file under
|
36
|
+
* the terms of any one of the MPL, the GPL or the LGPL.
|
37
|
+
*
|
38
|
+
* ***** END LICENSE BLOCK ***** */
|
39
|
+
|
40
|
+
#ifndef jsgc_h___
|
41
|
+
#define jsgc_h___
|
42
|
+
/*
|
43
|
+
* JS Garbage Collector.
|
44
|
+
*/
|
45
|
+
#include "jsprvtd.h"
|
46
|
+
#include "jspubtd.h"
|
47
|
+
#include "jsdhash.h"
|
48
|
+
#include "jsbit.h"
|
49
|
+
#include "jsutil.h"
|
50
|
+
|
51
|
+
JS_BEGIN_EXTERN_C
|
52
|
+
|
53
|
+
#define JSTRACE_XML 3
|
54
|
+
|
55
|
+
/*
|
56
|
+
* One past the maximum trace kind.
|
57
|
+
*/
|
58
|
+
#define JSTRACE_LIMIT 4
|
59
|
+
|
60
|
+
/*
|
61
|
+
* We use the trace kinds as the types for all GC things except external
|
62
|
+
* strings.
|
63
|
+
*/
|
64
|
+
#define GCX_OBJECT JSTRACE_OBJECT /* JSObject */
|
65
|
+
#define GCX_DOUBLE JSTRACE_DOUBLE /* jsdouble */
|
66
|
+
#define GCX_STRING JSTRACE_STRING /* JSString */
|
67
|
+
#define GCX_XML JSTRACE_XML /* JSXML */
|
68
|
+
#define GCX_EXTERNAL_STRING JSTRACE_LIMIT /* JSString with external
|
69
|
+
chars */
|
70
|
+
/*
|
71
|
+
* The number of defined GC types and the maximum limit for the number of
|
72
|
+
* possible GC types.
|
73
|
+
*/
|
74
|
+
#define GCX_NTYPES (GCX_EXTERNAL_STRING + 8)
|
75
|
+
#define GCX_LIMIT_LOG2 4 /* type index bits */
|
76
|
+
#define GCX_LIMIT JS_BIT(GCX_LIMIT_LOG2)
|
77
|
+
|
78
|
+
/* GC flag definitions, must fit in 8 bits (type index goes in the low bits). */
|
79
|
+
#define GCF_TYPEMASK JS_BITMASK(GCX_LIMIT_LOG2)
|
80
|
+
#define GCF_MARK JS_BIT(GCX_LIMIT_LOG2)
|
81
|
+
#define GCF_FINAL JS_BIT(GCX_LIMIT_LOG2 + 1)
|
82
|
+
#define GCF_LOCKSHIFT (GCX_LIMIT_LOG2 + 2) /* lock bit shift */
|
83
|
+
#define GCF_LOCK JS_BIT(GCF_LOCKSHIFT) /* lock request bit in API */
|
84
|
+
|
85
|
+
/*
|
86
|
+
* Get the type of the external string or -1 if the string was not created
|
87
|
+
* with JS_NewExternalString.
|
88
|
+
*/
|
89
|
+
extern intN
|
90
|
+
js_GetExternalStringGCType(JSString *str);
|
91
|
+
|
92
|
+
extern JS_FRIEND_API(uint32)
|
93
|
+
js_GetGCThingTraceKind(void *thing);
|
94
|
+
|
95
|
+
/*
|
96
|
+
* The sole purpose of the function is to preserve public API compatibility
|
97
|
+
* in JS_GetStringBytes which takes only single JSString* argument.
|
98
|
+
*/
|
99
|
+
JSRuntime*
|
100
|
+
js_GetGCStringRuntime(JSString *str);
|
101
|
+
|
102
|
+
#if 1
|
103
|
+
/*
|
104
|
+
* Since we're forcing a GC from JS_GC anyway, don't bother wasting cycles
|
105
|
+
* loading oldval. XXX remove implied force, fix jsinterp.c's "second arg
|
106
|
+
* ignored", etc.
|
107
|
+
*/
|
108
|
+
#define GC_POKE(cx, oldval) ((cx)->runtime->gcPoke = JS_TRUE)
|
109
|
+
#else
|
110
|
+
#define GC_POKE(cx, oldval) ((cx)->runtime->gcPoke = JSVAL_IS_GCTHING(oldval))
|
111
|
+
#endif
|
112
|
+
|
113
|
+
/*
|
114
|
+
* Write barrier macro monitoring property update from oldval to newval in
|
115
|
+
* scope->object.
|
116
|
+
*
|
117
|
+
* Since oldval is used only for the branded scope case, and the oldval actual
|
118
|
+
* argument expression is typically not used otherwise by callers, performance
|
119
|
+
* benefits if oldval is *not* evaluated into a callsite temporary variable,
|
120
|
+
* and instead passed to GC_WRITE_BARRIER for conditional evaluation (we rely
|
121
|
+
* on modern compilers to do a good CSE job). Yay, C macros.
|
122
|
+
*/
|
123
|
+
#define GC_WRITE_BARRIER(cx,scope,oldval,newval) \
|
124
|
+
JS_BEGIN_MACRO \
|
125
|
+
if (SCOPE_IS_BRANDED(scope) && \
|
126
|
+
(oldval) != (newval) && \
|
127
|
+
(VALUE_IS_FUNCTION(cx,oldval) || VALUE_IS_FUNCTION(cx,newval))) { \
|
128
|
+
js_MakeScopeShapeUnique(cx, scope); \
|
129
|
+
} \
|
130
|
+
GC_POKE(cx, oldval); \
|
131
|
+
JS_END_MACRO
|
132
|
+
|
133
|
+
extern JSBool
|
134
|
+
js_InitGC(JSRuntime *rt, uint32 maxbytes);
|
135
|
+
|
136
|
+
extern void
|
137
|
+
js_FinishGC(JSRuntime *rt);
|
138
|
+
|
139
|
+
extern intN
|
140
|
+
js_ChangeExternalStringFinalizer(JSStringFinalizeOp oldop,
|
141
|
+
JSStringFinalizeOp newop);
|
142
|
+
|
143
|
+
extern JSBool
|
144
|
+
js_AddRoot(JSContext *cx, void *rp, const char *name);
|
145
|
+
|
146
|
+
extern JSBool
|
147
|
+
js_AddRootRT(JSRuntime *rt, void *rp, const char *name);
|
148
|
+
|
149
|
+
extern JSBool
|
150
|
+
js_RemoveRoot(JSRuntime *rt, void *rp);
|
151
|
+
|
152
|
+
#ifdef DEBUG
|
153
|
+
extern void
|
154
|
+
js_DumpNamedRoots(JSRuntime *rt,
|
155
|
+
void (*dump)(const char *name, void *rp, void *data),
|
156
|
+
void *data);
|
157
|
+
#endif
|
158
|
+
|
159
|
+
extern uint32
|
160
|
+
js_MapGCRoots(JSRuntime *rt, JSGCRootMapFun map, void *data);
|
161
|
+
|
162
|
+
/* Table of pointers with count valid members. */
|
163
|
+
typedef struct JSPtrTable {
|
164
|
+
size_t count;
|
165
|
+
void **array;
|
166
|
+
} JSPtrTable;
|
167
|
+
|
168
|
+
extern JSBool
|
169
|
+
js_RegisterCloseableIterator(JSContext *cx, JSObject *obj);
|
170
|
+
|
171
|
+
/*
|
172
|
+
* The private JSGCThing struct, which describes a gcFreeList element.
|
173
|
+
*/
|
174
|
+
struct JSGCThing {
|
175
|
+
JSGCThing *next;
|
176
|
+
uint8 *flagp;
|
177
|
+
};
|
178
|
+
|
179
|
+
#define GC_NBYTES_MAX (10 * sizeof(JSGCThing))
|
180
|
+
#define GC_NUM_FREELISTS (GC_NBYTES_MAX / sizeof(JSGCThing))
|
181
|
+
#define GC_FREELIST_NBYTES(i) (((i) + 1) * sizeof(JSGCThing))
|
182
|
+
#define GC_FREELIST_INDEX(n) (((n) / sizeof(JSGCThing)) - 1)
|
183
|
+
|
184
|
+
/*
|
185
|
+
* Allocates a new GC thing of the given size. After a successful allocation
|
186
|
+
* the caller must fully initialize the thing before calling any function that
|
187
|
+
* can potentially trigger GC. This will ensure that GC tracing never sees junk
|
188
|
+
* values stored in the partially initialized thing.
|
189
|
+
*/
|
190
|
+
extern void *
|
191
|
+
js_NewGCThing(JSContext *cx, uintN flags, size_t nbytes);
|
192
|
+
|
193
|
+
/*
|
194
|
+
* Allocate a new double jsval and store the result in *vp. vp must be a root.
|
195
|
+
* The function does not copy the result into any weak root.
|
196
|
+
*/
|
197
|
+
extern JSBool
|
198
|
+
js_NewDoubleInRootedValue(JSContext *cx, jsdouble d, jsval *vp);
|
199
|
+
|
200
|
+
/*
|
201
|
+
* Return a pointer to a new GC-allocated and weakly-rooted jsdouble number,
|
202
|
+
* or null when the allocation fails.
|
203
|
+
*/
|
204
|
+
extern jsdouble *
|
205
|
+
js_NewWeaklyRootedDouble(JSContext *cx, jsdouble d);
|
206
|
+
|
207
|
+
#ifdef JS_TRACER
|
208
|
+
extern JSBool
|
209
|
+
js_ReserveObjects(JSContext *cx, size_t nobjects);
|
210
|
+
#endif
|
211
|
+
|
212
|
+
extern JSBool
|
213
|
+
js_LockGCThingRT(JSRuntime *rt, void *thing);
|
214
|
+
|
215
|
+
extern JSBool
|
216
|
+
js_UnlockGCThingRT(JSRuntime *rt, void *thing);
|
217
|
+
|
218
|
+
extern JSBool
|
219
|
+
js_IsAboutToBeFinalized(JSContext *cx, void *thing);
|
220
|
+
|
221
|
+
/*
|
222
|
+
* Macro to test if a traversal is the marking phase of GC to avoid exposing
|
223
|
+
* ScriptFilenameEntry to traversal implementations.
|
224
|
+
*/
|
225
|
+
#define IS_GC_MARKING_TRACER(trc) ((trc)->callback == NULL)
|
226
|
+
|
227
|
+
#if JS_HAS_XML_SUPPORT
|
228
|
+
# define JS_IS_VALID_TRACE_KIND(kind) ((uint32)(kind) < JSTRACE_LIMIT)
|
229
|
+
#else
|
230
|
+
# define JS_IS_VALID_TRACE_KIND(kind) ((uint32)(kind) <= JSTRACE_STRING)
|
231
|
+
#endif
|
232
|
+
|
233
|
+
/*
|
234
|
+
* Trace jsval when JSVAL_IS_OBJECT(v) can be an arbitrary GC thing casted as
|
235
|
+
* JSVAL_OBJECT and js_GetGCThingTraceKind has to be used to find the real
|
236
|
+
* type behind v.
|
237
|
+
*/
|
238
|
+
extern void
|
239
|
+
js_CallValueTracerIfGCThing(JSTracer *trc, jsval v);
|
240
|
+
|
241
|
+
extern void
|
242
|
+
js_TraceStackFrame(JSTracer *trc, JSStackFrame *fp);
|
243
|
+
|
244
|
+
extern JS_REQUIRES_STACK void
|
245
|
+
js_TraceRuntime(JSTracer *trc, JSBool allAtoms);
|
246
|
+
|
247
|
+
extern JS_REQUIRES_STACK JS_FRIEND_API(void)
|
248
|
+
js_TraceContext(JSTracer *trc, JSContext *acx);
|
249
|
+
|
250
|
+
/*
|
251
|
+
* Schedule the GC call at a later safe point.
|
252
|
+
*/
|
253
|
+
#ifndef JS_THREADSAFE
|
254
|
+
# define js_TriggerGC(cx, gcLocked) js_TriggerGC (cx)
|
255
|
+
#endif
|
256
|
+
|
257
|
+
extern void
|
258
|
+
js_TriggerGC(JSContext *cx, JSBool gcLocked);
|
259
|
+
|
260
|
+
/*
|
261
|
+
* Kinds of js_GC invocation.
|
262
|
+
*/
|
263
|
+
typedef enum JSGCInvocationKind {
|
264
|
+
/* Normal invocation. */
|
265
|
+
GC_NORMAL = 0,
|
266
|
+
|
267
|
+
/*
|
268
|
+
* Called from js_DestroyContext for last JSContext in a JSRuntime, when
|
269
|
+
* it is imperative that rt->gcPoke gets cleared early in js_GC.
|
270
|
+
*/
|
271
|
+
GC_LAST_CONTEXT = 1,
|
272
|
+
|
273
|
+
/*
|
274
|
+
* Flag bit telling js_GC that the caller has already acquired rt->gcLock.
|
275
|
+
* Currently, this flag is set for the invocation kinds that also preserve
|
276
|
+
* atoms and weak roots, so we don't need another bit for GC_KEEP_ATOMS.
|
277
|
+
*/
|
278
|
+
GC_LOCK_HELD = 0x10,
|
279
|
+
GC_KEEP_ATOMS = GC_LOCK_HELD,
|
280
|
+
|
281
|
+
/*
|
282
|
+
* Called from js_SetProtoOrParent with a request to set an object's proto
|
283
|
+
* or parent slot inserted on rt->setSlotRequests.
|
284
|
+
*/
|
285
|
+
GC_SET_SLOT_REQUEST = GC_LOCK_HELD | 1,
|
286
|
+
|
287
|
+
/*
|
288
|
+
* Called from js_NewGCThing as a last-ditch GC attempt. See comments in
|
289
|
+
* jsgc.c just before js_GC's definition for details.
|
290
|
+
*/
|
291
|
+
GC_LAST_DITCH = GC_LOCK_HELD | 2
|
292
|
+
} JSGCInvocationKind;
|
293
|
+
|
294
|
+
extern void
|
295
|
+
js_GC(JSContext *cx, JSGCInvocationKind gckind);
|
296
|
+
|
297
|
+
/* Call this after succesful malloc of memory for GC-related things. */
|
298
|
+
extern void
|
299
|
+
js_UpdateMallocCounter(JSContext *cx, size_t nbytes);
|
300
|
+
|
301
|
+
typedef struct JSGCArenaInfo JSGCArenaInfo;
|
302
|
+
typedef struct JSGCArenaList JSGCArenaList;
|
303
|
+
typedef struct JSGCChunkInfo JSGCChunkInfo;
|
304
|
+
|
305
|
+
struct JSGCArenaList {
|
306
|
+
JSGCArenaInfo *last; /* last allocated GC arena */
|
307
|
+
uint16 lastCount; /* number of allocated things in the last
|
308
|
+
arena */
|
309
|
+
uint16 thingSize; /* size of things to allocate on this list
|
310
|
+
*/
|
311
|
+
JSGCThing *freeList; /* list of free GC things */
|
312
|
+
};
|
313
|
+
|
314
|
+
typedef union JSGCDoubleCell JSGCDoubleCell;
|
315
|
+
|
316
|
+
union JSGCDoubleCell {
|
317
|
+
double number;
|
318
|
+
JSGCDoubleCell *link;
|
319
|
+
};
|
320
|
+
|
321
|
+
typedef struct JSGCDoubleArenaList {
|
322
|
+
JSGCArenaInfo *first; /* first allocated GC arena */
|
323
|
+
jsbitmap *nextDoubleFlags; /* bitmask with flags to check for free
|
324
|
+
things */
|
325
|
+
} JSGCDoubleArenaList;
|
326
|
+
|
327
|
+
typedef struct JSGCFreeListSet JSGCFreeListSet;
|
328
|
+
|
329
|
+
struct JSGCFreeListSet {
|
330
|
+
JSGCThing *array[GC_NUM_FREELISTS];
|
331
|
+
JSGCFreeListSet *link;
|
332
|
+
};
|
333
|
+
|
334
|
+
extern const JSGCFreeListSet js_GCEmptyFreeListSet;
|
335
|
+
|
336
|
+
extern void
|
337
|
+
js_RevokeGCLocalFreeLists(JSContext *cx);
|
338
|
+
|
339
|
+
extern void
|
340
|
+
js_DestroyScriptsToGC(JSContext *cx, JSThreadData *data);
|
341
|
+
|
342
|
+
struct JSWeakRoots {
|
343
|
+
/* Most recently created things by type, members of the GC's root set. */
|
344
|
+
void *newborn[GCX_NTYPES];
|
345
|
+
|
346
|
+
/* Atom root for the last-looked-up atom on this context. */
|
347
|
+
jsval lastAtom;
|
348
|
+
|
349
|
+
/* Root for the result of the most recent js_InternalInvoke call. */
|
350
|
+
jsval lastInternalResult;
|
351
|
+
};
|
352
|
+
|
353
|
+
#define JS_CLEAR_WEAK_ROOTS(wr) (memset((wr), 0, sizeof(JSWeakRoots)))
|
354
|
+
|
355
|
+
/*
|
356
|
+
* Increase runtime->gcBytes by sz bytes to account for an allocation outside
|
357
|
+
* the GC that will be freed only after the GC is run. The function may run
|
358
|
+
* the last ditch GC to ensure that gcBytes does not exceed gcMaxBytes. It will
|
359
|
+
* fail if the latter is not possible.
|
360
|
+
*
|
361
|
+
* This function requires that runtime->gcLock is held on entry. On successful
|
362
|
+
* return the lock is still held and on failure it will be released with
|
363
|
+
* the error reported.
|
364
|
+
*/
|
365
|
+
extern JSBool
|
366
|
+
js_AddAsGCBytes(JSContext *cx, size_t sz);
|
367
|
+
|
368
|
+
extern void
|
369
|
+
js_RemoveAsGCBytes(JSRuntime* rt, size_t sz);
|
370
|
+
|
371
|
+
#ifdef DEBUG_notme
|
372
|
+
#define JS_GCMETER 1
|
373
|
+
#endif
|
374
|
+
|
375
|
+
#ifdef JS_GCMETER
|
376
|
+
|
377
|
+
typedef struct JSGCArenaStats {
|
378
|
+
uint32 alloc; /* allocation attempts */
|
379
|
+
uint32 localalloc; /* allocations from local lists */
|
380
|
+
uint32 retry; /* allocation retries after running the GC */
|
381
|
+
uint32 fail; /* allocation failures */
|
382
|
+
uint32 nthings; /* live GC things */
|
383
|
+
uint32 maxthings; /* maximum of live GC cells */
|
384
|
+
double totalthings; /* live GC things the GC scanned so far */
|
385
|
+
uint32 narenas; /* number of arena in list before the GC */
|
386
|
+
uint32 newarenas; /* new arenas allocated before the last GC */
|
387
|
+
uint32 livearenas; /* number of live arenas after the last GC */
|
388
|
+
uint32 maxarenas; /* maximum of allocated arenas */
|
389
|
+
uint32 totalarenas; /* total number of arenas with live things that
|
390
|
+
GC scanned so far */
|
391
|
+
} JSGCArenaStats;
|
392
|
+
|
393
|
+
typedef struct JSGCStats {
|
394
|
+
uint32 finalfail; /* finalizer calls allocator failures */
|
395
|
+
uint32 lockborn; /* things born locked */
|
396
|
+
uint32 lock; /* valid lock calls */
|
397
|
+
uint32 unlock; /* valid unlock calls */
|
398
|
+
uint32 depth; /* mark tail recursion depth */
|
399
|
+
uint32 maxdepth; /* maximum mark tail recursion depth */
|
400
|
+
uint32 cdepth; /* mark recursion depth of C functions */
|
401
|
+
uint32 maxcdepth; /* maximum mark recursion depth of C functions */
|
402
|
+
uint32 untraced; /* number of times tracing of GC thing's children were
|
403
|
+
delayed due to a low C stack */
|
404
|
+
#ifdef DEBUG
|
405
|
+
uint32 maxuntraced;/* maximum number of things with children to trace
|
406
|
+
later */
|
407
|
+
#endif
|
408
|
+
uint32 maxlevel; /* maximum GC nesting (indirect recursion) level */
|
409
|
+
uint32 poke; /* number of potentially useful GC calls */
|
410
|
+
uint32 afree; /* thing arenas freed so far */
|
411
|
+
uint32 stackseg; /* total extraordinary stack segments scanned */
|
412
|
+
uint32 segslots; /* total stack segment jsval slots scanned */
|
413
|
+
uint32 nclose; /* number of objects with close hooks */
|
414
|
+
uint32 maxnclose; /* max number of objects with close hooks */
|
415
|
+
uint32 closelater; /* number of close hooks scheduled to run */
|
416
|
+
uint32 maxcloselater; /* max number of close hooks scheduled to run */
|
417
|
+
|
418
|
+
JSGCArenaStats arenaStats[GC_NUM_FREELISTS];
|
419
|
+
JSGCArenaStats doubleArenaStats;
|
420
|
+
} JSGCStats;
|
421
|
+
|
422
|
+
extern JS_FRIEND_API(void)
|
423
|
+
js_DumpGCStats(JSRuntime *rt, FILE *fp);
|
424
|
+
|
425
|
+
#endif /* JS_GCMETER */
|
426
|
+
|
427
|
+
JS_END_EXTERN_C
|
428
|
+
|
429
|
+
#endif /* jsgc_h___ */
|
@@ -0,0 +1,477 @@
|
|
1
|
+
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
2
|
+
*
|
3
|
+
* ***** BEGIN LICENSE BLOCK *****
|
4
|
+
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
5
|
+
*
|
6
|
+
* The contents of this file are subject to the Mozilla Public License Version
|
7
|
+
* 1.1 (the "License"); you may not use this file except in compliance with
|
8
|
+
* the License. You may obtain a copy of the License at
|
9
|
+
* http://www.mozilla.org/MPL/
|
10
|
+
*
|
11
|
+
* Software distributed under the License is distributed on an "AS IS" basis,
|
12
|
+
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
13
|
+
* for the specific language governing rights and limitations under the
|
14
|
+
* License.
|
15
|
+
*
|
16
|
+
* The Original Code is Mozilla Communicator client code, released
|
17
|
+
* March 31, 1998.
|
18
|
+
*
|
19
|
+
* The Initial Developer of the Original Code is
|
20
|
+
* Netscape Communications Corporation.
|
21
|
+
* Portions created by the Initial Developer are Copyright (C) 1998
|
22
|
+
* the Initial Developer. All Rights Reserved.
|
23
|
+
*
|
24
|
+
* Contributor(s):
|
25
|
+
*
|
26
|
+
* Alternatively, the contents of this file may be used under the terms of
|
27
|
+
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
28
|
+
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
29
|
+
* in which case the provisions of the GPL or the LGPL are applicable instead
|
30
|
+
* of those above. If you wish to allow use of your version of this file only
|
31
|
+
* under the terms of either the GPL or the LGPL, and not to allow others to
|
32
|
+
* use your version of this file under the terms of the MPL, indicate your
|
33
|
+
* decision by deleting the provisions above and replace them with the notice
|
34
|
+
* and other provisions required by the GPL or the LGPL. If you do not delete
|
35
|
+
* the provisions above, a recipient may use your version of this file under
|
36
|
+
* the terms of any one of the MPL, the GPL or the LGPL.
|
37
|
+
*
|
38
|
+
* ***** END LICENSE BLOCK ***** */
|
39
|
+
|
40
|
+
/*
|
41
|
+
* PR hash table package.
|
42
|
+
*/
|
43
|
+
#include "jsstddef.h"
|
44
|
+
#include <stdlib.h>
|
45
|
+
#include <string.h>
|
46
|
+
#include "jstypes.h"
|
47
|
+
#include "jsbit.h"
|
48
|
+
#include "jsutil.h" /* Added by JSIFY */
|
49
|
+
#include "jshash.h" /* Added by JSIFY */
|
50
|
+
|
51
|
+
/* Compute the number of buckets in ht */
|
52
|
+
#define NBUCKETS(ht) JS_BIT(JS_HASH_BITS - (ht)->shift)
|
53
|
+
|
54
|
+
/* The smallest table has 16 buckets */
|
55
|
+
#define MINBUCKETSLOG2 4
|
56
|
+
#define MINBUCKETS JS_BIT(MINBUCKETSLOG2)
|
57
|
+
|
58
|
+
/* Compute the maximum entries given n buckets that we will tolerate, ~90% */
|
59
|
+
#define OVERLOADED(n) ((n) - ((n) >> 3))
|
60
|
+
|
61
|
+
/* Compute the number of entries below which we shrink the table by half */
|
62
|
+
#define UNDERLOADED(n) (((n) > MINBUCKETS) ? ((n) >> 2) : 0)
|
63
|
+
|
64
|
+
/*
|
65
|
+
** Stubs for default hash allocator ops.
|
66
|
+
*/
|
67
|
+
static void *
|
68
|
+
DefaultAllocTable(void *pool, size_t size)
|
69
|
+
{
|
70
|
+
return malloc(size);
|
71
|
+
}
|
72
|
+
|
73
|
+
static void
|
74
|
+
DefaultFreeTable(void *pool, void *item, size_t size)
|
75
|
+
{
|
76
|
+
free(item);
|
77
|
+
}
|
78
|
+
|
79
|
+
static JSHashEntry *
|
80
|
+
DefaultAllocEntry(void *pool, const void *key)
|
81
|
+
{
|
82
|
+
return (JSHashEntry*) malloc(sizeof(JSHashEntry));
|
83
|
+
}
|
84
|
+
|
85
|
+
static void
|
86
|
+
DefaultFreeEntry(void *pool, JSHashEntry *he, uintN flag)
|
87
|
+
{
|
88
|
+
if (flag == HT_FREE_ENTRY)
|
89
|
+
free(he);
|
90
|
+
}
|
91
|
+
|
92
|
+
static JSHashAllocOps defaultHashAllocOps = {
|
93
|
+
DefaultAllocTable, DefaultFreeTable,
|
94
|
+
DefaultAllocEntry, DefaultFreeEntry
|
95
|
+
};
|
96
|
+
|
97
|
+
JS_PUBLIC_API(JSHashTable *)
|
98
|
+
JS_NewHashTable(uint32 n, JSHashFunction keyHash,
|
99
|
+
JSHashComparator keyCompare, JSHashComparator valueCompare,
|
100
|
+
JSHashAllocOps *allocOps, void *allocPriv)
|
101
|
+
{
|
102
|
+
JSHashTable *ht;
|
103
|
+
size_t nb;
|
104
|
+
|
105
|
+
if (n <= MINBUCKETS) {
|
106
|
+
n = MINBUCKETSLOG2;
|
107
|
+
} else {
|
108
|
+
n = JS_CeilingLog2(n);
|
109
|
+
if ((int32)n < 0)
|
110
|
+
return NULL;
|
111
|
+
}
|
112
|
+
|
113
|
+
if (!allocOps) allocOps = &defaultHashAllocOps;
|
114
|
+
|
115
|
+
ht = (JSHashTable*) allocOps->allocTable(allocPriv, sizeof *ht);
|
116
|
+
if (!ht)
|
117
|
+
return NULL;
|
118
|
+
memset(ht, 0, sizeof *ht);
|
119
|
+
ht->shift = JS_HASH_BITS - n;
|
120
|
+
n = JS_BIT(n);
|
121
|
+
nb = n * sizeof(JSHashEntry *);
|
122
|
+
ht->buckets = (JSHashEntry**) allocOps->allocTable(allocPriv, nb);
|
123
|
+
if (!ht->buckets) {
|
124
|
+
allocOps->freeTable(allocPriv, ht, nb);
|
125
|
+
return NULL;
|
126
|
+
}
|
127
|
+
memset(ht->buckets, 0, nb);
|
128
|
+
|
129
|
+
ht->keyHash = keyHash;
|
130
|
+
ht->keyCompare = keyCompare;
|
131
|
+
ht->valueCompare = valueCompare;
|
132
|
+
ht->allocOps = allocOps;
|
133
|
+
ht->allocPriv = allocPriv;
|
134
|
+
return ht;
|
135
|
+
}
|
136
|
+
|
137
|
+
JS_PUBLIC_API(void)
|
138
|
+
JS_HashTableDestroy(JSHashTable *ht)
|
139
|
+
{
|
140
|
+
uint32 i, n;
|
141
|
+
JSHashEntry *he, **hep;
|
142
|
+
JSHashAllocOps *allocOps = ht->allocOps;
|
143
|
+
void *allocPriv = ht->allocPriv;
|
144
|
+
|
145
|
+
n = NBUCKETS(ht);
|
146
|
+
for (i = 0; i < n; i++) {
|
147
|
+
hep = &ht->buckets[i];
|
148
|
+
while ((he = *hep) != NULL) {
|
149
|
+
*hep = he->next;
|
150
|
+
allocOps->freeEntry(allocPriv, he, HT_FREE_ENTRY);
|
151
|
+
}
|
152
|
+
}
|
153
|
+
#ifdef DEBUG
|
154
|
+
memset(ht->buckets, 0xDB, n * sizeof ht->buckets[0]);
|
155
|
+
#endif
|
156
|
+
allocOps->freeTable(allocPriv, ht->buckets, n * sizeof ht->buckets[0]);
|
157
|
+
#ifdef DEBUG
|
158
|
+
memset(ht, 0xDB, sizeof *ht);
|
159
|
+
#endif
|
160
|
+
allocOps->freeTable(allocPriv, ht, sizeof *ht);
|
161
|
+
}
|
162
|
+
|
163
|
+
/*
|
164
|
+
* Multiplicative hash, from Knuth 6.4.
|
165
|
+
*/
|
166
|
+
#define BUCKET_HEAD(ht, keyHash) \
|
167
|
+
(&(ht)->buckets[((keyHash) * JS_GOLDEN_RATIO) >> (ht)->shift])
|
168
|
+
|
169
|
+
JS_PUBLIC_API(JSHashEntry **)
|
170
|
+
JS_HashTableRawLookup(JSHashTable *ht, JSHashNumber keyHash, const void *key)
|
171
|
+
{
|
172
|
+
JSHashEntry *he, **hep, **hep0;
|
173
|
+
|
174
|
+
#ifdef JS_HASHMETER
|
175
|
+
ht->nlookups++;
|
176
|
+
#endif
|
177
|
+
hep = hep0 = BUCKET_HEAD(ht, keyHash);
|
178
|
+
while ((he = *hep) != NULL) {
|
179
|
+
if (he->keyHash == keyHash && ht->keyCompare(key, he->key)) {
|
180
|
+
/* Move to front of chain if not already there */
|
181
|
+
if (hep != hep0) {
|
182
|
+
*hep = he->next;
|
183
|
+
he->next = *hep0;
|
184
|
+
*hep0 = he;
|
185
|
+
}
|
186
|
+
return hep0;
|
187
|
+
}
|
188
|
+
hep = &he->next;
|
189
|
+
#ifdef JS_HASHMETER
|
190
|
+
ht->nsteps++;
|
191
|
+
#endif
|
192
|
+
}
|
193
|
+
return hep;
|
194
|
+
}
|
195
|
+
|
196
|
+
static JSBool
|
197
|
+
Resize(JSHashTable *ht, uint32 newshift)
|
198
|
+
{
|
199
|
+
size_t nb, nentries, i;
|
200
|
+
JSHashEntry **oldbuckets, *he, *next, **hep;
|
201
|
+
size_t nold = NBUCKETS(ht);
|
202
|
+
|
203
|
+
JS_ASSERT(newshift < JS_HASH_BITS);
|
204
|
+
|
205
|
+
nb = (size_t)1 << (JS_HASH_BITS - newshift);
|
206
|
+
|
207
|
+
/* Integer overflow protection. */
|
208
|
+
if (nb > (size_t)-1 / sizeof(JSHashEntry*))
|
209
|
+
return JS_FALSE;
|
210
|
+
nb *= sizeof(JSHashEntry*);
|
211
|
+
|
212
|
+
oldbuckets = ht->buckets;
|
213
|
+
ht->buckets = (JSHashEntry**)ht->allocOps->allocTable(ht->allocPriv, nb);
|
214
|
+
if (!ht->buckets) {
|
215
|
+
ht->buckets = oldbuckets;
|
216
|
+
return JS_FALSE;
|
217
|
+
}
|
218
|
+
memset(ht->buckets, 0, nb);
|
219
|
+
|
220
|
+
ht->shift = newshift;
|
221
|
+
nentries = ht->nentries;
|
222
|
+
|
223
|
+
for (i = 0; nentries != 0; i++) {
|
224
|
+
for (he = oldbuckets[i]; he; he = next) {
|
225
|
+
JS_ASSERT(nentries != 0);
|
226
|
+
--nentries;
|
227
|
+
next = he->next;
|
228
|
+
hep = BUCKET_HEAD(ht, he->keyHash);
|
229
|
+
|
230
|
+
/*
|
231
|
+
* We do not require unique entries, instead appending he to the
|
232
|
+
* chain starting at hep.
|
233
|
+
*/
|
234
|
+
while (*hep)
|
235
|
+
hep = &(*hep)->next;
|
236
|
+
he->next = NULL;
|
237
|
+
*hep = he;
|
238
|
+
}
|
239
|
+
}
|
240
|
+
#ifdef DEBUG
|
241
|
+
memset(oldbuckets, 0xDB, nold * sizeof oldbuckets[0]);
|
242
|
+
#endif
|
243
|
+
ht->allocOps->freeTable(ht->allocPriv, oldbuckets,
|
244
|
+
nold * sizeof oldbuckets[0]);
|
245
|
+
return JS_TRUE;
|
246
|
+
}
|
247
|
+
|
248
|
+
JS_PUBLIC_API(JSHashEntry *)
|
249
|
+
JS_HashTableRawAdd(JSHashTable *ht, JSHashEntry **hep,
|
250
|
+
JSHashNumber keyHash, const void *key, void *value)
|
251
|
+
{
|
252
|
+
uint32 n;
|
253
|
+
JSHashEntry *he;
|
254
|
+
|
255
|
+
/* Grow the table if it is overloaded */
|
256
|
+
n = NBUCKETS(ht);
|
257
|
+
if (ht->nentries >= OVERLOADED(n)) {
|
258
|
+
if (!Resize(ht, ht->shift - 1))
|
259
|
+
return NULL;
|
260
|
+
#ifdef JS_HASHMETER
|
261
|
+
ht->ngrows++;
|
262
|
+
#endif
|
263
|
+
hep = JS_HashTableRawLookup(ht, keyHash, key);
|
264
|
+
}
|
265
|
+
|
266
|
+
/* Make a new key value entry */
|
267
|
+
he = ht->allocOps->allocEntry(ht->allocPriv, key);
|
268
|
+
if (!he)
|
269
|
+
return NULL;
|
270
|
+
he->keyHash = keyHash;
|
271
|
+
he->key = key;
|
272
|
+
he->value = value;
|
273
|
+
he->next = *hep;
|
274
|
+
*hep = he;
|
275
|
+
ht->nentries++;
|
276
|
+
return he;
|
277
|
+
}
|
278
|
+
|
279
|
+
JS_PUBLIC_API(JSHashEntry *)
|
280
|
+
JS_HashTableAdd(JSHashTable *ht, const void *key, void *value)
|
281
|
+
{
|
282
|
+
JSHashNumber keyHash;
|
283
|
+
JSHashEntry *he, **hep;
|
284
|
+
|
285
|
+
keyHash = ht->keyHash(key);
|
286
|
+
hep = JS_HashTableRawLookup(ht, keyHash, key);
|
287
|
+
if ((he = *hep) != NULL) {
|
288
|
+
/* Hit; see if values match */
|
289
|
+
if (ht->valueCompare(he->value, value)) {
|
290
|
+
/* key,value pair is already present in table */
|
291
|
+
return he;
|
292
|
+
}
|
293
|
+
if (he->value)
|
294
|
+
ht->allocOps->freeEntry(ht->allocPriv, he, HT_FREE_VALUE);
|
295
|
+
he->value = value;
|
296
|
+
return he;
|
297
|
+
}
|
298
|
+
return JS_HashTableRawAdd(ht, hep, keyHash, key, value);
|
299
|
+
}
|
300
|
+
|
301
|
+
JS_PUBLIC_API(void)
|
302
|
+
JS_HashTableRawRemove(JSHashTable *ht, JSHashEntry **hep, JSHashEntry *he)
|
303
|
+
{
|
304
|
+
uint32 n;
|
305
|
+
|
306
|
+
*hep = he->next;
|
307
|
+
ht->allocOps->freeEntry(ht->allocPriv, he, HT_FREE_ENTRY);
|
308
|
+
|
309
|
+
/* Shrink table if it's underloaded */
|
310
|
+
n = NBUCKETS(ht);
|
311
|
+
if (--ht->nentries < UNDERLOADED(n)) {
|
312
|
+
Resize(ht, ht->shift + 1);
|
313
|
+
#ifdef JS_HASHMETER
|
314
|
+
ht->nshrinks++;
|
315
|
+
#endif
|
316
|
+
}
|
317
|
+
}
|
318
|
+
|
319
|
+
JS_PUBLIC_API(JSBool)
|
320
|
+
JS_HashTableRemove(JSHashTable *ht, const void *key)
|
321
|
+
{
|
322
|
+
JSHashNumber keyHash;
|
323
|
+
JSHashEntry *he, **hep;
|
324
|
+
|
325
|
+
keyHash = ht->keyHash(key);
|
326
|
+
hep = JS_HashTableRawLookup(ht, keyHash, key);
|
327
|
+
if ((he = *hep) == NULL)
|
328
|
+
return JS_FALSE;
|
329
|
+
|
330
|
+
/* Hit; remove element */
|
331
|
+
JS_HashTableRawRemove(ht, hep, he);
|
332
|
+
return JS_TRUE;
|
333
|
+
}
|
334
|
+
|
335
|
+
JS_PUBLIC_API(void *)
|
336
|
+
JS_HashTableLookup(JSHashTable *ht, const void *key)
|
337
|
+
{
|
338
|
+
JSHashNumber keyHash;
|
339
|
+
JSHashEntry *he, **hep;
|
340
|
+
|
341
|
+
keyHash = ht->keyHash(key);
|
342
|
+
hep = JS_HashTableRawLookup(ht, keyHash, key);
|
343
|
+
if ((he = *hep) != NULL) {
|
344
|
+
return he->value;
|
345
|
+
}
|
346
|
+
return NULL;
|
347
|
+
}
|
348
|
+
|
349
|
+
/*
|
350
|
+
** Iterate over the entries in the hash table calling func for each
|
351
|
+
** entry found. Stop if "f" says to (return value & JS_ENUMERATE_STOP).
|
352
|
+
** Return a count of the number of elements scanned.
|
353
|
+
*/
|
354
|
+
JS_PUBLIC_API(int)
|
355
|
+
JS_HashTableEnumerateEntries(JSHashTable *ht, JSHashEnumerator f, void *arg)
|
356
|
+
{
|
357
|
+
JSHashEntry *he, **hep, **bucket;
|
358
|
+
uint32 nlimit, n, nbuckets, newlog2;
|
359
|
+
int rv;
|
360
|
+
|
361
|
+
nlimit = ht->nentries;
|
362
|
+
n = 0;
|
363
|
+
for (bucket = ht->buckets; n != nlimit; ++bucket) {
|
364
|
+
hep = bucket;
|
365
|
+
while ((he = *hep) != NULL) {
|
366
|
+
JS_ASSERT(n < nlimit);
|
367
|
+
rv = f(he, n, arg);
|
368
|
+
n++;
|
369
|
+
if (rv & HT_ENUMERATE_REMOVE) {
|
370
|
+
*hep = he->next;
|
371
|
+
ht->allocOps->freeEntry(ht->allocPriv, he, HT_FREE_ENTRY);
|
372
|
+
--ht->nentries;
|
373
|
+
} else {
|
374
|
+
hep = &he->next;
|
375
|
+
}
|
376
|
+
if (rv & HT_ENUMERATE_STOP) {
|
377
|
+
goto out;
|
378
|
+
}
|
379
|
+
}
|
380
|
+
}
|
381
|
+
|
382
|
+
out:
|
383
|
+
/* Shrink table if removal of entries made it underloaded */
|
384
|
+
if (ht->nentries != nlimit) {
|
385
|
+
JS_ASSERT(ht->nentries < nlimit);
|
386
|
+
nbuckets = NBUCKETS(ht);
|
387
|
+
if (MINBUCKETS < nbuckets && ht->nentries < UNDERLOADED(nbuckets)) {
|
388
|
+
newlog2 = JS_CeilingLog2(ht->nentries);
|
389
|
+
if (newlog2 < MINBUCKETSLOG2)
|
390
|
+
newlog2 = MINBUCKETSLOG2;
|
391
|
+
|
392
|
+
/* Check that we really shrink the table. */
|
393
|
+
JS_ASSERT(JS_HASH_BITS - ht->shift > newlog2);
|
394
|
+
Resize(ht, JS_HASH_BITS - newlog2);
|
395
|
+
}
|
396
|
+
}
|
397
|
+
return (int)n;
|
398
|
+
}
|
399
|
+
|
400
|
+
#ifdef JS_HASHMETER
|
401
|
+
#include <stdio.h>
|
402
|
+
|
403
|
+
JS_PUBLIC_API(void)
|
404
|
+
JS_HashTableDumpMeter(JSHashTable *ht, JSHashEnumerator dump, FILE *fp)
|
405
|
+
{
|
406
|
+
double sqsum, mean, sigma;
|
407
|
+
uint32 nchains, nbuckets;
|
408
|
+
uint32 i, n, maxChain, maxChainLen;
|
409
|
+
JSHashEntry *he;
|
410
|
+
|
411
|
+
sqsum = 0;
|
412
|
+
nchains = 0;
|
413
|
+
maxChain = maxChainLen = 0;
|
414
|
+
nbuckets = NBUCKETS(ht);
|
415
|
+
for (i = 0; i < nbuckets; i++) {
|
416
|
+
he = ht->buckets[i];
|
417
|
+
if (!he)
|
418
|
+
continue;
|
419
|
+
nchains++;
|
420
|
+
for (n = 0; he; he = he->next)
|
421
|
+
n++;
|
422
|
+
sqsum += n * n;
|
423
|
+
if (n > maxChainLen) {
|
424
|
+
maxChainLen = n;
|
425
|
+
maxChain = i;
|
426
|
+
}
|
427
|
+
}
|
428
|
+
|
429
|
+
mean = JS_MeanAndStdDev(nchains, ht->nentries, sqsum, &sigma);
|
430
|
+
|
431
|
+
fprintf(fp, "\nHash table statistics:\n");
|
432
|
+
fprintf(fp, " number of lookups: %u\n", ht->nlookups);
|
433
|
+
fprintf(fp, " number of entries: %u\n", ht->nentries);
|
434
|
+
fprintf(fp, " number of grows: %u\n", ht->ngrows);
|
435
|
+
fprintf(fp, " number of shrinks: %u\n", ht->nshrinks);
|
436
|
+
fprintf(fp, " mean steps per hash: %g\n", (double)ht->nsteps
|
437
|
+
/ ht->nlookups);
|
438
|
+
fprintf(fp, "mean hash chain length: %g\n", mean);
|
439
|
+
fprintf(fp, " standard deviation: %g\n", sigma);
|
440
|
+
fprintf(fp, " max hash chain length: %u\n", maxChainLen);
|
441
|
+
fprintf(fp, " max hash chain: [%u]\n", maxChain);
|
442
|
+
|
443
|
+
for (he = ht->buckets[maxChain], i = 0; he; he = he->next, i++)
|
444
|
+
if (dump(he, i, fp) != HT_ENUMERATE_NEXT)
|
445
|
+
break;
|
446
|
+
}
|
447
|
+
#endif /* JS_HASHMETER */
|
448
|
+
|
449
|
+
JS_PUBLIC_API(int)
|
450
|
+
JS_HashTableDump(JSHashTable *ht, JSHashEnumerator dump, FILE *fp)
|
451
|
+
{
|
452
|
+
int count;
|
453
|
+
|
454
|
+
count = JS_HashTableEnumerateEntries(ht, dump, fp);
|
455
|
+
#ifdef JS_HASHMETER
|
456
|
+
JS_HashTableDumpMeter(ht, dump, fp);
|
457
|
+
#endif
|
458
|
+
return count;
|
459
|
+
}
|
460
|
+
|
461
|
+
JS_PUBLIC_API(JSHashNumber)
|
462
|
+
JS_HashString(const void *key)
|
463
|
+
{
|
464
|
+
JSHashNumber h;
|
465
|
+
const unsigned char *s;
|
466
|
+
|
467
|
+
h = 0;
|
468
|
+
for (s = (const unsigned char *)key; *s; s++)
|
469
|
+
h = JS_ROTATE_LEFT32(h, 4) ^ *s;
|
470
|
+
return h;
|
471
|
+
}
|
472
|
+
|
473
|
+
JS_PUBLIC_API(int)
|
474
|
+
JS_CompareValues(const void *v1, const void *v2)
|
475
|
+
{
|
476
|
+
return v1 == v2;
|
477
|
+
}
|