therubyracer 0.8.1.pre2 → 0.8.1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of therubyracer might be problematic. Click here for more details.
- data/Changelog.md +2 -1
- data/README.md +6 -3
- data/ext/v8/upstream/3.1.8/.gitignore +31 -0
- data/ext/v8/upstream/3.1.8/AUTHORS +40 -0
- data/ext/v8/upstream/3.1.8/ChangeLog +2566 -0
- data/ext/v8/upstream/3.1.8/LICENSE +52 -0
- data/ext/v8/upstream/3.1.8/LICENSE.strongtalk +29 -0
- data/ext/v8/upstream/3.1.8/LICENSE.v8 +26 -0
- data/ext/v8/upstream/3.1.8/LICENSE.valgrind +45 -0
- data/ext/v8/upstream/3.1.8/SConstruct +1192 -0
- data/ext/v8/upstream/3.1.8/build/README.txt +25 -0
- data/ext/v8/upstream/3.1.8/build/all.gyp +18 -0
- data/ext/v8/upstream/3.1.8/build/armu.gypi +32 -0
- data/ext/v8/upstream/3.1.8/build/common.gypi +82 -0
- data/ext/v8/upstream/3.1.8/build/gyp_v8 +145 -0
- data/ext/v8/upstream/3.1.8/include/v8-debug.h +384 -0
- data/ext/v8/upstream/3.1.8/include/v8-preparser.h +116 -0
- data/ext/v8/upstream/3.1.8/include/v8-profiler.h +426 -0
- data/ext/v8/upstream/3.1.8/include/v8-testing.h +99 -0
- data/ext/v8/upstream/3.1.8/include/v8.h +3846 -0
- data/ext/v8/upstream/3.1.8/include/v8stdint.h +53 -0
- data/ext/v8/upstream/3.1.8/preparser/preparser-process.cc +206 -0
- data/ext/v8/upstream/3.1.8/src/SConscript +356 -0
- data/ext/v8/upstream/3.1.8/src/accessors.cc +907 -0
- data/ext/v8/upstream/3.1.8/src/accessors.h +121 -0
- data/ext/v8/upstream/3.1.8/src/allocation.cc +204 -0
- data/ext/v8/upstream/3.1.8/src/allocation.h +176 -0
- data/ext/v8/upstream/3.1.8/src/api.cc +5191 -0
- data/ext/v8/upstream/3.1.8/src/api.h +508 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/apinatives.js +0 -0
- data/ext/v8/upstream/3.1.8/src/apiutils.h +80 -0
- data/ext/v8/upstream/3.1.8/src/arguments.h +105 -0
- data/ext/v8/upstream/3.1.8/src/arm/assembler-arm-inl.h +352 -0
- data/ext/v8/upstream/3.1.8/src/arm/assembler-arm.cc +2756 -0
- data/ext/v8/upstream/3.1.8/src/arm/assembler-arm.h +1294 -0
- data/ext/v8/upstream/3.1.8/src/arm/builtins-arm.cc +1628 -0
- data/ext/v8/upstream/3.1.8/src/arm/code-stubs-arm.cc +6783 -0
- data/ext/v8/upstream/3.1.8/src/arm/code-stubs-arm.h +657 -0
- data/ext/v8/upstream/3.1.8/src/arm/codegen-arm-inl.h +48 -0
- data/ext/v8/upstream/3.1.8/src/arm/codegen-arm.cc +7403 -0
- data/ext/v8/upstream/3.1.8/src/arm/codegen-arm.h +595 -0
- data/ext/v8/upstream/3.1.8/src/arm/constants-arm.cc +152 -0
- data/ext/v8/upstream/3.1.8/src/arm/constants-arm.h +769 -0
- data/ext/v8/upstream/3.1.8/src/arm/cpu-arm.cc +147 -0
- data/ext/v8/upstream/3.1.8/src/arm/debug-arm.cc +315 -0
- data/ext/v8/upstream/3.1.8/src/arm/deoptimizer-arm.cc +700 -0
- data/ext/v8/upstream/3.1.8/src/arm/disasm-arm.cc +1439 -0
- data/ext/v8/upstream/3.1.8/src/arm/frames-arm.cc +45 -0
- data/ext/v8/upstream/3.1.8/src/arm/frames-arm.h +168 -0
- data/ext/v8/upstream/3.1.8/src/arm/full-codegen-arm.cc +4230 -0
- data/ext/v8/upstream/3.1.8/src/arm/ic-arm.cc +1799 -0
- data/ext/v8/upstream/3.1.8/src/arm/jump-target-arm.cc +174 -0
- data/ext/v8/upstream/3.1.8/src/arm/lithium-arm.cc +2041 -0
- data/ext/v8/upstream/3.1.8/src/arm/lithium-arm.h +2046 -0
- data/ext/v8/upstream/3.1.8/src/arm/lithium-codegen-arm.cc +3822 -0
- data/ext/v8/upstream/3.1.8/src/arm/lithium-codegen-arm.h +312 -0
- data/ext/v8/upstream/3.1.8/src/arm/lithium-gap-resolver-arm.cc +303 -0
- data/ext/v8/upstream/3.1.8/src/arm/lithium-gap-resolver-arm.h +84 -0
- data/ext/v8/upstream/3.1.8/src/arm/macro-assembler-arm.cc +2701 -0
- data/ext/v8/upstream/3.1.8/src/arm/macro-assembler-arm.h +1015 -0
- data/ext/v8/upstream/3.1.8/src/arm/regexp-macro-assembler-arm.cc +1280 -0
- data/ext/v8/upstream/3.1.8/src/arm/regexp-macro-assembler-arm.h +252 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/arm/register-allocator-arm-inl.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/arm/register-allocator-arm.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/arm/register-allocator-arm.h +0 -0
- data/ext/v8/upstream/3.1.8/src/arm/simulator-arm.cc +3165 -0
- data/ext/v8/upstream/3.1.8/src/arm/simulator-arm.h +402 -0
- data/ext/v8/upstream/3.1.8/src/arm/stub-cache-arm.cc +4077 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/arm/virtual-frame-arm-inl.h +0 -0
- data/ext/v8/upstream/3.1.8/src/arm/virtual-frame-arm.cc +843 -0
- data/ext/v8/upstream/3.1.8/src/arm/virtual-frame-arm.h +520 -0
- data/ext/v8/upstream/3.1.8/src/array.js +1231 -0
- data/ext/v8/upstream/3.1.8/src/assembler.cc +973 -0
- data/ext/v8/upstream/3.1.8/src/assembler.h +787 -0
- data/ext/v8/upstream/3.1.8/src/ast-inl.h +107 -0
- data/ext/v8/upstream/3.1.8/src/ast.cc +1067 -0
- data/ext/v8/upstream/3.1.8/src/ast.h +2177 -0
- data/ext/v8/upstream/3.1.8/src/atomicops.h +165 -0
- data/ext/v8/upstream/3.1.8/src/atomicops_internals_arm_gcc.h +145 -0
- data/ext/v8/upstream/3.1.8/src/atomicops_internals_x86_gcc.cc +126 -0
- data/ext/v8/upstream/3.1.8/src/atomicops_internals_x86_gcc.h +287 -0
- data/ext/v8/upstream/3.1.8/src/atomicops_internals_x86_macosx.h +301 -0
- data/ext/v8/upstream/3.1.8/src/atomicops_internals_x86_msvc.h +203 -0
- data/ext/v8/upstream/3.1.8/src/bignum-dtoa.cc +655 -0
- data/ext/v8/upstream/3.1.8/src/bignum-dtoa.h +81 -0
- data/ext/v8/upstream/3.1.8/src/bignum.cc +768 -0
- data/ext/v8/upstream/3.1.8/src/bignum.h +140 -0
- data/ext/v8/upstream/3.1.8/src/bootstrapper.cc +1888 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/bootstrapper.h +0 -0
- data/ext/v8/upstream/3.1.8/src/builtins.cc +1586 -0
- data/ext/v8/upstream/3.1.8/src/builtins.h +339 -0
- data/ext/v8/upstream/3.1.8/src/bytecodes-irregexp.h +105 -0
- data/ext/v8/upstream/3.1.8/src/cached-powers.cc +177 -0
- data/ext/v8/upstream/3.1.8/src/cached-powers.h +65 -0
- data/ext/v8/upstream/3.1.8/src/char-predicates-inl.h +94 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/char-predicates.h +0 -0
- data/ext/v8/upstream/3.1.8/src/checks.cc +110 -0
- data/ext/v8/upstream/3.1.8/src/checks.h +292 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/circular-queue-inl.h +0 -0
- data/ext/v8/upstream/3.1.8/src/circular-queue.cc +122 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/circular-queue.h +0 -0
- data/ext/v8/upstream/3.1.8/src/code-stubs.cc +230 -0
- data/ext/v8/upstream/3.1.8/src/code-stubs.h +950 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/code.h +0 -0
- data/ext/v8/upstream/3.1.8/src/codegen-inl.h +64 -0
- data/ext/v8/upstream/3.1.8/src/codegen.cc +495 -0
- data/ext/v8/upstream/3.1.8/src/codegen.h +245 -0
- data/ext/v8/upstream/3.1.8/src/compilation-cache.cc +654 -0
- data/ext/v8/upstream/3.1.8/src/compilation-cache.h +112 -0
- data/ext/v8/upstream/3.1.8/src/compiler.cc +806 -0
- data/ext/v8/upstream/3.1.8/src/compiler.h +290 -0
- data/ext/v8/upstream/3.1.8/src/contexts.cc +320 -0
- data/ext/v8/upstream/3.1.8/src/contexts.h +376 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/conversions-inl.h +0 -0
- data/ext/v8/upstream/3.1.8/src/conversions.cc +1069 -0
- data/ext/v8/upstream/3.1.8/src/conversions.h +122 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/counters.cc +0 -0
- data/ext/v8/upstream/3.1.8/src/counters.h +242 -0
- data/ext/v8/upstream/3.1.8/src/cpu-profiler-inl.h +100 -0
- data/ext/v8/upstream/3.1.8/src/cpu-profiler.cc +554 -0
- data/ext/v8/upstream/3.1.8/src/cpu-profiler.h +291 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/cpu.h +0 -0
- data/ext/v8/upstream/3.1.8/src/d8-debug.cc +367 -0
- data/ext/v8/upstream/3.1.8/src/d8-debug.h +157 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/d8-posix.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/d8-readline.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/d8-windows.cc +0 -0
- data/ext/v8/upstream/3.1.8/src/d8.cc +792 -0
- data/ext/v8/upstream/3.1.8/src/d8.gyp +85 -0
- data/ext/v8/upstream/3.1.8/src/d8.h +231 -0
- data/ext/v8/upstream/3.1.8/src/d8.js +2798 -0
- data/ext/v8/upstream/3.1.8/src/data-flow.cc +545 -0
- data/ext/v8/upstream/3.1.8/src/data-flow.h +379 -0
- data/ext/v8/upstream/3.1.8/src/date.js +1103 -0
- data/ext/v8/upstream/3.1.8/src/dateparser-inl.h +125 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/dateparser.cc +0 -0
- data/ext/v8/upstream/3.1.8/src/dateparser.h +263 -0
- data/ext/v8/upstream/3.1.8/src/debug-agent.cc +446 -0
- data/ext/v8/upstream/3.1.8/src/debug-agent.h +131 -0
- data/ext/v8/upstream/3.1.8/src/debug-debugger.js +2569 -0
- data/ext/v8/upstream/3.1.8/src/debug.cc +3085 -0
- data/ext/v8/upstream/3.1.8/src/debug.h +1025 -0
- data/ext/v8/upstream/3.1.8/src/deoptimizer.cc +1185 -0
- data/ext/v8/upstream/3.1.8/src/deoptimizer.h +529 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/disasm.h +0 -0
- data/ext/v8/upstream/3.1.8/src/disassembler.cc +338 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/disassembler.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/diy-fp.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/diy-fp.h +0 -0
- data/ext/v8/upstream/3.1.8/src/double.h +238 -0
- data/ext/v8/upstream/3.1.8/src/dtoa.cc +103 -0
- data/ext/v8/upstream/3.1.8/src/dtoa.h +85 -0
- data/ext/v8/upstream/3.1.8/src/execution.cc +735 -0
- data/ext/v8/upstream/3.1.8/src/execution.h +322 -0
- data/ext/v8/upstream/3.1.8/src/extensions/experimental/experimental.gyp +53 -0
- data/ext/v8/upstream/3.1.8/src/extensions/experimental/i18n-extension.cc +264 -0
- data/ext/v8/upstream/3.1.8/src/extensions/experimental/i18n-extension.h +64 -0
- data/ext/v8/upstream/3.1.8/src/extensions/externalize-string-extension.cc +141 -0
- data/ext/v8/upstream/3.1.8/src/extensions/externalize-string-extension.h +50 -0
- data/ext/v8/upstream/3.1.8/src/extensions/gc-extension.cc +58 -0
- data/ext/v8/upstream/3.1.8/src/extensions/gc-extension.h +49 -0
- data/ext/v8/upstream/3.1.8/src/factory.cc +1087 -0
- data/ext/v8/upstream/3.1.8/src/factory.h +432 -0
- data/ext/v8/upstream/3.1.8/src/fast-dtoa.cc +736 -0
- data/ext/v8/upstream/3.1.8/src/fast-dtoa.h +83 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/fixed-dtoa.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/fixed-dtoa.h +0 -0
- data/ext/v8/upstream/3.1.8/src/flag-definitions.h +552 -0
- data/ext/v8/upstream/3.1.8/src/flags.cc +551 -0
- data/ext/v8/upstream/3.1.8/src/flags.h +79 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/frame-element.cc +0 -0
- data/ext/v8/upstream/3.1.8/src/frame-element.h +277 -0
- data/ext/v8/upstream/3.1.8/src/frames-inl.h +210 -0
- data/ext/v8/upstream/3.1.8/src/frames.cc +1232 -0
- data/ext/v8/upstream/3.1.8/src/frames.h +826 -0
- data/ext/v8/upstream/3.1.8/src/full-codegen.cc +1382 -0
- data/ext/v8/upstream/3.1.8/src/full-codegen.h +751 -0
- data/ext/v8/upstream/3.1.8/src/func-name-inferrer.cc +90 -0
- data/ext/v8/upstream/3.1.8/src/func-name-inferrer.h +111 -0
- data/ext/v8/upstream/3.1.8/src/gdb-jit.cc +1547 -0
- data/ext/v8/upstream/3.1.8/src/gdb-jit.h +138 -0
- data/ext/v8/upstream/3.1.8/src/global-handles.cc +534 -0
- data/ext/v8/upstream/3.1.8/src/global-handles.h +181 -0
- data/ext/v8/upstream/3.1.8/src/globals.h +325 -0
- data/ext/v8/upstream/3.1.8/src/handles-inl.h +80 -0
- data/ext/v8/upstream/3.1.8/src/handles.cc +910 -0
- data/ext/v8/upstream/3.1.8/src/handles.h +424 -0
- data/ext/v8/upstream/3.1.8/src/hashmap.cc +230 -0
- data/ext/v8/upstream/3.1.8/src/hashmap.h +121 -0
- data/ext/v8/upstream/3.1.8/src/heap-inl.h +587 -0
- data/ext/v8/upstream/3.1.8/src/heap-profiler.cc +1128 -0
- data/ext/v8/upstream/3.1.8/src/heap-profiler.h +381 -0
- data/ext/v8/upstream/3.1.8/src/heap.cc +5610 -0
- data/ext/v8/upstream/3.1.8/src/heap.h +2218 -0
- data/ext/v8/upstream/3.1.8/src/hydrogen-instructions.cc +1490 -0
- data/ext/v8/upstream/3.1.8/src/hydrogen-instructions.h +3493 -0
- data/ext/v8/upstream/3.1.8/src/hydrogen.cc +6056 -0
- data/ext/v8/upstream/3.1.8/src/hydrogen.h +1091 -0
- data/ext/v8/upstream/3.1.8/src/ia32/assembler-ia32-inl.h +429 -0
- data/ext/v8/upstream/3.1.8/src/ia32/assembler-ia32.cc +2800 -0
- data/ext/v8/upstream/3.1.8/src/ia32/assembler-ia32.h +1093 -0
- data/ext/v8/upstream/3.1.8/src/ia32/builtins-ia32.cc +1590 -0
- data/ext/v8/upstream/3.1.8/src/ia32/code-stubs-ia32.cc +6624 -0
- data/ext/v8/upstream/3.1.8/src/ia32/code-stubs-ia32.h +536 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/codegen-ia32-inl.h +0 -0
- data/ext/v8/upstream/3.1.8/src/ia32/codegen-ia32.cc +10354 -0
- data/ext/v8/upstream/3.1.8/src/ia32/codegen-ia32.h +798 -0
- data/ext/v8/upstream/3.1.8/src/ia32/cpu-ia32.cc +87 -0
- data/ext/v8/upstream/3.1.8/src/ia32/debug-ia32.cc +309 -0
- data/ext/v8/upstream/3.1.8/src/ia32/deoptimizer-ia32.cc +664 -0
- data/ext/v8/upstream/3.1.8/src/ia32/disasm-ia32.cc +1597 -0
- data/ext/v8/upstream/3.1.8/src/ia32/frames-ia32.cc +45 -0
- data/ext/v8/upstream/3.1.8/src/ia32/frames-ia32.h +140 -0
- data/ext/v8/upstream/3.1.8/src/ia32/full-codegen-ia32.cc +4278 -0
- data/ext/v8/upstream/3.1.8/src/ia32/ic-ia32.cc +1786 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/jump-target-ia32.cc +0 -0
- data/ext/v8/upstream/3.1.8/src/ia32/lithium-codegen-ia32.cc +3880 -0
- data/ext/v8/upstream/3.1.8/src/ia32/lithium-codegen-ia32.h +309 -0
- data/ext/v8/upstream/3.1.8/src/ia32/lithium-gap-resolver-ia32.cc +460 -0
- data/ext/v8/upstream/3.1.8/src/ia32/lithium-gap-resolver-ia32.h +110 -0
- data/ext/v8/upstream/3.1.8/src/ia32/lithium-ia32.cc +2095 -0
- data/ext/v8/upstream/3.1.8/src/ia32/lithium-ia32.h +2127 -0
- data/ext/v8/upstream/3.1.8/src/ia32/macro-assembler-ia32.cc +2031 -0
- data/ext/v8/upstream/3.1.8/src/ia32/macro-assembler-ia32.h +798 -0
- data/ext/v8/upstream/3.1.8/src/ia32/regexp-macro-assembler-ia32.cc +1253 -0
- data/ext/v8/upstream/3.1.8/src/ia32/regexp-macro-assembler-ia32.h +215 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/register-allocator-ia32-inl.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/register-allocator-ia32.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/register-allocator-ia32.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/simulator-ia32.cc +0 -0
- data/ext/v8/upstream/3.1.8/src/ia32/simulator-ia32.h +72 -0
- data/ext/v8/upstream/3.1.8/src/ia32/stub-cache-ia32.cc +3732 -0
- data/ext/v8/upstream/3.1.8/src/ia32/virtual-frame-ia32.cc +1360 -0
- data/ext/v8/upstream/3.1.8/src/ia32/virtual-frame-ia32.h +646 -0
- data/ext/v8/upstream/3.1.8/src/ic-inl.h +129 -0
- data/ext/v8/upstream/3.1.8/src/ic.cc +2333 -0
- data/ext/v8/upstream/3.1.8/src/ic.h +639 -0
- data/ext/v8/upstream/3.1.8/src/inspector.cc +63 -0
- data/ext/v8/upstream/3.1.8/src/inspector.h +62 -0
- data/ext/v8/upstream/3.1.8/src/interpreter-irregexp.cc +655 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/interpreter-irregexp.h +0 -0
- data/ext/v8/upstream/3.1.8/src/json.js +342 -0
- data/ext/v8/upstream/3.1.8/src/jsregexp.cc +5340 -0
- data/ext/v8/upstream/3.1.8/src/jsregexp.h +1484 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/jump-target-heavy-inl.h +0 -0
- data/ext/v8/upstream/3.1.8/src/jump-target-heavy.cc +430 -0
- data/ext/v8/upstream/3.1.8/src/jump-target-heavy.h +244 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/jump-target-inl.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/jump-target-light-inl.h +0 -0
- data/ext/v8/upstream/3.1.8/src/jump-target-light.cc +111 -0
- data/ext/v8/upstream/3.1.8/src/jump-target-light.h +193 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/jump-target.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/jump-target.h +0 -0
- data/ext/v8/upstream/3.1.8/src/list-inl.h +206 -0
- data/ext/v8/upstream/3.1.8/src/list.h +164 -0
- data/ext/v8/upstream/3.1.8/src/lithium-allocator-inl.h +140 -0
- data/ext/v8/upstream/3.1.8/src/lithium-allocator.cc +2093 -0
- data/ext/v8/upstream/3.1.8/src/lithium-allocator.h +644 -0
- data/ext/v8/upstream/3.1.8/src/lithium.cc +168 -0
- data/ext/v8/upstream/3.1.8/src/lithium.h +592 -0
- data/ext/v8/upstream/3.1.8/src/liveedit-debugger.js +1082 -0
- data/ext/v8/upstream/3.1.8/src/liveedit.cc +1650 -0
- data/ext/v8/upstream/3.1.8/src/liveedit.h +174 -0
- data/ext/v8/upstream/3.1.8/src/liveobjectlist-inl.h +126 -0
- data/ext/v8/upstream/3.1.8/src/liveobjectlist.cc +2527 -0
- data/ext/v8/upstream/3.1.8/src/liveobjectlist.h +322 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/log-inl.h +0 -0
- data/ext/v8/upstream/3.1.8/src/log-utils.cc +336 -0
- data/ext/v8/upstream/3.1.8/src/log-utils.h +232 -0
- data/ext/v8/upstream/3.1.8/src/log.cc +1608 -0
- data/ext/v8/upstream/3.1.8/src/log.h +379 -0
- data/ext/v8/upstream/3.1.8/src/macro-assembler.h +120 -0
- data/ext/v8/upstream/3.1.8/src/macros.py +178 -0
- data/ext/v8/upstream/3.1.8/src/mark-compact.cc +2957 -0
- data/ext/v8/upstream/3.1.8/src/mark-compact.h +433 -0
- data/ext/v8/upstream/3.1.8/src/math.js +264 -0
- data/ext/v8/upstream/3.1.8/src/memory.h +82 -0
- data/ext/v8/upstream/3.1.8/src/messages.cc +164 -0
- data/ext/v8/upstream/3.1.8/src/messages.h +114 -0
- data/ext/v8/upstream/3.1.8/src/messages.js +1071 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/assembler-mips-inl.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/assembler-mips.cc +0 -0
- data/ext/v8/upstream/3.1.8/src/mips/assembler-mips.h +667 -0
- data/ext/v8/upstream/3.1.8/src/mips/builtins-mips.cc +205 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/codegen-mips-inl.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/codegen-mips.cc +0 -0
- data/ext/v8/upstream/3.1.8/src/mips/codegen-mips.h +431 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/constants-mips.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/constants-mips.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/cpu-mips.cc +0 -0
- data/ext/v8/upstream/3.1.8/src/mips/debug-mips.cc +127 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/disasm-mips.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/fast-codegen-mips.cc +0 -0
- data/ext/v8/upstream/3.1.8/src/mips/frames-mips.cc +96 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/frames-mips.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/full-codegen-mips.cc +0 -0
- data/ext/v8/upstream/3.1.8/src/mips/ic-mips.cc +208 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/jump-target-mips.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/macro-assembler-mips.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/macro-assembler-mips.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/register-allocator-mips-inl.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/register-allocator-mips.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/register-allocator-mips.h +0 -0
- data/ext/v8/upstream/3.1.8/src/mips/simulator-mips.cc +1650 -0
- data/ext/v8/upstream/3.1.8/src/mips/simulator-mips.h +311 -0
- data/ext/v8/upstream/3.1.8/src/mips/stub-cache-mips.cc +418 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/virtual-frame-mips.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/virtual-frame-mips.h +0 -0
- data/ext/v8/upstream/3.1.8/src/mirror-debugger.js +2380 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mksnapshot.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/natives.h +0 -0
- data/ext/v8/upstream/3.1.8/src/objects-debug.cc +722 -0
- data/ext/v8/upstream/3.1.8/src/objects-inl.h +3946 -0
- data/ext/v8/upstream/3.1.8/src/objects-printer.cc +801 -0
- data/ext/v8/upstream/3.1.8/src/objects-visiting.cc +142 -0
- data/ext/v8/upstream/3.1.8/src/objects-visiting.h +401 -0
- data/ext/v8/upstream/3.1.8/src/objects.cc +10044 -0
- data/ext/v8/upstream/3.1.8/src/objects.h +6571 -0
- data/ext/v8/upstream/3.1.8/src/parser.cc +5165 -0
- data/ext/v8/upstream/3.1.8/src/parser.h +802 -0
- data/ext/v8/upstream/3.1.8/src/platform-cygwin.cc +745 -0
- data/ext/v8/upstream/3.1.8/src/platform-freebsd.cc +702 -0
- data/ext/v8/upstream/3.1.8/src/platform-linux.cc +981 -0
- data/ext/v8/upstream/3.1.8/src/platform-macos.cc +732 -0
- data/ext/v8/upstream/3.1.8/src/platform-nullos.cc +498 -0
- data/ext/v8/upstream/3.1.8/src/platform-openbsd.cc +657 -0
- data/ext/v8/upstream/3.1.8/src/platform-posix.cc +399 -0
- data/ext/v8/upstream/3.1.8/src/platform-solaris.cc +714 -0
- data/ext/v8/upstream/3.1.8/src/platform-win32.cc +1974 -0
- data/ext/v8/upstream/3.1.8/src/platform.h +636 -0
- data/ext/v8/upstream/3.1.8/src/preparse-data.cc +183 -0
- data/ext/v8/upstream/3.1.8/src/preparse-data.h +249 -0
- data/ext/v8/upstream/3.1.8/src/preparser-api.cc +213 -0
- data/ext/v8/upstream/3.1.8/src/preparser.cc +1205 -0
- data/ext/v8/upstream/3.1.8/src/preparser.h +278 -0
- data/ext/v8/upstream/3.1.8/src/prettyprinter.cc +1539 -0
- data/ext/v8/upstream/3.1.8/src/prettyprinter.h +223 -0
- data/ext/v8/upstream/3.1.8/src/profile-generator-inl.h +128 -0
- data/ext/v8/upstream/3.1.8/src/profile-generator.cc +2899 -0
- data/ext/v8/upstream/3.1.8/src/profile-generator.h +1151 -0
- data/ext/v8/upstream/3.1.8/src/property.cc +96 -0
- data/ext/v8/upstream/3.1.8/src/property.h +337 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/regexp-macro-assembler-irregexp-inl.h +0 -0
- data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler-irregexp.cc +470 -0
- data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler-irregexp.h +142 -0
- data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler-tracer.cc +373 -0
- data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler-tracer.h +104 -0
- data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler.cc +257 -0
- data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler.h +231 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/regexp-stack.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/regexp-stack.h +0 -0
- data/ext/v8/upstream/3.1.8/src/regexp.js +483 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/register-allocator-inl.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/register-allocator.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/register-allocator.h +0 -0
- data/ext/v8/upstream/3.1.8/src/rewriter.cc +1023 -0
- data/ext/v8/upstream/3.1.8/src/rewriter.h +59 -0
- data/ext/v8/upstream/3.1.8/src/runtime-profiler.cc +443 -0
- data/ext/v8/upstream/3.1.8/src/runtime-profiler.h +77 -0
- data/ext/v8/upstream/3.1.8/src/runtime.cc +11592 -0
- data/ext/v8/upstream/3.1.8/src/runtime.h +582 -0
- data/ext/v8/upstream/3.1.8/src/runtime.js +643 -0
- data/ext/v8/upstream/3.1.8/src/safepoint-table.cc +253 -0
- data/ext/v8/upstream/3.1.8/src/safepoint-table.h +263 -0
- data/ext/v8/upstream/3.1.8/src/scanner-base.cc +971 -0
- data/ext/v8/upstream/3.1.8/src/scanner-base.h +653 -0
- data/ext/v8/upstream/3.1.8/src/scanner.cc +586 -0
- data/ext/v8/upstream/3.1.8/src/scanner.h +194 -0
- data/ext/v8/upstream/3.1.8/src/scopeinfo.cc +636 -0
- data/ext/v8/upstream/3.1.8/src/scopeinfo.h +238 -0
- data/ext/v8/upstream/3.1.8/src/scopes.cc +1063 -0
- data/ext/v8/upstream/3.1.8/src/scopes.h +494 -0
- data/ext/v8/upstream/3.1.8/src/serialize.cc +1535 -0
- data/ext/v8/upstream/3.1.8/src/serialize.h +584 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/shell.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/simulator.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/smart-pointer.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/snapshot-common.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/snapshot-empty.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/snapshot.h +0 -0
- data/ext/v8/upstream/3.1.8/src/spaces-inl.h +524 -0
- data/ext/v8/upstream/3.1.8/src/spaces.cc +3254 -0
- data/ext/v8/upstream/3.1.8/src/spaces.h +2362 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/splay-tree-inl.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/splay-tree.h +0 -0
- data/ext/v8/upstream/3.1.8/src/string-search.cc +40 -0
- data/ext/v8/upstream/3.1.8/src/string-search.h +567 -0
- data/ext/v8/upstream/3.1.8/src/string-stream.cc +584 -0
- data/ext/v8/upstream/3.1.8/src/string-stream.h +191 -0
- data/ext/v8/upstream/3.1.8/src/string.js +915 -0
- data/ext/v8/upstream/3.1.8/src/strtod.cc +440 -0
- data/ext/v8/upstream/3.1.8/src/strtod.h +40 -0
- data/ext/v8/upstream/3.1.8/src/stub-cache.cc +1878 -0
- data/ext/v8/upstream/3.1.8/src/stub-cache.h +849 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/third_party/valgrind/valgrind.h +0 -0
- data/ext/v8/upstream/3.1.8/src/token.cc +63 -0
- data/ext/v8/upstream/3.1.8/src/token.h +288 -0
- data/ext/v8/upstream/3.1.8/src/top.cc +1152 -0
- data/ext/v8/upstream/3.1.8/src/top.h +608 -0
- data/ext/v8/upstream/3.1.8/src/type-info.cc +406 -0
- data/ext/v8/upstream/3.1.8/src/type-info.h +283 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/unbound-queue-inl.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/unbound-queue.h +0 -0
- data/ext/v8/upstream/3.1.8/src/unicode-inl.h +238 -0
- data/ext/v8/upstream/3.1.8/src/unicode.cc +1624 -0
- data/ext/v8/upstream/3.1.8/src/unicode.h +280 -0
- data/ext/v8/upstream/3.1.8/src/uri.js +402 -0
- data/ext/v8/upstream/3.1.8/src/utils.cc +371 -0
- data/ext/v8/upstream/3.1.8/src/utils.h +793 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/v8-counters.cc +0 -0
- data/ext/v8/upstream/3.1.8/src/v8-counters.h +290 -0
- data/ext/v8/upstream/3.1.8/src/v8.cc +270 -0
- data/ext/v8/upstream/3.1.8/src/v8.h +127 -0
- data/ext/v8/upstream/3.1.8/src/v8checks.h +64 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/v8dll-main.cc +0 -0
- data/ext/v8/upstream/3.1.8/src/v8globals.h +480 -0
- data/ext/v8/upstream/3.1.8/src/v8natives.js +1252 -0
- data/ext/v8/upstream/3.1.8/src/v8preparserdll-main.cc +39 -0
- data/ext/v8/upstream/3.1.8/src/v8threads.cc +440 -0
- data/ext/v8/upstream/3.1.8/src/v8threads.h +157 -0
- data/ext/v8/upstream/3.1.8/src/v8utils.h +354 -0
- data/ext/v8/upstream/3.1.8/src/variables.cc +132 -0
- data/ext/v8/upstream/3.1.8/src/variables.h +212 -0
- data/ext/v8/upstream/3.1.8/src/version.cc +95 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/version.h +0 -0
- data/ext/v8/upstream/3.1.8/src/virtual-frame-heavy-inl.h +190 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/virtual-frame-heavy.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/virtual-frame-inl.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/virtual-frame-light-inl.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/virtual-frame-light.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/virtual-frame.cc +0 -0
- data/ext/v8/upstream/3.1.8/src/virtual-frame.h +59 -0
- data/ext/v8/upstream/3.1.8/src/vm-state-inl.h +134 -0
- data/ext/v8/upstream/3.1.8/src/vm-state.h +68 -0
- data/ext/v8/upstream/3.1.8/src/win32-headers.h +95 -0
- data/ext/v8/upstream/3.1.8/src/x64/assembler-x64-inl.h +455 -0
- data/ext/v8/upstream/3.1.8/src/x64/assembler-x64.cc +3162 -0
- data/ext/v8/upstream/3.1.8/src/x64/assembler-x64.h +1584 -0
- data/ext/v8/upstream/3.1.8/src/x64/builtins-x64.cc +1492 -0
- data/ext/v8/upstream/3.1.8/src/x64/code-stubs-x64.cc +5150 -0
- data/ext/v8/upstream/3.1.8/src/x64/code-stubs-x64.h +519 -0
- data/ext/v8/upstream/3.1.8/src/x64/codegen-x64-inl.h +46 -0
- data/ext/v8/upstream/3.1.8/src/x64/codegen-x64.cc +8835 -0
- data/ext/v8/upstream/3.1.8/src/x64/codegen-x64.h +750 -0
- data/ext/v8/upstream/3.1.8/src/x64/cpu-x64.cc +86 -0
- data/ext/v8/upstream/3.1.8/src/x64/debug-x64.cc +316 -0
- data/ext/v8/upstream/3.1.8/src/x64/deoptimizer-x64.cc +781 -0
- data/ext/v8/upstream/3.1.8/src/x64/disasm-x64.cc +1737 -0
- data/ext/v8/upstream/3.1.8/src/x64/frames-x64.cc +45 -0
- data/ext/v8/upstream/3.1.8/src/x64/frames-x64.h +130 -0
- data/ext/v8/upstream/3.1.8/src/x64/full-codegen-x64.cc +3984 -0
- data/ext/v8/upstream/3.1.8/src/x64/ic-x64.cc +1761 -0
- data/ext/v8/upstream/3.1.8/src/x64/jump-target-x64.cc +437 -0
- data/ext/v8/upstream/3.1.8/src/x64/lithium-codegen-x64.cc +3639 -0
- data/ext/v8/upstream/3.1.8/src/x64/lithium-codegen-x64.h +305 -0
- data/ext/v8/upstream/3.1.8/src/x64/lithium-gap-resolver-x64.cc +320 -0
- data/ext/v8/upstream/3.1.8/src/x64/lithium-gap-resolver-x64.h +74 -0
- data/ext/v8/upstream/3.1.8/src/x64/lithium-x64.cc +2044 -0
- data/ext/v8/upstream/3.1.8/src/x64/lithium-x64.h +2052 -0
- data/ext/v8/upstream/3.1.8/src/x64/macro-assembler-x64.cc +2660 -0
- data/ext/v8/upstream/3.1.8/src/x64/macro-assembler-x64.h +1852 -0
- data/ext/v8/upstream/3.1.8/src/x64/regexp-macro-assembler-x64.cc +1382 -0
- data/ext/v8/upstream/3.1.8/src/x64/regexp-macro-assembler-x64.h +278 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/x64/register-allocator-x64-inl.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/x64/register-allocator-x64.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/x64/register-allocator-x64.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/x64/simulator-x64.cc +0 -0
- data/ext/v8/upstream/3.1.8/src/x64/simulator-x64.h +71 -0
- data/ext/v8/upstream/3.1.8/src/x64/stub-cache-x64.cc +3509 -0
- data/ext/v8/upstream/3.1.8/src/x64/virtual-frame-x64.cc +1292 -0
- data/ext/v8/upstream/3.1.8/src/x64/virtual-frame-x64.h +593 -0
- data/ext/v8/upstream/3.1.8/src/zone-inl.h +83 -0
- data/ext/v8/upstream/3.1.8/src/zone.cc +195 -0
- data/ext/v8/upstream/3.1.8/src/zone.h +233 -0
- data/ext/v8/upstream/3.1.8/tools/codemap.js +265 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/consarray.js +0 -0
- data/ext/v8/upstream/3.1.8/tools/csvparser.js +78 -0
- data/ext/v8/upstream/3.1.8/tools/disasm.py +92 -0
- data/ext/v8/upstream/3.1.8/tools/gc-nvp-trace-processor.py +328 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/generate-ten-powers.scm +0 -0
- data/ext/v8/upstream/3.1.8/tools/grokdump.py +840 -0
- data/ext/v8/upstream/3.1.8/tools/gyp/v8.gyp +869 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/js2c.py +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/jsmin.py +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/linux-tick-processor +0 -0
- data/ext/v8/upstream/3.1.8/tools/ll_prof.py +919 -0
- data/ext/v8/upstream/3.1.8/tools/logreader.js +185 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/mac-nm +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/mac-tick-processor +0 -0
- data/ext/v8/upstream/3.1.8/tools/oom_dump/README +31 -0
- data/ext/v8/upstream/3.1.8/tools/oom_dump/SConstruct +42 -0
- data/ext/v8/upstream/3.1.8/tools/oom_dump/oom_dump.cc +288 -0
- data/ext/v8/upstream/3.1.8/tools/presubmit.py +305 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/process-heap-prof.py +0 -0
- data/ext/v8/upstream/3.1.8/tools/profile.js +751 -0
- data/ext/v8/upstream/3.1.8/tools/profile_view.js +219 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/run-valgrind.py +0 -0
- data/ext/v8/upstream/3.1.8/tools/splaytree.js +316 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/stats-viewer.py +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/tickprocessor-driver.js +0 -0
- data/ext/v8/upstream/3.1.8/tools/tickprocessor.js +863 -0
- data/ext/v8/upstream/3.1.8/tools/utils.py +96 -0
- data/ext/v8/upstream/3.1.8/tools/visual_studio/README.txt +70 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/arm.vsprops +0 -0
- data/ext/v8/upstream/3.1.8/tools/visual_studio/common.vsprops +34 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/d8.vcproj +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/d8_arm.vcproj +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/d8_x64.vcproj +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/d8js2c.cmd +0 -0
- data/ext/v8/upstream/3.1.8/tools/visual_studio/debug.vsprops +17 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/ia32.vsprops +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/js2c.cmd +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/release.vsprops +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8.sln +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8.vcproj +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_arm.sln +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_arm.vcproj +0 -0
- data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_base.vcproj +1296 -0
- data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_base_arm.vcproj +1234 -0
- data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_base_x64.vcproj +1296 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_cctest.vcproj +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_cctest_arm.vcproj +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_cctest_x64.vcproj +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_mksnapshot.vcproj +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_mksnapshot_x64.vcproj +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_process_sample.vcproj +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_process_sample_arm.vcproj +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_process_sample_x64.vcproj +0 -0
- data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_shell_sample.vcproj +147 -0
- data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_shell_sample_arm.vcproj +147 -0
- data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_shell_sample_x64.vcproj +163 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_snapshot.vcproj +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_snapshot_cc.vcproj +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_snapshot_cc_x64.vcproj +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_snapshot_x64.vcproj +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_x64.sln +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_x64.vcproj +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/x64.vsprops +0 -0
- data/ext/v8/upstream/3.1.8/tools/windows-tick-processor.bat +30 -0
- data/ext/v8/upstream/Makefile +2 -1
- data/ext/v8/v8_template.cpp +2 -2
- data/lib/v8/version.rb +1 -1
- data/spec/redjs/jsapi_spec.rb +2 -2
- metadata +552 -490
- data/ext/v8/upstream/2.3.3/.gitignore +0 -26
- data/ext/v8/upstream/2.3.3/AUTHORS +0 -31
- data/ext/v8/upstream/2.3.3/ChangeLog +0 -1916
- data/ext/v8/upstream/2.3.3/LICENSE +0 -55
- data/ext/v8/upstream/2.3.3/SConstruct +0 -1154
- data/ext/v8/upstream/2.3.3/include/v8-debug.h +0 -381
- data/ext/v8/upstream/2.3.3/include/v8-profiler.h +0 -353
- data/ext/v8/upstream/2.3.3/include/v8.h +0 -3616
- data/ext/v8/upstream/2.3.3/src/SConscript +0 -330
- data/ext/v8/upstream/2.3.3/src/accessors.cc +0 -661
- data/ext/v8/upstream/2.3.3/src/accessors.h +0 -114
- data/ext/v8/upstream/2.3.3/src/allocation.cc +0 -198
- data/ext/v8/upstream/2.3.3/src/allocation.h +0 -169
- data/ext/v8/upstream/2.3.3/src/api.cc +0 -4795
- data/ext/v8/upstream/2.3.3/src/api.h +0 -485
- data/ext/v8/upstream/2.3.3/src/apiutils.h +0 -69
- data/ext/v8/upstream/2.3.3/src/arguments.h +0 -96
- data/ext/v8/upstream/2.3.3/src/arm/assembler-arm-inl.h +0 -305
- data/ext/v8/upstream/2.3.3/src/arm/assembler-arm.cc +0 -2580
- data/ext/v8/upstream/2.3.3/src/arm/assembler-arm.h +0 -1275
- data/ext/v8/upstream/2.3.3/src/arm/builtins-arm.cc +0 -1320
- data/ext/v8/upstream/2.3.3/src/arm/codegen-arm-inl.h +0 -48
- data/ext/v8/upstream/2.3.3/src/arm/codegen-arm.cc +0 -11398
- data/ext/v8/upstream/2.3.3/src/arm/codegen-arm.h +0 -1102
- data/ext/v8/upstream/2.3.3/src/arm/constants-arm.cc +0 -154
- data/ext/v8/upstream/2.3.3/src/arm/constants-arm.h +0 -388
- data/ext/v8/upstream/2.3.3/src/arm/cpu-arm.cc +0 -142
- data/ext/v8/upstream/2.3.3/src/arm/debug-arm.cc +0 -309
- data/ext/v8/upstream/2.3.3/src/arm/disasm-arm.cc +0 -1459
- data/ext/v8/upstream/2.3.3/src/arm/fast-codegen-arm.cc +0 -241
- data/ext/v8/upstream/2.3.3/src/arm/frames-arm.cc +0 -123
- data/ext/v8/upstream/2.3.3/src/arm/frames-arm.h +0 -162
- data/ext/v8/upstream/2.3.3/src/arm/full-codegen-arm.cc +0 -3178
- data/ext/v8/upstream/2.3.3/src/arm/ic-arm.cc +0 -2258
- data/ext/v8/upstream/2.3.3/src/arm/jump-target-arm.cc +0 -164
- data/ext/v8/upstream/2.3.3/src/arm/macro-assembler-arm.cc +0 -1892
- data/ext/v8/upstream/2.3.3/src/arm/macro-assembler-arm.h +0 -727
- data/ext/v8/upstream/2.3.3/src/arm/regexp-macro-assembler-arm.cc +0 -1261
- data/ext/v8/upstream/2.3.3/src/arm/regexp-macro-assembler-arm.h +0 -266
- data/ext/v8/upstream/2.3.3/src/arm/simulator-arm.cc +0 -2822
- data/ext/v8/upstream/2.3.3/src/arm/simulator-arm.h +0 -361
- data/ext/v8/upstream/2.3.3/src/arm/stub-cache-arm.cc +0 -2387
- data/ext/v8/upstream/2.3.3/src/arm/virtual-frame-arm.cc +0 -834
- data/ext/v8/upstream/2.3.3/src/arm/virtual-frame-arm.h +0 -519
- data/ext/v8/upstream/2.3.3/src/array.js +0 -1127
- data/ext/v8/upstream/2.3.3/src/assembler.cc +0 -801
- data/ext/v8/upstream/2.3.3/src/assembler.h +0 -573
- data/ext/v8/upstream/2.3.3/src/ast-inl.h +0 -81
- data/ext/v8/upstream/2.3.3/src/ast.cc +0 -1152
- data/ext/v8/upstream/2.3.3/src/ast.h +0 -2106
- data/ext/v8/upstream/2.3.3/src/bootstrapper.cc +0 -1819
- data/ext/v8/upstream/2.3.3/src/builtins.cc +0 -1529
- data/ext/v8/upstream/2.3.3/src/builtins.h +0 -263
- data/ext/v8/upstream/2.3.3/src/bytecodes-irregexp.h +0 -104
- data/ext/v8/upstream/2.3.3/src/cached-powers.h +0 -119
- data/ext/v8/upstream/2.3.3/src/char-predicates-inl.h +0 -86
- data/ext/v8/upstream/2.3.3/src/checks.cc +0 -100
- data/ext/v8/upstream/2.3.3/src/checks.h +0 -310
- data/ext/v8/upstream/2.3.3/src/circular-queue.cc +0 -121
- data/ext/v8/upstream/2.3.3/src/code-stubs.cc +0 -177
- data/ext/v8/upstream/2.3.3/src/code-stubs.h +0 -177
- data/ext/v8/upstream/2.3.3/src/codegen-inl.h +0 -60
- data/ext/v8/upstream/2.3.3/src/codegen.cc +0 -516
- data/ext/v8/upstream/2.3.3/src/codegen.h +0 -897
- data/ext/v8/upstream/2.3.3/src/compilation-cache.cc +0 -562
- data/ext/v8/upstream/2.3.3/src/compilation-cache.h +0 -102
- data/ext/v8/upstream/2.3.3/src/compiler.cc +0 -654
- data/ext/v8/upstream/2.3.3/src/compiler.h +0 -299
- data/ext/v8/upstream/2.3.3/src/contexts.cc +0 -256
- data/ext/v8/upstream/2.3.3/src/contexts.h +0 -342
- data/ext/v8/upstream/2.3.3/src/conversions.cc +0 -1119
- data/ext/v8/upstream/2.3.3/src/conversions.h +0 -123
- data/ext/v8/upstream/2.3.3/src/counters.h +0 -239
- data/ext/v8/upstream/2.3.3/src/cpu-profiler-inl.h +0 -100
- data/ext/v8/upstream/2.3.3/src/cpu-profiler.cc +0 -538
- data/ext/v8/upstream/2.3.3/src/cpu-profiler.h +0 -285
- data/ext/v8/upstream/2.3.3/src/d8-debug.cc +0 -356
- data/ext/v8/upstream/2.3.3/src/d8-debug.h +0 -155
- data/ext/v8/upstream/2.3.3/src/d8.cc +0 -783
- data/ext/v8/upstream/2.3.3/src/d8.h +0 -227
- data/ext/v8/upstream/2.3.3/src/d8.js +0 -1683
- data/ext/v8/upstream/2.3.3/src/data-flow.cc +0 -758
- data/ext/v8/upstream/2.3.3/src/data-flow.h +0 -278
- data/ext/v8/upstream/2.3.3/src/date.js +0 -1059
- data/ext/v8/upstream/2.3.3/src/dateparser-inl.h +0 -123
- data/ext/v8/upstream/2.3.3/src/dateparser.h +0 -244
- data/ext/v8/upstream/2.3.3/src/debug-agent.cc +0 -427
- data/ext/v8/upstream/2.3.3/src/debug-agent.h +0 -129
- data/ext/v8/upstream/2.3.3/src/debug-debugger.js +0 -2227
- data/ext/v8/upstream/2.3.3/src/debug.cc +0 -3005
- data/ext/v8/upstream/2.3.3/src/debug.h +0 -993
- data/ext/v8/upstream/2.3.3/src/disassembler.cc +0 -312
- data/ext/v8/upstream/2.3.3/src/double.h +0 -169
- data/ext/v8/upstream/2.3.3/src/dtoa-config.c +0 -92
- data/ext/v8/upstream/2.3.3/src/dtoa.cc +0 -77
- data/ext/v8/upstream/2.3.3/src/dtoa.h +0 -81
- data/ext/v8/upstream/2.3.3/src/execution.cc +0 -809
- data/ext/v8/upstream/2.3.3/src/execution.h +0 -336
- data/ext/v8/upstream/2.3.3/src/factory.cc +0 -1003
- data/ext/v8/upstream/2.3.3/src/factory.h +0 -410
- data/ext/v8/upstream/2.3.3/src/fast-codegen.cc +0 -746
- data/ext/v8/upstream/2.3.3/src/fast-codegen.h +0 -161
- data/ext/v8/upstream/2.3.3/src/fast-dtoa.cc +0 -505
- data/ext/v8/upstream/2.3.3/src/fast-dtoa.h +0 -58
- data/ext/v8/upstream/2.3.3/src/flag-definitions.h +0 -455
- data/ext/v8/upstream/2.3.3/src/flags.cc +0 -551
- data/ext/v8/upstream/2.3.3/src/flags.h +0 -81
- data/ext/v8/upstream/2.3.3/src/flow-graph.cc +0 -763
- data/ext/v8/upstream/2.3.3/src/flow-graph.h +0 -180
- data/ext/v8/upstream/2.3.3/src/frame-element.h +0 -273
- data/ext/v8/upstream/2.3.3/src/frames-inl.h +0 -217
- data/ext/v8/upstream/2.3.3/src/frames.cc +0 -826
- data/ext/v8/upstream/2.3.3/src/frames.h +0 -682
- data/ext/v8/upstream/2.3.3/src/full-codegen.cc +0 -1443
- data/ext/v8/upstream/2.3.3/src/full-codegen.h +0 -548
- data/ext/v8/upstream/2.3.3/src/func-name-inferrer.cc +0 -76
- data/ext/v8/upstream/2.3.3/src/func-name-inferrer.h +0 -135
- data/ext/v8/upstream/2.3.3/src/global-handles.cc +0 -520
- data/ext/v8/upstream/2.3.3/src/global-handles.h +0 -180
- data/ext/v8/upstream/2.3.3/src/globals.h +0 -669
- data/ext/v8/upstream/2.3.3/src/handles-inl.h +0 -76
- data/ext/v8/upstream/2.3.3/src/handles.cc +0 -825
- data/ext/v8/upstream/2.3.3/src/handles.h +0 -393
- data/ext/v8/upstream/2.3.3/src/hashmap.cc +0 -226
- data/ext/v8/upstream/2.3.3/src/hashmap.h +0 -120
- data/ext/v8/upstream/2.3.3/src/heap-inl.h +0 -493
- data/ext/v8/upstream/2.3.3/src/heap-profiler.cc +0 -779
- data/ext/v8/upstream/2.3.3/src/heap-profiler.h +0 -323
- data/ext/v8/upstream/2.3.3/src/heap.cc +0 -4994
- data/ext/v8/upstream/2.3.3/src/heap.h +0 -1984
- data/ext/v8/upstream/2.3.3/src/ia32/assembler-ia32-inl.h +0 -360
- data/ext/v8/upstream/2.3.3/src/ia32/assembler-ia32.cc +0 -2600
- data/ext/v8/upstream/2.3.3/src/ia32/assembler-ia32.h +0 -969
- data/ext/v8/upstream/2.3.3/src/ia32/builtins-ia32.cc +0 -1261
- data/ext/v8/upstream/2.3.3/src/ia32/codegen-ia32.cc +0 -13968
- data/ext/v8/upstream/2.3.3/src/ia32/codegen-ia32.h +0 -1097
- data/ext/v8/upstream/2.3.3/src/ia32/cpu-ia32.cc +0 -83
- data/ext/v8/upstream/2.3.3/src/ia32/debug-ia32.cc +0 -309
- data/ext/v8/upstream/2.3.3/src/ia32/disasm-ia32.cc +0 -1471
- data/ext/v8/upstream/2.3.3/src/ia32/fast-codegen-ia32.cc +0 -954
- data/ext/v8/upstream/2.3.3/src/ia32/fast-codegen-ia32.h +0 -155
- data/ext/v8/upstream/2.3.3/src/ia32/frames-ia32.cc +0 -115
- data/ext/v8/upstream/2.3.3/src/ia32/frames-ia32.h +0 -135
- data/ext/v8/upstream/2.3.3/src/ia32/full-codegen-ia32.cc +0 -3281
- data/ext/v8/upstream/2.3.3/src/ia32/ic-ia32.cc +0 -1966
- data/ext/v8/upstream/2.3.3/src/ia32/macro-assembler-ia32.cc +0 -1610
- data/ext/v8/upstream/2.3.3/src/ia32/macro-assembler-ia32.h +0 -610
- data/ext/v8/upstream/2.3.3/src/ia32/regexp-macro-assembler-ia32.cc +0 -1247
- data/ext/v8/upstream/2.3.3/src/ia32/regexp-macro-assembler-ia32.h +0 -214
- data/ext/v8/upstream/2.3.3/src/ia32/simulator-ia32.h +0 -62
- data/ext/v8/upstream/2.3.3/src/ia32/stub-cache-ia32.cc +0 -2750
- data/ext/v8/upstream/2.3.3/src/ia32/virtual-frame-ia32.cc +0 -1334
- data/ext/v8/upstream/2.3.3/src/ia32/virtual-frame-ia32.h +0 -627
- data/ext/v8/upstream/2.3.3/src/ic-inl.h +0 -120
- data/ext/v8/upstream/2.3.3/src/ic.cc +0 -1827
- data/ext/v8/upstream/2.3.3/src/ic.h +0 -515
- data/ext/v8/upstream/2.3.3/src/interpreter-irregexp.cc +0 -646
- data/ext/v8/upstream/2.3.3/src/json.js +0 -268
- data/ext/v8/upstream/2.3.3/src/jsregexp.cc +0 -5283
- data/ext/v8/upstream/2.3.3/src/jsregexp.h +0 -1463
- data/ext/v8/upstream/2.3.3/src/jump-target-heavy.cc +0 -429
- data/ext/v8/upstream/2.3.3/src/jump-target-heavy.h +0 -244
- data/ext/v8/upstream/2.3.3/src/jump-target-light.cc +0 -110
- data/ext/v8/upstream/2.3.3/src/jump-target-light.h +0 -192
- data/ext/v8/upstream/2.3.3/src/list-inl.h +0 -166
- data/ext/v8/upstream/2.3.3/src/list.h +0 -159
- data/ext/v8/upstream/2.3.3/src/liveedit-debugger.js +0 -1057
- data/ext/v8/upstream/2.3.3/src/liveedit.cc +0 -1480
- data/ext/v8/upstream/2.3.3/src/liveedit.h +0 -170
- data/ext/v8/upstream/2.3.3/src/log-utils.cc +0 -497
- data/ext/v8/upstream/2.3.3/src/log-utils.h +0 -289
- data/ext/v8/upstream/2.3.3/src/log.cc +0 -1561
- data/ext/v8/upstream/2.3.3/src/log.h +0 -384
- data/ext/v8/upstream/2.3.3/src/macro-assembler.h +0 -86
- data/ext/v8/upstream/2.3.3/src/macros.py +0 -177
- data/ext/v8/upstream/2.3.3/src/mark-compact.cc +0 -2330
- data/ext/v8/upstream/2.3.3/src/mark-compact.h +0 -451
- data/ext/v8/upstream/2.3.3/src/math.js +0 -264
- data/ext/v8/upstream/2.3.3/src/memory.h +0 -74
- data/ext/v8/upstream/2.3.3/src/messages.cc +0 -183
- data/ext/v8/upstream/2.3.3/src/messages.h +0 -113
- data/ext/v8/upstream/2.3.3/src/messages.js +0 -982
- data/ext/v8/upstream/2.3.3/src/mips/assembler-mips.h +0 -668
- data/ext/v8/upstream/2.3.3/src/mips/builtins-mips.cc +0 -205
- data/ext/v8/upstream/2.3.3/src/mips/codegen-mips.h +0 -434
- data/ext/v8/upstream/2.3.3/src/mips/debug-mips.cc +0 -131
- data/ext/v8/upstream/2.3.3/src/mips/frames-mips.cc +0 -102
- data/ext/v8/upstream/2.3.3/src/mips/ic-mips.cc +0 -220
- data/ext/v8/upstream/2.3.3/src/mips/simulator-mips.cc +0 -1651
- data/ext/v8/upstream/2.3.3/src/mips/simulator-mips.h +0 -311
- data/ext/v8/upstream/2.3.3/src/mips/stub-cache-mips.cc +0 -403
- data/ext/v8/upstream/2.3.3/src/mirror-debugger.js +0 -2380
- data/ext/v8/upstream/2.3.3/src/objects-debug.cc +0 -1366
- data/ext/v8/upstream/2.3.3/src/objects-inl.h +0 -3333
- data/ext/v8/upstream/2.3.3/src/objects.cc +0 -8820
- data/ext/v8/upstream/2.3.3/src/objects.h +0 -5373
- data/ext/v8/upstream/2.3.3/src/oprofile-agent.cc +0 -108
- data/ext/v8/upstream/2.3.3/src/oprofile-agent.h +0 -77
- data/ext/v8/upstream/2.3.3/src/parser.cc +0 -5207
- data/ext/v8/upstream/2.3.3/src/parser.h +0 -197
- data/ext/v8/upstream/2.3.3/src/platform-freebsd.cc +0 -667
- data/ext/v8/upstream/2.3.3/src/platform-linux.cc +0 -862
- data/ext/v8/upstream/2.3.3/src/platform-macos.cc +0 -665
- data/ext/v8/upstream/2.3.3/src/platform-nullos.cc +0 -454
- data/ext/v8/upstream/2.3.3/src/platform-openbsd.cc +0 -622
- data/ext/v8/upstream/2.3.3/src/platform-posix.cc +0 -362
- data/ext/v8/upstream/2.3.3/src/platform-solaris.cc +0 -653
- data/ext/v8/upstream/2.3.3/src/platform-win32.cc +0 -1911
- data/ext/v8/upstream/2.3.3/src/platform.h +0 -577
- data/ext/v8/upstream/2.3.3/src/powers-ten.h +0 -2461
- data/ext/v8/upstream/2.3.3/src/prettyprinter.cc +0 -1531
- data/ext/v8/upstream/2.3.3/src/prettyprinter.h +0 -221
- data/ext/v8/upstream/2.3.3/src/profile-generator-inl.h +0 -148
- data/ext/v8/upstream/2.3.3/src/profile-generator.cc +0 -1830
- data/ext/v8/upstream/2.3.3/src/profile-generator.h +0 -853
- data/ext/v8/upstream/2.3.3/src/property.cc +0 -96
- data/ext/v8/upstream/2.3.3/src/property.h +0 -315
- data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler-irregexp.cc +0 -464
- data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler-irregexp.h +0 -141
- data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler-tracer.cc +0 -356
- data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler-tracer.h +0 -103
- data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler.cc +0 -261
- data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler.h +0 -228
- data/ext/v8/upstream/2.3.3/src/regexp.js +0 -549
- data/ext/v8/upstream/2.3.3/src/rewriter.cc +0 -1038
- data/ext/v8/upstream/2.3.3/src/rewriter.h +0 -54
- data/ext/v8/upstream/2.3.3/src/runtime.cc +0 -10599
- data/ext/v8/upstream/2.3.3/src/runtime.h +0 -459
- data/ext/v8/upstream/2.3.3/src/runtime.js +0 -629
- data/ext/v8/upstream/2.3.3/src/scanner.cc +0 -1346
- data/ext/v8/upstream/2.3.3/src/scanner.h +0 -503
- data/ext/v8/upstream/2.3.3/src/scopeinfo.cc +0 -637
- data/ext/v8/upstream/2.3.3/src/scopeinfo.h +0 -233
- data/ext/v8/upstream/2.3.3/src/scopes.cc +0 -962
- data/ext/v8/upstream/2.3.3/src/scopes.h +0 -400
- data/ext/v8/upstream/2.3.3/src/serialize.cc +0 -1461
- data/ext/v8/upstream/2.3.3/src/serialize.h +0 -581
- data/ext/v8/upstream/2.3.3/src/spaces-inl.h +0 -483
- data/ext/v8/upstream/2.3.3/src/spaces.cc +0 -2901
- data/ext/v8/upstream/2.3.3/src/spaces.h +0 -2197
- data/ext/v8/upstream/2.3.3/src/string-stream.cc +0 -584
- data/ext/v8/upstream/2.3.3/src/string-stream.h +0 -189
- data/ext/v8/upstream/2.3.3/src/string.js +0 -1006
- data/ext/v8/upstream/2.3.3/src/stub-cache.cc +0 -1379
- data/ext/v8/upstream/2.3.3/src/stub-cache.h +0 -756
- data/ext/v8/upstream/2.3.3/src/third_party/dtoa/COPYING +0 -15
- data/ext/v8/upstream/2.3.3/src/third_party/dtoa/dtoa.c +0 -3334
- data/ext/v8/upstream/2.3.3/src/token.cc +0 -56
- data/ext/v8/upstream/2.3.3/src/token.h +0 -270
- data/ext/v8/upstream/2.3.3/src/top.cc +0 -1067
- data/ext/v8/upstream/2.3.3/src/top.h +0 -463
- data/ext/v8/upstream/2.3.3/src/type-info.cc +0 -53
- data/ext/v8/upstream/2.3.3/src/type-info.h +0 -244
- data/ext/v8/upstream/2.3.3/src/unicode-inl.h +0 -238
- data/ext/v8/upstream/2.3.3/src/unicode.cc +0 -749
- data/ext/v8/upstream/2.3.3/src/unicode.h +0 -279
- data/ext/v8/upstream/2.3.3/src/uri.js +0 -415
- data/ext/v8/upstream/2.3.3/src/utils.cc +0 -285
- data/ext/v8/upstream/2.3.3/src/utils.h +0 -745
- data/ext/v8/upstream/2.3.3/src/v8-counters.h +0 -250
- data/ext/v8/upstream/2.3.3/src/v8.cc +0 -228
- data/ext/v8/upstream/2.3.3/src/v8.h +0 -121
- data/ext/v8/upstream/2.3.3/src/v8natives.js +0 -1188
- data/ext/v8/upstream/2.3.3/src/v8threads.cc +0 -461
- data/ext/v8/upstream/2.3.3/src/v8threads.h +0 -159
- data/ext/v8/upstream/2.3.3/src/variables.cc +0 -119
- data/ext/v8/upstream/2.3.3/src/variables.h +0 -205
- data/ext/v8/upstream/2.3.3/src/version.cc +0 -88
- data/ext/v8/upstream/2.3.3/src/virtual-frame-heavy-inl.h +0 -192
- data/ext/v8/upstream/2.3.3/src/virtual-frame.h +0 -46
- data/ext/v8/upstream/2.3.3/src/vm-state-inl.h +0 -137
- data/ext/v8/upstream/2.3.3/src/vm-state.cc +0 -39
- data/ext/v8/upstream/2.3.3/src/vm-state.h +0 -77
- data/ext/v8/upstream/2.3.3/src/x64/assembler-x64-inl.h +0 -400
- data/ext/v8/upstream/2.3.3/src/x64/assembler-x64.cc +0 -2963
- data/ext/v8/upstream/2.3.3/src/x64/assembler-x64.h +0 -1438
- data/ext/v8/upstream/2.3.3/src/x64/builtins-x64.cc +0 -1296
- data/ext/v8/upstream/2.3.3/src/x64/codegen-x64-inl.h +0 -46
- data/ext/v8/upstream/2.3.3/src/x64/codegen-x64.cc +0 -12491
- data/ext/v8/upstream/2.3.3/src/x64/codegen-x64.h +0 -1090
- data/ext/v8/upstream/2.3.3/src/x64/cpu-x64.cc +0 -83
- data/ext/v8/upstream/2.3.3/src/x64/debug-x64.cc +0 -267
- data/ext/v8/upstream/2.3.3/src/x64/disasm-x64.cc +0 -1696
- data/ext/v8/upstream/2.3.3/src/x64/fast-codegen-x64.cc +0 -250
- data/ext/v8/upstream/2.3.3/src/x64/frames-x64.cc +0 -113
- data/ext/v8/upstream/2.3.3/src/x64/frames-x64.h +0 -125
- data/ext/v8/upstream/2.3.3/src/x64/full-codegen-x64.cc +0 -3270
- data/ext/v8/upstream/2.3.3/src/x64/ic-x64.cc +0 -1907
- data/ext/v8/upstream/2.3.3/src/x64/jump-target-x64.cc +0 -437
- data/ext/v8/upstream/2.3.3/src/x64/macro-assembler-x64.cc +0 -2793
- data/ext/v8/upstream/2.3.3/src/x64/macro-assembler-x64.h +0 -916
- data/ext/v8/upstream/2.3.3/src/x64/regexp-macro-assembler-x64.cc +0 -1374
- data/ext/v8/upstream/2.3.3/src/x64/regexp-macro-assembler-x64.h +0 -277
- data/ext/v8/upstream/2.3.3/src/x64/simulator-x64.h +0 -63
- data/ext/v8/upstream/2.3.3/src/x64/stub-cache-x64.cc +0 -2560
- data/ext/v8/upstream/2.3.3/src/x64/virtual-frame-x64.cc +0 -1264
- data/ext/v8/upstream/2.3.3/src/x64/virtual-frame-x64.h +0 -590
- data/ext/v8/upstream/2.3.3/src/zone-inl.h +0 -82
- data/ext/v8/upstream/2.3.3/src/zone.cc +0 -194
- data/ext/v8/upstream/2.3.3/src/zone.h +0 -221
- data/ext/v8/upstream/2.3.3/tools/codemap.js +0 -270
- data/ext/v8/upstream/2.3.3/tools/csvparser.js +0 -83
- data/ext/v8/upstream/2.3.3/tools/gc-nvp-trace-processor.py +0 -317
- data/ext/v8/upstream/2.3.3/tools/gyp/v8.gyp +0 -749
- data/ext/v8/upstream/2.3.3/tools/linux-tick-processor.py +0 -78
- data/ext/v8/upstream/2.3.3/tools/logreader.js +0 -338
- data/ext/v8/upstream/2.3.3/tools/oprofile/annotate +0 -7
- data/ext/v8/upstream/2.3.3/tools/oprofile/common +0 -19
- data/ext/v8/upstream/2.3.3/tools/oprofile/dump +0 -7
- data/ext/v8/upstream/2.3.3/tools/oprofile/report +0 -7
- data/ext/v8/upstream/2.3.3/tools/oprofile/reset +0 -7
- data/ext/v8/upstream/2.3.3/tools/oprofile/run +0 -14
- data/ext/v8/upstream/2.3.3/tools/oprofile/shutdown +0 -7
- data/ext/v8/upstream/2.3.3/tools/oprofile/start +0 -7
- data/ext/v8/upstream/2.3.3/tools/presubmit.py +0 -299
- data/ext/v8/upstream/2.3.3/tools/profile.js +0 -691
- data/ext/v8/upstream/2.3.3/tools/profile_view.js +0 -224
- data/ext/v8/upstream/2.3.3/tools/splaytree.js +0 -322
- data/ext/v8/upstream/2.3.3/tools/splaytree.py +0 -226
- data/ext/v8/upstream/2.3.3/tools/tickprocessor.js +0 -862
- data/ext/v8/upstream/2.3.3/tools/tickprocessor.py +0 -571
- data/ext/v8/upstream/2.3.3/tools/utils.py +0 -88
- data/ext/v8/upstream/2.3.3/tools/visual_studio/README.txt +0 -71
- data/ext/v8/upstream/2.3.3/tools/visual_studio/common.vsprops +0 -34
- data/ext/v8/upstream/2.3.3/tools/visual_studio/debug.vsprops +0 -17
- data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_base.vcproj +0 -1143
- data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_base_arm.vcproj +0 -1115
- data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_base_x64.vcproj +0 -1096
- data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_shell_sample.vcproj +0 -145
- data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_shell_sample_arm.vcproj +0 -145
- data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_shell_sample_x64.vcproj +0 -161
- data/ext/v8/upstream/2.3.3/tools/windows-tick-processor.bat +0 -29
- data/ext/v8/upstream/2.3.3/tools/windows-tick-processor.py +0 -137
@@ -1,159 +0,0 @@
|
|
1
|
-
// Copyright 2006-2009 the V8 project authors. All rights reserved.
|
2
|
-
// Redistribution and use in source and binary forms, with or without
|
3
|
-
// modification, are permitted provided that the following conditions are
|
4
|
-
// met:
|
5
|
-
//
|
6
|
-
// * Redistributions of source code must retain the above copyright
|
7
|
-
// notice, this list of conditions and the following disclaimer.
|
8
|
-
// * Redistributions in binary form must reproduce the above
|
9
|
-
// copyright notice, this list of conditions and the following
|
10
|
-
// disclaimer in the documentation and/or other materials provided
|
11
|
-
// with the distribution.
|
12
|
-
// * Neither the name of Google Inc. nor the names of its
|
13
|
-
// contributors may be used to endorse or promote products derived
|
14
|
-
// from this software without specific prior written permission.
|
15
|
-
//
|
16
|
-
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
17
|
-
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
18
|
-
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
19
|
-
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
20
|
-
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
21
|
-
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
22
|
-
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
23
|
-
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
24
|
-
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
25
|
-
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
26
|
-
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
27
|
-
|
28
|
-
#ifndef V8_LIST_H_
|
29
|
-
#define V8_LIST_H_
|
30
|
-
|
31
|
-
namespace v8 {
|
32
|
-
namespace internal {
|
33
|
-
|
34
|
-
|
35
|
-
// ----------------------------------------------------------------------------
|
36
|
-
// The list is a template for very light-weight lists. We are not
|
37
|
-
// using the STL because we want full control over space and speed of
|
38
|
-
// the code. This implementation is based on code by Robert Griesemer
|
39
|
-
// and Rob Pike.
|
40
|
-
//
|
41
|
-
// The list is parameterized by the type of its elements (T) and by an
|
42
|
-
// allocation policy (P). The policy is used for allocating lists in
|
43
|
-
// the C free store or the zone; see zone.h.
|
44
|
-
|
45
|
-
// Forward defined as
|
46
|
-
// template <typename T, class P = FreeStoreAllocationPolicy> class List;
|
47
|
-
template <typename T, class P>
|
48
|
-
class List {
|
49
|
-
public:
|
50
|
-
|
51
|
-
List() { Initialize(0); }
|
52
|
-
INLINE(explicit List(int capacity)) { Initialize(capacity); }
|
53
|
-
INLINE(~List()) { DeleteData(data_); }
|
54
|
-
|
55
|
-
// Deallocates memory used by the list and leaves the list in a consistent
|
56
|
-
// empty state.
|
57
|
-
void Free() {
|
58
|
-
DeleteData(data_);
|
59
|
-
Initialize(0);
|
60
|
-
}
|
61
|
-
|
62
|
-
INLINE(void* operator new(size_t size)) {
|
63
|
-
return P::New(static_cast<int>(size));
|
64
|
-
}
|
65
|
-
INLINE(void operator delete(void* p, size_t)) { return P::Delete(p); }
|
66
|
-
|
67
|
-
// Returns a reference to the element at index i. This reference is
|
68
|
-
// not safe to use after operations that can change the list's
|
69
|
-
// backing store (eg, Add).
|
70
|
-
inline T& operator[](int i) const {
|
71
|
-
ASSERT(0 <= i);
|
72
|
-
ASSERT(i < length_);
|
73
|
-
return data_[i];
|
74
|
-
}
|
75
|
-
inline T& at(int i) const { return operator[](i); }
|
76
|
-
inline T& last() const { return at(length_ - 1); }
|
77
|
-
inline T& first() const { return at(0); }
|
78
|
-
|
79
|
-
INLINE(bool is_empty() const) { return length_ == 0; }
|
80
|
-
INLINE(int length() const) { return length_; }
|
81
|
-
INLINE(int capacity() const) { return capacity_; }
|
82
|
-
|
83
|
-
Vector<T> ToVector() { return Vector<T>(data_, length_); }
|
84
|
-
|
85
|
-
Vector<const T> ToConstVector() { return Vector<const T>(data_, length_); }
|
86
|
-
|
87
|
-
// Adds a copy of the given 'element' to the end of the list,
|
88
|
-
// expanding the list if necessary.
|
89
|
-
void Add(const T& element);
|
90
|
-
|
91
|
-
// Add all the elements from the argument list to this list.
|
92
|
-
void AddAll(const List<T, P>& other);
|
93
|
-
|
94
|
-
// Added 'count' elements with the value 'value' and returns a
|
95
|
-
// vector that allows access to the elements. The vector is valid
|
96
|
-
// until the next change is made to this list.
|
97
|
-
Vector<T> AddBlock(T value, int count);
|
98
|
-
|
99
|
-
// Removes the i'th element without deleting it even if T is a
|
100
|
-
// pointer type; moves all elements above i "down". Returns the
|
101
|
-
// removed element. This function's complexity is linear in the
|
102
|
-
// size of the list.
|
103
|
-
T Remove(int i);
|
104
|
-
|
105
|
-
// Removes the last element without deleting it even if T is a
|
106
|
-
// pointer type. Returns the removed element.
|
107
|
-
INLINE(T RemoveLast()) { return Remove(length_ - 1); }
|
108
|
-
|
109
|
-
// Clears the list by setting the length to zero. Even if T is a
|
110
|
-
// pointer type, clearing the list doesn't delete the entries.
|
111
|
-
INLINE(void Clear());
|
112
|
-
|
113
|
-
// Drops all but the first 'pos' elements from the list.
|
114
|
-
INLINE(void Rewind(int pos));
|
115
|
-
|
116
|
-
bool Contains(const T& elm);
|
117
|
-
|
118
|
-
// Iterate through all list entries, starting at index 0.
|
119
|
-
void Iterate(void (*callback)(T* x));
|
120
|
-
|
121
|
-
// Sort all list entries (using QuickSort)
|
122
|
-
void Sort(int (*cmp)(const T* x, const T* y));
|
123
|
-
void Sort();
|
124
|
-
|
125
|
-
INLINE(void Initialize(int capacity));
|
126
|
-
|
127
|
-
private:
|
128
|
-
T* data_;
|
129
|
-
int capacity_;
|
130
|
-
int length_;
|
131
|
-
|
132
|
-
INLINE(T* NewData(int n)) { return static_cast<T*>(P::New(n * sizeof(T))); }
|
133
|
-
INLINE(void DeleteData(T* data)) { P::Delete(data); }
|
134
|
-
|
135
|
-
// Increase the capacity of a full list, and add an element.
|
136
|
-
// List must be full already.
|
137
|
-
void ResizeAdd(const T& element);
|
138
|
-
|
139
|
-
// Inlined implementation of ResizeAdd, shared by inlined and
|
140
|
-
// non-inlined versions of ResizeAdd.
|
141
|
-
void ResizeAddInternal(const T& element);
|
142
|
-
|
143
|
-
// Resize the list.
|
144
|
-
void Resize(int new_capacity);
|
145
|
-
|
146
|
-
DISALLOW_COPY_AND_ASSIGN(List);
|
147
|
-
};
|
148
|
-
|
149
|
-
class FrameElement;
|
150
|
-
|
151
|
-
// Add() is inlined, ResizeAdd() called by Add() is inlined except for
|
152
|
-
// Lists of FrameElements, and ResizeAddInternal() is inlined in ResizeAdd().
|
153
|
-
template <>
|
154
|
-
void List<FrameElement,
|
155
|
-
FreeStoreAllocationPolicy>::ResizeAdd(const FrameElement& element);
|
156
|
-
|
157
|
-
} } // namespace v8::internal
|
158
|
-
|
159
|
-
#endif // V8_LIST_H_
|
@@ -1,1057 +0,0 @@
|
|
1
|
-
// Copyright 2010 the V8 project authors. All rights reserved.
|
2
|
-
// Redistribution and use in source and binary forms, with or without
|
3
|
-
// modification, are permitted provided that the following conditions are
|
4
|
-
// met:
|
5
|
-
//
|
6
|
-
// * Redistributions of source code must retain the above copyright
|
7
|
-
// notice, this list of conditions and the following disclaimer.
|
8
|
-
// * Redistributions in binary form must reproduce the above
|
9
|
-
// copyright notice, this list of conditions and the following
|
10
|
-
// disclaimer in the documentation and/or other materials provided
|
11
|
-
// with the distribution.
|
12
|
-
// * Neither the name of Google Inc. nor the names of its
|
13
|
-
// contributors may be used to endorse or promote products derived
|
14
|
-
// from this software without specific prior written permission.
|
15
|
-
//
|
16
|
-
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
17
|
-
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
18
|
-
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
19
|
-
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
20
|
-
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
21
|
-
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
22
|
-
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
23
|
-
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
24
|
-
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
25
|
-
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
26
|
-
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
27
|
-
|
28
|
-
// LiveEdit feature implementation. The script should be executed after
|
29
|
-
// debug-debugger.js.
|
30
|
-
|
31
|
-
// A LiveEdit namespace. It contains functions that modifies JavaScript code
|
32
|
-
// according to changes of script source (if possible).
|
33
|
-
//
|
34
|
-
// When new script source is put in, the difference is calculated textually,
|
35
|
-
// in form of list of delete/add/change chunks. The functions that include
|
36
|
-
// change chunk(s) get recompiled, or their enclosing functions are
|
37
|
-
// recompiled instead.
|
38
|
-
// If the function may not be recompiled (e.g. it was completely erased in new
|
39
|
-
// version of the script) it remains unchanged, but the code that could
|
40
|
-
// create a new instance of this function goes away. An old version of script
|
41
|
-
// is created to back up this obsolete function.
|
42
|
-
// All unchanged functions have their positions updated accordingly.
|
43
|
-
//
|
44
|
-
// LiveEdit namespace is declared inside a single function constructor.
|
45
|
-
Debug.LiveEdit = new function() {
|
46
|
-
|
47
|
-
// Forward declaration for minifier.
|
48
|
-
var FunctionStatus;
|
49
|
-
|
50
|
-
|
51
|
-
// Applies the change to the script.
|
52
|
-
// The change is in form of list of chunks encoded in a single array as
|
53
|
-
// a series of triplets (pos1_start, pos1_end, pos2_end)
|
54
|
-
function ApplyPatchMultiChunk(script, diff_array, new_source, preview_only,
|
55
|
-
change_log) {
|
56
|
-
|
57
|
-
var old_source = script.source;
|
58
|
-
|
59
|
-
// Gather compile information about old version of script.
|
60
|
-
var old_compile_info = GatherCompileInfo(old_source, script);
|
61
|
-
|
62
|
-
// Build tree structures for old and new versions of the script.
|
63
|
-
var root_old_node = BuildCodeInfoTree(old_compile_info);
|
64
|
-
|
65
|
-
var pos_translator = new PosTranslator(diff_array);
|
66
|
-
|
67
|
-
// Analyze changes.
|
68
|
-
MarkChangedFunctions(root_old_node, pos_translator.GetChunks());
|
69
|
-
|
70
|
-
// Find all SharedFunctionInfo's that were compiled from this script.
|
71
|
-
FindLiveSharedInfos(root_old_node, script);
|
72
|
-
|
73
|
-
// Gather compile information about new version of script.
|
74
|
-
var new_compile_info;
|
75
|
-
try {
|
76
|
-
new_compile_info = GatherCompileInfo(new_source, script);
|
77
|
-
} catch (e) {
|
78
|
-
throw new Failure("Failed to compile new version of script: " + e);
|
79
|
-
}
|
80
|
-
var root_new_node = BuildCodeInfoTree(new_compile_info);
|
81
|
-
|
82
|
-
// Link recompiled script data with other data.
|
83
|
-
FindCorrespondingFunctions(root_old_node, root_new_node);
|
84
|
-
|
85
|
-
// Prepare to-do lists.
|
86
|
-
var replace_code_list = new Array();
|
87
|
-
var link_to_old_script_list = new Array();
|
88
|
-
var link_to_original_script_list = new Array();
|
89
|
-
var update_positions_list = new Array();
|
90
|
-
|
91
|
-
function HarvestTodo(old_node) {
|
92
|
-
function CollectDamaged(node) {
|
93
|
-
link_to_old_script_list.push(node);
|
94
|
-
for (var i = 0; i < node.children.length; i++) {
|
95
|
-
CollectDamaged(node.children[i]);
|
96
|
-
}
|
97
|
-
}
|
98
|
-
|
99
|
-
// Recursively collects all newly compiled functions that are going into
|
100
|
-
// business and should have link to the actual script updated.
|
101
|
-
function CollectNew(node_list) {
|
102
|
-
for (var i = 0; i < node_list.length; i++) {
|
103
|
-
link_to_original_script_list.push(node_list[i]);
|
104
|
-
CollectNew(node_list[i].children);
|
105
|
-
}
|
106
|
-
}
|
107
|
-
|
108
|
-
if (old_node.status == FunctionStatus.DAMAGED) {
|
109
|
-
CollectDamaged(old_node);
|
110
|
-
return;
|
111
|
-
}
|
112
|
-
if (old_node.status == FunctionStatus.UNCHANGED) {
|
113
|
-
update_positions_list.push(old_node);
|
114
|
-
} else if (old_node.status == FunctionStatus.SOURCE_CHANGED) {
|
115
|
-
update_positions_list.push(old_node);
|
116
|
-
} else if (old_node.status == FunctionStatus.CHANGED) {
|
117
|
-
replace_code_list.push(old_node);
|
118
|
-
CollectNew(old_node.unmatched_new_nodes);
|
119
|
-
}
|
120
|
-
for (var i = 0; i < old_node.children.length; i++) {
|
121
|
-
HarvestTodo(old_node.children[i]);
|
122
|
-
}
|
123
|
-
}
|
124
|
-
|
125
|
-
var preview_description = {
|
126
|
-
change_tree: DescribeChangeTree(root_old_node),
|
127
|
-
textual_diff: {
|
128
|
-
old_len: old_source.length,
|
129
|
-
new_len: new_source.length,
|
130
|
-
chunks: diff_array
|
131
|
-
},
|
132
|
-
updated: false
|
133
|
-
};
|
134
|
-
|
135
|
-
if (preview_only) {
|
136
|
-
return preview_description;
|
137
|
-
}
|
138
|
-
|
139
|
-
HarvestTodo(root_old_node);
|
140
|
-
|
141
|
-
// Collect shared infos for functions whose code need to be patched.
|
142
|
-
var replaced_function_infos = new Array();
|
143
|
-
for (var i = 0; i < replace_code_list.length; i++) {
|
144
|
-
var info_wrapper = replace_code_list[i].live_shared_info_wrapper;
|
145
|
-
if (info_wrapper) {
|
146
|
-
replaced_function_infos.push(info_wrapper);
|
147
|
-
}
|
148
|
-
}
|
149
|
-
|
150
|
-
// We haven't changed anything before this line yet.
|
151
|
-
// Committing all changes.
|
152
|
-
|
153
|
-
// Check that function being patched is not currently on stack or drop them.
|
154
|
-
var dropped_functions_number =
|
155
|
-
CheckStackActivations(replaced_function_infos, change_log);
|
156
|
-
|
157
|
-
preview_description.stack_modified = dropped_functions_number != 0;
|
158
|
-
|
159
|
-
// Start with breakpoints. Convert their line/column positions and
|
160
|
-
// temporary remove.
|
161
|
-
var break_points_restorer = TemporaryRemoveBreakPoints(script, change_log);
|
162
|
-
|
163
|
-
var old_script;
|
164
|
-
|
165
|
-
// Create an old script only if there are function that should be linked
|
166
|
-
// to old version.
|
167
|
-
if (link_to_old_script_list.length == 0) {
|
168
|
-
%LiveEditReplaceScript(script, new_source, null);
|
169
|
-
old_script = void 0;
|
170
|
-
} else {
|
171
|
-
var old_script_name = CreateNameForOldScript(script);
|
172
|
-
|
173
|
-
// Update the script text and create a new script representing an old
|
174
|
-
// version of the script.
|
175
|
-
old_script = %LiveEditReplaceScript(script, new_source,
|
176
|
-
old_script_name);
|
177
|
-
|
178
|
-
var link_to_old_script_report = new Array();
|
179
|
-
change_log.push( { linked_to_old_script: link_to_old_script_report } );
|
180
|
-
|
181
|
-
// We need to link to old script all former nested functions.
|
182
|
-
for (var i = 0; i < link_to_old_script_list.length; i++) {
|
183
|
-
LinkToOldScript(link_to_old_script_list[i], old_script,
|
184
|
-
link_to_old_script_report);
|
185
|
-
}
|
186
|
-
|
187
|
-
preview_description.created_script_name = old_script_name;
|
188
|
-
}
|
189
|
-
|
190
|
-
// Link to an actual script all the functions that we are going to use.
|
191
|
-
for (var i = 0; i < link_to_original_script_list.length; i++) {
|
192
|
-
%LiveEditFunctionSetScript(
|
193
|
-
link_to_original_script_list[i].info.shared_function_info, script);
|
194
|
-
}
|
195
|
-
|
196
|
-
for (var i = 0; i < replace_code_list.length; i++) {
|
197
|
-
PatchFunctionCode(replace_code_list[i], change_log);
|
198
|
-
}
|
199
|
-
|
200
|
-
var position_patch_report = new Array();
|
201
|
-
change_log.push( {position_patched: position_patch_report} );
|
202
|
-
|
203
|
-
for (var i = 0; i < update_positions_list.length; i++) {
|
204
|
-
// TODO(LiveEdit): take into account wether it's source_changed or
|
205
|
-
// unchanged and whether positions changed at all.
|
206
|
-
PatchPositions(update_positions_list[i], diff_array,
|
207
|
-
position_patch_report);
|
208
|
-
}
|
209
|
-
|
210
|
-
break_points_restorer(pos_translator, old_script);
|
211
|
-
|
212
|
-
preview_description.updated = true;
|
213
|
-
return preview_description;
|
214
|
-
}
|
215
|
-
// Function is public.
|
216
|
-
this.ApplyPatchMultiChunk = ApplyPatchMultiChunk;
|
217
|
-
|
218
|
-
|
219
|
-
// Fully compiles source string as a script. Returns Array of
|
220
|
-
// FunctionCompileInfo -- a descriptions of all functions of the script.
|
221
|
-
// Elements of array are ordered by start positions of functions (from top
|
222
|
-
// to bottom) in the source. Fields outer_index and next_sibling_index help
|
223
|
-
// to navigate the nesting structure of functions.
|
224
|
-
//
|
225
|
-
// All functions get compiled linked to script provided as parameter script.
|
226
|
-
// TODO(LiveEdit): consider not using actual scripts as script, because
|
227
|
-
// we have to manually erase all links right after compile.
|
228
|
-
function GatherCompileInfo(source, script) {
|
229
|
-
// Get function info, elements are partially sorted (it is a tree of
|
230
|
-
// nested functions serialized as parent followed by serialized children.
|
231
|
-
var raw_compile_info = %LiveEditGatherCompileInfo(script, source);
|
232
|
-
|
233
|
-
// Sort function infos by start position field.
|
234
|
-
var compile_info = new Array();
|
235
|
-
var old_index_map = new Array();
|
236
|
-
for (var i = 0; i < raw_compile_info.length; i++) {
|
237
|
-
var info = new FunctionCompileInfo(raw_compile_info[i]);
|
238
|
-
// Remove all links to the actual script. Breakpoints system and
|
239
|
-
// LiveEdit itself believe that any function in heap that points to a
|
240
|
-
// particular script is a regular function.
|
241
|
-
// For some functions we will restore this link later.
|
242
|
-
%LiveEditFunctionSetScript(info.shared_function_info, void 0);
|
243
|
-
compile_info.push(info);
|
244
|
-
old_index_map.push(i);
|
245
|
-
}
|
246
|
-
|
247
|
-
for (var i = 0; i < compile_info.length; i++) {
|
248
|
-
var k = i;
|
249
|
-
for (var j = i + 1; j < compile_info.length; j++) {
|
250
|
-
if (compile_info[k].start_position > compile_info[j].start_position) {
|
251
|
-
k = j;
|
252
|
-
}
|
253
|
-
}
|
254
|
-
if (k != i) {
|
255
|
-
var temp_info = compile_info[k];
|
256
|
-
var temp_index = old_index_map[k];
|
257
|
-
compile_info[k] = compile_info[i];
|
258
|
-
old_index_map[k] = old_index_map[i];
|
259
|
-
compile_info[i] = temp_info;
|
260
|
-
old_index_map[i] = temp_index;
|
261
|
-
}
|
262
|
-
}
|
263
|
-
|
264
|
-
// After sorting update outer_inder field using old_index_map. Also
|
265
|
-
// set next_sibling_index field.
|
266
|
-
var current_index = 0;
|
267
|
-
|
268
|
-
// The recursive function, that goes over all children of a particular
|
269
|
-
// node (i.e. function info).
|
270
|
-
function ResetIndexes(new_parent_index, old_parent_index) {
|
271
|
-
var previous_sibling = -1;
|
272
|
-
while (current_index < compile_info.length &&
|
273
|
-
compile_info[current_index].outer_index == old_parent_index) {
|
274
|
-
var saved_index = current_index;
|
275
|
-
compile_info[saved_index].outer_index = new_parent_index;
|
276
|
-
if (previous_sibling != -1) {
|
277
|
-
compile_info[previous_sibling].next_sibling_index = saved_index;
|
278
|
-
}
|
279
|
-
previous_sibling = saved_index;
|
280
|
-
current_index++;
|
281
|
-
ResetIndexes(saved_index, old_index_map[saved_index]);
|
282
|
-
}
|
283
|
-
if (previous_sibling != -1) {
|
284
|
-
compile_info[previous_sibling].next_sibling_index = -1;
|
285
|
-
}
|
286
|
-
}
|
287
|
-
|
288
|
-
ResetIndexes(-1, -1);
|
289
|
-
Assert(current_index == compile_info.length);
|
290
|
-
|
291
|
-
return compile_info;
|
292
|
-
}
|
293
|
-
|
294
|
-
|
295
|
-
// Replaces function's Code.
|
296
|
-
function PatchFunctionCode(old_node, change_log) {
|
297
|
-
var new_info = old_node.corresponding_node.info;
|
298
|
-
var shared_info_wrapper = old_node.live_shared_info_wrapper;
|
299
|
-
if (shared_info_wrapper) {
|
300
|
-
%LiveEditReplaceFunctionCode(new_info.raw_array,
|
301
|
-
shared_info_wrapper.raw_array);
|
302
|
-
|
303
|
-
// The function got a new code. However, this new code brings all new
|
304
|
-
// instances of SharedFunctionInfo for nested functions. However,
|
305
|
-
// we want the original instances to be used wherever possible.
|
306
|
-
// (This is because old instances and new instances will be both
|
307
|
-
// linked to a script and breakpoints subsystem does not really
|
308
|
-
// expects this; neither does LiveEdit subsystem on next call).
|
309
|
-
for (var i = 0; i < old_node.children.length; i++) {
|
310
|
-
if (old_node.children[i].corresponding_node) {
|
311
|
-
var corresponding_child = old_node.children[i].corresponding_node;
|
312
|
-
var child_shared_info_wrapper =
|
313
|
-
old_node.children[i].live_shared_info_wrapper;
|
314
|
-
if (child_shared_info_wrapper) {
|
315
|
-
%LiveEditReplaceRefToNestedFunction(shared_info_wrapper.info,
|
316
|
-
corresponding_child.info.shared_function_info,
|
317
|
-
child_shared_info_wrapper.info);
|
318
|
-
}
|
319
|
-
}
|
320
|
-
}
|
321
|
-
|
322
|
-
change_log.push( {function_patched: new_info.function_name} );
|
323
|
-
} else {
|
324
|
-
change_log.push( {function_patched: new_info.function_name,
|
325
|
-
function_info_not_found: true} );
|
326
|
-
}
|
327
|
-
}
|
328
|
-
|
329
|
-
|
330
|
-
// Makes a function associated with another instance of a script (the
|
331
|
-
// one representing its old version). This way the function still
|
332
|
-
// may access its own text.
|
333
|
-
function LinkToOldScript(old_info_node, old_script, report_array) {
|
334
|
-
var shared_info = old_info_node.live_shared_info_wrapper;
|
335
|
-
if (shared_info) {
|
336
|
-
%LiveEditFunctionSetScript(shared_info.info, old_script);
|
337
|
-
report_array.push( { name: shared_info.function_name } );
|
338
|
-
} else {
|
339
|
-
report_array.push(
|
340
|
-
{ name: old_info_node.info.function_name, not_found: true } );
|
341
|
-
}
|
342
|
-
}
|
343
|
-
|
344
|
-
|
345
|
-
// Returns function that restores breakpoints.
|
346
|
-
function TemporaryRemoveBreakPoints(original_script, change_log) {
|
347
|
-
var script_break_points = GetScriptBreakPoints(original_script);
|
348
|
-
|
349
|
-
var break_points_update_report = [];
|
350
|
-
change_log.push( { break_points_update: break_points_update_report } );
|
351
|
-
|
352
|
-
var break_point_old_positions = [];
|
353
|
-
for (var i = 0; i < script_break_points.length; i++) {
|
354
|
-
var break_point = script_break_points[i];
|
355
|
-
|
356
|
-
break_point.clear();
|
357
|
-
|
358
|
-
// TODO(LiveEdit): be careful with resource offset here.
|
359
|
-
var break_point_position = Debug.findScriptSourcePosition(original_script,
|
360
|
-
break_point.line(), break_point.column());
|
361
|
-
|
362
|
-
var old_position_description = {
|
363
|
-
position: break_point_position,
|
364
|
-
line: break_point.line(),
|
365
|
-
column: break_point.column()
|
366
|
-
}
|
367
|
-
break_point_old_positions.push(old_position_description);
|
368
|
-
}
|
369
|
-
|
370
|
-
|
371
|
-
// Restores breakpoints and creates their copies in the "old" copy of
|
372
|
-
// the script.
|
373
|
-
return function (pos_translator, old_script_copy_opt) {
|
374
|
-
// Update breakpoints (change positions and restore them in old version
|
375
|
-
// of script.
|
376
|
-
for (var i = 0; i < script_break_points.length; i++) {
|
377
|
-
var break_point = script_break_points[i];
|
378
|
-
if (old_script_copy_opt) {
|
379
|
-
var clone = break_point.cloneForOtherScript(old_script_copy_opt);
|
380
|
-
clone.set(old_script_copy_opt);
|
381
|
-
|
382
|
-
break_points_update_report.push( {
|
383
|
-
type: "copied_to_old",
|
384
|
-
id: break_point.number(),
|
385
|
-
new_id: clone.number(),
|
386
|
-
positions: break_point_old_positions[i]
|
387
|
-
} );
|
388
|
-
}
|
389
|
-
|
390
|
-
var updated_position = pos_translator.Translate(
|
391
|
-
break_point_old_positions[i].position,
|
392
|
-
PosTranslator.ShiftWithTopInsideChunkHandler);
|
393
|
-
|
394
|
-
var new_location =
|
395
|
-
original_script.locationFromPosition(updated_position, false);
|
396
|
-
|
397
|
-
break_point.update_positions(new_location.line, new_location.column);
|
398
|
-
|
399
|
-
var new_position_description = {
|
400
|
-
position: updated_position,
|
401
|
-
line: new_location.line,
|
402
|
-
column: new_location.column
|
403
|
-
}
|
404
|
-
|
405
|
-
break_point.set(original_script);
|
406
|
-
|
407
|
-
break_points_update_report.push( { type: "position_changed",
|
408
|
-
id: break_point.number(),
|
409
|
-
old_positions: break_point_old_positions[i],
|
410
|
-
new_positions: new_position_description
|
411
|
-
} );
|
412
|
-
}
|
413
|
-
}
|
414
|
-
}
|
415
|
-
|
416
|
-
|
417
|
-
function Assert(condition, message) {
|
418
|
-
if (!condition) {
|
419
|
-
if (message) {
|
420
|
-
throw "Assert " + message;
|
421
|
-
} else {
|
422
|
-
throw "Assert";
|
423
|
-
}
|
424
|
-
}
|
425
|
-
}
|
426
|
-
|
427
|
-
function DiffChunk(pos1, pos2, len1, len2) {
|
428
|
-
this.pos1 = pos1;
|
429
|
-
this.pos2 = pos2;
|
430
|
-
this.len1 = len1;
|
431
|
-
this.len2 = len2;
|
432
|
-
}
|
433
|
-
|
434
|
-
function PosTranslator(diff_array) {
|
435
|
-
var chunks = new Array();
|
436
|
-
var current_diff = 0;
|
437
|
-
for (var i = 0; i < diff_array.length; i += 3) {
|
438
|
-
var pos1_begin = diff_array[i];
|
439
|
-
var pos2_begin = pos1_begin + current_diff;
|
440
|
-
var pos1_end = diff_array[i + 1];
|
441
|
-
var pos2_end = diff_array[i + 2];
|
442
|
-
chunks.push(new DiffChunk(pos1_begin, pos2_begin, pos1_end - pos1_begin,
|
443
|
-
pos2_end - pos2_begin));
|
444
|
-
current_diff = pos2_end - pos1_end;
|
445
|
-
}
|
446
|
-
this.chunks = chunks;
|
447
|
-
}
|
448
|
-
PosTranslator.prototype.GetChunks = function() {
|
449
|
-
return this.chunks;
|
450
|
-
}
|
451
|
-
|
452
|
-
PosTranslator.prototype.Translate = function(pos, inside_chunk_handler) {
|
453
|
-
var array = this.chunks;
|
454
|
-
if (array.length == 0 || pos < array[0].pos1) {
|
455
|
-
return pos;
|
456
|
-
}
|
457
|
-
var chunk_index1 = 0;
|
458
|
-
var chunk_index2 = array.length - 1;
|
459
|
-
|
460
|
-
while (chunk_index1 < chunk_index2) {
|
461
|
-
var middle_index = Math.floor((chunk_index1 + chunk_index2) / 2);
|
462
|
-
if (pos < array[middle_index + 1].pos1) {
|
463
|
-
chunk_index2 = middle_index;
|
464
|
-
} else {
|
465
|
-
chunk_index1 = middle_index + 1;
|
466
|
-
}
|
467
|
-
}
|
468
|
-
var chunk = array[chunk_index1];
|
469
|
-
if (pos >= chunk.pos1 + chunk.len1) {
|
470
|
-
return pos + chunk.pos2 + chunk.len2 - chunk.pos1 - chunk.len1;
|
471
|
-
}
|
472
|
-
|
473
|
-
if (!inside_chunk_handler) {
|
474
|
-
inside_chunk_handler = PosTranslator.DefaultInsideChunkHandler;
|
475
|
-
}
|
476
|
-
return inside_chunk_handler(pos, chunk);
|
477
|
-
}
|
478
|
-
|
479
|
-
PosTranslator.DefaultInsideChunkHandler = function(pos, diff_chunk) {
|
480
|
-
Assert(false, "Cannot translate position in changed area");
|
481
|
-
}
|
482
|
-
|
483
|
-
PosTranslator.ShiftWithTopInsideChunkHandler =
|
484
|
-
function(pos, diff_chunk) {
|
485
|
-
// We carelessly do not check whether we stay inside the chunk after
|
486
|
-
// translation.
|
487
|
-
return pos - diff_chunk.pos1 + diff_chunk.pos2;
|
488
|
-
}
|
489
|
-
|
490
|
-
var FunctionStatus = {
|
491
|
-
// No change to function or its inner functions; however its positions
|
492
|
-
// in script may have been shifted.
|
493
|
-
UNCHANGED: "unchanged",
|
494
|
-
// The code of a function remains unchanged, but something happened inside
|
495
|
-
// some inner functions.
|
496
|
-
SOURCE_CHANGED: "source changed",
|
497
|
-
// The code of a function is changed or some nested function cannot be
|
498
|
-
// properly patched so this function must be recompiled.
|
499
|
-
CHANGED: "changed",
|
500
|
-
// Function is changed but cannot be patched.
|
501
|
-
DAMAGED: "damaged"
|
502
|
-
}
|
503
|
-
|
504
|
-
function CodeInfoTreeNode(code_info, children, array_index) {
|
505
|
-
this.info = code_info;
|
506
|
-
this.children = children;
|
507
|
-
// an index in array of compile_info
|
508
|
-
this.array_index = array_index;
|
509
|
-
this.parent = void 0;
|
510
|
-
|
511
|
-
this.status = FunctionStatus.UNCHANGED;
|
512
|
-
// Status explanation is used for debugging purposes and will be shown
|
513
|
-
// in user UI if some explanations are needed.
|
514
|
-
this.status_explanation = void 0;
|
515
|
-
this.new_start_pos = void 0;
|
516
|
-
this.new_end_pos = void 0;
|
517
|
-
this.corresponding_node = void 0;
|
518
|
-
this.unmatched_new_nodes = void 0;
|
519
|
-
|
520
|
-
// 'Textual' correspondence/matching is weaker than 'pure'
|
521
|
-
// correspondence/matching. We need 'textual' level for visual presentation
|
522
|
-
// in UI, we use 'pure' level for actual code manipulation.
|
523
|
-
// Sometimes only function body is changed (functions in old and new script
|
524
|
-
// textually correspond), but we cannot patch the code, so we see them
|
525
|
-
// as an old function deleted and new function created.
|
526
|
-
this.textual_corresponding_node = void 0;
|
527
|
-
this.textually_unmatched_new_nodes = void 0;
|
528
|
-
|
529
|
-
this.live_shared_info_wrapper = void 0;
|
530
|
-
}
|
531
|
-
|
532
|
-
// From array of function infos that is implicitly a tree creates
|
533
|
-
// an actual tree of functions in script.
|
534
|
-
function BuildCodeInfoTree(code_info_array) {
|
535
|
-
// Throughtout all function we iterate over input array.
|
536
|
-
var index = 0;
|
537
|
-
|
538
|
-
// Recursive function that builds a branch of tree.
|
539
|
-
function BuildNode() {
|
540
|
-
var my_index = index;
|
541
|
-
index++;
|
542
|
-
var child_array = new Array();
|
543
|
-
while (index < code_info_array.length &&
|
544
|
-
code_info_array[index].outer_index == my_index) {
|
545
|
-
child_array.push(BuildNode());
|
546
|
-
}
|
547
|
-
var node = new CodeInfoTreeNode(code_info_array[my_index], child_array,
|
548
|
-
my_index);
|
549
|
-
for (var i = 0; i < child_array.length; i++) {
|
550
|
-
child_array[i].parent = node;
|
551
|
-
}
|
552
|
-
return node;
|
553
|
-
}
|
554
|
-
|
555
|
-
var root = BuildNode();
|
556
|
-
Assert(index == code_info_array.length);
|
557
|
-
return root;
|
558
|
-
}
|
559
|
-
|
560
|
-
// Applies a list of the textual diff chunks onto the tree of functions.
|
561
|
-
// Determines status of each function (from unchanged to damaged). However
|
562
|
-
// children of unchanged functions are ignored.
|
563
|
-
function MarkChangedFunctions(code_info_tree, chunks) {
|
564
|
-
|
565
|
-
// A convenient interator over diff chunks that also translates
|
566
|
-
// positions from old to new in a current non-changed part of script.
|
567
|
-
var chunk_it = new function() {
|
568
|
-
var chunk_index = 0;
|
569
|
-
var pos_diff = 0;
|
570
|
-
this.current = function() { return chunks[chunk_index]; }
|
571
|
-
this.next = function() {
|
572
|
-
var chunk = chunks[chunk_index];
|
573
|
-
pos_diff = chunk.pos2 + chunk.len2 - (chunk.pos1 + chunk.len1);
|
574
|
-
chunk_index++;
|
575
|
-
}
|
576
|
-
this.done = function() { return chunk_index >= chunks.length; }
|
577
|
-
this.TranslatePos = function(pos) { return pos + pos_diff; }
|
578
|
-
};
|
579
|
-
|
580
|
-
// A recursive function that processes internals of a function and all its
|
581
|
-
// inner functions. Iterator chunk_it initially points to a chunk that is
|
582
|
-
// below function start.
|
583
|
-
function ProcessInternals(info_node) {
|
584
|
-
info_node.new_start_pos = chunk_it.TranslatePos(
|
585
|
-
info_node.info.start_position);
|
586
|
-
var child_index = 0;
|
587
|
-
var code_changed = false;
|
588
|
-
var source_changed = false;
|
589
|
-
// Simultaneously iterates over child functions and over chunks.
|
590
|
-
while (!chunk_it.done() &&
|
591
|
-
chunk_it.current().pos1 < info_node.info.end_position) {
|
592
|
-
if (child_index < info_node.children.length) {
|
593
|
-
var child = info_node.children[child_index];
|
594
|
-
|
595
|
-
if (child.info.end_position <= chunk_it.current().pos1) {
|
596
|
-
ProcessUnchangedChild(child);
|
597
|
-
child_index++;
|
598
|
-
continue;
|
599
|
-
} else if (child.info.start_position >=
|
600
|
-
chunk_it.current().pos1 + chunk_it.current().len1) {
|
601
|
-
code_changed = true;
|
602
|
-
chunk_it.next();
|
603
|
-
continue;
|
604
|
-
} else if (child.info.start_position <= chunk_it.current().pos1 &&
|
605
|
-
child.info.end_position >= chunk_it.current().pos1 +
|
606
|
-
chunk_it.current().len1) {
|
607
|
-
ProcessInternals(child);
|
608
|
-
source_changed = source_changed ||
|
609
|
-
( child.status != FunctionStatus.UNCHANGED );
|
610
|
-
code_changed = code_changed ||
|
611
|
-
( child.status == FunctionStatus.DAMAGED );
|
612
|
-
child_index++;
|
613
|
-
continue;
|
614
|
-
} else {
|
615
|
-
code_changed = true;
|
616
|
-
child.status = FunctionStatus.DAMAGED;
|
617
|
-
child.status_explanation =
|
618
|
-
"Text diff overlaps with function boundary";
|
619
|
-
child_index++;
|
620
|
-
continue;
|
621
|
-
}
|
622
|
-
} else {
|
623
|
-
if (chunk_it.current().pos1 + chunk_it.current().len1 <=
|
624
|
-
info_node.info.end_position) {
|
625
|
-
info_node.status = FunctionStatus.CHANGED;
|
626
|
-
chunk_it.next();
|
627
|
-
continue;
|
628
|
-
} else {
|
629
|
-
info_node.status = FunctionStatus.DAMAGED;
|
630
|
-
info_node.status_explanation =
|
631
|
-
"Text diff overlaps with function boundary";
|
632
|
-
return;
|
633
|
-
}
|
634
|
-
}
|
635
|
-
Assert("Unreachable", false);
|
636
|
-
}
|
637
|
-
while (child_index < info_node.children.length) {
|
638
|
-
var child = info_node.children[child_index];
|
639
|
-
ProcessUnchangedChild(child);
|
640
|
-
child_index++;
|
641
|
-
}
|
642
|
-
if (code_changed) {
|
643
|
-
info_node.status = FunctionStatus.CHANGED;
|
644
|
-
} else if (source_changed) {
|
645
|
-
info_node.status = FunctionStatus.SOURCE_CHANGED;
|
646
|
-
}
|
647
|
-
info_node.new_end_pos =
|
648
|
-
chunk_it.TranslatePos(info_node.info.end_position);
|
649
|
-
}
|
650
|
-
|
651
|
-
function ProcessUnchangedChild(node) {
|
652
|
-
node.new_start_pos = chunk_it.TranslatePos(node.info.start_position);
|
653
|
-
node.new_end_pos = chunk_it.TranslatePos(node.info.end_position);
|
654
|
-
}
|
655
|
-
|
656
|
-
ProcessInternals(code_info_tree);
|
657
|
-
}
|
658
|
-
|
659
|
-
// For ecah old function (if it is not damaged) tries to find a corresponding
|
660
|
-
// function in new script. Typically it should succeed (non-damaged functions
|
661
|
-
// by definition may only have changes inside their bodies). However there are
|
662
|
-
// reasons for corresponence not to be found; function with unmodified text
|
663
|
-
// in new script may become enclosed into other function; the innocent change
|
664
|
-
// inside function body may in fact be something like "} function B() {" that
|
665
|
-
// splits a function into 2 functions.
|
666
|
-
function FindCorrespondingFunctions(old_code_tree, new_code_tree) {
|
667
|
-
|
668
|
-
// A recursive function that tries to find a correspondence for all
|
669
|
-
// child functions and for their inner functions.
|
670
|
-
function ProcessChildren(old_node, new_node) {
|
671
|
-
var old_children = old_node.children;
|
672
|
-
var new_children = new_node.children;
|
673
|
-
|
674
|
-
var unmatched_new_nodes_list = [];
|
675
|
-
var textually_unmatched_new_nodes_list = [];
|
676
|
-
|
677
|
-
var old_index = 0;
|
678
|
-
var new_index = 0;
|
679
|
-
while (old_index < old_children.length) {
|
680
|
-
if (old_children[old_index].status == FunctionStatus.DAMAGED) {
|
681
|
-
old_index++;
|
682
|
-
} else if (new_index < new_children.length) {
|
683
|
-
if (new_children[new_index].info.start_position <
|
684
|
-
old_children[old_index].new_start_pos) {
|
685
|
-
unmatched_new_nodes_list.push(new_children[new_index]);
|
686
|
-
textually_unmatched_new_nodes_list.push(new_children[new_index]);
|
687
|
-
new_index++;
|
688
|
-
} else if (new_children[new_index].info.start_position ==
|
689
|
-
old_children[old_index].new_start_pos) {
|
690
|
-
if (new_children[new_index].info.end_position ==
|
691
|
-
old_children[old_index].new_end_pos) {
|
692
|
-
old_children[old_index].corresponding_node =
|
693
|
-
new_children[new_index];
|
694
|
-
old_children[old_index].textual_corresponding_node =
|
695
|
-
new_children[new_index];
|
696
|
-
if (old_children[old_index].status != FunctionStatus.UNCHANGED) {
|
697
|
-
ProcessChildren(old_children[old_index],
|
698
|
-
new_children[new_index]);
|
699
|
-
if (old_children[old_index].status == FunctionStatus.DAMAGED) {
|
700
|
-
unmatched_new_nodes_list.push(
|
701
|
-
old_children[old_index].corresponding_node);
|
702
|
-
old_children[old_index].corresponding_node = void 0;
|
703
|
-
old_node.status = FunctionStatus.CHANGED;
|
704
|
-
}
|
705
|
-
}
|
706
|
-
} else {
|
707
|
-
old_children[old_index].status = FunctionStatus.DAMAGED;
|
708
|
-
old_children[old_index].status_explanation =
|
709
|
-
"No corresponding function in new script found";
|
710
|
-
old_node.status = FunctionStatus.CHANGED;
|
711
|
-
unmatched_new_nodes_list.push(new_children[new_index]);
|
712
|
-
textually_unmatched_new_nodes_list.push(new_children[new_index]);
|
713
|
-
}
|
714
|
-
new_index++;
|
715
|
-
old_index++;
|
716
|
-
} else {
|
717
|
-
old_children[old_index].status = FunctionStatus.DAMAGED;
|
718
|
-
old_children[old_index].status_explanation =
|
719
|
-
"No corresponding function in new script found";
|
720
|
-
old_node.status = FunctionStatus.CHANGED;
|
721
|
-
old_index++;
|
722
|
-
}
|
723
|
-
} else {
|
724
|
-
old_children[old_index].status = FunctionStatus.DAMAGED;
|
725
|
-
old_children[old_index].status_explanation =
|
726
|
-
"No corresponding function in new script found";
|
727
|
-
old_node.status = FunctionStatus.CHANGED;
|
728
|
-
old_index++;
|
729
|
-
}
|
730
|
-
}
|
731
|
-
|
732
|
-
while (new_index < new_children.length) {
|
733
|
-
unmatched_new_nodes_list.push(new_children[new_index]);
|
734
|
-
textually_unmatched_new_nodes_list.push(new_children[new_index]);
|
735
|
-
new_index++;
|
736
|
-
}
|
737
|
-
|
738
|
-
if (old_node.status == FunctionStatus.CHANGED) {
|
739
|
-
var why_wrong_expectations =
|
740
|
-
WhyFunctionExpectationsDiffer(old_node.info, new_node.info);
|
741
|
-
if (why_wrong_expectations) {
|
742
|
-
old_node.status = FunctionStatus.DAMAGED;
|
743
|
-
old_node.status_explanation = why_wrong_expectations;
|
744
|
-
}
|
745
|
-
}
|
746
|
-
old_node.unmatched_new_nodes = unmatched_new_nodes_list;
|
747
|
-
old_node.textually_unmatched_new_nodes =
|
748
|
-
textually_unmatched_new_nodes_list;
|
749
|
-
}
|
750
|
-
|
751
|
-
ProcessChildren(old_code_tree, new_code_tree);
|
752
|
-
|
753
|
-
old_code_tree.corresponding_node = new_code_tree;
|
754
|
-
old_code_tree.textual_corresponding_node = new_code_tree;
|
755
|
-
|
756
|
-
Assert(old_code_tree.status != FunctionStatus.DAMAGED,
|
757
|
-
"Script became damaged");
|
758
|
-
}
|
759
|
-
|
760
|
-
function FindLiveSharedInfos(old_code_tree, script) {
|
761
|
-
var shared_raw_list = %LiveEditFindSharedFunctionInfosForScript(script);
|
762
|
-
|
763
|
-
var shared_infos = new Array();
|
764
|
-
|
765
|
-
for (var i = 0; i < shared_raw_list.length; i++) {
|
766
|
-
shared_infos.push(new SharedInfoWrapper(shared_raw_list[i]));
|
767
|
-
}
|
768
|
-
|
769
|
-
// Finds SharedFunctionInfo that corresponds compile info with index
|
770
|
-
// in old version of the script.
|
771
|
-
function FindFunctionInfo(compile_info) {
|
772
|
-
for (var i = 0; i < shared_infos.length; i++) {
|
773
|
-
var wrapper = shared_infos[i];
|
774
|
-
if (wrapper.start_position == compile_info.start_position &&
|
775
|
-
wrapper.end_position == compile_info.end_position) {
|
776
|
-
return wrapper;
|
777
|
-
}
|
778
|
-
}
|
779
|
-
}
|
780
|
-
|
781
|
-
function TraverseTree(node) {
|
782
|
-
var info_wrapper = FindFunctionInfo(node.info);
|
783
|
-
if (info_wrapper) {
|
784
|
-
node.live_shared_info_wrapper = info_wrapper;
|
785
|
-
}
|
786
|
-
for (var i = 0; i < node.children.length; i++) {
|
787
|
-
TraverseTree(node.children[i]);
|
788
|
-
}
|
789
|
-
}
|
790
|
-
|
791
|
-
TraverseTree(old_code_tree);
|
792
|
-
}
|
793
|
-
|
794
|
-
|
795
|
-
// An object describing function compilation details. Its index fields
|
796
|
-
// apply to indexes inside array that stores these objects.
|
797
|
-
function FunctionCompileInfo(raw_array) {
|
798
|
-
this.function_name = raw_array[0];
|
799
|
-
this.start_position = raw_array[1];
|
800
|
-
this.end_position = raw_array[2];
|
801
|
-
this.param_num = raw_array[3];
|
802
|
-
this.code = raw_array[4];
|
803
|
-
this.scope_info = raw_array[5];
|
804
|
-
this.outer_index = raw_array[6];
|
805
|
-
this.shared_function_info = raw_array[7];
|
806
|
-
this.next_sibling_index = null;
|
807
|
-
this.raw_array = raw_array;
|
808
|
-
}
|
809
|
-
|
810
|
-
function SharedInfoWrapper(raw_array) {
|
811
|
-
this.function_name = raw_array[0];
|
812
|
-
this.start_position = raw_array[1];
|
813
|
-
this.end_position = raw_array[2];
|
814
|
-
this.info = raw_array[3];
|
815
|
-
this.raw_array = raw_array;
|
816
|
-
}
|
817
|
-
|
818
|
-
// Changes positions (including all statments) in function.
|
819
|
-
function PatchPositions(old_info_node, diff_array, report_array) {
|
820
|
-
var shared_info_wrapper = old_info_node.live_shared_info_wrapper;
|
821
|
-
if (!shared_info_wrapper) {
|
822
|
-
// TODO(LiveEdit): function is not compiled yet or is already collected.
|
823
|
-
report_array.push(
|
824
|
-
{ name: old_info_node.info.function_name, info_not_found: true } );
|
825
|
-
return;
|
826
|
-
}
|
827
|
-
%LiveEditPatchFunctionPositions(shared_info_wrapper.raw_array,
|
828
|
-
diff_array);
|
829
|
-
report_array.push( { name: old_info_node.info.function_name } );
|
830
|
-
}
|
831
|
-
|
832
|
-
// Adds a suffix to script name to mark that it is old version.
|
833
|
-
function CreateNameForOldScript(script) {
|
834
|
-
// TODO(635): try better than this; support several changes.
|
835
|
-
return script.name + " (old)";
|
836
|
-
}
|
837
|
-
|
838
|
-
// Compares a function interface old and new version, whether it
|
839
|
-
// changed or not. Returns explanation if they differ.
|
840
|
-
function WhyFunctionExpectationsDiffer(function_info1, function_info2) {
|
841
|
-
// Check that function has the same number of parameters (there may exist
|
842
|
-
// an adapter, that won't survive function parameter number change).
|
843
|
-
if (function_info1.param_num != function_info2.param_num) {
|
844
|
-
return "Changed parameter number: " + function_info1.param_num +
|
845
|
-
" and " + function_info2.param_num;
|
846
|
-
}
|
847
|
-
var scope_info1 = function_info1.scope_info;
|
848
|
-
var scope_info2 = function_info2.scope_info;
|
849
|
-
|
850
|
-
var scope_info1_text;
|
851
|
-
var scope_info2_text;
|
852
|
-
|
853
|
-
if (scope_info1) {
|
854
|
-
scope_info1_text = scope_info1.toString();
|
855
|
-
} else {
|
856
|
-
scope_info1_text = "";
|
857
|
-
}
|
858
|
-
if (scope_info2) {
|
859
|
-
scope_info2_text = scope_info2.toString();
|
860
|
-
} else {
|
861
|
-
scope_info2_text = "";
|
862
|
-
}
|
863
|
-
|
864
|
-
if (scope_info1_text != scope_info2_text) {
|
865
|
-
return "Incompatible variable maps: [" + scope_info1_text +
|
866
|
-
"] and [" + scope_info2_text + "]";
|
867
|
-
}
|
868
|
-
// No differences. Return undefined.
|
869
|
-
return;
|
870
|
-
}
|
871
|
-
|
872
|
-
// Minifier forward declaration.
|
873
|
-
var FunctionPatchabilityStatus;
|
874
|
-
|
875
|
-
// For array of wrapped shared function infos checks that none of them
|
876
|
-
// have activations on stack (of any thread). Throws a Failure exception
|
877
|
-
// if this proves to be false.
|
878
|
-
function CheckStackActivations(shared_wrapper_list, change_log) {
|
879
|
-
var shared_list = new Array();
|
880
|
-
for (var i = 0; i < shared_wrapper_list.length; i++) {
|
881
|
-
shared_list[i] = shared_wrapper_list[i].info;
|
882
|
-
}
|
883
|
-
var result = %LiveEditCheckAndDropActivations(shared_list, true);
|
884
|
-
if (result[shared_list.length]) {
|
885
|
-
// Extra array element may contain error message.
|
886
|
-
throw new Failure(result[shared_list.length]);
|
887
|
-
}
|
888
|
-
|
889
|
-
var problems = new Array();
|
890
|
-
var dropped = new Array();
|
891
|
-
for (var i = 0; i < shared_list.length; i++) {
|
892
|
-
var shared = shared_wrapper_list[i];
|
893
|
-
if (result[i] == FunctionPatchabilityStatus.REPLACED_ON_ACTIVE_STACK) {
|
894
|
-
dropped.push({ name: shared.function_name } );
|
895
|
-
} else if (result[i] != FunctionPatchabilityStatus.AVAILABLE_FOR_PATCH) {
|
896
|
-
var description = {
|
897
|
-
name: shared.function_name,
|
898
|
-
start_pos: shared.start_position,
|
899
|
-
end_pos: shared.end_position,
|
900
|
-
replace_problem:
|
901
|
-
FunctionPatchabilityStatus.SymbolName(result[i])
|
902
|
-
};
|
903
|
-
problems.push(description);
|
904
|
-
}
|
905
|
-
}
|
906
|
-
if (dropped.length > 0) {
|
907
|
-
change_log.push({ dropped_from_stack: dropped });
|
908
|
-
}
|
909
|
-
if (problems.length > 0) {
|
910
|
-
change_log.push( { functions_on_stack: problems } );
|
911
|
-
throw new Failure("Blocked by functions on stack");
|
912
|
-
}
|
913
|
-
|
914
|
-
return dropped.length;
|
915
|
-
}
|
916
|
-
|
917
|
-
// A copy of the FunctionPatchabilityStatus enum from liveedit.h
|
918
|
-
var FunctionPatchabilityStatus = {
|
919
|
-
AVAILABLE_FOR_PATCH: 1,
|
920
|
-
BLOCKED_ON_ACTIVE_STACK: 2,
|
921
|
-
BLOCKED_ON_OTHER_STACK: 3,
|
922
|
-
BLOCKED_UNDER_NATIVE_CODE: 4,
|
923
|
-
REPLACED_ON_ACTIVE_STACK: 5
|
924
|
-
}
|
925
|
-
|
926
|
-
FunctionPatchabilityStatus.SymbolName = function(code) {
|
927
|
-
var enum = FunctionPatchabilityStatus;
|
928
|
-
for (name in enum) {
|
929
|
-
if (enum[name] == code) {
|
930
|
-
return name;
|
931
|
-
}
|
932
|
-
}
|
933
|
-
}
|
934
|
-
|
935
|
-
|
936
|
-
// A logical failure in liveedit process. This means that change_log
|
937
|
-
// is valid and consistent description of what happened.
|
938
|
-
function Failure(message) {
|
939
|
-
this.message = message;
|
940
|
-
}
|
941
|
-
// Function (constructor) is public.
|
942
|
-
this.Failure = Failure;
|
943
|
-
|
944
|
-
Failure.prototype.toString = function() {
|
945
|
-
return "LiveEdit Failure: " + this.message;
|
946
|
-
}
|
947
|
-
|
948
|
-
// A testing entry.
|
949
|
-
function GetPcFromSourcePos(func, source_pos) {
|
950
|
-
return %GetFunctionCodePositionFromSource(func, source_pos);
|
951
|
-
}
|
952
|
-
// Function is public.
|
953
|
-
this.GetPcFromSourcePos = GetPcFromSourcePos;
|
954
|
-
|
955
|
-
// LiveEdit main entry point: changes a script text to a new string.
|
956
|
-
function SetScriptSource(script, new_source, preview_only, change_log) {
|
957
|
-
var old_source = script.source;
|
958
|
-
var diff = CompareStringsLinewise(old_source, new_source);
|
959
|
-
return ApplyPatchMultiChunk(script, diff, new_source, preview_only,
|
960
|
-
change_log);
|
961
|
-
}
|
962
|
-
// Function is public.
|
963
|
-
this.SetScriptSource = SetScriptSource;
|
964
|
-
|
965
|
-
function CompareStringsLinewise(s1, s2) {
|
966
|
-
return %LiveEditCompareStringsLinewise(s1, s2);
|
967
|
-
}
|
968
|
-
|
969
|
-
// Applies the change to the script.
|
970
|
-
// The change is always a substring (change_pos, change_pos + change_len)
|
971
|
-
// being replaced with a completely different string new_str.
|
972
|
-
// This API is a legacy and is obsolete.
|
973
|
-
//
|
974
|
-
// @param {Script} script that is being changed
|
975
|
-
// @param {Array} change_log a list that collects engineer-readable
|
976
|
-
// description of what happened.
|
977
|
-
function ApplySingleChunkPatch(script, change_pos, change_len, new_str,
|
978
|
-
change_log) {
|
979
|
-
var old_source = script.source;
|
980
|
-
|
981
|
-
// Prepare new source string.
|
982
|
-
var new_source = old_source.substring(0, change_pos) +
|
983
|
-
new_str + old_source.substring(change_pos + change_len);
|
984
|
-
|
985
|
-
return ApplyPatchMultiChunk(script,
|
986
|
-
[ change_pos, change_pos + change_len, change_pos + new_str.length],
|
987
|
-
new_source, false, change_log);
|
988
|
-
}
|
989
|
-
|
990
|
-
// Creates JSON description for a change tree.
|
991
|
-
function DescribeChangeTree(old_code_tree) {
|
992
|
-
|
993
|
-
function ProcessOldNode(node) {
|
994
|
-
var child_infos = [];
|
995
|
-
for (var i = 0; i < node.children.length; i++) {
|
996
|
-
var child = node.children[i];
|
997
|
-
if (child.status != FunctionStatus.UNCHANGED) {
|
998
|
-
child_infos.push(ProcessOldNode(child));
|
999
|
-
}
|
1000
|
-
}
|
1001
|
-
var new_child_infos = [];
|
1002
|
-
if (node.textually_unmatched_new_nodes) {
|
1003
|
-
for (var i = 0; i < node.textually_unmatched_new_nodes.length; i++) {
|
1004
|
-
var child = node.textually_unmatched_new_nodes[i];
|
1005
|
-
new_child_infos.push(ProcessNewNode(child));
|
1006
|
-
}
|
1007
|
-
}
|
1008
|
-
var res = {
|
1009
|
-
name: node.info.function_name,
|
1010
|
-
positions: DescribePositions(node),
|
1011
|
-
status: node.status,
|
1012
|
-
children: child_infos,
|
1013
|
-
new_children: new_child_infos
|
1014
|
-
};
|
1015
|
-
if (node.status_explanation) {
|
1016
|
-
res.status_explanation = node.status_explanation;
|
1017
|
-
}
|
1018
|
-
if (node.textual_corresponding_node) {
|
1019
|
-
res.new_positions = DescribePositions(node.textual_corresponding_node);
|
1020
|
-
}
|
1021
|
-
return res;
|
1022
|
-
}
|
1023
|
-
|
1024
|
-
function ProcessNewNode(node) {
|
1025
|
-
var child_infos = [];
|
1026
|
-
// Do not list ancestors.
|
1027
|
-
if (false) {
|
1028
|
-
for (var i = 0; i < node.children.length; i++) {
|
1029
|
-
child_infos.push(ProcessNewNode(node.children[i]));
|
1030
|
-
}
|
1031
|
-
}
|
1032
|
-
var res = {
|
1033
|
-
name: node.info.function_name,
|
1034
|
-
positions: DescribePositions(node),
|
1035
|
-
children: child_infos,
|
1036
|
-
};
|
1037
|
-
return res;
|
1038
|
-
}
|
1039
|
-
|
1040
|
-
function DescribePositions(node) {
|
1041
|
-
return {
|
1042
|
-
start_position: node.info.start_position,
|
1043
|
-
end_position: node.info.end_position
|
1044
|
-
};
|
1045
|
-
}
|
1046
|
-
|
1047
|
-
return ProcessOldNode(old_code_tree);
|
1048
|
-
}
|
1049
|
-
|
1050
|
-
|
1051
|
-
// Functions are public for tests.
|
1052
|
-
this.TestApi = {
|
1053
|
-
PosTranslator: PosTranslator,
|
1054
|
-
CompareStringsLinewise: CompareStringsLinewise,
|
1055
|
-
ApplySingleChunkPatch: ApplySingleChunkPatch
|
1056
|
-
}
|
1057
|
-
}
|