johnson 1.2.0 → 2.0.0.pre0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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,802 @@
|
|
|
1
|
+
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
2
|
+
* vim: set ts=8 sw=4 et tw=79:
|
|
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 jsemit_h___
|
|
42
|
+
#define jsemit_h___
|
|
43
|
+
/*
|
|
44
|
+
* JS bytecode generation.
|
|
45
|
+
*/
|
|
46
|
+
|
|
47
|
+
#include "jsstddef.h"
|
|
48
|
+
#include "jstypes.h"
|
|
49
|
+
#include "jsatom.h"
|
|
50
|
+
#include "jsopcode.h"
|
|
51
|
+
#include "jsparse.h"
|
|
52
|
+
#include "jsscript.h"
|
|
53
|
+
#include "jsprvtd.h"
|
|
54
|
+
#include "jspubtd.h"
|
|
55
|
+
|
|
56
|
+
JS_BEGIN_EXTERN_C
|
|
57
|
+
|
|
58
|
+
/*
|
|
59
|
+
* NB: If you add enumerators for scope statements, add them between STMT_WITH
|
|
60
|
+
* and STMT_CATCH, or you will break the STMT_TYPE_IS_SCOPE macro. If you add
|
|
61
|
+
* non-looping statement enumerators, add them before STMT_DO_LOOP or you will
|
|
62
|
+
* break the STMT_TYPE_IS_LOOP macro.
|
|
63
|
+
*
|
|
64
|
+
* Also remember to keep the statementName array in jsemit.c in sync.
|
|
65
|
+
*/
|
|
66
|
+
typedef enum JSStmtType {
|
|
67
|
+
STMT_LABEL, /* labeled statement: L: s */
|
|
68
|
+
STMT_IF, /* if (then) statement */
|
|
69
|
+
STMT_ELSE, /* else clause of if statement */
|
|
70
|
+
STMT_SEQ, /* synthetic sequence of statements */
|
|
71
|
+
STMT_BLOCK, /* compound statement: { s1[;... sN] } */
|
|
72
|
+
STMT_SWITCH, /* switch statement */
|
|
73
|
+
STMT_WITH, /* with statement */
|
|
74
|
+
STMT_CATCH, /* catch block */
|
|
75
|
+
STMT_TRY, /* try block */
|
|
76
|
+
STMT_FINALLY, /* finally block */
|
|
77
|
+
STMT_SUBROUTINE, /* gosub-target subroutine body */
|
|
78
|
+
STMT_DO_LOOP, /* do/while loop statement */
|
|
79
|
+
STMT_FOR_LOOP, /* for loop statement */
|
|
80
|
+
STMT_FOR_IN_LOOP, /* for/in loop statement */
|
|
81
|
+
STMT_WHILE_LOOP, /* while loop statement */
|
|
82
|
+
STMT_LIMIT
|
|
83
|
+
} JSStmtType;
|
|
84
|
+
|
|
85
|
+
#define STMT_TYPE_IN_RANGE(t,b,e) ((uint)((t) - (b)) <= (uintN)((e) - (b)))
|
|
86
|
+
|
|
87
|
+
/*
|
|
88
|
+
* A comment on the encoding of the JSStmtType enum and type-testing macros:
|
|
89
|
+
*
|
|
90
|
+
* STMT_TYPE_MAYBE_SCOPE tells whether a statement type is always, or may
|
|
91
|
+
* become, a lexical scope. It therefore includes block and switch (the two
|
|
92
|
+
* low-numbered "maybe" scope types) and excludes with (with has dynamic scope
|
|
93
|
+
* pending the "reformed with" in ES4/JS2). It includes all try-catch-finally
|
|
94
|
+
* types, which are high-numbered maybe-scope types.
|
|
95
|
+
*
|
|
96
|
+
* STMT_TYPE_LINKS_SCOPE tells whether a JSStmtInfo of the given type eagerly
|
|
97
|
+
* links to other scoping statement info records. It excludes the two early
|
|
98
|
+
* "maybe" types, block and switch, as well as the try and both finally types,
|
|
99
|
+
* since try and the other trailing maybe-scope types don't need block scope
|
|
100
|
+
* unless they contain let declarations.
|
|
101
|
+
*
|
|
102
|
+
* We treat WITH as a static scope because it prevents lexical binding from
|
|
103
|
+
* continuing further up the static scope chain. With the lost "reformed with"
|
|
104
|
+
* proposal for ES4, we would be able to model it statically, too.
|
|
105
|
+
*/
|
|
106
|
+
#define STMT_TYPE_MAYBE_SCOPE(type) \
|
|
107
|
+
(type != STMT_WITH && \
|
|
108
|
+
STMT_TYPE_IN_RANGE(type, STMT_BLOCK, STMT_SUBROUTINE))
|
|
109
|
+
|
|
110
|
+
#define STMT_TYPE_LINKS_SCOPE(type) \
|
|
111
|
+
STMT_TYPE_IN_RANGE(type, STMT_WITH, STMT_CATCH)
|
|
112
|
+
|
|
113
|
+
#define STMT_TYPE_IS_TRYING(type) \
|
|
114
|
+
STMT_TYPE_IN_RANGE(type, STMT_TRY, STMT_SUBROUTINE)
|
|
115
|
+
|
|
116
|
+
#define STMT_TYPE_IS_LOOP(type) ((type) >= STMT_DO_LOOP)
|
|
117
|
+
|
|
118
|
+
#define STMT_MAYBE_SCOPE(stmt) STMT_TYPE_MAYBE_SCOPE((stmt)->type)
|
|
119
|
+
#define STMT_LINKS_SCOPE(stmt) (STMT_TYPE_LINKS_SCOPE((stmt)->type) || \
|
|
120
|
+
((stmt)->flags & SIF_SCOPE))
|
|
121
|
+
#define STMT_IS_TRYING(stmt) STMT_TYPE_IS_TRYING((stmt)->type)
|
|
122
|
+
#define STMT_IS_LOOP(stmt) STMT_TYPE_IS_LOOP((stmt)->type)
|
|
123
|
+
|
|
124
|
+
typedef struct JSStmtInfo JSStmtInfo;
|
|
125
|
+
|
|
126
|
+
struct JSStmtInfo {
|
|
127
|
+
uint16 type; /* statement type */
|
|
128
|
+
uint16 flags; /* flags, see below */
|
|
129
|
+
uint32 blockid; /* for simplified dominance computation */
|
|
130
|
+
ptrdiff_t update; /* loop update offset (top if none) */
|
|
131
|
+
ptrdiff_t breaks; /* offset of last break in loop */
|
|
132
|
+
ptrdiff_t continues; /* offset of last continue in loop */
|
|
133
|
+
union {
|
|
134
|
+
JSAtom *label; /* name of LABEL */
|
|
135
|
+
JSObject *blockObj; /* block scope object */
|
|
136
|
+
};
|
|
137
|
+
JSStmtInfo *down; /* info for enclosing statement */
|
|
138
|
+
JSStmtInfo *downScope; /* next enclosing lexical scope */
|
|
139
|
+
};
|
|
140
|
+
|
|
141
|
+
#define SIF_SCOPE 0x0001 /* statement has its own lexical scope */
|
|
142
|
+
#define SIF_BODY_BLOCK 0x0002 /* STMT_BLOCK type is a function body */
|
|
143
|
+
#define SIF_FOR_BLOCK 0x0004 /* for (let ...) induced block scope */
|
|
144
|
+
|
|
145
|
+
/*
|
|
146
|
+
* To reuse space in JSStmtInfo, rename breaks and continues for use during
|
|
147
|
+
* try/catch/finally code generation and backpatching. To match most common
|
|
148
|
+
* use cases, the macro argument is a struct, not a struct pointer. Only a
|
|
149
|
+
* loop, switch, or label statement info record can have breaks and continues,
|
|
150
|
+
* and only a for loop has an update backpatch chain, so it's safe to overlay
|
|
151
|
+
* these for the "trying" JSStmtTypes.
|
|
152
|
+
*/
|
|
153
|
+
#define CATCHNOTE(stmt) ((stmt).update)
|
|
154
|
+
#define GOSUBS(stmt) ((stmt).breaks)
|
|
155
|
+
#define GUARDJUMP(stmt) ((stmt).continues)
|
|
156
|
+
|
|
157
|
+
#define SET_STATEMENT_TOP(stmt, top) \
|
|
158
|
+
((stmt)->update = (top), (stmt)->breaks = (stmt)->continues = (-1))
|
|
159
|
+
|
|
160
|
+
#ifdef JS_SCOPE_DEPTH_METER
|
|
161
|
+
# define JS_SCOPE_DEPTH_METERING(code) ((void) (code))
|
|
162
|
+
#else
|
|
163
|
+
# define JS_SCOPE_DEPTH_METERING(code) ((void) 0)
|
|
164
|
+
#endif
|
|
165
|
+
|
|
166
|
+
struct JSTreeContext { /* tree context for semantic checks */
|
|
167
|
+
uint16 flags; /* statement state flags, see below */
|
|
168
|
+
uint16 ngvars; /* max. no. of global variables/regexps */
|
|
169
|
+
uint32 bodyid; /* block number of program/function body */
|
|
170
|
+
uint32 blockidGen; /* preincremented block number generator */
|
|
171
|
+
JSStmtInfo *topStmt; /* top of statement info stack */
|
|
172
|
+
JSStmtInfo *topScopeStmt; /* top lexical scope statement */
|
|
173
|
+
JSObject *blockChain; /* compile time block scope chain (NB: one
|
|
174
|
+
deeper than the topScopeStmt/downScope
|
|
175
|
+
chain when in head of let block/expr) */
|
|
176
|
+
JSParseNode *blockNode; /* parse node for a block with let declarations
|
|
177
|
+
(block with its own lexical scope) */
|
|
178
|
+
JSAtomList decls; /* function, const, and var declarations */
|
|
179
|
+
JSCompiler *compiler; /* ptr to common parsing and lexing data */
|
|
180
|
+
|
|
181
|
+
union {
|
|
182
|
+
JSFunction *fun; /* function to store argument and variable
|
|
183
|
+
names when flags & TCF_IN_FUNCTION */
|
|
184
|
+
JSObject *scopeChain; /* scope chain object for the script */
|
|
185
|
+
};
|
|
186
|
+
|
|
187
|
+
JSAtomList lexdeps; /* unresolved lexical name dependencies */
|
|
188
|
+
JSTreeContext *parent; /* enclosing function or global context */
|
|
189
|
+
uintN staticLevel; /* static compilation unit nesting level */
|
|
190
|
+
|
|
191
|
+
JSFunctionBox *funbox; /* null or box for function we're compiling
|
|
192
|
+
if (flags & TCF_IN_FUNCTION) and not in
|
|
193
|
+
JSCompiler::compileFunctionBody */
|
|
194
|
+
JSFunctionBox *functionList;
|
|
195
|
+
|
|
196
|
+
#ifdef JS_SCOPE_DEPTH_METER
|
|
197
|
+
uint16 scopeDepth; /* current lexical scope chain depth */
|
|
198
|
+
uint16 maxScopeDepth; /* maximum lexical scope chain depth */
|
|
199
|
+
#endif
|
|
200
|
+
|
|
201
|
+
JSTreeContext(JSCompiler *jsc)
|
|
202
|
+
: flags(0), ngvars(0), bodyid(0), blockidGen(0),
|
|
203
|
+
topStmt(NULL), topScopeStmt(NULL), blockChain(NULL), blockNode(NULL),
|
|
204
|
+
compiler(jsc), scopeChain(NULL), parent(NULL), staticLevel(0),
|
|
205
|
+
funbox(NULL), functionList(NULL)
|
|
206
|
+
{
|
|
207
|
+
JS_SCOPE_DEPTH_METERING(scopeDepth = maxScopeDepth = 0);
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
/*
|
|
211
|
+
* For functions the tree context is constructed and destructed a second
|
|
212
|
+
* time during code generation. To avoid a redundant stats update in such
|
|
213
|
+
* cases, we store (uintN) -1 in maxScopeDepth.
|
|
214
|
+
*/
|
|
215
|
+
~JSTreeContext() {
|
|
216
|
+
JS_SCOPE_DEPTH_METERING(maxScopeDepth == (uintN) -1 ||
|
|
217
|
+
JS_BASIC_STATS_ACCUM(&compiler
|
|
218
|
+
->context
|
|
219
|
+
->runtime
|
|
220
|
+
->lexicalScopeDepthStats,
|
|
221
|
+
maxScopeDepth));
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
uintN blockid() { return topStmt ? topStmt->blockid : bodyid; }
|
|
225
|
+
|
|
226
|
+
bool atTopLevel() { return !topStmt || (topStmt->flags & SIF_BODY_BLOCK); }
|
|
227
|
+
|
|
228
|
+
/* Test whether we're in a statement of given type. */
|
|
229
|
+
bool inStatement(JSStmtType type);
|
|
230
|
+
};
|
|
231
|
+
|
|
232
|
+
/*
|
|
233
|
+
* Flags to propagate out of the blocks.
|
|
234
|
+
*/
|
|
235
|
+
#define TCF_RETURN_FLAGS (TCF_RETURN_EXPR | TCF_RETURN_VOID)
|
|
236
|
+
|
|
237
|
+
/*
|
|
238
|
+
* TreeContext flags must fit in 16 bits, and all bits are in use now. Widening
|
|
239
|
+
* requires changing JSFunctionBox.tcflags too and repacking. Alternative fix
|
|
240
|
+
* gets rid of flags, probably starting with TCF_HAS_FUNCTION_STMT.
|
|
241
|
+
*/
|
|
242
|
+
#define TCF_COMPILING 0x01 /* JSTreeContext is JSCodeGenerator */
|
|
243
|
+
#define TCF_IN_FUNCTION 0x02 /* parsing inside function body */
|
|
244
|
+
#define TCF_RETURN_EXPR 0x04 /* function has 'return expr;' */
|
|
245
|
+
#define TCF_RETURN_VOID 0x08 /* function has 'return;' */
|
|
246
|
+
#define TCF_IN_FOR_INIT 0x10 /* parsing init expr of for; exclude 'in' */
|
|
247
|
+
#define TCF_FUN_SETS_OUTER_NAME 0x20 /* function set outer name (lexical or free) */
|
|
248
|
+
#define TCF_FUN_PARAM_ARGUMENTS 0x40 /* function has parameter named arguments */
|
|
249
|
+
#define TCF_FUN_USES_ARGUMENTS 0x80 /* function uses arguments except as a
|
|
250
|
+
parameter name */
|
|
251
|
+
#define TCF_FUN_HEAVYWEIGHT 0x100 /* function needs Call object per call */
|
|
252
|
+
#define TCF_FUN_IS_GENERATOR 0x200 /* parsed yield statement in function */
|
|
253
|
+
#define TCF_FUN_IS_FUNARG 0x400 /* function escapes as an argument, return
|
|
254
|
+
value, or via the heap */
|
|
255
|
+
#define TCF_HAS_FUNCTION_STMT 0x800 /* block contains a function statement */
|
|
256
|
+
#define TCF_GENEXP_LAMBDA 0x1000 /* flag lambda from generator expression */
|
|
257
|
+
#define TCF_COMPILE_N_GO 0x2000 /* compiler-and-go mode of script, can
|
|
258
|
+
optimize name references based on scope
|
|
259
|
+
chain */
|
|
260
|
+
#define TCF_NO_SCRIPT_RVAL 0x4000 /* API caller does not want result value
|
|
261
|
+
from global script */
|
|
262
|
+
#define TCF_HAS_SHARPS 0x8000 /* source contains sharp defs or uses */
|
|
263
|
+
|
|
264
|
+
/*
|
|
265
|
+
* Sticky deoptimization flags to propagate from FunctionBody.
|
|
266
|
+
*/
|
|
267
|
+
#define TCF_FUN_FLAGS (TCF_FUN_SETS_OUTER_NAME | \
|
|
268
|
+
TCF_FUN_USES_ARGUMENTS | \
|
|
269
|
+
TCF_FUN_PARAM_ARGUMENTS | \
|
|
270
|
+
TCF_FUN_HEAVYWEIGHT | \
|
|
271
|
+
TCF_FUN_IS_GENERATOR | \
|
|
272
|
+
TCF_FUN_IS_FUNARG | \
|
|
273
|
+
TCF_HAS_SHARPS)
|
|
274
|
+
|
|
275
|
+
/*
|
|
276
|
+
* Flags field, not stored in JSTreeContext.flags, for passing a static level
|
|
277
|
+
* into js_CompileScript.
|
|
278
|
+
*/
|
|
279
|
+
#define TCF_STATIC_LEVEL_MASK 0xffff0000
|
|
280
|
+
#define TCF_GET_STATIC_LEVEL(f) ((uint32)(f) >> 16)
|
|
281
|
+
#define TCF_PUT_STATIC_LEVEL(d) ((uint16)(d) << 16)
|
|
282
|
+
|
|
283
|
+
/*
|
|
284
|
+
* Span-dependent instructions are jumps whose span (from the jump bytecode to
|
|
285
|
+
* the jump target) may require 2 or 4 bytes of immediate operand.
|
|
286
|
+
*/
|
|
287
|
+
typedef struct JSSpanDep JSSpanDep;
|
|
288
|
+
typedef struct JSJumpTarget JSJumpTarget;
|
|
289
|
+
|
|
290
|
+
struct JSSpanDep {
|
|
291
|
+
ptrdiff_t top; /* offset of first bytecode in an opcode */
|
|
292
|
+
ptrdiff_t offset; /* offset - 1 within opcode of jump operand */
|
|
293
|
+
ptrdiff_t before; /* original offset - 1 of jump operand */
|
|
294
|
+
JSJumpTarget *target; /* tagged target pointer or backpatch delta */
|
|
295
|
+
};
|
|
296
|
+
|
|
297
|
+
/*
|
|
298
|
+
* Jump targets are stored in an AVL tree, for O(log(n)) lookup with targets
|
|
299
|
+
* sorted by offset from left to right, so that targets after a span-dependent
|
|
300
|
+
* instruction whose jump offset operand must be extended can be found quickly
|
|
301
|
+
* and adjusted upward (toward higher offsets).
|
|
302
|
+
*/
|
|
303
|
+
struct JSJumpTarget {
|
|
304
|
+
ptrdiff_t offset; /* offset of span-dependent jump target */
|
|
305
|
+
int balance; /* AVL tree balance number */
|
|
306
|
+
JSJumpTarget *kids[2]; /* left and right AVL tree child pointers */
|
|
307
|
+
};
|
|
308
|
+
|
|
309
|
+
#define JT_LEFT 0
|
|
310
|
+
#define JT_RIGHT 1
|
|
311
|
+
#define JT_OTHER_DIR(dir) (1 - (dir))
|
|
312
|
+
#define JT_IMBALANCE(dir) (((dir) << 1) - 1)
|
|
313
|
+
#define JT_DIR(imbalance) (((imbalance) + 1) >> 1)
|
|
314
|
+
|
|
315
|
+
/*
|
|
316
|
+
* Backpatch deltas are encoded in JSSpanDep.target if JT_TAG_BIT is clear,
|
|
317
|
+
* so we can maintain backpatch chains when using span dependency records to
|
|
318
|
+
* hold jump offsets that overflow 16 bits.
|
|
319
|
+
*/
|
|
320
|
+
#define JT_TAG_BIT ((jsword) 1)
|
|
321
|
+
#define JT_UNTAG_SHIFT 1
|
|
322
|
+
#define JT_SET_TAG(jt) ((JSJumpTarget *)((jsword)(jt) | JT_TAG_BIT))
|
|
323
|
+
#define JT_CLR_TAG(jt) ((JSJumpTarget *)((jsword)(jt) & ~JT_TAG_BIT))
|
|
324
|
+
#define JT_HAS_TAG(jt) ((jsword)(jt) & JT_TAG_BIT)
|
|
325
|
+
|
|
326
|
+
#define BITS_PER_PTRDIFF (sizeof(ptrdiff_t) * JS_BITS_PER_BYTE)
|
|
327
|
+
#define BITS_PER_BPDELTA (BITS_PER_PTRDIFF - 1 - JT_UNTAG_SHIFT)
|
|
328
|
+
#define BPDELTA_MAX (((ptrdiff_t)1 << BITS_PER_BPDELTA) - 1)
|
|
329
|
+
#define BPDELTA_TO_JT(bp) ((JSJumpTarget *)((bp) << JT_UNTAG_SHIFT))
|
|
330
|
+
#define JT_TO_BPDELTA(jt) ((ptrdiff_t)((jsword)(jt) >> JT_UNTAG_SHIFT))
|
|
331
|
+
|
|
332
|
+
#define SD_SET_TARGET(sd,jt) ((sd)->target = JT_SET_TAG(jt))
|
|
333
|
+
#define SD_GET_TARGET(sd) (JS_ASSERT(JT_HAS_TAG((sd)->target)), \
|
|
334
|
+
JT_CLR_TAG((sd)->target))
|
|
335
|
+
#define SD_SET_BPDELTA(sd,bp) ((sd)->target = BPDELTA_TO_JT(bp))
|
|
336
|
+
#define SD_GET_BPDELTA(sd) (JS_ASSERT(!JT_HAS_TAG((sd)->target)), \
|
|
337
|
+
JT_TO_BPDELTA((sd)->target))
|
|
338
|
+
|
|
339
|
+
/* Avoid asserting twice by expanding SD_GET_TARGET in the "then" clause. */
|
|
340
|
+
#define SD_SPAN(sd,pivot) (SD_GET_TARGET(sd) \
|
|
341
|
+
? JT_CLR_TAG((sd)->target)->offset - (pivot) \
|
|
342
|
+
: 0)
|
|
343
|
+
|
|
344
|
+
typedef struct JSTryNode JSTryNode;
|
|
345
|
+
|
|
346
|
+
struct JSTryNode {
|
|
347
|
+
JSTryNote note;
|
|
348
|
+
JSTryNode *prev;
|
|
349
|
+
};
|
|
350
|
+
|
|
351
|
+
struct JSCGObjectList {
|
|
352
|
+
uint32 length; /* number of emitted so far objects */
|
|
353
|
+
JSObjectBox *lastbox; /* last emitted object */
|
|
354
|
+
|
|
355
|
+
JSCGObjectList() : length(0), lastbox(NULL) {}
|
|
356
|
+
|
|
357
|
+
uintN index(JSObjectBox *objbox);
|
|
358
|
+
void finish(JSObjectArray *array);
|
|
359
|
+
};
|
|
360
|
+
|
|
361
|
+
struct JSCodeGenerator : public JSTreeContext
|
|
362
|
+
{
|
|
363
|
+
JSArenaPool *codePool; /* pointer to thread code arena pool */
|
|
364
|
+
JSArenaPool *notePool; /* pointer to thread srcnote arena pool */
|
|
365
|
+
void *codeMark; /* low watermark in cg->codePool */
|
|
366
|
+
void *noteMark; /* low watermark in cg->notePool */
|
|
367
|
+
|
|
368
|
+
struct {
|
|
369
|
+
jsbytecode *base; /* base of JS bytecode vector */
|
|
370
|
+
jsbytecode *limit; /* one byte beyond end of bytecode */
|
|
371
|
+
jsbytecode *next; /* pointer to next free bytecode */
|
|
372
|
+
jssrcnote *notes; /* source notes, see below */
|
|
373
|
+
uintN noteCount; /* number of source notes so far */
|
|
374
|
+
uintN noteMask; /* growth increment for notes */
|
|
375
|
+
ptrdiff_t lastNoteOffset; /* code offset for last source note */
|
|
376
|
+
uintN currentLine; /* line number for tree-based srcnote gen */
|
|
377
|
+
} prolog, main, *current;
|
|
378
|
+
|
|
379
|
+
JSAtomList atomList; /* literals indexed for mapping */
|
|
380
|
+
uintN firstLine; /* first line, for js_NewScriptFromCG */
|
|
381
|
+
|
|
382
|
+
intN stackDepth; /* current stack depth in script frame */
|
|
383
|
+
uintN maxStackDepth; /* maximum stack depth so far */
|
|
384
|
+
|
|
385
|
+
uintN ntrynotes; /* number of allocated so far try notes */
|
|
386
|
+
JSTryNode *lastTryNode; /* the last allocated try node */
|
|
387
|
+
|
|
388
|
+
JSSpanDep *spanDeps; /* span dependent instruction records */
|
|
389
|
+
JSJumpTarget *jumpTargets; /* AVL tree of jump target offsets */
|
|
390
|
+
JSJumpTarget *jtFreeList; /* JT_LEFT-linked list of free structs */
|
|
391
|
+
uintN numSpanDeps; /* number of span dependencies */
|
|
392
|
+
uintN numJumpTargets; /* number of jump targets */
|
|
393
|
+
ptrdiff_t spanDepTodo; /* offset from main.base of potentially
|
|
394
|
+
unoptimized spandeps */
|
|
395
|
+
|
|
396
|
+
uintN arrayCompDepth; /* stack depth of array in comprehension */
|
|
397
|
+
|
|
398
|
+
uintN emitLevel; /* js_EmitTree recursion level */
|
|
399
|
+
JSAtomList constList; /* compile time constants */
|
|
400
|
+
|
|
401
|
+
JSCGObjectList objectList; /* list of emitted objects */
|
|
402
|
+
JSCGObjectList regexpList; /* list of emitted regexp that will be
|
|
403
|
+
cloned during execution */
|
|
404
|
+
|
|
405
|
+
JSAtomList upvarList; /* map of atoms to upvar indexes */
|
|
406
|
+
JSUpvarArray upvarMap; /* indexed upvar pairs (JS_realloc'ed) */
|
|
407
|
+
|
|
408
|
+
/*
|
|
409
|
+
* Initialize cg to allocate bytecode space from codePool, source note
|
|
410
|
+
* space from notePool, and all other arena-allocated temporaries from
|
|
411
|
+
* jsc->context->tempPool.
|
|
412
|
+
*/
|
|
413
|
+
JSCodeGenerator(JSCompiler *jsc,
|
|
414
|
+
JSArenaPool *codePool, JSArenaPool *notePool,
|
|
415
|
+
uintN lineno);
|
|
416
|
+
|
|
417
|
+
/*
|
|
418
|
+
* Release cg->codePool, cg->notePool, and compiler->context->tempPool to
|
|
419
|
+
* marks set by JSCodeGenerator's ctor. Note that cgs are magic: they own
|
|
420
|
+
* the arena pool "tops-of-stack" space above their codeMark, noteMark, and
|
|
421
|
+
* tempMark points. This means you cannot alloc from tempPool and save the
|
|
422
|
+
* pointer beyond the next JSCodeGenerator destructor call.
|
|
423
|
+
*/
|
|
424
|
+
~JSCodeGenerator();
|
|
425
|
+
};
|
|
426
|
+
|
|
427
|
+
#define CG_TS(cg) TS((cg)->compiler)
|
|
428
|
+
|
|
429
|
+
#define CG_BASE(cg) ((cg)->current->base)
|
|
430
|
+
#define CG_LIMIT(cg) ((cg)->current->limit)
|
|
431
|
+
#define CG_NEXT(cg) ((cg)->current->next)
|
|
432
|
+
#define CG_CODE(cg,offset) (CG_BASE(cg) + (offset))
|
|
433
|
+
#define CG_OFFSET(cg) PTRDIFF(CG_NEXT(cg), CG_BASE(cg), jsbytecode)
|
|
434
|
+
|
|
435
|
+
#define CG_NOTES(cg) ((cg)->current->notes)
|
|
436
|
+
#define CG_NOTE_COUNT(cg) ((cg)->current->noteCount)
|
|
437
|
+
#define CG_NOTE_MASK(cg) ((cg)->current->noteMask)
|
|
438
|
+
#define CG_LAST_NOTE_OFFSET(cg) ((cg)->current->lastNoteOffset)
|
|
439
|
+
#define CG_CURRENT_LINE(cg) ((cg)->current->currentLine)
|
|
440
|
+
|
|
441
|
+
#define CG_PROLOG_BASE(cg) ((cg)->prolog.base)
|
|
442
|
+
#define CG_PROLOG_LIMIT(cg) ((cg)->prolog.limit)
|
|
443
|
+
#define CG_PROLOG_NEXT(cg) ((cg)->prolog.next)
|
|
444
|
+
#define CG_PROLOG_CODE(cg,poff) (CG_PROLOG_BASE(cg) + (poff))
|
|
445
|
+
#define CG_PROLOG_OFFSET(cg) PTRDIFF(CG_PROLOG_NEXT(cg), CG_PROLOG_BASE(cg),\
|
|
446
|
+
jsbytecode)
|
|
447
|
+
|
|
448
|
+
#define CG_SWITCH_TO_MAIN(cg) ((cg)->current = &(cg)->main)
|
|
449
|
+
#define CG_SWITCH_TO_PROLOG(cg) ((cg)->current = &(cg)->prolog)
|
|
450
|
+
|
|
451
|
+
/*
|
|
452
|
+
* Emit one bytecode.
|
|
453
|
+
*/
|
|
454
|
+
extern ptrdiff_t
|
|
455
|
+
js_Emit1(JSContext *cx, JSCodeGenerator *cg, JSOp op);
|
|
456
|
+
|
|
457
|
+
/*
|
|
458
|
+
* Emit two bytecodes, an opcode (op) with a byte of immediate operand (op1).
|
|
459
|
+
*/
|
|
460
|
+
extern ptrdiff_t
|
|
461
|
+
js_Emit2(JSContext *cx, JSCodeGenerator *cg, JSOp op, jsbytecode op1);
|
|
462
|
+
|
|
463
|
+
/*
|
|
464
|
+
* Emit three bytecodes, an opcode with two bytes of immediate operands.
|
|
465
|
+
*/
|
|
466
|
+
extern ptrdiff_t
|
|
467
|
+
js_Emit3(JSContext *cx, JSCodeGenerator *cg, JSOp op, jsbytecode op1,
|
|
468
|
+
jsbytecode op2);
|
|
469
|
+
|
|
470
|
+
/*
|
|
471
|
+
* Emit (1 + extra) bytecodes, for N bytes of op and its immediate operand.
|
|
472
|
+
*/
|
|
473
|
+
extern ptrdiff_t
|
|
474
|
+
js_EmitN(JSContext *cx, JSCodeGenerator *cg, JSOp op, size_t extra);
|
|
475
|
+
|
|
476
|
+
/*
|
|
477
|
+
* Unsafe macro to call js_SetJumpOffset and return false if it does.
|
|
478
|
+
*/
|
|
479
|
+
#define CHECK_AND_SET_JUMP_OFFSET_CUSTOM(cx,cg,pc,off,BAD_EXIT) \
|
|
480
|
+
JS_BEGIN_MACRO \
|
|
481
|
+
if (!js_SetJumpOffset(cx, cg, pc, off)) { \
|
|
482
|
+
BAD_EXIT; \
|
|
483
|
+
} \
|
|
484
|
+
JS_END_MACRO
|
|
485
|
+
|
|
486
|
+
#define CHECK_AND_SET_JUMP_OFFSET(cx,cg,pc,off) \
|
|
487
|
+
CHECK_AND_SET_JUMP_OFFSET_CUSTOM(cx,cg,pc,off,return JS_FALSE)
|
|
488
|
+
|
|
489
|
+
#define CHECK_AND_SET_JUMP_OFFSET_AT_CUSTOM(cx,cg,off,BAD_EXIT) \
|
|
490
|
+
CHECK_AND_SET_JUMP_OFFSET_CUSTOM(cx, cg, CG_CODE(cg,off), \
|
|
491
|
+
CG_OFFSET(cg) - (off), BAD_EXIT)
|
|
492
|
+
|
|
493
|
+
#define CHECK_AND_SET_JUMP_OFFSET_AT(cx,cg,off) \
|
|
494
|
+
CHECK_AND_SET_JUMP_OFFSET_AT_CUSTOM(cx, cg, off, return JS_FALSE)
|
|
495
|
+
|
|
496
|
+
extern JSBool
|
|
497
|
+
js_SetJumpOffset(JSContext *cx, JSCodeGenerator *cg, jsbytecode *pc,
|
|
498
|
+
ptrdiff_t off);
|
|
499
|
+
|
|
500
|
+
/*
|
|
501
|
+
* Push the C-stack-allocated struct at stmt onto the stmtInfo stack.
|
|
502
|
+
*/
|
|
503
|
+
extern void
|
|
504
|
+
js_PushStatement(JSTreeContext *tc, JSStmtInfo *stmt, JSStmtType type,
|
|
505
|
+
ptrdiff_t top);
|
|
506
|
+
|
|
507
|
+
/*
|
|
508
|
+
* Push a block scope statement and link blockObj into tc->blockChain. To pop
|
|
509
|
+
* this statement info record, use js_PopStatement as usual, or if appropriate
|
|
510
|
+
* (if generating code), js_PopStatementCG.
|
|
511
|
+
*/
|
|
512
|
+
extern void
|
|
513
|
+
js_PushBlockScope(JSTreeContext *tc, JSStmtInfo *stmt, JSObject *blockObj,
|
|
514
|
+
ptrdiff_t top);
|
|
515
|
+
|
|
516
|
+
/*
|
|
517
|
+
* Pop tc->topStmt. If the top JSStmtInfo struct is not stack-allocated, it
|
|
518
|
+
* is up to the caller to free it.
|
|
519
|
+
*/
|
|
520
|
+
extern void
|
|
521
|
+
js_PopStatement(JSTreeContext *tc);
|
|
522
|
+
|
|
523
|
+
/*
|
|
524
|
+
* Like js_PopStatement(cg), also patch breaks and continues unless the top
|
|
525
|
+
* statement info record represents a try-catch-finally suite. May fail if a
|
|
526
|
+
* jump offset overflows.
|
|
527
|
+
*/
|
|
528
|
+
extern JSBool
|
|
529
|
+
js_PopStatementCG(JSContext *cx, JSCodeGenerator *cg);
|
|
530
|
+
|
|
531
|
+
/*
|
|
532
|
+
* Define and lookup a primitive jsval associated with the const named by atom.
|
|
533
|
+
* js_DefineCompileTimeConstant analyzes the constant-folded initializer at pn
|
|
534
|
+
* and saves the const's value in cg->constList, if it can be used at compile
|
|
535
|
+
* time. It returns true unless an error occurred.
|
|
536
|
+
*
|
|
537
|
+
* If the initializer's value could not be saved, js_DefineCompileTimeConstant
|
|
538
|
+
* calls will return the undefined value. js_DefineCompileTimeConstant tries
|
|
539
|
+
* to find a const value memorized for atom, returning true with *vp set to a
|
|
540
|
+
* value other than undefined if the constant was found, true with *vp set to
|
|
541
|
+
* JSVAL_VOID if not found, and false on error.
|
|
542
|
+
*/
|
|
543
|
+
extern JSBool
|
|
544
|
+
js_DefineCompileTimeConstant(JSContext *cx, JSCodeGenerator *cg, JSAtom *atom,
|
|
545
|
+
JSParseNode *pn);
|
|
546
|
+
|
|
547
|
+
/*
|
|
548
|
+
* Find a lexically scoped variable (one declared by let, catch, or an array
|
|
549
|
+
* comprehension) named by atom, looking in tc's compile-time scopes.
|
|
550
|
+
*
|
|
551
|
+
* If a WITH statement is reached along the scope stack, return its statement
|
|
552
|
+
* info record, so callers can tell that atom is ambiguous. If slotp is not
|
|
553
|
+
* null, then if atom is found, set *slotp to its stack slot, otherwise to -1.
|
|
554
|
+
* This means that if slotp is not null, all the block objects on the lexical
|
|
555
|
+
* scope chain must have had their depth slots computed by the code generator,
|
|
556
|
+
* so the caller must be under js_EmitTree.
|
|
557
|
+
*
|
|
558
|
+
* In any event, directly return the statement info record in which atom was
|
|
559
|
+
* found. Otherwise return null.
|
|
560
|
+
*/
|
|
561
|
+
extern JSStmtInfo *
|
|
562
|
+
js_LexicalLookup(JSTreeContext *tc, JSAtom *atom, jsint *slotp,
|
|
563
|
+
JSStmtInfo *stmt = NULL);
|
|
564
|
+
|
|
565
|
+
/*
|
|
566
|
+
* Emit code into cg for the tree rooted at pn.
|
|
567
|
+
*/
|
|
568
|
+
extern JSBool
|
|
569
|
+
js_EmitTree(JSContext *cx, JSCodeGenerator *cg, JSParseNode *pn);
|
|
570
|
+
|
|
571
|
+
/*
|
|
572
|
+
* Emit function code using cg for the tree rooted at body.
|
|
573
|
+
*/
|
|
574
|
+
extern JSBool
|
|
575
|
+
js_EmitFunctionScript(JSContext *cx, JSCodeGenerator *cg, JSParseNode *body);
|
|
576
|
+
|
|
577
|
+
/*
|
|
578
|
+
* Source notes generated along with bytecode for decompiling and debugging.
|
|
579
|
+
* A source note is a uint8 with 5 bits of type and 3 of offset from the pc of
|
|
580
|
+
* the previous note. If 3 bits of offset aren't enough, extended delta notes
|
|
581
|
+
* (SRC_XDELTA) consisting of 2 set high order bits followed by 6 offset bits
|
|
582
|
+
* are emitted before the next note. Some notes have operand offsets encoded
|
|
583
|
+
* immediately after them, in note bytes or byte-triples.
|
|
584
|
+
*
|
|
585
|
+
* Source Note Extended Delta
|
|
586
|
+
* +7-6-5-4-3+2-1-0+ +7-6-5+4-3-2-1-0+
|
|
587
|
+
* |note-type|delta| |1 1| ext-delta |
|
|
588
|
+
* +---------+-----+ +---+-----------+
|
|
589
|
+
*
|
|
590
|
+
* At most one "gettable" note (i.e., a note of type other than SRC_NEWLINE,
|
|
591
|
+
* SRC_SETLINE, and SRC_XDELTA) applies to a given bytecode.
|
|
592
|
+
*
|
|
593
|
+
* NB: the js_SrcNoteSpec array in jsemit.c is indexed by this enum, so its
|
|
594
|
+
* initializers need to match the order here.
|
|
595
|
+
*
|
|
596
|
+
* Note on adding new source notes: every pair of bytecodes (A, B) where A and
|
|
597
|
+
* B have disjoint sets of source notes that could apply to each bytecode may
|
|
598
|
+
* reuse the same note type value for two notes (snA, snB) that have the same
|
|
599
|
+
* arity, offsetBias, and isSpanDep initializers in js_SrcNoteSpec. This is
|
|
600
|
+
* why SRC_IF and SRC_INITPROP have the same value below. For bad historical
|
|
601
|
+
* reasons, some bytecodes below that could be overlayed have not been, but
|
|
602
|
+
* before using SRC_EXTENDED, consider compressing the existing note types.
|
|
603
|
+
*
|
|
604
|
+
* Don't forget to update JSXDR_BYTECODE_VERSION in jsxdrapi.h for all such
|
|
605
|
+
* incompatible source note or other bytecode changes.
|
|
606
|
+
*/
|
|
607
|
+
typedef enum JSSrcNoteType {
|
|
608
|
+
SRC_NULL = 0, /* terminates a note vector */
|
|
609
|
+
SRC_IF = 1, /* JSOP_IFEQ bytecode is from an if-then */
|
|
610
|
+
SRC_BREAK = 1, /* JSOP_GOTO is a break */
|
|
611
|
+
SRC_INITPROP = 1, /* disjoint meaning applied to JSOP_INITELEM or
|
|
612
|
+
to an index label in a regular (structuring)
|
|
613
|
+
or a destructuring object initialiser */
|
|
614
|
+
SRC_GENEXP = 1, /* JSOP_LAMBDA from generator expression */
|
|
615
|
+
SRC_IF_ELSE = 2, /* JSOP_IFEQ bytecode is from an if-then-else */
|
|
616
|
+
SRC_FOR_IN = 2, /* JSOP_GOTO to for-in loop condition from
|
|
617
|
+
before loop (same arity as SRC_IF_ELSE) */
|
|
618
|
+
SRC_FOR = 3, /* JSOP_NOP or JSOP_POP in for(;;) loop head */
|
|
619
|
+
SRC_WHILE = 4, /* JSOP_GOTO to for or while loop condition
|
|
620
|
+
from before loop, else JSOP_NOP at top of
|
|
621
|
+
do-while loop */
|
|
622
|
+
SRC_CONTINUE = 5, /* JSOP_GOTO is a continue, not a break;
|
|
623
|
+
also used on JSOP_ENDINIT if extra comma
|
|
624
|
+
at end of array literal: [1,2,,];
|
|
625
|
+
JSOP_DUP continuing destructuring pattern */
|
|
626
|
+
SRC_DECL = 6, /* type of a declaration (var, const, let*) */
|
|
627
|
+
SRC_DESTRUCT = 6, /* JSOP_DUP starting a destructuring assignment
|
|
628
|
+
operation, with SRC_DECL_* offset operand */
|
|
629
|
+
SRC_PCDELTA = 7, /* distance forward from comma-operator to
|
|
630
|
+
next POP, or from CONDSWITCH to first CASE
|
|
631
|
+
opcode, etc. -- always a forward delta */
|
|
632
|
+
SRC_GROUPASSIGN = 7, /* SRC_DESTRUCT variant for [a, b] = [c, d] */
|
|
633
|
+
SRC_ASSIGNOP = 8, /* += or another assign-op follows */
|
|
634
|
+
SRC_COND = 9, /* JSOP_IFEQ is from conditional ?: operator */
|
|
635
|
+
SRC_BRACE = 10, /* mandatory brace, for scope or to avoid
|
|
636
|
+
dangling else */
|
|
637
|
+
SRC_HIDDEN = 11, /* opcode shouldn't be decompiled */
|
|
638
|
+
SRC_PCBASE = 12, /* distance back from annotated getprop or
|
|
639
|
+
setprop op to left-most obj.prop.subprop
|
|
640
|
+
bytecode -- always a backward delta */
|
|
641
|
+
SRC_LABEL = 13, /* JSOP_NOP for label: with atomid immediate */
|
|
642
|
+
SRC_LABELBRACE = 14, /* JSOP_NOP for label: {...} begin brace */
|
|
643
|
+
SRC_ENDBRACE = 15, /* JSOP_NOP for label: {...} end brace */
|
|
644
|
+
SRC_BREAK2LABEL = 16, /* JSOP_GOTO for 'break label' with atomid */
|
|
645
|
+
SRC_CONT2LABEL = 17, /* JSOP_GOTO for 'continue label' with atomid */
|
|
646
|
+
SRC_SWITCH = 18, /* JSOP_*SWITCH with offset to end of switch,
|
|
647
|
+
2nd off to first JSOP_CASE if condswitch */
|
|
648
|
+
SRC_FUNCDEF = 19, /* JSOP_NOP for function f() with atomid */
|
|
649
|
+
SRC_CATCH = 20, /* catch block has guard */
|
|
650
|
+
SRC_EXTENDED = 21, /* extended source note, 32-159, in next byte */
|
|
651
|
+
SRC_NEWLINE = 22, /* bytecode follows a source newline */
|
|
652
|
+
SRC_SETLINE = 23, /* a file-absolute source line number note */
|
|
653
|
+
SRC_XDELTA = 24 /* 24-31 are for extended delta notes */
|
|
654
|
+
} JSSrcNoteType;
|
|
655
|
+
|
|
656
|
+
/*
|
|
657
|
+
* Constants for the SRC_DECL source note. Note that span-dependent bytecode
|
|
658
|
+
* selection means that any SRC_DECL offset greater than SRC_DECL_LET may need
|
|
659
|
+
* to be adjusted, but these "offsets" are too small to span a span-dependent
|
|
660
|
+
* instruction, so can be used to denote distinct declaration syntaxes to the
|
|
661
|
+
* decompiler.
|
|
662
|
+
*
|
|
663
|
+
* NB: the var_prefix array in jsopcode.c depends on these dense indexes from
|
|
664
|
+
* SRC_DECL_VAR through SRC_DECL_LET.
|
|
665
|
+
*/
|
|
666
|
+
#define SRC_DECL_VAR 0
|
|
667
|
+
#define SRC_DECL_CONST 1
|
|
668
|
+
#define SRC_DECL_LET 2
|
|
669
|
+
#define SRC_DECL_NONE 3
|
|
670
|
+
|
|
671
|
+
#define SN_TYPE_BITS 5
|
|
672
|
+
#define SN_DELTA_BITS 3
|
|
673
|
+
#define SN_XDELTA_BITS 6
|
|
674
|
+
#define SN_TYPE_MASK (JS_BITMASK(SN_TYPE_BITS) << SN_DELTA_BITS)
|
|
675
|
+
#define SN_DELTA_MASK ((ptrdiff_t)JS_BITMASK(SN_DELTA_BITS))
|
|
676
|
+
#define SN_XDELTA_MASK ((ptrdiff_t)JS_BITMASK(SN_XDELTA_BITS))
|
|
677
|
+
|
|
678
|
+
#define SN_MAKE_NOTE(sn,t,d) (*(sn) = (jssrcnote) \
|
|
679
|
+
(((t) << SN_DELTA_BITS) \
|
|
680
|
+
| ((d) & SN_DELTA_MASK)))
|
|
681
|
+
#define SN_MAKE_XDELTA(sn,d) (*(sn) = (jssrcnote) \
|
|
682
|
+
((SRC_XDELTA << SN_DELTA_BITS) \
|
|
683
|
+
| ((d) & SN_XDELTA_MASK)))
|
|
684
|
+
|
|
685
|
+
#define SN_IS_XDELTA(sn) ((*(sn) >> SN_DELTA_BITS) >= SRC_XDELTA)
|
|
686
|
+
#define SN_TYPE(sn) ((JSSrcNoteType)(SN_IS_XDELTA(sn) \
|
|
687
|
+
? SRC_XDELTA \
|
|
688
|
+
: *(sn) >> SN_DELTA_BITS))
|
|
689
|
+
#define SN_SET_TYPE(sn,type) SN_MAKE_NOTE(sn, type, SN_DELTA(sn))
|
|
690
|
+
#define SN_IS_GETTABLE(sn) (SN_TYPE(sn) < SRC_NEWLINE)
|
|
691
|
+
|
|
692
|
+
#define SN_DELTA(sn) ((ptrdiff_t)(SN_IS_XDELTA(sn) \
|
|
693
|
+
? *(sn) & SN_XDELTA_MASK \
|
|
694
|
+
: *(sn) & SN_DELTA_MASK))
|
|
695
|
+
#define SN_SET_DELTA(sn,delta) (SN_IS_XDELTA(sn) \
|
|
696
|
+
? SN_MAKE_XDELTA(sn, delta) \
|
|
697
|
+
: SN_MAKE_NOTE(sn, SN_TYPE(sn), delta))
|
|
698
|
+
|
|
699
|
+
#define SN_DELTA_LIMIT ((ptrdiff_t)JS_BIT(SN_DELTA_BITS))
|
|
700
|
+
#define SN_XDELTA_LIMIT ((ptrdiff_t)JS_BIT(SN_XDELTA_BITS))
|
|
701
|
+
|
|
702
|
+
/*
|
|
703
|
+
* Offset fields follow certain notes and are frequency-encoded: an offset in
|
|
704
|
+
* [0,0x7f] consumes one byte, an offset in [0x80,0x7fffff] takes three, and
|
|
705
|
+
* the high bit of the first byte is set.
|
|
706
|
+
*/
|
|
707
|
+
#define SN_3BYTE_OFFSET_FLAG 0x80
|
|
708
|
+
#define SN_3BYTE_OFFSET_MASK 0x7f
|
|
709
|
+
|
|
710
|
+
typedef struct JSSrcNoteSpec {
|
|
711
|
+
const char *name; /* name for disassembly/debugging output */
|
|
712
|
+
int8 arity; /* number of offset operands */
|
|
713
|
+
uint8 offsetBias; /* bias of offset(s) from annotated pc */
|
|
714
|
+
int8 isSpanDep; /* 1 or -1 if offsets could span extended ops,
|
|
715
|
+
0 otherwise; sign tells span direction */
|
|
716
|
+
} JSSrcNoteSpec;
|
|
717
|
+
|
|
718
|
+
extern JS_FRIEND_DATA(JSSrcNoteSpec) js_SrcNoteSpec[];
|
|
719
|
+
extern JS_FRIEND_API(uintN) js_SrcNoteLength(jssrcnote *sn);
|
|
720
|
+
|
|
721
|
+
#define SN_LENGTH(sn) ((js_SrcNoteSpec[SN_TYPE(sn)].arity == 0) ? 1 \
|
|
722
|
+
: js_SrcNoteLength(sn))
|
|
723
|
+
#define SN_NEXT(sn) ((sn) + SN_LENGTH(sn))
|
|
724
|
+
|
|
725
|
+
/* A source note array is terminated by an all-zero element. */
|
|
726
|
+
#define SN_MAKE_TERMINATOR(sn) (*(sn) = SRC_NULL)
|
|
727
|
+
#define SN_IS_TERMINATOR(sn) (*(sn) == SRC_NULL)
|
|
728
|
+
|
|
729
|
+
/*
|
|
730
|
+
* Append a new source note of the given type (and therefore size) to cg's
|
|
731
|
+
* notes dynamic array, updating cg->noteCount. Return the new note's index
|
|
732
|
+
* within the array pointed at by cg->current->notes. Return -1 if out of
|
|
733
|
+
* memory.
|
|
734
|
+
*/
|
|
735
|
+
extern intN
|
|
736
|
+
js_NewSrcNote(JSContext *cx, JSCodeGenerator *cg, JSSrcNoteType type);
|
|
737
|
+
|
|
738
|
+
extern intN
|
|
739
|
+
js_NewSrcNote2(JSContext *cx, JSCodeGenerator *cg, JSSrcNoteType type,
|
|
740
|
+
ptrdiff_t offset);
|
|
741
|
+
|
|
742
|
+
extern intN
|
|
743
|
+
js_NewSrcNote3(JSContext *cx, JSCodeGenerator *cg, JSSrcNoteType type,
|
|
744
|
+
ptrdiff_t offset1, ptrdiff_t offset2);
|
|
745
|
+
|
|
746
|
+
/*
|
|
747
|
+
* NB: this function can add at most one extra extended delta note.
|
|
748
|
+
*/
|
|
749
|
+
extern jssrcnote *
|
|
750
|
+
js_AddToSrcNoteDelta(JSContext *cx, JSCodeGenerator *cg, jssrcnote *sn,
|
|
751
|
+
ptrdiff_t delta);
|
|
752
|
+
|
|
753
|
+
/*
|
|
754
|
+
* Get and set the offset operand identified by which (0 for the first, etc.).
|
|
755
|
+
*/
|
|
756
|
+
extern JS_FRIEND_API(ptrdiff_t)
|
|
757
|
+
js_GetSrcNoteOffset(jssrcnote *sn, uintN which);
|
|
758
|
+
|
|
759
|
+
extern JSBool
|
|
760
|
+
js_SetSrcNoteOffset(JSContext *cx, JSCodeGenerator *cg, uintN index,
|
|
761
|
+
uintN which, ptrdiff_t offset);
|
|
762
|
+
|
|
763
|
+
/*
|
|
764
|
+
* Finish taking source notes in cx's notePool, copying final notes to the new
|
|
765
|
+
* stable store allocated by the caller and passed in via notes. Return false
|
|
766
|
+
* on malloc failure, which means this function reported an error.
|
|
767
|
+
*
|
|
768
|
+
* To compute the number of jssrcnotes to allocate and pass in via notes, use
|
|
769
|
+
* the CG_COUNT_FINAL_SRCNOTES macro. This macro knows a lot about details of
|
|
770
|
+
* js_FinishTakingSrcNotes, SO DON'T CHANGE jsemit.c's js_FinishTakingSrcNotes
|
|
771
|
+
* FUNCTION WITHOUT CHECKING WHETHER THIS MACRO NEEDS CORRESPONDING CHANGES!
|
|
772
|
+
*/
|
|
773
|
+
#define CG_COUNT_FINAL_SRCNOTES(cg, cnt) \
|
|
774
|
+
JS_BEGIN_MACRO \
|
|
775
|
+
ptrdiff_t diff_ = CG_PROLOG_OFFSET(cg) - (cg)->prolog.lastNoteOffset; \
|
|
776
|
+
cnt = (cg)->prolog.noteCount + (cg)->main.noteCount + 1; \
|
|
777
|
+
if ((cg)->prolog.noteCount && \
|
|
778
|
+
(cg)->prolog.currentLine != (cg)->firstLine) { \
|
|
779
|
+
if (diff_ > SN_DELTA_MASK) \
|
|
780
|
+
cnt += JS_HOWMANY(diff_ - SN_DELTA_MASK, SN_XDELTA_MASK); \
|
|
781
|
+
cnt += 2 + (((cg)->firstLine > SN_3BYTE_OFFSET_MASK) << 1); \
|
|
782
|
+
} else if (diff_ > 0) { \
|
|
783
|
+
if (cg->main.noteCount) { \
|
|
784
|
+
jssrcnote *sn_ = (cg)->main.notes; \
|
|
785
|
+
diff_ -= SN_IS_XDELTA(sn_) \
|
|
786
|
+
? SN_XDELTA_MASK - (*sn_ & SN_XDELTA_MASK) \
|
|
787
|
+
: SN_DELTA_MASK - (*sn_ & SN_DELTA_MASK); \
|
|
788
|
+
} \
|
|
789
|
+
if (diff_ > 0) \
|
|
790
|
+
cnt += JS_HOWMANY(diff_, SN_XDELTA_MASK); \
|
|
791
|
+
} \
|
|
792
|
+
JS_END_MACRO
|
|
793
|
+
|
|
794
|
+
extern JSBool
|
|
795
|
+
js_FinishTakingSrcNotes(JSContext *cx, JSCodeGenerator *cg, jssrcnote *notes);
|
|
796
|
+
|
|
797
|
+
extern void
|
|
798
|
+
js_FinishTakingTryNotes(JSCodeGenerator *cg, JSTryNoteArray *array);
|
|
799
|
+
|
|
800
|
+
JS_END_EXTERN_C
|
|
801
|
+
|
|
802
|
+
#endif /* jsemit_h___ */
|