libv8-sgonyea 3.3.10
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +8 -0
- data/.gitmodules +3 -0
- data/Gemfile +4 -0
- data/README.md +76 -0
- data/Rakefile +113 -0
- data/ext/libv8/extconf.rb +28 -0
- data/lib/libv8.rb +15 -0
- data/lib/libv8/Makefile +30 -0
- data/lib/libv8/detect_cpu.rb +27 -0
- data/lib/libv8/fpic-on-linux-amd64.patch +13 -0
- data/lib/libv8/v8/.gitignore +35 -0
- data/lib/libv8/v8/AUTHORS +44 -0
- data/lib/libv8/v8/ChangeLog +2839 -0
- data/lib/libv8/v8/LICENSE +52 -0
- data/lib/libv8/v8/LICENSE.strongtalk +29 -0
- data/lib/libv8/v8/LICENSE.v8 +26 -0
- data/lib/libv8/v8/LICENSE.valgrind +45 -0
- data/lib/libv8/v8/SConstruct +1478 -0
- data/lib/libv8/v8/build/README.txt +49 -0
- data/lib/libv8/v8/build/all.gyp +18 -0
- data/lib/libv8/v8/build/armu.gypi +32 -0
- data/lib/libv8/v8/build/common.gypi +144 -0
- data/lib/libv8/v8/build/gyp_v8 +145 -0
- data/lib/libv8/v8/include/v8-debug.h +395 -0
- data/lib/libv8/v8/include/v8-preparser.h +117 -0
- data/lib/libv8/v8/include/v8-profiler.h +505 -0
- data/lib/libv8/v8/include/v8-testing.h +104 -0
- data/lib/libv8/v8/include/v8.h +4124 -0
- data/lib/libv8/v8/include/v8stdint.h +53 -0
- data/lib/libv8/v8/preparser/SConscript +38 -0
- data/lib/libv8/v8/preparser/preparser-process.cc +379 -0
- data/lib/libv8/v8/src/SConscript +368 -0
- data/lib/libv8/v8/src/accessors.cc +767 -0
- data/lib/libv8/v8/src/accessors.h +123 -0
- data/lib/libv8/v8/src/allocation-inl.h +49 -0
- data/lib/libv8/v8/src/allocation.cc +122 -0
- data/lib/libv8/v8/src/allocation.h +143 -0
- data/lib/libv8/v8/src/api.cc +5845 -0
- data/lib/libv8/v8/src/api.h +574 -0
- data/lib/libv8/v8/src/apinatives.js +110 -0
- data/lib/libv8/v8/src/apiutils.h +73 -0
- data/lib/libv8/v8/src/arguments.h +118 -0
- data/lib/libv8/v8/src/arm/assembler-arm-inl.h +353 -0
- data/lib/libv8/v8/src/arm/assembler-arm.cc +2661 -0
- data/lib/libv8/v8/src/arm/assembler-arm.h +1375 -0
- data/lib/libv8/v8/src/arm/builtins-arm.cc +1658 -0
- data/lib/libv8/v8/src/arm/code-stubs-arm.cc +6398 -0
- data/lib/libv8/v8/src/arm/code-stubs-arm.h +673 -0
- data/lib/libv8/v8/src/arm/codegen-arm.cc +52 -0
- data/lib/libv8/v8/src/arm/codegen-arm.h +91 -0
- data/lib/libv8/v8/src/arm/constants-arm.cc +152 -0
- data/lib/libv8/v8/src/arm/constants-arm.h +775 -0
- data/lib/libv8/v8/src/arm/cpu-arm.cc +120 -0
- data/lib/libv8/v8/src/arm/debug-arm.cc +317 -0
- data/lib/libv8/v8/src/arm/deoptimizer-arm.cc +754 -0
- data/lib/libv8/v8/src/arm/disasm-arm.cc +1506 -0
- data/lib/libv8/v8/src/arm/frames-arm.cc +45 -0
- data/lib/libv8/v8/src/arm/frames-arm.h +168 -0
- data/lib/libv8/v8/src/arm/full-codegen-arm.cc +4375 -0
- data/lib/libv8/v8/src/arm/ic-arm.cc +1562 -0
- data/lib/libv8/v8/src/arm/lithium-arm.cc +2206 -0
- data/lib/libv8/v8/src/arm/lithium-arm.h +2348 -0
- data/lib/libv8/v8/src/arm/lithium-codegen-arm.cc +4526 -0
- data/lib/libv8/v8/src/arm/lithium-codegen-arm.h +403 -0
- data/lib/libv8/v8/src/arm/lithium-gap-resolver-arm.cc +305 -0
- data/lib/libv8/v8/src/arm/lithium-gap-resolver-arm.h +84 -0
- data/lib/libv8/v8/src/arm/macro-assembler-arm.cc +3163 -0
- data/lib/libv8/v8/src/arm/macro-assembler-arm.h +1126 -0
- data/lib/libv8/v8/src/arm/regexp-macro-assembler-arm.cc +1287 -0
- data/lib/libv8/v8/src/arm/regexp-macro-assembler-arm.h +253 -0
- data/lib/libv8/v8/src/arm/simulator-arm.cc +3424 -0
- data/lib/libv8/v8/src/arm/simulator-arm.h +431 -0
- data/lib/libv8/v8/src/arm/stub-cache-arm.cc +4243 -0
- data/lib/libv8/v8/src/array.js +1366 -0
- data/lib/libv8/v8/src/assembler.cc +1207 -0
- data/lib/libv8/v8/src/assembler.h +858 -0
- data/lib/libv8/v8/src/ast-inl.h +112 -0
- data/lib/libv8/v8/src/ast.cc +1146 -0
- data/lib/libv8/v8/src/ast.h +2188 -0
- data/lib/libv8/v8/src/atomicops.h +167 -0
- data/lib/libv8/v8/src/atomicops_internals_arm_gcc.h +145 -0
- data/lib/libv8/v8/src/atomicops_internals_mips_gcc.h +169 -0
- data/lib/libv8/v8/src/atomicops_internals_x86_gcc.cc +133 -0
- data/lib/libv8/v8/src/atomicops_internals_x86_gcc.h +287 -0
- data/lib/libv8/v8/src/atomicops_internals_x86_macosx.h +301 -0
- data/lib/libv8/v8/src/atomicops_internals_x86_msvc.h +203 -0
- data/lib/libv8/v8/src/bignum-dtoa.cc +655 -0
- data/lib/libv8/v8/src/bignum-dtoa.h +81 -0
- data/lib/libv8/v8/src/bignum.cc +768 -0
- data/lib/libv8/v8/src/bignum.h +140 -0
- data/lib/libv8/v8/src/bootstrapper.cc +2184 -0
- data/lib/libv8/v8/src/bootstrapper.h +188 -0
- data/lib/libv8/v8/src/builtins.cc +1707 -0
- data/lib/libv8/v8/src/builtins.h +371 -0
- data/lib/libv8/v8/src/bytecodes-irregexp.h +105 -0
- data/lib/libv8/v8/src/cached-powers.cc +177 -0
- data/lib/libv8/v8/src/cached-powers.h +65 -0
- data/lib/libv8/v8/src/char-predicates-inl.h +94 -0
- data/lib/libv8/v8/src/char-predicates.h +67 -0
- data/lib/libv8/v8/src/checks.cc +110 -0
- data/lib/libv8/v8/src/checks.h +296 -0
- data/lib/libv8/v8/src/circular-queue-inl.h +53 -0
- data/lib/libv8/v8/src/circular-queue.cc +122 -0
- data/lib/libv8/v8/src/circular-queue.h +103 -0
- data/lib/libv8/v8/src/code-stubs.cc +267 -0
- data/lib/libv8/v8/src/code-stubs.h +1011 -0
- data/lib/libv8/v8/src/code.h +70 -0
- data/lib/libv8/v8/src/codegen.cc +231 -0
- data/lib/libv8/v8/src/codegen.h +84 -0
- data/lib/libv8/v8/src/compilation-cache.cc +540 -0
- data/lib/libv8/v8/src/compilation-cache.h +287 -0
- data/lib/libv8/v8/src/compiler.cc +786 -0
- data/lib/libv8/v8/src/compiler.h +312 -0
- data/lib/libv8/v8/src/contexts.cc +347 -0
- data/lib/libv8/v8/src/contexts.h +391 -0
- data/lib/libv8/v8/src/conversions-inl.h +106 -0
- data/lib/libv8/v8/src/conversions.cc +1131 -0
- data/lib/libv8/v8/src/conversions.h +135 -0
- data/lib/libv8/v8/src/counters.cc +93 -0
- data/lib/libv8/v8/src/counters.h +254 -0
- data/lib/libv8/v8/src/cpu-profiler-inl.h +101 -0
- data/lib/libv8/v8/src/cpu-profiler.cc +609 -0
- data/lib/libv8/v8/src/cpu-profiler.h +302 -0
- data/lib/libv8/v8/src/cpu.h +69 -0
- data/lib/libv8/v8/src/d8-debug.cc +367 -0
- data/lib/libv8/v8/src/d8-debug.h +158 -0
- data/lib/libv8/v8/src/d8-posix.cc +695 -0
- data/lib/libv8/v8/src/d8-readline.cc +130 -0
- data/lib/libv8/v8/src/d8-windows.cc +42 -0
- data/lib/libv8/v8/src/d8.cc +803 -0
- data/lib/libv8/v8/src/d8.gyp +91 -0
- data/lib/libv8/v8/src/d8.h +235 -0
- data/lib/libv8/v8/src/d8.js +2798 -0
- data/lib/libv8/v8/src/data-flow.cc +66 -0
- data/lib/libv8/v8/src/data-flow.h +205 -0
- data/lib/libv8/v8/src/date.js +1103 -0
- data/lib/libv8/v8/src/dateparser-inl.h +127 -0
- data/lib/libv8/v8/src/dateparser.cc +178 -0
- data/lib/libv8/v8/src/dateparser.h +266 -0
- data/lib/libv8/v8/src/debug-agent.cc +447 -0
- data/lib/libv8/v8/src/debug-agent.h +129 -0
- data/lib/libv8/v8/src/debug-debugger.js +2569 -0
- data/lib/libv8/v8/src/debug.cc +3165 -0
- data/lib/libv8/v8/src/debug.h +1057 -0
- data/lib/libv8/v8/src/deoptimizer.cc +1256 -0
- data/lib/libv8/v8/src/deoptimizer.h +602 -0
- data/lib/libv8/v8/src/disasm.h +80 -0
- data/lib/libv8/v8/src/disassembler.cc +343 -0
- data/lib/libv8/v8/src/disassembler.h +58 -0
- data/lib/libv8/v8/src/diy-fp.cc +58 -0
- data/lib/libv8/v8/src/diy-fp.h +117 -0
- data/lib/libv8/v8/src/double.h +238 -0
- data/lib/libv8/v8/src/dtoa.cc +103 -0
- data/lib/libv8/v8/src/dtoa.h +85 -0
- data/lib/libv8/v8/src/execution.cc +849 -0
- data/lib/libv8/v8/src/execution.h +297 -0
- data/lib/libv8/v8/src/extensions/experimental/break-iterator.cc +250 -0
- data/lib/libv8/v8/src/extensions/experimental/break-iterator.h +89 -0
- data/lib/libv8/v8/src/extensions/experimental/collator.cc +218 -0
- data/lib/libv8/v8/src/extensions/experimental/collator.h +69 -0
- data/lib/libv8/v8/src/extensions/experimental/experimental.gyp +94 -0
- data/lib/libv8/v8/src/extensions/experimental/i18n-extension.cc +78 -0
- data/lib/libv8/v8/src/extensions/experimental/i18n-extension.h +54 -0
- data/lib/libv8/v8/src/extensions/experimental/i18n-locale.cc +112 -0
- data/lib/libv8/v8/src/extensions/experimental/i18n-locale.h +60 -0
- data/lib/libv8/v8/src/extensions/experimental/i18n-utils.cc +43 -0
- data/lib/libv8/v8/src/extensions/experimental/i18n-utils.h +49 -0
- data/lib/libv8/v8/src/extensions/experimental/i18n.js +180 -0
- data/lib/libv8/v8/src/extensions/experimental/language-matcher.cc +251 -0
- data/lib/libv8/v8/src/extensions/experimental/language-matcher.h +95 -0
- data/lib/libv8/v8/src/extensions/externalize-string-extension.cc +141 -0
- data/lib/libv8/v8/src/extensions/externalize-string-extension.h +50 -0
- data/lib/libv8/v8/src/extensions/gc-extension.cc +58 -0
- data/lib/libv8/v8/src/extensions/gc-extension.h +49 -0
- data/lib/libv8/v8/src/factory.cc +1222 -0
- data/lib/libv8/v8/src/factory.h +442 -0
- data/lib/libv8/v8/src/fast-dtoa.cc +736 -0
- data/lib/libv8/v8/src/fast-dtoa.h +83 -0
- data/lib/libv8/v8/src/fixed-dtoa.cc +405 -0
- data/lib/libv8/v8/src/fixed-dtoa.h +55 -0
- data/lib/libv8/v8/src/flag-definitions.h +560 -0
- data/lib/libv8/v8/src/flags.cc +551 -0
- data/lib/libv8/v8/src/flags.h +79 -0
- data/lib/libv8/v8/src/frames-inl.h +247 -0
- data/lib/libv8/v8/src/frames.cc +1243 -0
- data/lib/libv8/v8/src/frames.h +870 -0
- data/lib/libv8/v8/src/full-codegen.cc +1374 -0
- data/lib/libv8/v8/src/full-codegen.h +771 -0
- data/lib/libv8/v8/src/func-name-inferrer.cc +92 -0
- data/lib/libv8/v8/src/func-name-inferrer.h +111 -0
- data/lib/libv8/v8/src/gdb-jit.cc +1555 -0
- data/lib/libv8/v8/src/gdb-jit.h +143 -0
- data/lib/libv8/v8/src/global-handles.cc +665 -0
- data/lib/libv8/v8/src/global-handles.h +284 -0
- data/lib/libv8/v8/src/globals.h +325 -0
- data/lib/libv8/v8/src/handles-inl.h +177 -0
- data/lib/libv8/v8/src/handles.cc +987 -0
- data/lib/libv8/v8/src/handles.h +382 -0
- data/lib/libv8/v8/src/hashmap.cc +230 -0
- data/lib/libv8/v8/src/hashmap.h +123 -0
- data/lib/libv8/v8/src/heap-inl.h +704 -0
- data/lib/libv8/v8/src/heap-profiler.cc +1173 -0
- data/lib/libv8/v8/src/heap-profiler.h +397 -0
- data/lib/libv8/v8/src/heap.cc +5930 -0
- data/lib/libv8/v8/src/heap.h +2268 -0
- data/lib/libv8/v8/src/hydrogen-instructions.cc +1769 -0
- data/lib/libv8/v8/src/hydrogen-instructions.h +3971 -0
- data/lib/libv8/v8/src/hydrogen.cc +6239 -0
- data/lib/libv8/v8/src/hydrogen.h +1202 -0
- data/lib/libv8/v8/src/ia32/assembler-ia32-inl.h +446 -0
- data/lib/libv8/v8/src/ia32/assembler-ia32.cc +2487 -0
- data/lib/libv8/v8/src/ia32/assembler-ia32.h +1144 -0
- data/lib/libv8/v8/src/ia32/builtins-ia32.cc +1621 -0
- data/lib/libv8/v8/src/ia32/code-stubs-ia32.cc +6198 -0
- data/lib/libv8/v8/src/ia32/code-stubs-ia32.h +517 -0
- data/lib/libv8/v8/src/ia32/codegen-ia32.cc +265 -0
- data/lib/libv8/v8/src/ia32/codegen-ia32.h +79 -0
- data/lib/libv8/v8/src/ia32/cpu-ia32.cc +88 -0
- data/lib/libv8/v8/src/ia32/debug-ia32.cc +312 -0
- data/lib/libv8/v8/src/ia32/deoptimizer-ia32.cc +774 -0
- data/lib/libv8/v8/src/ia32/disasm-ia32.cc +1628 -0
- data/lib/libv8/v8/src/ia32/frames-ia32.cc +45 -0
- data/lib/libv8/v8/src/ia32/frames-ia32.h +142 -0
- data/lib/libv8/v8/src/ia32/full-codegen-ia32.cc +4338 -0
- data/lib/libv8/v8/src/ia32/ic-ia32.cc +1597 -0
- data/lib/libv8/v8/src/ia32/lithium-codegen-ia32.cc +4461 -0
- data/lib/libv8/v8/src/ia32/lithium-codegen-ia32.h +375 -0
- data/lib/libv8/v8/src/ia32/lithium-gap-resolver-ia32.cc +475 -0
- data/lib/libv8/v8/src/ia32/lithium-gap-resolver-ia32.h +110 -0
- data/lib/libv8/v8/src/ia32/lithium-ia32.cc +2261 -0
- data/lib/libv8/v8/src/ia32/lithium-ia32.h +2396 -0
- data/lib/libv8/v8/src/ia32/macro-assembler-ia32.cc +2136 -0
- data/lib/libv8/v8/src/ia32/macro-assembler-ia32.h +775 -0
- data/lib/libv8/v8/src/ia32/regexp-macro-assembler-ia32.cc +1263 -0
- data/lib/libv8/v8/src/ia32/regexp-macro-assembler-ia32.h +216 -0
- data/lib/libv8/v8/src/ia32/simulator-ia32.cc +30 -0
- data/lib/libv8/v8/src/ia32/simulator-ia32.h +74 -0
- data/lib/libv8/v8/src/ia32/stub-cache-ia32.cc +3847 -0
- data/lib/libv8/v8/src/ic-inl.h +130 -0
- data/lib/libv8/v8/src/ic.cc +2577 -0
- data/lib/libv8/v8/src/ic.h +736 -0
- data/lib/libv8/v8/src/inspector.cc +63 -0
- data/lib/libv8/v8/src/inspector.h +62 -0
- data/lib/libv8/v8/src/interpreter-irregexp.cc +659 -0
- data/lib/libv8/v8/src/interpreter-irregexp.h +49 -0
- data/lib/libv8/v8/src/isolate-inl.h +50 -0
- data/lib/libv8/v8/src/isolate.cc +1869 -0
- data/lib/libv8/v8/src/isolate.h +1382 -0
- data/lib/libv8/v8/src/json-parser.cc +504 -0
- data/lib/libv8/v8/src/json-parser.h +161 -0
- data/lib/libv8/v8/src/json.js +342 -0
- data/lib/libv8/v8/src/jsregexp.cc +5385 -0
- data/lib/libv8/v8/src/jsregexp.h +1492 -0
- data/lib/libv8/v8/src/list-inl.h +212 -0
- data/lib/libv8/v8/src/list.h +174 -0
- data/lib/libv8/v8/src/lithium-allocator-inl.h +142 -0
- data/lib/libv8/v8/src/lithium-allocator.cc +2123 -0
- data/lib/libv8/v8/src/lithium-allocator.h +630 -0
- data/lib/libv8/v8/src/lithium.cc +190 -0
- data/lib/libv8/v8/src/lithium.h +597 -0
- data/lib/libv8/v8/src/liveedit-debugger.js +1082 -0
- data/lib/libv8/v8/src/liveedit.cc +1691 -0
- data/lib/libv8/v8/src/liveedit.h +180 -0
- data/lib/libv8/v8/src/liveobjectlist-inl.h +126 -0
- data/lib/libv8/v8/src/liveobjectlist.cc +2589 -0
- data/lib/libv8/v8/src/liveobjectlist.h +322 -0
- data/lib/libv8/v8/src/log-inl.h +59 -0
- data/lib/libv8/v8/src/log-utils.cc +428 -0
- data/lib/libv8/v8/src/log-utils.h +231 -0
- data/lib/libv8/v8/src/log.cc +1993 -0
- data/lib/libv8/v8/src/log.h +476 -0
- data/lib/libv8/v8/src/macro-assembler.h +120 -0
- data/lib/libv8/v8/src/macros.py +178 -0
- data/lib/libv8/v8/src/mark-compact.cc +3143 -0
- data/lib/libv8/v8/src/mark-compact.h +506 -0
- data/lib/libv8/v8/src/math.js +264 -0
- data/lib/libv8/v8/src/messages.cc +179 -0
- data/lib/libv8/v8/src/messages.h +113 -0
- data/lib/libv8/v8/src/messages.js +1096 -0
- data/lib/libv8/v8/src/mips/assembler-mips-inl.h +312 -0
- data/lib/libv8/v8/src/mips/assembler-mips.cc +1960 -0
- data/lib/libv8/v8/src/mips/assembler-mips.h +1138 -0
- data/lib/libv8/v8/src/mips/builtins-mips.cc +1628 -0
- data/lib/libv8/v8/src/mips/code-stubs-mips.cc +6656 -0
- data/lib/libv8/v8/src/mips/code-stubs-mips.h +682 -0
- data/lib/libv8/v8/src/mips/codegen-mips.cc +52 -0
- data/lib/libv8/v8/src/mips/codegen-mips.h +98 -0
- data/lib/libv8/v8/src/mips/constants-mips.cc +352 -0
- data/lib/libv8/v8/src/mips/constants-mips.h +739 -0
- data/lib/libv8/v8/src/mips/cpu-mips.cc +96 -0
- data/lib/libv8/v8/src/mips/debug-mips.cc +308 -0
- data/lib/libv8/v8/src/mips/deoptimizer-mips.cc +91 -0
- data/lib/libv8/v8/src/mips/disasm-mips.cc +1050 -0
- data/lib/libv8/v8/src/mips/frames-mips.cc +47 -0
- data/lib/libv8/v8/src/mips/frames-mips.h +219 -0
- data/lib/libv8/v8/src/mips/full-codegen-mips.cc +4388 -0
- data/lib/libv8/v8/src/mips/ic-mips.cc +1580 -0
- data/lib/libv8/v8/src/mips/lithium-codegen-mips.h +65 -0
- data/lib/libv8/v8/src/mips/lithium-mips.h +307 -0
- data/lib/libv8/v8/src/mips/macro-assembler-mips.cc +4056 -0
- data/lib/libv8/v8/src/mips/macro-assembler-mips.h +1214 -0
- data/lib/libv8/v8/src/mips/regexp-macro-assembler-mips.cc +1251 -0
- data/lib/libv8/v8/src/mips/regexp-macro-assembler-mips.h +252 -0
- data/lib/libv8/v8/src/mips/simulator-mips.cc +2621 -0
- data/lib/libv8/v8/src/mips/simulator-mips.h +401 -0
- data/lib/libv8/v8/src/mips/stub-cache-mips.cc +4285 -0
- data/lib/libv8/v8/src/mirror-debugger.js +2382 -0
- data/lib/libv8/v8/src/mksnapshot.cc +328 -0
- data/lib/libv8/v8/src/natives.h +64 -0
- data/lib/libv8/v8/src/objects-debug.cc +738 -0
- data/lib/libv8/v8/src/objects-inl.h +4323 -0
- data/lib/libv8/v8/src/objects-printer.cc +829 -0
- data/lib/libv8/v8/src/objects-visiting.cc +148 -0
- data/lib/libv8/v8/src/objects-visiting.h +424 -0
- data/lib/libv8/v8/src/objects.cc +10585 -0
- data/lib/libv8/v8/src/objects.h +6838 -0
- data/lib/libv8/v8/src/parser.cc +4997 -0
- data/lib/libv8/v8/src/parser.h +765 -0
- data/lib/libv8/v8/src/platform-cygwin.cc +779 -0
- data/lib/libv8/v8/src/platform-freebsd.cc +826 -0
- data/lib/libv8/v8/src/platform-linux.cc +1149 -0
- data/lib/libv8/v8/src/platform-macos.cc +830 -0
- data/lib/libv8/v8/src/platform-nullos.cc +479 -0
- data/lib/libv8/v8/src/platform-openbsd.cc +640 -0
- data/lib/libv8/v8/src/platform-posix.cc +424 -0
- data/lib/libv8/v8/src/platform-solaris.cc +762 -0
- data/lib/libv8/v8/src/platform-tls-mac.h +62 -0
- data/lib/libv8/v8/src/platform-tls-win32.h +62 -0
- data/lib/libv8/v8/src/platform-tls.h +50 -0
- data/lib/libv8/v8/src/platform-win32.cc +2021 -0
- data/lib/libv8/v8/src/platform.h +667 -0
- data/lib/libv8/v8/src/preparse-data-format.h +62 -0
- data/lib/libv8/v8/src/preparse-data.cc +183 -0
- data/lib/libv8/v8/src/preparse-data.h +225 -0
- data/lib/libv8/v8/src/preparser-api.cc +220 -0
- data/lib/libv8/v8/src/preparser.cc +1450 -0
- data/lib/libv8/v8/src/preparser.h +493 -0
- data/lib/libv8/v8/src/prettyprinter.cc +1493 -0
- data/lib/libv8/v8/src/prettyprinter.h +223 -0
- data/lib/libv8/v8/src/profile-generator-inl.h +128 -0
- data/lib/libv8/v8/src/profile-generator.cc +3098 -0
- data/lib/libv8/v8/src/profile-generator.h +1126 -0
- data/lib/libv8/v8/src/property.cc +105 -0
- data/lib/libv8/v8/src/property.h +365 -0
- data/lib/libv8/v8/src/proxy.js +83 -0
- data/lib/libv8/v8/src/regexp-macro-assembler-irregexp-inl.h +78 -0
- data/lib/libv8/v8/src/regexp-macro-assembler-irregexp.cc +471 -0
- data/lib/libv8/v8/src/regexp-macro-assembler-irregexp.h +142 -0
- data/lib/libv8/v8/src/regexp-macro-assembler-tracer.cc +373 -0
- data/lib/libv8/v8/src/regexp-macro-assembler-tracer.h +104 -0
- data/lib/libv8/v8/src/regexp-macro-assembler.cc +267 -0
- data/lib/libv8/v8/src/regexp-macro-assembler.h +243 -0
- data/lib/libv8/v8/src/regexp-stack.cc +111 -0
- data/lib/libv8/v8/src/regexp-stack.h +147 -0
- data/lib/libv8/v8/src/regexp.js +483 -0
- data/lib/libv8/v8/src/rewriter.cc +360 -0
- data/lib/libv8/v8/src/rewriter.h +50 -0
- data/lib/libv8/v8/src/runtime-profiler.cc +489 -0
- data/lib/libv8/v8/src/runtime-profiler.h +201 -0
- data/lib/libv8/v8/src/runtime.cc +12227 -0
- data/lib/libv8/v8/src/runtime.h +652 -0
- data/lib/libv8/v8/src/runtime.js +649 -0
- data/lib/libv8/v8/src/safepoint-table.cc +256 -0
- data/lib/libv8/v8/src/safepoint-table.h +270 -0
- data/lib/libv8/v8/src/scanner-base.cc +952 -0
- data/lib/libv8/v8/src/scanner-base.h +670 -0
- data/lib/libv8/v8/src/scanner.cc +345 -0
- data/lib/libv8/v8/src/scanner.h +146 -0
- data/lib/libv8/v8/src/scopeinfo.cc +646 -0
- data/lib/libv8/v8/src/scopeinfo.h +254 -0
- data/lib/libv8/v8/src/scopes.cc +1150 -0
- data/lib/libv8/v8/src/scopes.h +507 -0
- data/lib/libv8/v8/src/serialize.cc +1574 -0
- data/lib/libv8/v8/src/serialize.h +589 -0
- data/lib/libv8/v8/src/shell.h +55 -0
- data/lib/libv8/v8/src/simulator.h +43 -0
- data/lib/libv8/v8/src/small-pointer-list.h +163 -0
- data/lib/libv8/v8/src/smart-pointer.h +109 -0
- data/lib/libv8/v8/src/snapshot-common.cc +83 -0
- data/lib/libv8/v8/src/snapshot-empty.cc +54 -0
- data/lib/libv8/v8/src/snapshot.h +91 -0
- data/lib/libv8/v8/src/spaces-inl.h +529 -0
- data/lib/libv8/v8/src/spaces.cc +3145 -0
- data/lib/libv8/v8/src/spaces.h +2369 -0
- data/lib/libv8/v8/src/splay-tree-inl.h +310 -0
- data/lib/libv8/v8/src/splay-tree.h +205 -0
- data/lib/libv8/v8/src/string-search.cc +41 -0
- data/lib/libv8/v8/src/string-search.h +568 -0
- data/lib/libv8/v8/src/string-stream.cc +592 -0
- data/lib/libv8/v8/src/string-stream.h +191 -0
- data/lib/libv8/v8/src/string.js +994 -0
- data/lib/libv8/v8/src/strtod.cc +440 -0
- data/lib/libv8/v8/src/strtod.h +40 -0
- data/lib/libv8/v8/src/stub-cache.cc +1965 -0
- data/lib/libv8/v8/src/stub-cache.h +924 -0
- data/lib/libv8/v8/src/third_party/valgrind/valgrind.h +3925 -0
- data/lib/libv8/v8/src/token.cc +63 -0
- data/lib/libv8/v8/src/token.h +288 -0
- data/lib/libv8/v8/src/type-info.cc +507 -0
- data/lib/libv8/v8/src/type-info.h +272 -0
- data/lib/libv8/v8/src/unbound-queue-inl.h +95 -0
- data/lib/libv8/v8/src/unbound-queue.h +69 -0
- data/lib/libv8/v8/src/unicode-inl.h +238 -0
- data/lib/libv8/v8/src/unicode.cc +1624 -0
- data/lib/libv8/v8/src/unicode.h +280 -0
- data/lib/libv8/v8/src/uri.js +408 -0
- data/lib/libv8/v8/src/utils-inl.h +48 -0
- data/lib/libv8/v8/src/utils.cc +371 -0
- data/lib/libv8/v8/src/utils.h +800 -0
- data/lib/libv8/v8/src/v8-counters.cc +62 -0
- data/lib/libv8/v8/src/v8-counters.h +314 -0
- data/lib/libv8/v8/src/v8.cc +213 -0
- data/lib/libv8/v8/src/v8.h +131 -0
- data/lib/libv8/v8/src/v8checks.h +64 -0
- data/lib/libv8/v8/src/v8dll-main.cc +44 -0
- data/lib/libv8/v8/src/v8globals.h +512 -0
- data/lib/libv8/v8/src/v8memory.h +82 -0
- data/lib/libv8/v8/src/v8natives.js +1310 -0
- data/lib/libv8/v8/src/v8preparserdll-main.cc +39 -0
- data/lib/libv8/v8/src/v8threads.cc +464 -0
- data/lib/libv8/v8/src/v8threads.h +165 -0
- data/lib/libv8/v8/src/v8utils.h +319 -0
- data/lib/libv8/v8/src/variables.cc +114 -0
- data/lib/libv8/v8/src/variables.h +167 -0
- data/lib/libv8/v8/src/version.cc +116 -0
- data/lib/libv8/v8/src/version.h +68 -0
- data/lib/libv8/v8/src/vm-state-inl.h +138 -0
- data/lib/libv8/v8/src/vm-state.h +71 -0
- data/lib/libv8/v8/src/win32-headers.h +96 -0
- data/lib/libv8/v8/src/x64/assembler-x64-inl.h +462 -0
- data/lib/libv8/v8/src/x64/assembler-x64.cc +3027 -0
- data/lib/libv8/v8/src/x64/assembler-x64.h +1633 -0
- data/lib/libv8/v8/src/x64/builtins-x64.cc +1520 -0
- data/lib/libv8/v8/src/x64/code-stubs-x64.cc +5132 -0
- data/lib/libv8/v8/src/x64/code-stubs-x64.h +514 -0
- data/lib/libv8/v8/src/x64/codegen-x64.cc +146 -0
- data/lib/libv8/v8/src/x64/codegen-x64.h +76 -0
- data/lib/libv8/v8/src/x64/cpu-x64.cc +88 -0
- data/lib/libv8/v8/src/x64/debug-x64.cc +319 -0
- data/lib/libv8/v8/src/x64/deoptimizer-x64.cc +815 -0
- data/lib/libv8/v8/src/x64/disasm-x64.cc +1832 -0
- data/lib/libv8/v8/src/x64/frames-x64.cc +45 -0
- data/lib/libv8/v8/src/x64/frames-x64.h +130 -0
- data/lib/libv8/v8/src/x64/full-codegen-x64.cc +4318 -0
- data/lib/libv8/v8/src/x64/ic-x64.cc +1608 -0
- data/lib/libv8/v8/src/x64/lithium-codegen-x64.cc +4267 -0
- data/lib/libv8/v8/src/x64/lithium-codegen-x64.h +367 -0
- data/lib/libv8/v8/src/x64/lithium-gap-resolver-x64.cc +320 -0
- data/lib/libv8/v8/src/x64/lithium-gap-resolver-x64.h +74 -0
- data/lib/libv8/v8/src/x64/lithium-x64.cc +2202 -0
- data/lib/libv8/v8/src/x64/lithium-x64.h +2333 -0
- data/lib/libv8/v8/src/x64/macro-assembler-x64.cc +3745 -0
- data/lib/libv8/v8/src/x64/macro-assembler-x64.h +1290 -0
- data/lib/libv8/v8/src/x64/regexp-macro-assembler-x64.cc +1398 -0
- data/lib/libv8/v8/src/x64/regexp-macro-assembler-x64.h +282 -0
- data/lib/libv8/v8/src/x64/simulator-x64.cc +27 -0
- data/lib/libv8/v8/src/x64/simulator-x64.h +72 -0
- data/lib/libv8/v8/src/x64/stub-cache-x64.cc +3610 -0
- data/lib/libv8/v8/src/zone-inl.h +140 -0
- data/lib/libv8/v8/src/zone.cc +196 -0
- data/lib/libv8/v8/src/zone.h +240 -0
- data/lib/libv8/v8/tools/codemap.js +265 -0
- data/lib/libv8/v8/tools/consarray.js +93 -0
- data/lib/libv8/v8/tools/csvparser.js +78 -0
- data/lib/libv8/v8/tools/disasm.py +92 -0
- data/lib/libv8/v8/tools/freebsd-tick-processor +10 -0
- data/lib/libv8/v8/tools/gc-nvp-trace-processor.py +342 -0
- data/lib/libv8/v8/tools/gcmole/README +62 -0
- data/lib/libv8/v8/tools/gcmole/gccause.lua +60 -0
- data/lib/libv8/v8/tools/gcmole/gcmole.cc +1261 -0
- data/lib/libv8/v8/tools/gcmole/gcmole.lua +378 -0
- data/lib/libv8/v8/tools/generate-ten-powers.scm +286 -0
- data/lib/libv8/v8/tools/grokdump.py +841 -0
- data/lib/libv8/v8/tools/gyp/v8.gyp +995 -0
- data/lib/libv8/v8/tools/js2c.py +364 -0
- data/lib/libv8/v8/tools/jsmin.py +280 -0
- data/lib/libv8/v8/tools/linux-tick-processor +35 -0
- data/lib/libv8/v8/tools/ll_prof.py +942 -0
- data/lib/libv8/v8/tools/logreader.js +185 -0
- data/lib/libv8/v8/tools/mac-nm +18 -0
- data/lib/libv8/v8/tools/mac-tick-processor +6 -0
- data/lib/libv8/v8/tools/oom_dump/README +31 -0
- data/lib/libv8/v8/tools/oom_dump/SConstruct +42 -0
- data/lib/libv8/v8/tools/oom_dump/oom_dump.cc +288 -0
- data/lib/libv8/v8/tools/presubmit.py +305 -0
- data/lib/libv8/v8/tools/process-heap-prof.py +120 -0
- data/lib/libv8/v8/tools/profile.js +751 -0
- data/lib/libv8/v8/tools/profile_view.js +219 -0
- data/lib/libv8/v8/tools/run-valgrind.py +77 -0
- data/lib/libv8/v8/tools/splaytree.js +316 -0
- data/lib/libv8/v8/tools/stats-viewer.py +468 -0
- data/lib/libv8/v8/tools/test.py +1510 -0
- data/lib/libv8/v8/tools/tickprocessor-driver.js +59 -0
- data/lib/libv8/v8/tools/tickprocessor.js +877 -0
- data/lib/libv8/v8/tools/utils.py +96 -0
- data/lib/libv8/v8/tools/visual_studio/README.txt +12 -0
- data/lib/libv8/v8/tools/windows-tick-processor.bat +30 -0
- data/lib/libv8/version.rb +5 -0
- data/libv8.gemspec +36 -0
- metadata +578 -0
@@ -0,0 +1,364 @@
|
|
1
|
+
#!/usr/bin/env python
|
2
|
+
#
|
3
|
+
# Copyright 2006-2008 the V8 project authors. All rights reserved.
|
4
|
+
# Redistribution and use in source and binary forms, with or without
|
5
|
+
# modification, are permitted provided that the following conditions are
|
6
|
+
# met:
|
7
|
+
#
|
8
|
+
# * Redistributions of source code must retain the above copyright
|
9
|
+
# notice, this list of conditions and the following disclaimer.
|
10
|
+
# * Redistributions in binary form must reproduce the above
|
11
|
+
# copyright notice, this list of conditions and the following
|
12
|
+
# disclaimer in the documentation and/or other materials provided
|
13
|
+
# with the distribution.
|
14
|
+
# * Neither the name of Google Inc. nor the names of its
|
15
|
+
# contributors may be used to endorse or promote products derived
|
16
|
+
# from this software without specific prior written permission.
|
17
|
+
#
|
18
|
+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
19
|
+
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
20
|
+
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
21
|
+
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
22
|
+
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
23
|
+
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
24
|
+
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
25
|
+
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
26
|
+
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
27
|
+
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
28
|
+
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
29
|
+
|
30
|
+
# This is a utility for converting JavaScript source code into C-style
|
31
|
+
# char arrays. It is used for embedded JavaScript code in the V8
|
32
|
+
# library.
|
33
|
+
|
34
|
+
import os, re, sys, string
|
35
|
+
import jsmin
|
36
|
+
|
37
|
+
|
38
|
+
def ToCArray(lines):
|
39
|
+
result = []
|
40
|
+
for chr in lines:
|
41
|
+
value = ord(chr)
|
42
|
+
assert value < 128
|
43
|
+
result.append(str(value))
|
44
|
+
result.append("0")
|
45
|
+
return ", ".join(result)
|
46
|
+
|
47
|
+
|
48
|
+
def RemoveCommentsAndTrailingWhitespace(lines):
|
49
|
+
lines = re.sub(r'//.*\n', '\n', lines) # end-of-line comments
|
50
|
+
lines = re.sub(re.compile(r'/\*.*?\*/', re.DOTALL), '', lines) # comments.
|
51
|
+
lines = re.sub(r'\s+\n+', '\n', lines) # trailing whitespace
|
52
|
+
return lines
|
53
|
+
|
54
|
+
|
55
|
+
def ReadFile(filename):
|
56
|
+
file = open(filename, "rt")
|
57
|
+
try:
|
58
|
+
lines = file.read()
|
59
|
+
finally:
|
60
|
+
file.close()
|
61
|
+
return lines
|
62
|
+
|
63
|
+
|
64
|
+
def ReadLines(filename):
|
65
|
+
result = []
|
66
|
+
for line in open(filename, "rt"):
|
67
|
+
if '#' in line:
|
68
|
+
line = line[:line.index('#')]
|
69
|
+
line = line.strip()
|
70
|
+
if len(line) > 0:
|
71
|
+
result.append(line)
|
72
|
+
return result
|
73
|
+
|
74
|
+
|
75
|
+
def LoadConfigFrom(name):
|
76
|
+
import ConfigParser
|
77
|
+
config = ConfigParser.ConfigParser()
|
78
|
+
config.read(name)
|
79
|
+
return config
|
80
|
+
|
81
|
+
|
82
|
+
def ParseValue(string):
|
83
|
+
string = string.strip()
|
84
|
+
if string.startswith('[') and string.endswith(']'):
|
85
|
+
return string.lstrip('[').rstrip(']').split()
|
86
|
+
else:
|
87
|
+
return string
|
88
|
+
|
89
|
+
|
90
|
+
EVAL_PATTERN = re.compile(r'\beval\s*\(');
|
91
|
+
WITH_PATTERN = re.compile(r'\bwith\s*\(');
|
92
|
+
|
93
|
+
|
94
|
+
def Validate(lines, file):
|
95
|
+
lines = RemoveCommentsAndTrailingWhitespace(lines)
|
96
|
+
# Because of simplified context setup, eval and with is not
|
97
|
+
# allowed in the natives files.
|
98
|
+
eval_match = EVAL_PATTERN.search(lines)
|
99
|
+
if eval_match:
|
100
|
+
raise ("Eval disallowed in natives: %s" % file)
|
101
|
+
with_match = WITH_PATTERN.search(lines)
|
102
|
+
if with_match:
|
103
|
+
raise ("With statements disallowed in natives: %s" % file)
|
104
|
+
|
105
|
+
|
106
|
+
def ExpandConstants(lines, constants):
|
107
|
+
for key, value in constants:
|
108
|
+
lines = key.sub(str(value), lines)
|
109
|
+
return lines
|
110
|
+
|
111
|
+
|
112
|
+
def ExpandMacros(lines, macros):
|
113
|
+
# We allow macros to depend on the previously declared macros, but
|
114
|
+
# we don't allow self-dependecies or recursion.
|
115
|
+
for name_pattern, macro in reversed(macros):
|
116
|
+
pattern_match = name_pattern.search(lines, 0)
|
117
|
+
while pattern_match is not None:
|
118
|
+
# Scan over the arguments
|
119
|
+
height = 1
|
120
|
+
start = pattern_match.start()
|
121
|
+
end = pattern_match.end()
|
122
|
+
assert lines[end - 1] == '('
|
123
|
+
last_match = end
|
124
|
+
arg_index = 0
|
125
|
+
mapping = { }
|
126
|
+
def add_arg(str):
|
127
|
+
# Remember to expand recursively in the arguments
|
128
|
+
replacement = ExpandMacros(str.strip(), macros)
|
129
|
+
mapping[macro.args[arg_index]] = replacement
|
130
|
+
while end < len(lines) and height > 0:
|
131
|
+
# We don't count commas at higher nesting levels.
|
132
|
+
if lines[end] == ',' and height == 1:
|
133
|
+
add_arg(lines[last_match:end])
|
134
|
+
last_match = end + 1
|
135
|
+
elif lines[end] in ['(', '{', '[']:
|
136
|
+
height = height + 1
|
137
|
+
elif lines[end] in [')', '}', ']']:
|
138
|
+
height = height - 1
|
139
|
+
end = end + 1
|
140
|
+
# Remember to add the last match.
|
141
|
+
add_arg(lines[last_match:end-1])
|
142
|
+
result = macro.expand(mapping)
|
143
|
+
# Replace the occurrence of the macro with the expansion
|
144
|
+
lines = lines[:start] + result + lines[end:]
|
145
|
+
pattern_match = name_pattern.search(lines, start + len(result))
|
146
|
+
return lines
|
147
|
+
|
148
|
+
class TextMacro:
|
149
|
+
def __init__(self, args, body):
|
150
|
+
self.args = args
|
151
|
+
self.body = body
|
152
|
+
def expand(self, mapping):
|
153
|
+
result = self.body
|
154
|
+
for key, value in mapping.items():
|
155
|
+
result = result.replace(key, value)
|
156
|
+
return result
|
157
|
+
|
158
|
+
class PythonMacro:
|
159
|
+
def __init__(self, args, fun):
|
160
|
+
self.args = args
|
161
|
+
self.fun = fun
|
162
|
+
def expand(self, mapping):
|
163
|
+
args = []
|
164
|
+
for arg in self.args:
|
165
|
+
args.append(mapping[arg])
|
166
|
+
return str(self.fun(*args))
|
167
|
+
|
168
|
+
CONST_PATTERN = re.compile(r'^const\s+([a-zA-Z0-9_]+)\s*=\s*([^;]*);$')
|
169
|
+
MACRO_PATTERN = re.compile(r'^macro\s+([a-zA-Z0-9_]+)\s*\(([^)]*)\)\s*=\s*([^;]*);$')
|
170
|
+
PYTHON_MACRO_PATTERN = re.compile(r'^python\s+macro\s+([a-zA-Z0-9_]+)\s*\(([^)]*)\)\s*=\s*([^;]*);$')
|
171
|
+
|
172
|
+
|
173
|
+
def ReadMacros(lines):
|
174
|
+
constants = []
|
175
|
+
macros = []
|
176
|
+
for line in lines:
|
177
|
+
hash = line.find('#')
|
178
|
+
if hash != -1: line = line[:hash]
|
179
|
+
line = line.strip()
|
180
|
+
if len(line) is 0: continue
|
181
|
+
const_match = CONST_PATTERN.match(line)
|
182
|
+
if const_match:
|
183
|
+
name = const_match.group(1)
|
184
|
+
value = const_match.group(2).strip()
|
185
|
+
constants.append((re.compile("\\b%s\\b" % name), value))
|
186
|
+
else:
|
187
|
+
macro_match = MACRO_PATTERN.match(line)
|
188
|
+
if macro_match:
|
189
|
+
name = macro_match.group(1)
|
190
|
+
args = map(string.strip, macro_match.group(2).split(','))
|
191
|
+
body = macro_match.group(3).strip()
|
192
|
+
macros.append((re.compile("\\b%s\\(" % name), TextMacro(args, body)))
|
193
|
+
else:
|
194
|
+
python_match = PYTHON_MACRO_PATTERN.match(line)
|
195
|
+
if python_match:
|
196
|
+
name = python_match.group(1)
|
197
|
+
args = map(string.strip, python_match.group(2).split(','))
|
198
|
+
body = python_match.group(3).strip()
|
199
|
+
fun = eval("lambda " + ",".join(args) + ': ' + body)
|
200
|
+
macros.append((re.compile("\\b%s\\(" % name), PythonMacro(args, fun)))
|
201
|
+
else:
|
202
|
+
raise ("Illegal line: " + line)
|
203
|
+
return (constants, macros)
|
204
|
+
|
205
|
+
|
206
|
+
HEADER_TEMPLATE = """\
|
207
|
+
// Copyright 2011 Google Inc. All Rights Reserved.
|
208
|
+
|
209
|
+
// This file was generated from .js source files by SCons. If you
|
210
|
+
// want to make changes to this file you should either change the
|
211
|
+
// javascript source files or the SConstruct script.
|
212
|
+
|
213
|
+
#include "v8.h"
|
214
|
+
#include "natives.h"
|
215
|
+
|
216
|
+
namespace v8 {
|
217
|
+
namespace internal {
|
218
|
+
|
219
|
+
%(source_lines)s\
|
220
|
+
|
221
|
+
template <>
|
222
|
+
int NativesCollection<%(type)s>::GetBuiltinsCount() {
|
223
|
+
return %(builtin_count)i;
|
224
|
+
}
|
225
|
+
|
226
|
+
template <>
|
227
|
+
int NativesCollection<%(type)s>::GetDebuggerCount() {
|
228
|
+
return %(debugger_count)i;
|
229
|
+
}
|
230
|
+
|
231
|
+
template <>
|
232
|
+
int NativesCollection<%(type)s>::GetIndex(const char* name) {
|
233
|
+
%(get_index_cases)s\
|
234
|
+
return -1;
|
235
|
+
}
|
236
|
+
|
237
|
+
template <>
|
238
|
+
Vector<const char> NativesCollection<%(type)s>::GetScriptSource(int index) {
|
239
|
+
%(get_script_source_cases)s\
|
240
|
+
return Vector<const char>("", 0);
|
241
|
+
}
|
242
|
+
|
243
|
+
template <>
|
244
|
+
Vector<const char> NativesCollection<%(type)s>::GetScriptName(int index) {
|
245
|
+
%(get_script_name_cases)s\
|
246
|
+
return Vector<const char>("", 0);
|
247
|
+
}
|
248
|
+
|
249
|
+
} // internal
|
250
|
+
} // v8
|
251
|
+
"""
|
252
|
+
|
253
|
+
|
254
|
+
SOURCE_DECLARATION = """\
|
255
|
+
static const char %(id)s[] = { %(data)s };
|
256
|
+
"""
|
257
|
+
|
258
|
+
|
259
|
+
GET_DEBUGGER_INDEX_CASE = """\
|
260
|
+
if (strcmp(name, "%(id)s") == 0) return %(i)i;
|
261
|
+
"""
|
262
|
+
|
263
|
+
|
264
|
+
GET_DEBUGGER_SCRIPT_SOURCE_CASE = """\
|
265
|
+
if (index == %(i)i) return Vector<const char>(%(id)s, %(length)i);
|
266
|
+
"""
|
267
|
+
|
268
|
+
|
269
|
+
GET_DEBUGGER_SCRIPT_NAME_CASE = """\
|
270
|
+
if (index == %(i)i) return Vector<const char>("%(name)s", %(length)i);
|
271
|
+
"""
|
272
|
+
|
273
|
+
def JS2C(source, target, env):
|
274
|
+
ids = []
|
275
|
+
debugger_ids = []
|
276
|
+
modules = []
|
277
|
+
# Locate the macros file name.
|
278
|
+
consts = []
|
279
|
+
macros = []
|
280
|
+
for s in source:
|
281
|
+
if 'macros.py' == (os.path.split(str(s))[1]):
|
282
|
+
(consts, macros) = ReadMacros(ReadLines(str(s)))
|
283
|
+
else:
|
284
|
+
modules.append(s)
|
285
|
+
|
286
|
+
# Build source code lines
|
287
|
+
source_lines = [ ]
|
288
|
+
|
289
|
+
minifier = jsmin.JavaScriptMinifier()
|
290
|
+
|
291
|
+
for module in modules:
|
292
|
+
filename = str(module)
|
293
|
+
debugger = filename.endswith('-debugger.js')
|
294
|
+
lines = ReadFile(filename)
|
295
|
+
lines = ExpandConstants(lines, consts)
|
296
|
+
lines = ExpandMacros(lines, macros)
|
297
|
+
Validate(lines, filename)
|
298
|
+
lines = minifier.JSMinify(lines)
|
299
|
+
data = ToCArray(lines)
|
300
|
+
id = (os.path.split(filename)[1])[:-3]
|
301
|
+
if debugger: id = id[:-9]
|
302
|
+
if debugger:
|
303
|
+
debugger_ids.append((id, len(lines)))
|
304
|
+
else:
|
305
|
+
ids.append((id, len(lines)))
|
306
|
+
source_lines.append(SOURCE_DECLARATION % { 'id': id, 'data': data })
|
307
|
+
|
308
|
+
# Build debugger support functions
|
309
|
+
get_index_cases = [ ]
|
310
|
+
get_script_source_cases = [ ]
|
311
|
+
get_script_name_cases = [ ]
|
312
|
+
|
313
|
+
i = 0
|
314
|
+
for (id, length) in debugger_ids:
|
315
|
+
native_name = "native %s.js" % id
|
316
|
+
get_index_cases.append(GET_DEBUGGER_INDEX_CASE % { 'id': id, 'i': i })
|
317
|
+
get_script_source_cases.append(GET_DEBUGGER_SCRIPT_SOURCE_CASE % {
|
318
|
+
'id': id,
|
319
|
+
'length': length,
|
320
|
+
'i': i
|
321
|
+
})
|
322
|
+
get_script_name_cases.append(GET_DEBUGGER_SCRIPT_NAME_CASE % {
|
323
|
+
'name': native_name,
|
324
|
+
'length': len(native_name),
|
325
|
+
'i': i
|
326
|
+
});
|
327
|
+
i = i + 1
|
328
|
+
|
329
|
+
for (id, length) in ids:
|
330
|
+
native_name = "native %s.js" % id
|
331
|
+
get_index_cases.append(GET_DEBUGGER_INDEX_CASE % { 'id': id, 'i': i })
|
332
|
+
get_script_source_cases.append(GET_DEBUGGER_SCRIPT_SOURCE_CASE % {
|
333
|
+
'id': id,
|
334
|
+
'length': length,
|
335
|
+
'i': i
|
336
|
+
})
|
337
|
+
get_script_name_cases.append(GET_DEBUGGER_SCRIPT_NAME_CASE % {
|
338
|
+
'name': native_name,
|
339
|
+
'length': len(native_name),
|
340
|
+
'i': i
|
341
|
+
});
|
342
|
+
i = i + 1
|
343
|
+
|
344
|
+
# Emit result
|
345
|
+
output = open(str(target[0]), "w")
|
346
|
+
output.write(HEADER_TEMPLATE % {
|
347
|
+
'builtin_count': len(ids) + len(debugger_ids),
|
348
|
+
'debugger_count': len(debugger_ids),
|
349
|
+
'source_lines': "\n".join(source_lines),
|
350
|
+
'get_index_cases': "".join(get_index_cases),
|
351
|
+
'get_script_source_cases': "".join(get_script_source_cases),
|
352
|
+
'get_script_name_cases': "".join(get_script_name_cases),
|
353
|
+
'type': env['TYPE']
|
354
|
+
})
|
355
|
+
output.close()
|
356
|
+
|
357
|
+
def main():
|
358
|
+
natives = sys.argv[1]
|
359
|
+
type = sys.argv[2]
|
360
|
+
source_files = sys.argv[3:]
|
361
|
+
JS2C(source_files, [natives], { 'TYPE': type })
|
362
|
+
|
363
|
+
if __name__ == "__main__":
|
364
|
+
main()
|
@@ -0,0 +1,280 @@
|
|
1
|
+
#!/usr/bin/python2.4
|
2
|
+
|
3
|
+
# Copyright 2009 the V8 project authors. All rights reserved.
|
4
|
+
# Redistribution and use in source and binary forms, with or without
|
5
|
+
# modification, are permitted provided that the following conditions are
|
6
|
+
# met:
|
7
|
+
#
|
8
|
+
# * Redistributions of source code must retain the above copyright
|
9
|
+
# notice, this list of conditions and the following disclaimer.
|
10
|
+
# * Redistributions in binary form must reproduce the above
|
11
|
+
# copyright notice, this list of conditions and the following
|
12
|
+
# disclaimer in the documentation and/or other materials provided
|
13
|
+
# with the distribution.
|
14
|
+
# * Neither the name of Google Inc. nor the names of its
|
15
|
+
# contributors may be used to endorse or promote products derived
|
16
|
+
# from this software without specific prior written permission.
|
17
|
+
#
|
18
|
+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
19
|
+
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
20
|
+
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
21
|
+
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
22
|
+
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
23
|
+
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
24
|
+
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
25
|
+
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
26
|
+
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
27
|
+
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
28
|
+
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
29
|
+
|
30
|
+
"""A JavaScript minifier.
|
31
|
+
|
32
|
+
It is far from being a complete JS parser, so there are many valid
|
33
|
+
JavaScript programs that will be ruined by it. Another strangeness is that
|
34
|
+
it accepts $ and % as parts of identifiers. It doesn't merge lines or strip
|
35
|
+
out blank lines in order to ease debugging. Variables at the top scope are
|
36
|
+
properties of the global object so we can't rename them. It is assumed that
|
37
|
+
you introduce variables with var as if JavaScript followed C++ scope rules
|
38
|
+
around curly braces, so the declaration must be above the first use.
|
39
|
+
|
40
|
+
Use as:
|
41
|
+
import jsmin
|
42
|
+
minifier = JavaScriptMinifier()
|
43
|
+
program1 = minifier.JSMinify(program1)
|
44
|
+
program2 = minifier.JSMinify(program2)
|
45
|
+
"""
|
46
|
+
|
47
|
+
import re
|
48
|
+
|
49
|
+
|
50
|
+
class JavaScriptMinifier(object):
|
51
|
+
"""An object that you can feed code snippets to to get them minified."""
|
52
|
+
|
53
|
+
def __init__(self):
|
54
|
+
# We prepopulate the list of identifiers that shouldn't be used. These
|
55
|
+
# short language keywords could otherwise be used by the script as variable
|
56
|
+
# names.
|
57
|
+
self.seen_identifiers = {"do": True, "in": True}
|
58
|
+
self.identifier_counter = 0
|
59
|
+
self.in_comment = False
|
60
|
+
self.map = {}
|
61
|
+
self.nesting = 0
|
62
|
+
|
63
|
+
def LookAtIdentifier(self, m):
|
64
|
+
"""Records identifiers or keywords that we see in use.
|
65
|
+
|
66
|
+
(So we can avoid renaming variables to these strings.)
|
67
|
+
Args:
|
68
|
+
m: The match object returned by re.search.
|
69
|
+
|
70
|
+
Returns:
|
71
|
+
Nothing.
|
72
|
+
"""
|
73
|
+
identifier = m.group(1)
|
74
|
+
self.seen_identifiers[identifier] = True
|
75
|
+
|
76
|
+
def Push(self):
|
77
|
+
"""Called when we encounter a '{'."""
|
78
|
+
self.nesting += 1
|
79
|
+
|
80
|
+
def Pop(self):
|
81
|
+
"""Called when we encounter a '}'."""
|
82
|
+
self.nesting -= 1
|
83
|
+
# We treat each top-level opening brace as a single scope that can span
|
84
|
+
# several sets of nested braces.
|
85
|
+
if self.nesting == 0:
|
86
|
+
self.map = {}
|
87
|
+
self.identifier_counter = 0
|
88
|
+
|
89
|
+
def Declaration(self, m):
|
90
|
+
"""Rewrites bits of the program selected by a regexp.
|
91
|
+
|
92
|
+
These can be curly braces, literal strings, function declarations and var
|
93
|
+
declarations. (These last two must be on one line including the opening
|
94
|
+
curly brace of the function for their variables to be renamed).
|
95
|
+
|
96
|
+
Args:
|
97
|
+
m: The match object returned by re.search.
|
98
|
+
|
99
|
+
Returns:
|
100
|
+
The string that should replace the match in the rewritten program.
|
101
|
+
"""
|
102
|
+
matched_text = m.group(0)
|
103
|
+
if matched_text == "{":
|
104
|
+
self.Push()
|
105
|
+
return matched_text
|
106
|
+
if matched_text == "}":
|
107
|
+
self.Pop()
|
108
|
+
return matched_text
|
109
|
+
if re.match("[\"'/]", matched_text):
|
110
|
+
return matched_text
|
111
|
+
m = re.match(r"var ", matched_text)
|
112
|
+
if m:
|
113
|
+
var_names = matched_text[m.end():]
|
114
|
+
var_names = re.split(r",", var_names)
|
115
|
+
return "var " + ",".join(map(self.FindNewName, var_names))
|
116
|
+
m = re.match(r"(function\b[^(]*)\((.*)\)\{$", matched_text)
|
117
|
+
if m:
|
118
|
+
up_to_args = m.group(1)
|
119
|
+
args = m.group(2)
|
120
|
+
args = re.split(r",", args)
|
121
|
+
self.Push()
|
122
|
+
return up_to_args + "(" + ",".join(map(self.FindNewName, args)) + "){"
|
123
|
+
|
124
|
+
if matched_text in self.map:
|
125
|
+
return self.map[matched_text]
|
126
|
+
|
127
|
+
return matched_text
|
128
|
+
|
129
|
+
def CharFromNumber(self, number):
|
130
|
+
"""A single-digit base-52 encoding using a-zA-Z."""
|
131
|
+
if number < 26:
|
132
|
+
return chr(number + 97)
|
133
|
+
number -= 26
|
134
|
+
return chr(number + 65)
|
135
|
+
|
136
|
+
def FindNewName(self, var_name):
|
137
|
+
"""Finds a new 1-character or 2-character name for a variable.
|
138
|
+
|
139
|
+
Enters it into the mapping table for this scope.
|
140
|
+
|
141
|
+
Args:
|
142
|
+
var_name: The name of the variable before renaming.
|
143
|
+
|
144
|
+
Returns:
|
145
|
+
The new name of the variable.
|
146
|
+
"""
|
147
|
+
new_identifier = ""
|
148
|
+
# Variable names that end in _ are member variables of the global object,
|
149
|
+
# so they can be visible from code in a different scope. We leave them
|
150
|
+
# alone.
|
151
|
+
if var_name in self.map:
|
152
|
+
return self.map[var_name]
|
153
|
+
if self.nesting == 0:
|
154
|
+
return var_name
|
155
|
+
while True:
|
156
|
+
identifier_first_char = self.identifier_counter % 52
|
157
|
+
identifier_second_char = self.identifier_counter / 52
|
158
|
+
new_identifier = self.CharFromNumber(identifier_first_char)
|
159
|
+
if identifier_second_char != 0:
|
160
|
+
new_identifier = (
|
161
|
+
self.CharFromNumber(identifier_second_char - 1) + new_identifier)
|
162
|
+
self.identifier_counter += 1
|
163
|
+
if not new_identifier in self.seen_identifiers:
|
164
|
+
break
|
165
|
+
|
166
|
+
self.map[var_name] = new_identifier
|
167
|
+
return new_identifier
|
168
|
+
|
169
|
+
def RemoveSpaces(self, m):
|
170
|
+
"""Returns literal strings unchanged, replaces other inputs with group 2.
|
171
|
+
|
172
|
+
Other inputs are replaced with the contents of capture 1. This is either
|
173
|
+
a single space or an empty string.
|
174
|
+
|
175
|
+
Args:
|
176
|
+
m: The match object returned by re.search.
|
177
|
+
|
178
|
+
Returns:
|
179
|
+
The string that should be inserted instead of the matched text.
|
180
|
+
"""
|
181
|
+
entire_match = m.group(0)
|
182
|
+
replacement = m.group(1)
|
183
|
+
if re.match(r"'.*'$", entire_match):
|
184
|
+
return entire_match
|
185
|
+
if re.match(r'".*"$', entire_match):
|
186
|
+
return entire_match
|
187
|
+
if re.match(r"/.+/$", entire_match):
|
188
|
+
return entire_match
|
189
|
+
return replacement
|
190
|
+
|
191
|
+
def JSMinify(self, text):
|
192
|
+
"""The main entry point. Takes a text and returns a compressed version.
|
193
|
+
|
194
|
+
The compressed version hopefully does the same thing. Line breaks are
|
195
|
+
preserved.
|
196
|
+
|
197
|
+
Args:
|
198
|
+
text: The text of the code snippet as a multiline string.
|
199
|
+
|
200
|
+
Returns:
|
201
|
+
The compressed text of the code snippet as a multiline string.
|
202
|
+
"""
|
203
|
+
new_lines = []
|
204
|
+
for line in re.split(r"\n", text):
|
205
|
+
line = line.replace("\t", " ")
|
206
|
+
if self.in_comment:
|
207
|
+
m = re.search(r"\*/", line)
|
208
|
+
if m:
|
209
|
+
line = line[m.end():]
|
210
|
+
self.in_comment = False
|
211
|
+
else:
|
212
|
+
new_lines.append("")
|
213
|
+
continue
|
214
|
+
|
215
|
+
if not self.in_comment:
|
216
|
+
line = re.sub(r"/\*.*?\*/", " ", line)
|
217
|
+
line = re.sub(r"//.*", "", line)
|
218
|
+
m = re.search(r"/\*", line)
|
219
|
+
if m:
|
220
|
+
line = line[:m.start()]
|
221
|
+
self.in_comment = True
|
222
|
+
|
223
|
+
# Strip leading and trailing spaces.
|
224
|
+
line = re.sub(r"^ +", "", line)
|
225
|
+
line = re.sub(r" +$", "", line)
|
226
|
+
# A regexp that matches a literal string surrounded by "double quotes".
|
227
|
+
# This regexp can handle embedded backslash-escaped characters including
|
228
|
+
# embedded backslash-escaped double quotes.
|
229
|
+
double_quoted_string = r'"(?:[^"\\]|\\.)*"'
|
230
|
+
# A regexp that matches a literal string surrounded by 'double quotes'.
|
231
|
+
single_quoted_string = r"'(?:[^'\\]|\\.)*'"
|
232
|
+
# A regexp that matches a regexp literal surrounded by /slashes/.
|
233
|
+
# Don't allow a regexp to have a ) before the first ( since that's a
|
234
|
+
# syntax error and it's probably just two unrelated slashes.
|
235
|
+
slash_quoted_regexp = r"/(?:(?=\()|(?:[^()/\\]|\\.)+)(?:\([^/\\]|\\.)*/"
|
236
|
+
# Replace multiple spaces with a single space.
|
237
|
+
line = re.sub("|".join([double_quoted_string,
|
238
|
+
single_quoted_string,
|
239
|
+
slash_quoted_regexp,
|
240
|
+
"( )+"]),
|
241
|
+
self.RemoveSpaces,
|
242
|
+
line)
|
243
|
+
# Strip single spaces unless they have an identifier character both before
|
244
|
+
# and after the space. % and $ are counted as identifier characters.
|
245
|
+
line = re.sub("|".join([double_quoted_string,
|
246
|
+
single_quoted_string,
|
247
|
+
slash_quoted_regexp,
|
248
|
+
r"(?<![a-zA-Z_0-9$%]) | (?![a-zA-Z_0-9$%])()"]),
|
249
|
+
self.RemoveSpaces,
|
250
|
+
line)
|
251
|
+
# Collect keywords and identifiers that are already in use.
|
252
|
+
if self.nesting == 0:
|
253
|
+
re.sub(r"([a-zA-Z0-9_$%]+)", self.LookAtIdentifier, line)
|
254
|
+
function_declaration_regexp = (
|
255
|
+
r"\bfunction" # Function definition keyword...
|
256
|
+
r"( [\w$%]+)?" # ...optional function name...
|
257
|
+
r"\([\w$%,]+\)\{") # ...argument declarations.
|
258
|
+
# Unfortunately the keyword-value syntax { key:value } makes the key look
|
259
|
+
# like a variable where in fact it is a literal string. We use the
|
260
|
+
# presence or absence of a question mark to try to distinguish between
|
261
|
+
# this case and the ternary operator: "condition ? iftrue : iffalse".
|
262
|
+
if re.search(r"\?", line):
|
263
|
+
block_trailing_colon = r""
|
264
|
+
else:
|
265
|
+
block_trailing_colon = r"(?![:\w$%])"
|
266
|
+
# Variable use. Cannot follow a period precede a colon.
|
267
|
+
variable_use_regexp = r"(?<![.\w$%])[\w$%]+" + block_trailing_colon
|
268
|
+
line = re.sub("|".join([double_quoted_string,
|
269
|
+
single_quoted_string,
|
270
|
+
slash_quoted_regexp,
|
271
|
+
r"\{", # Curly braces.
|
272
|
+
r"\}",
|
273
|
+
r"\bvar [\w$%,]+", # var declarations.
|
274
|
+
function_declaration_regexp,
|
275
|
+
variable_use_regexp]),
|
276
|
+
self.Declaration,
|
277
|
+
line)
|
278
|
+
new_lines.append(line)
|
279
|
+
|
280
|
+
return "\n".join(new_lines) + "\n"
|