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
@@ -0,0 +1,107 @@
|
|
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
|
+
#ifndef V8_AST_INL_H_
|
29
|
+
#define V8_AST_INL_H_
|
30
|
+
|
31
|
+
#include "v8.h"
|
32
|
+
|
33
|
+
#include "ast.h"
|
34
|
+
#include "jump-target-inl.h"
|
35
|
+
|
36
|
+
namespace v8 {
|
37
|
+
namespace internal {
|
38
|
+
|
39
|
+
|
40
|
+
SwitchStatement::SwitchStatement(ZoneStringList* labels)
|
41
|
+
: BreakableStatement(labels, TARGET_FOR_ANONYMOUS),
|
42
|
+
tag_(NULL), cases_(NULL) {
|
43
|
+
}
|
44
|
+
|
45
|
+
|
46
|
+
Block::Block(ZoneStringList* labels, int capacity, bool is_initializer_block)
|
47
|
+
: BreakableStatement(labels, TARGET_FOR_NAMED_ONLY),
|
48
|
+
statements_(capacity),
|
49
|
+
is_initializer_block_(is_initializer_block) {
|
50
|
+
}
|
51
|
+
|
52
|
+
|
53
|
+
BreakableStatement::BreakableStatement(ZoneStringList* labels, Type type)
|
54
|
+
: labels_(labels),
|
55
|
+
type_(type),
|
56
|
+
entry_id_(GetNextId()),
|
57
|
+
exit_id_(GetNextId()) {
|
58
|
+
ASSERT(labels == NULL || labels->length() > 0);
|
59
|
+
}
|
60
|
+
|
61
|
+
|
62
|
+
IterationStatement::IterationStatement(ZoneStringList* labels)
|
63
|
+
: BreakableStatement(labels, TARGET_FOR_ANONYMOUS),
|
64
|
+
body_(NULL),
|
65
|
+
continue_target_(JumpTarget::BIDIRECTIONAL),
|
66
|
+
osr_entry_id_(GetNextId()) {
|
67
|
+
}
|
68
|
+
|
69
|
+
|
70
|
+
DoWhileStatement::DoWhileStatement(ZoneStringList* labels)
|
71
|
+
: IterationStatement(labels),
|
72
|
+
cond_(NULL),
|
73
|
+
condition_position_(-1),
|
74
|
+
continue_id_(GetNextId()),
|
75
|
+
back_edge_id_(GetNextId()) {
|
76
|
+
}
|
77
|
+
|
78
|
+
|
79
|
+
WhileStatement::WhileStatement(ZoneStringList* labels)
|
80
|
+
: IterationStatement(labels),
|
81
|
+
cond_(NULL),
|
82
|
+
may_have_function_literal_(true),
|
83
|
+
body_id_(GetNextId()) {
|
84
|
+
}
|
85
|
+
|
86
|
+
|
87
|
+
ForStatement::ForStatement(ZoneStringList* labels)
|
88
|
+
: IterationStatement(labels),
|
89
|
+
init_(NULL),
|
90
|
+
cond_(NULL),
|
91
|
+
next_(NULL),
|
92
|
+
may_have_function_literal_(true),
|
93
|
+
loop_variable_(NULL),
|
94
|
+
continue_id_(GetNextId()),
|
95
|
+
body_id_(GetNextId()) {
|
96
|
+
}
|
97
|
+
|
98
|
+
|
99
|
+
ForInStatement::ForInStatement(ZoneStringList* labels)
|
100
|
+
: IterationStatement(labels), each_(NULL), enumerable_(NULL),
|
101
|
+
assignment_id_(GetNextId()) {
|
102
|
+
}
|
103
|
+
|
104
|
+
|
105
|
+
} } // namespace v8::internal
|
106
|
+
|
107
|
+
#endif // V8_AST_INL_H_
|
@@ -0,0 +1,1067 @@
|
|
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
|
+
#include "v8.h"
|
29
|
+
|
30
|
+
#include "ast.h"
|
31
|
+
#include "jump-target-inl.h"
|
32
|
+
#include "parser.h"
|
33
|
+
#include "scopes.h"
|
34
|
+
#include "string-stream.h"
|
35
|
+
|
36
|
+
namespace v8 {
|
37
|
+
namespace internal {
|
38
|
+
|
39
|
+
unsigned AstNode::current_id_ = 0;
|
40
|
+
unsigned AstNode::count_ = 0;
|
41
|
+
VariableProxySentinel VariableProxySentinel::this_proxy_(true);
|
42
|
+
VariableProxySentinel VariableProxySentinel::identifier_proxy_(false);
|
43
|
+
ValidLeftHandSideSentinel ValidLeftHandSideSentinel::instance_;
|
44
|
+
Property Property::this_property_(VariableProxySentinel::this_proxy(), NULL, 0);
|
45
|
+
Call Call::sentinel_(NULL, NULL, 0);
|
46
|
+
|
47
|
+
|
48
|
+
// ----------------------------------------------------------------------------
|
49
|
+
// All the Accept member functions for each syntax tree node type.
|
50
|
+
|
51
|
+
void Slot::Accept(AstVisitor* v) { v->VisitSlot(this); }
|
52
|
+
|
53
|
+
#define DECL_ACCEPT(type) \
|
54
|
+
void type::Accept(AstVisitor* v) { v->Visit##type(this); }
|
55
|
+
AST_NODE_LIST(DECL_ACCEPT)
|
56
|
+
#undef DECL_ACCEPT
|
57
|
+
|
58
|
+
|
59
|
+
// ----------------------------------------------------------------------------
|
60
|
+
// Implementation of other node functionality.
|
61
|
+
|
62
|
+
Assignment* ExpressionStatement::StatementAsSimpleAssignment() {
|
63
|
+
return (expression()->AsAssignment() != NULL &&
|
64
|
+
!expression()->AsAssignment()->is_compound())
|
65
|
+
? expression()->AsAssignment()
|
66
|
+
: NULL;
|
67
|
+
}
|
68
|
+
|
69
|
+
|
70
|
+
CountOperation* ExpressionStatement::StatementAsCountOperation() {
|
71
|
+
return expression()->AsCountOperation();
|
72
|
+
}
|
73
|
+
|
74
|
+
|
75
|
+
VariableProxy::VariableProxy(Variable* var)
|
76
|
+
: name_(var->name()),
|
77
|
+
var_(NULL), // Will be set by the call to BindTo.
|
78
|
+
is_this_(var->is_this()),
|
79
|
+
inside_with_(false),
|
80
|
+
is_trivial_(false) {
|
81
|
+
BindTo(var);
|
82
|
+
}
|
83
|
+
|
84
|
+
|
85
|
+
VariableProxy::VariableProxy(Handle<String> name,
|
86
|
+
bool is_this,
|
87
|
+
bool inside_with)
|
88
|
+
: name_(name),
|
89
|
+
var_(NULL),
|
90
|
+
is_this_(is_this),
|
91
|
+
inside_with_(inside_with),
|
92
|
+
is_trivial_(false) {
|
93
|
+
// names must be canonicalized for fast equality checks
|
94
|
+
ASSERT(name->IsSymbol());
|
95
|
+
}
|
96
|
+
|
97
|
+
|
98
|
+
VariableProxy::VariableProxy(bool is_this)
|
99
|
+
: var_(NULL),
|
100
|
+
is_this_(is_this),
|
101
|
+
inside_with_(false),
|
102
|
+
is_trivial_(false) {
|
103
|
+
}
|
104
|
+
|
105
|
+
|
106
|
+
void VariableProxy::BindTo(Variable* var) {
|
107
|
+
ASSERT(var_ == NULL); // must be bound only once
|
108
|
+
ASSERT(var != NULL); // must bind
|
109
|
+
ASSERT((is_this() && var->is_this()) || name_.is_identical_to(var->name()));
|
110
|
+
// Ideally CONST-ness should match. However, this is very hard to achieve
|
111
|
+
// because we don't know the exact semantics of conflicting (const and
|
112
|
+
// non-const) multiple variable declarations, const vars introduced via
|
113
|
+
// eval() etc. Const-ness and variable declarations are a complete mess
|
114
|
+
// in JS. Sigh...
|
115
|
+
var_ = var;
|
116
|
+
var->set_is_used(true);
|
117
|
+
}
|
118
|
+
|
119
|
+
|
120
|
+
Assignment::Assignment(Token::Value op,
|
121
|
+
Expression* target,
|
122
|
+
Expression* value,
|
123
|
+
int pos)
|
124
|
+
: op_(op),
|
125
|
+
target_(target),
|
126
|
+
value_(value),
|
127
|
+
pos_(pos),
|
128
|
+
binary_operation_(NULL),
|
129
|
+
compound_load_id_(kNoNumber),
|
130
|
+
assignment_id_(GetNextId()),
|
131
|
+
block_start_(false),
|
132
|
+
block_end_(false),
|
133
|
+
is_monomorphic_(false),
|
134
|
+
receiver_types_(NULL) {
|
135
|
+
ASSERT(Token::IsAssignmentOp(op));
|
136
|
+
if (is_compound()) {
|
137
|
+
binary_operation_ =
|
138
|
+
new BinaryOperation(binary_op(), target, value, pos + 1);
|
139
|
+
compound_load_id_ = GetNextId();
|
140
|
+
}
|
141
|
+
}
|
142
|
+
|
143
|
+
|
144
|
+
Token::Value Assignment::binary_op() const {
|
145
|
+
switch (op_) {
|
146
|
+
case Token::ASSIGN_BIT_OR: return Token::BIT_OR;
|
147
|
+
case Token::ASSIGN_BIT_XOR: return Token::BIT_XOR;
|
148
|
+
case Token::ASSIGN_BIT_AND: return Token::BIT_AND;
|
149
|
+
case Token::ASSIGN_SHL: return Token::SHL;
|
150
|
+
case Token::ASSIGN_SAR: return Token::SAR;
|
151
|
+
case Token::ASSIGN_SHR: return Token::SHR;
|
152
|
+
case Token::ASSIGN_ADD: return Token::ADD;
|
153
|
+
case Token::ASSIGN_SUB: return Token::SUB;
|
154
|
+
case Token::ASSIGN_MUL: return Token::MUL;
|
155
|
+
case Token::ASSIGN_DIV: return Token::DIV;
|
156
|
+
case Token::ASSIGN_MOD: return Token::MOD;
|
157
|
+
default: UNREACHABLE();
|
158
|
+
}
|
159
|
+
return Token::ILLEGAL;
|
160
|
+
}
|
161
|
+
|
162
|
+
|
163
|
+
bool FunctionLiteral::AllowsLazyCompilation() {
|
164
|
+
return scope()->AllowsLazyCompilation();
|
165
|
+
}
|
166
|
+
|
167
|
+
|
168
|
+
ObjectLiteral::Property::Property(Literal* key, Expression* value) {
|
169
|
+
emit_store_ = true;
|
170
|
+
key_ = key;
|
171
|
+
value_ = value;
|
172
|
+
Object* k = *key->handle();
|
173
|
+
if (k->IsSymbol() && Heap::Proto_symbol()->Equals(String::cast(k))) {
|
174
|
+
kind_ = PROTOTYPE;
|
175
|
+
} else if (value_->AsMaterializedLiteral() != NULL) {
|
176
|
+
kind_ = MATERIALIZED_LITERAL;
|
177
|
+
} else if (value_->AsLiteral() != NULL) {
|
178
|
+
kind_ = CONSTANT;
|
179
|
+
} else {
|
180
|
+
kind_ = COMPUTED;
|
181
|
+
}
|
182
|
+
}
|
183
|
+
|
184
|
+
|
185
|
+
ObjectLiteral::Property::Property(bool is_getter, FunctionLiteral* value) {
|
186
|
+
emit_store_ = true;
|
187
|
+
key_ = new Literal(value->name());
|
188
|
+
value_ = value;
|
189
|
+
kind_ = is_getter ? GETTER : SETTER;
|
190
|
+
}
|
191
|
+
|
192
|
+
|
193
|
+
bool ObjectLiteral::Property::IsCompileTimeValue() {
|
194
|
+
return kind_ == CONSTANT ||
|
195
|
+
(kind_ == MATERIALIZED_LITERAL &&
|
196
|
+
CompileTimeValue::IsCompileTimeValue(value_));
|
197
|
+
}
|
198
|
+
|
199
|
+
|
200
|
+
void ObjectLiteral::Property::set_emit_store(bool emit_store) {
|
201
|
+
emit_store_ = emit_store;
|
202
|
+
}
|
203
|
+
|
204
|
+
|
205
|
+
bool ObjectLiteral::Property::emit_store() {
|
206
|
+
return emit_store_;
|
207
|
+
}
|
208
|
+
|
209
|
+
|
210
|
+
bool IsEqualString(void* first, void* second) {
|
211
|
+
ASSERT((*reinterpret_cast<String**>(first))->IsString());
|
212
|
+
ASSERT((*reinterpret_cast<String**>(second))->IsString());
|
213
|
+
Handle<String> h1(reinterpret_cast<String**>(first));
|
214
|
+
Handle<String> h2(reinterpret_cast<String**>(second));
|
215
|
+
return (*h1)->Equals(*h2);
|
216
|
+
}
|
217
|
+
|
218
|
+
|
219
|
+
bool IsEqualNumber(void* first, void* second) {
|
220
|
+
ASSERT((*reinterpret_cast<Object**>(first))->IsNumber());
|
221
|
+
ASSERT((*reinterpret_cast<Object**>(second))->IsNumber());
|
222
|
+
|
223
|
+
Handle<Object> h1(reinterpret_cast<Object**>(first));
|
224
|
+
Handle<Object> h2(reinterpret_cast<Object**>(second));
|
225
|
+
if (h1->IsSmi()) {
|
226
|
+
return h2->IsSmi() && *h1 == *h2;
|
227
|
+
}
|
228
|
+
if (h2->IsSmi()) return false;
|
229
|
+
Handle<HeapNumber> n1 = Handle<HeapNumber>::cast(h1);
|
230
|
+
Handle<HeapNumber> n2 = Handle<HeapNumber>::cast(h2);
|
231
|
+
ASSERT(isfinite(n1->value()));
|
232
|
+
ASSERT(isfinite(n2->value()));
|
233
|
+
return n1->value() == n2->value();
|
234
|
+
}
|
235
|
+
|
236
|
+
|
237
|
+
void ObjectLiteral::CalculateEmitStore() {
|
238
|
+
HashMap properties(&IsEqualString);
|
239
|
+
HashMap elements(&IsEqualNumber);
|
240
|
+
for (int i = this->properties()->length() - 1; i >= 0; i--) {
|
241
|
+
ObjectLiteral::Property* property = this->properties()->at(i);
|
242
|
+
Literal* literal = property->key();
|
243
|
+
Handle<Object> handle = literal->handle();
|
244
|
+
|
245
|
+
if (handle->IsNull()) {
|
246
|
+
continue;
|
247
|
+
}
|
248
|
+
|
249
|
+
uint32_t hash;
|
250
|
+
HashMap* table;
|
251
|
+
void* key;
|
252
|
+
if (handle->IsSymbol()) {
|
253
|
+
Handle<String> name(String::cast(*handle));
|
254
|
+
if (name->AsArrayIndex(&hash)) {
|
255
|
+
Handle<Object> key_handle = Factory::NewNumberFromUint(hash);
|
256
|
+
key = key_handle.location();
|
257
|
+
table = &elements;
|
258
|
+
} else {
|
259
|
+
key = name.location();
|
260
|
+
hash = name->Hash();
|
261
|
+
table = &properties;
|
262
|
+
}
|
263
|
+
} else if (handle->ToArrayIndex(&hash)) {
|
264
|
+
key = handle.location();
|
265
|
+
table = &elements;
|
266
|
+
} else {
|
267
|
+
ASSERT(handle->IsNumber());
|
268
|
+
double num = handle->Number();
|
269
|
+
char arr[100];
|
270
|
+
Vector<char> buffer(arr, ARRAY_SIZE(arr));
|
271
|
+
const char* str = DoubleToCString(num, buffer);
|
272
|
+
Handle<String> name = Factory::NewStringFromAscii(CStrVector(str));
|
273
|
+
key = name.location();
|
274
|
+
hash = name->Hash();
|
275
|
+
table = &properties;
|
276
|
+
}
|
277
|
+
// If the key of a computed property is in the table, do not emit
|
278
|
+
// a store for the property later.
|
279
|
+
if (property->kind() == ObjectLiteral::Property::COMPUTED) {
|
280
|
+
if (table->Lookup(key, hash, false) != NULL) {
|
281
|
+
property->set_emit_store(false);
|
282
|
+
}
|
283
|
+
}
|
284
|
+
// Add key to the table.
|
285
|
+
table->Lookup(key, hash, true);
|
286
|
+
}
|
287
|
+
}
|
288
|
+
|
289
|
+
|
290
|
+
void TargetCollector::AddTarget(BreakTarget* target) {
|
291
|
+
// Add the label to the collector, but discard duplicates.
|
292
|
+
int length = targets_->length();
|
293
|
+
for (int i = 0; i < length; i++) {
|
294
|
+
if (targets_->at(i) == target) return;
|
295
|
+
}
|
296
|
+
targets_->Add(target);
|
297
|
+
}
|
298
|
+
|
299
|
+
|
300
|
+
bool Expression::GuaranteedSmiResult() {
|
301
|
+
BinaryOperation* node = AsBinaryOperation();
|
302
|
+
if (node == NULL) return false;
|
303
|
+
Token::Value op = node->op();
|
304
|
+
switch (op) {
|
305
|
+
case Token::COMMA:
|
306
|
+
case Token::OR:
|
307
|
+
case Token::AND:
|
308
|
+
case Token::ADD:
|
309
|
+
case Token::SUB:
|
310
|
+
case Token::MUL:
|
311
|
+
case Token::DIV:
|
312
|
+
case Token::MOD:
|
313
|
+
case Token::BIT_XOR:
|
314
|
+
case Token::SHL:
|
315
|
+
return false;
|
316
|
+
break;
|
317
|
+
case Token::BIT_OR:
|
318
|
+
case Token::BIT_AND: {
|
319
|
+
Literal* left = node->left()->AsLiteral();
|
320
|
+
Literal* right = node->right()->AsLiteral();
|
321
|
+
if (left != NULL && left->handle()->IsSmi()) {
|
322
|
+
int value = Smi::cast(*left->handle())->value();
|
323
|
+
if (op == Token::BIT_OR && ((value & 0xc0000000) == 0xc0000000)) {
|
324
|
+
// Result of bitwise or is always a negative Smi.
|
325
|
+
return true;
|
326
|
+
}
|
327
|
+
if (op == Token::BIT_AND && ((value & 0xc0000000) == 0)) {
|
328
|
+
// Result of bitwise and is always a positive Smi.
|
329
|
+
return true;
|
330
|
+
}
|
331
|
+
}
|
332
|
+
if (right != NULL && right->handle()->IsSmi()) {
|
333
|
+
int value = Smi::cast(*right->handle())->value();
|
334
|
+
if (op == Token::BIT_OR && ((value & 0xc0000000) == 0xc0000000)) {
|
335
|
+
// Result of bitwise or is always a negative Smi.
|
336
|
+
return true;
|
337
|
+
}
|
338
|
+
if (op == Token::BIT_AND && ((value & 0xc0000000) == 0)) {
|
339
|
+
// Result of bitwise and is always a positive Smi.
|
340
|
+
return true;
|
341
|
+
}
|
342
|
+
}
|
343
|
+
return false;
|
344
|
+
break;
|
345
|
+
}
|
346
|
+
case Token::SAR:
|
347
|
+
case Token::SHR: {
|
348
|
+
Literal* right = node->right()->AsLiteral();
|
349
|
+
if (right != NULL && right->handle()->IsSmi()) {
|
350
|
+
int value = Smi::cast(*right->handle())->value();
|
351
|
+
if ((value & 0x1F) > 1 ||
|
352
|
+
(op == Token::SAR && (value & 0x1F) == 1)) {
|
353
|
+
return true;
|
354
|
+
}
|
355
|
+
}
|
356
|
+
return false;
|
357
|
+
break;
|
358
|
+
}
|
359
|
+
default:
|
360
|
+
UNREACHABLE();
|
361
|
+
break;
|
362
|
+
}
|
363
|
+
return false;
|
364
|
+
}
|
365
|
+
|
366
|
+
|
367
|
+
void Expression::CopyAnalysisResultsFrom(Expression* other) {
|
368
|
+
bitfields_ = other->bitfields_;
|
369
|
+
type_ = other->type_;
|
370
|
+
}
|
371
|
+
|
372
|
+
|
373
|
+
bool UnaryOperation::ResultOverwriteAllowed() {
|
374
|
+
switch (op_) {
|
375
|
+
case Token::BIT_NOT:
|
376
|
+
case Token::SUB:
|
377
|
+
return true;
|
378
|
+
default:
|
379
|
+
return false;
|
380
|
+
}
|
381
|
+
}
|
382
|
+
|
383
|
+
|
384
|
+
bool BinaryOperation::ResultOverwriteAllowed() {
|
385
|
+
switch (op_) {
|
386
|
+
case Token::COMMA:
|
387
|
+
case Token::OR:
|
388
|
+
case Token::AND:
|
389
|
+
return false;
|
390
|
+
case Token::BIT_OR:
|
391
|
+
case Token::BIT_XOR:
|
392
|
+
case Token::BIT_AND:
|
393
|
+
case Token::SHL:
|
394
|
+
case Token::SAR:
|
395
|
+
case Token::SHR:
|
396
|
+
case Token::ADD:
|
397
|
+
case Token::SUB:
|
398
|
+
case Token::MUL:
|
399
|
+
case Token::DIV:
|
400
|
+
case Token::MOD:
|
401
|
+
return true;
|
402
|
+
default:
|
403
|
+
UNREACHABLE();
|
404
|
+
}
|
405
|
+
return false;
|
406
|
+
}
|
407
|
+
|
408
|
+
|
409
|
+
BinaryOperation::BinaryOperation(Assignment* assignment) {
|
410
|
+
ASSERT(assignment->is_compound());
|
411
|
+
op_ = assignment->binary_op();
|
412
|
+
left_ = assignment->target();
|
413
|
+
right_ = assignment->value();
|
414
|
+
pos_ = assignment->position();
|
415
|
+
CopyAnalysisResultsFrom(assignment);
|
416
|
+
}
|
417
|
+
|
418
|
+
|
419
|
+
// ----------------------------------------------------------------------------
|
420
|
+
// Inlining support
|
421
|
+
|
422
|
+
bool Block::IsInlineable() const {
|
423
|
+
const int count = statements_.length();
|
424
|
+
for (int i = 0; i < count; ++i) {
|
425
|
+
if (!statements_[i]->IsInlineable()) return false;
|
426
|
+
}
|
427
|
+
return true;
|
428
|
+
}
|
429
|
+
|
430
|
+
|
431
|
+
bool ExpressionStatement::IsInlineable() const {
|
432
|
+
return expression()->IsInlineable();
|
433
|
+
}
|
434
|
+
|
435
|
+
|
436
|
+
bool IfStatement::IsInlineable() const {
|
437
|
+
return condition()->IsInlineable() && then_statement()->IsInlineable() &&
|
438
|
+
else_statement()->IsInlineable();
|
439
|
+
}
|
440
|
+
|
441
|
+
|
442
|
+
bool ReturnStatement::IsInlineable() const {
|
443
|
+
return expression()->IsInlineable();
|
444
|
+
}
|
445
|
+
|
446
|
+
|
447
|
+
bool Conditional::IsInlineable() const {
|
448
|
+
return condition()->IsInlineable() && then_expression()->IsInlineable() &&
|
449
|
+
else_expression()->IsInlineable();
|
450
|
+
}
|
451
|
+
|
452
|
+
|
453
|
+
bool VariableProxy::IsInlineable() const {
|
454
|
+
return var()->is_global() || var()->IsStackAllocated();
|
455
|
+
}
|
456
|
+
|
457
|
+
|
458
|
+
bool Assignment::IsInlineable() const {
|
459
|
+
return target()->IsInlineable() && value()->IsInlineable();
|
460
|
+
}
|
461
|
+
|
462
|
+
|
463
|
+
bool Property::IsInlineable() const {
|
464
|
+
return obj()->IsInlineable() && key()->IsInlineable();
|
465
|
+
}
|
466
|
+
|
467
|
+
|
468
|
+
bool Call::IsInlineable() const {
|
469
|
+
if (!expression()->IsInlineable()) return false;
|
470
|
+
const int count = arguments()->length();
|
471
|
+
for (int i = 0; i < count; ++i) {
|
472
|
+
if (!arguments()->at(i)->IsInlineable()) return false;
|
473
|
+
}
|
474
|
+
return true;
|
475
|
+
}
|
476
|
+
|
477
|
+
|
478
|
+
bool CallNew::IsInlineable() const {
|
479
|
+
if (!expression()->IsInlineable()) return false;
|
480
|
+
const int count = arguments()->length();
|
481
|
+
for (int i = 0; i < count; ++i) {
|
482
|
+
if (!arguments()->at(i)->IsInlineable()) return false;
|
483
|
+
}
|
484
|
+
return true;
|
485
|
+
}
|
486
|
+
|
487
|
+
|
488
|
+
bool CallRuntime::IsInlineable() const {
|
489
|
+
const int count = arguments()->length();
|
490
|
+
for (int i = 0; i < count; ++i) {
|
491
|
+
if (!arguments()->at(i)->IsInlineable()) return false;
|
492
|
+
}
|
493
|
+
return true;
|
494
|
+
}
|
495
|
+
|
496
|
+
|
497
|
+
bool UnaryOperation::IsInlineable() const {
|
498
|
+
return expression()->IsInlineable();
|
499
|
+
}
|
500
|
+
|
501
|
+
|
502
|
+
bool BinaryOperation::IsInlineable() const {
|
503
|
+
return left()->IsInlineable() && right()->IsInlineable();
|
504
|
+
}
|
505
|
+
|
506
|
+
|
507
|
+
bool CompareOperation::IsInlineable() const {
|
508
|
+
return left()->IsInlineable() && right()->IsInlineable();
|
509
|
+
}
|
510
|
+
|
511
|
+
|
512
|
+
bool CompareToNull::IsInlineable() const {
|
513
|
+
return expression()->IsInlineable();
|
514
|
+
}
|
515
|
+
|
516
|
+
|
517
|
+
bool CountOperation::IsInlineable() const {
|
518
|
+
return expression()->IsInlineable();
|
519
|
+
}
|
520
|
+
|
521
|
+
|
522
|
+
// ----------------------------------------------------------------------------
|
523
|
+
// Recording of type feedback
|
524
|
+
|
525
|
+
void Property::RecordTypeFeedback(TypeFeedbackOracle* oracle) {
|
526
|
+
// Record type feedback from the oracle in the AST.
|
527
|
+
is_monomorphic_ = oracle->LoadIsMonomorphic(this);
|
528
|
+
if (key()->IsPropertyName()) {
|
529
|
+
if (oracle->LoadIsBuiltin(this, Builtins::LoadIC_ArrayLength)) {
|
530
|
+
is_array_length_ = true;
|
531
|
+
} else if (oracle->LoadIsBuiltin(this, Builtins::LoadIC_StringLength)) {
|
532
|
+
is_string_length_ = true;
|
533
|
+
} else if (oracle->LoadIsBuiltin(this,
|
534
|
+
Builtins::LoadIC_FunctionPrototype)) {
|
535
|
+
is_function_prototype_ = true;
|
536
|
+
} else {
|
537
|
+
Literal* lit_key = key()->AsLiteral();
|
538
|
+
ASSERT(lit_key != NULL && lit_key->handle()->IsString());
|
539
|
+
Handle<String> name = Handle<String>::cast(lit_key->handle());
|
540
|
+
ZoneMapList* types = oracle->LoadReceiverTypes(this, name);
|
541
|
+
receiver_types_ = types;
|
542
|
+
}
|
543
|
+
} else if (is_monomorphic_) {
|
544
|
+
monomorphic_receiver_type_ = oracle->LoadMonomorphicReceiverType(this);
|
545
|
+
}
|
546
|
+
}
|
547
|
+
|
548
|
+
|
549
|
+
void Assignment::RecordTypeFeedback(TypeFeedbackOracle* oracle) {
|
550
|
+
Property* prop = target()->AsProperty();
|
551
|
+
ASSERT(prop != NULL);
|
552
|
+
is_monomorphic_ = oracle->StoreIsMonomorphic(this);
|
553
|
+
if (prop->key()->IsPropertyName()) {
|
554
|
+
Literal* lit_key = prop->key()->AsLiteral();
|
555
|
+
ASSERT(lit_key != NULL && lit_key->handle()->IsString());
|
556
|
+
Handle<String> name = Handle<String>::cast(lit_key->handle());
|
557
|
+
ZoneMapList* types = oracle->StoreReceiverTypes(this, name);
|
558
|
+
receiver_types_ = types;
|
559
|
+
} else if (is_monomorphic_) {
|
560
|
+
// Record receiver type for monomorphic keyed loads.
|
561
|
+
monomorphic_receiver_type_ = oracle->StoreMonomorphicReceiverType(this);
|
562
|
+
}
|
563
|
+
}
|
564
|
+
|
565
|
+
|
566
|
+
void CaseClause::RecordTypeFeedback(TypeFeedbackOracle* oracle) {
|
567
|
+
TypeInfo info = oracle->SwitchType(this);
|
568
|
+
if (info.IsSmi()) {
|
569
|
+
compare_type_ = SMI_ONLY;
|
570
|
+
} else if (info.IsNonPrimitive()) {
|
571
|
+
compare_type_ = OBJECT_ONLY;
|
572
|
+
} else {
|
573
|
+
ASSERT(compare_type_ == NONE);
|
574
|
+
}
|
575
|
+
}
|
576
|
+
|
577
|
+
|
578
|
+
static bool CanCallWithoutIC(Handle<JSFunction> target, int arity) {
|
579
|
+
SharedFunctionInfo* info = target->shared();
|
580
|
+
// If the number of formal parameters of the target function does
|
581
|
+
// not match the number of arguments we're passing, we don't want to
|
582
|
+
// deal with it. Otherwise, we can call it directly.
|
583
|
+
return !target->NeedsArgumentsAdaption() ||
|
584
|
+
info->formal_parameter_count() == arity;
|
585
|
+
}
|
586
|
+
|
587
|
+
|
588
|
+
bool Call::ComputeTarget(Handle<Map> type, Handle<String> name) {
|
589
|
+
if (check_type_ == RECEIVER_MAP_CHECK) {
|
590
|
+
// For primitive checks the holder is set up to point to the
|
591
|
+
// corresponding prototype object, i.e. one step of the algorithm
|
592
|
+
// below has been already performed.
|
593
|
+
// For non-primitive checks we clear it to allow computing targets
|
594
|
+
// for polymorphic calls.
|
595
|
+
holder_ = Handle<JSObject>::null();
|
596
|
+
}
|
597
|
+
while (true) {
|
598
|
+
LookupResult lookup;
|
599
|
+
type->LookupInDescriptors(NULL, *name, &lookup);
|
600
|
+
// If the function wasn't found directly in the map, we start
|
601
|
+
// looking upwards through the prototype chain.
|
602
|
+
if (!lookup.IsFound() && type->prototype()->IsJSObject()) {
|
603
|
+
holder_ = Handle<JSObject>(JSObject::cast(type->prototype()));
|
604
|
+
type = Handle<Map>(holder()->map());
|
605
|
+
} else if (lookup.IsProperty() && lookup.type() == CONSTANT_FUNCTION) {
|
606
|
+
target_ = Handle<JSFunction>(lookup.GetConstantFunctionFromMap(*type));
|
607
|
+
return CanCallWithoutIC(target_, arguments()->length());
|
608
|
+
} else {
|
609
|
+
return false;
|
610
|
+
}
|
611
|
+
}
|
612
|
+
}
|
613
|
+
|
614
|
+
|
615
|
+
bool Call::ComputeGlobalTarget(Handle<GlobalObject> global,
|
616
|
+
Handle<String> name) {
|
617
|
+
target_ = Handle<JSFunction>::null();
|
618
|
+
cell_ = Handle<JSGlobalPropertyCell>::null();
|
619
|
+
LookupResult lookup;
|
620
|
+
global->Lookup(*name, &lookup);
|
621
|
+
if (lookup.IsProperty() &&
|
622
|
+
lookup.type() == NORMAL &&
|
623
|
+
lookup.holder() == *global) {
|
624
|
+
cell_ = Handle<JSGlobalPropertyCell>(global->GetPropertyCell(&lookup));
|
625
|
+
if (cell_->value()->IsJSFunction()) {
|
626
|
+
Handle<JSFunction> candidate(JSFunction::cast(cell_->value()));
|
627
|
+
// If the function is in new space we assume it's more likely to
|
628
|
+
// change and thus prefer the general IC code.
|
629
|
+
if (!Heap::InNewSpace(*candidate) &&
|
630
|
+
CanCallWithoutIC(candidate, arguments()->length())) {
|
631
|
+
target_ = candidate;
|
632
|
+
return true;
|
633
|
+
}
|
634
|
+
}
|
635
|
+
}
|
636
|
+
return false;
|
637
|
+
}
|
638
|
+
|
639
|
+
|
640
|
+
void Call::RecordTypeFeedback(TypeFeedbackOracle* oracle) {
|
641
|
+
Property* property = expression()->AsProperty();
|
642
|
+
ASSERT(property != NULL);
|
643
|
+
// Specialize for the receiver types seen at runtime.
|
644
|
+
Literal* key = property->key()->AsLiteral();
|
645
|
+
ASSERT(key != NULL && key->handle()->IsString());
|
646
|
+
Handle<String> name = Handle<String>::cast(key->handle());
|
647
|
+
receiver_types_ = oracle->CallReceiverTypes(this, name);
|
648
|
+
#ifdef DEBUG
|
649
|
+
if (FLAG_enable_slow_asserts) {
|
650
|
+
if (receiver_types_ != NULL) {
|
651
|
+
int length = receiver_types_->length();
|
652
|
+
for (int i = 0; i < length; i++) {
|
653
|
+
Handle<Map> map = receiver_types_->at(i);
|
654
|
+
ASSERT(!map.is_null() && *map != NULL);
|
655
|
+
}
|
656
|
+
}
|
657
|
+
}
|
658
|
+
#endif
|
659
|
+
is_monomorphic_ = oracle->CallIsMonomorphic(this);
|
660
|
+
check_type_ = oracle->GetCallCheckType(this);
|
661
|
+
if (is_monomorphic_) {
|
662
|
+
Handle<Map> map;
|
663
|
+
if (receiver_types_ != NULL && receiver_types_->length() > 0) {
|
664
|
+
ASSERT(check_type_ == RECEIVER_MAP_CHECK);
|
665
|
+
map = receiver_types_->at(0);
|
666
|
+
} else {
|
667
|
+
ASSERT(check_type_ != RECEIVER_MAP_CHECK);
|
668
|
+
holder_ = Handle<JSObject>(
|
669
|
+
oracle->GetPrototypeForPrimitiveCheck(check_type_));
|
670
|
+
map = Handle<Map>(holder_->map());
|
671
|
+
}
|
672
|
+
is_monomorphic_ = ComputeTarget(map, name);
|
673
|
+
}
|
674
|
+
}
|
675
|
+
|
676
|
+
|
677
|
+
void CompareOperation::RecordTypeFeedback(TypeFeedbackOracle* oracle) {
|
678
|
+
TypeInfo info = oracle->CompareType(this);
|
679
|
+
if (info.IsSmi()) {
|
680
|
+
compare_type_ = SMI_ONLY;
|
681
|
+
} else if (info.IsNonPrimitive()) {
|
682
|
+
compare_type_ = OBJECT_ONLY;
|
683
|
+
} else {
|
684
|
+
ASSERT(compare_type_ == NONE);
|
685
|
+
}
|
686
|
+
}
|
687
|
+
|
688
|
+
|
689
|
+
// ----------------------------------------------------------------------------
|
690
|
+
// Implementation of AstVisitor
|
691
|
+
|
692
|
+
bool AstVisitor::CheckStackOverflow() {
|
693
|
+
if (stack_overflow_) return true;
|
694
|
+
StackLimitCheck check;
|
695
|
+
if (!check.HasOverflowed()) return false;
|
696
|
+
return (stack_overflow_ = true);
|
697
|
+
}
|
698
|
+
|
699
|
+
|
700
|
+
void AstVisitor::VisitDeclarations(ZoneList<Declaration*>* declarations) {
|
701
|
+
for (int i = 0; i < declarations->length(); i++) {
|
702
|
+
Visit(declarations->at(i));
|
703
|
+
}
|
704
|
+
}
|
705
|
+
|
706
|
+
|
707
|
+
void AstVisitor::VisitStatements(ZoneList<Statement*>* statements) {
|
708
|
+
for (int i = 0; i < statements->length(); i++) {
|
709
|
+
Visit(statements->at(i));
|
710
|
+
}
|
711
|
+
}
|
712
|
+
|
713
|
+
|
714
|
+
void AstVisitor::VisitExpressions(ZoneList<Expression*>* expressions) {
|
715
|
+
for (int i = 0; i < expressions->length(); i++) {
|
716
|
+
// The variable statement visiting code may pass NULL expressions
|
717
|
+
// to this code. Maybe this should be handled by introducing an
|
718
|
+
// undefined expression or literal? Revisit this code if this
|
719
|
+
// changes
|
720
|
+
Expression* expression = expressions->at(i);
|
721
|
+
if (expression != NULL) Visit(expression);
|
722
|
+
}
|
723
|
+
}
|
724
|
+
|
725
|
+
|
726
|
+
// ----------------------------------------------------------------------------
|
727
|
+
// Regular expressions
|
728
|
+
|
729
|
+
#define MAKE_ACCEPT(Name) \
|
730
|
+
void* RegExp##Name::Accept(RegExpVisitor* visitor, void* data) { \
|
731
|
+
return visitor->Visit##Name(this, data); \
|
732
|
+
}
|
733
|
+
FOR_EACH_REG_EXP_TREE_TYPE(MAKE_ACCEPT)
|
734
|
+
#undef MAKE_ACCEPT
|
735
|
+
|
736
|
+
#define MAKE_TYPE_CASE(Name) \
|
737
|
+
RegExp##Name* RegExpTree::As##Name() { \
|
738
|
+
return NULL; \
|
739
|
+
} \
|
740
|
+
bool RegExpTree::Is##Name() { return false; }
|
741
|
+
FOR_EACH_REG_EXP_TREE_TYPE(MAKE_TYPE_CASE)
|
742
|
+
#undef MAKE_TYPE_CASE
|
743
|
+
|
744
|
+
#define MAKE_TYPE_CASE(Name) \
|
745
|
+
RegExp##Name* RegExp##Name::As##Name() { \
|
746
|
+
return this; \
|
747
|
+
} \
|
748
|
+
bool RegExp##Name::Is##Name() { return true; }
|
749
|
+
FOR_EACH_REG_EXP_TREE_TYPE(MAKE_TYPE_CASE)
|
750
|
+
#undef MAKE_TYPE_CASE
|
751
|
+
|
752
|
+
RegExpEmpty RegExpEmpty::kInstance;
|
753
|
+
|
754
|
+
|
755
|
+
static Interval ListCaptureRegisters(ZoneList<RegExpTree*>* children) {
|
756
|
+
Interval result = Interval::Empty();
|
757
|
+
for (int i = 0; i < children->length(); i++)
|
758
|
+
result = result.Union(children->at(i)->CaptureRegisters());
|
759
|
+
return result;
|
760
|
+
}
|
761
|
+
|
762
|
+
|
763
|
+
Interval RegExpAlternative::CaptureRegisters() {
|
764
|
+
return ListCaptureRegisters(nodes());
|
765
|
+
}
|
766
|
+
|
767
|
+
|
768
|
+
Interval RegExpDisjunction::CaptureRegisters() {
|
769
|
+
return ListCaptureRegisters(alternatives());
|
770
|
+
}
|
771
|
+
|
772
|
+
|
773
|
+
Interval RegExpLookahead::CaptureRegisters() {
|
774
|
+
return body()->CaptureRegisters();
|
775
|
+
}
|
776
|
+
|
777
|
+
|
778
|
+
Interval RegExpCapture::CaptureRegisters() {
|
779
|
+
Interval self(StartRegister(index()), EndRegister(index()));
|
780
|
+
return self.Union(body()->CaptureRegisters());
|
781
|
+
}
|
782
|
+
|
783
|
+
|
784
|
+
Interval RegExpQuantifier::CaptureRegisters() {
|
785
|
+
return body()->CaptureRegisters();
|
786
|
+
}
|
787
|
+
|
788
|
+
|
789
|
+
bool RegExpAssertion::IsAnchoredAtStart() {
|
790
|
+
return type() == RegExpAssertion::START_OF_INPUT;
|
791
|
+
}
|
792
|
+
|
793
|
+
|
794
|
+
bool RegExpAssertion::IsAnchoredAtEnd() {
|
795
|
+
return type() == RegExpAssertion::END_OF_INPUT;
|
796
|
+
}
|
797
|
+
|
798
|
+
|
799
|
+
bool RegExpAlternative::IsAnchoredAtStart() {
|
800
|
+
ZoneList<RegExpTree*>* nodes = this->nodes();
|
801
|
+
for (int i = 0; i < nodes->length(); i++) {
|
802
|
+
RegExpTree* node = nodes->at(i);
|
803
|
+
if (node->IsAnchoredAtStart()) { return true; }
|
804
|
+
if (node->max_match() > 0) { return false; }
|
805
|
+
}
|
806
|
+
return false;
|
807
|
+
}
|
808
|
+
|
809
|
+
|
810
|
+
bool RegExpAlternative::IsAnchoredAtEnd() {
|
811
|
+
ZoneList<RegExpTree*>* nodes = this->nodes();
|
812
|
+
for (int i = nodes->length() - 1; i >= 0; i--) {
|
813
|
+
RegExpTree* node = nodes->at(i);
|
814
|
+
if (node->IsAnchoredAtEnd()) { return true; }
|
815
|
+
if (node->max_match() > 0) { return false; }
|
816
|
+
}
|
817
|
+
return false;
|
818
|
+
}
|
819
|
+
|
820
|
+
|
821
|
+
bool RegExpDisjunction::IsAnchoredAtStart() {
|
822
|
+
ZoneList<RegExpTree*>* alternatives = this->alternatives();
|
823
|
+
for (int i = 0; i < alternatives->length(); i++) {
|
824
|
+
if (!alternatives->at(i)->IsAnchoredAtStart())
|
825
|
+
return false;
|
826
|
+
}
|
827
|
+
return true;
|
828
|
+
}
|
829
|
+
|
830
|
+
|
831
|
+
bool RegExpDisjunction::IsAnchoredAtEnd() {
|
832
|
+
ZoneList<RegExpTree*>* alternatives = this->alternatives();
|
833
|
+
for (int i = 0; i < alternatives->length(); i++) {
|
834
|
+
if (!alternatives->at(i)->IsAnchoredAtEnd())
|
835
|
+
return false;
|
836
|
+
}
|
837
|
+
return true;
|
838
|
+
}
|
839
|
+
|
840
|
+
|
841
|
+
bool RegExpLookahead::IsAnchoredAtStart() {
|
842
|
+
return is_positive() && body()->IsAnchoredAtStart();
|
843
|
+
}
|
844
|
+
|
845
|
+
|
846
|
+
bool RegExpCapture::IsAnchoredAtStart() {
|
847
|
+
return body()->IsAnchoredAtStart();
|
848
|
+
}
|
849
|
+
|
850
|
+
|
851
|
+
bool RegExpCapture::IsAnchoredAtEnd() {
|
852
|
+
return body()->IsAnchoredAtEnd();
|
853
|
+
}
|
854
|
+
|
855
|
+
|
856
|
+
// Convert regular expression trees to a simple sexp representation.
|
857
|
+
// This representation should be different from the input grammar
|
858
|
+
// in as many cases as possible, to make it more difficult for incorrect
|
859
|
+
// parses to look as correct ones which is likely if the input and
|
860
|
+
// output formats are alike.
|
861
|
+
class RegExpUnparser: public RegExpVisitor {
|
862
|
+
public:
|
863
|
+
RegExpUnparser();
|
864
|
+
void VisitCharacterRange(CharacterRange that);
|
865
|
+
SmartPointer<const char> ToString() { return stream_.ToCString(); }
|
866
|
+
#define MAKE_CASE(Name) virtual void* Visit##Name(RegExp##Name*, void* data);
|
867
|
+
FOR_EACH_REG_EXP_TREE_TYPE(MAKE_CASE)
|
868
|
+
#undef MAKE_CASE
|
869
|
+
private:
|
870
|
+
StringStream* stream() { return &stream_; }
|
871
|
+
HeapStringAllocator alloc_;
|
872
|
+
StringStream stream_;
|
873
|
+
};
|
874
|
+
|
875
|
+
|
876
|
+
RegExpUnparser::RegExpUnparser() : stream_(&alloc_) {
|
877
|
+
}
|
878
|
+
|
879
|
+
|
880
|
+
void* RegExpUnparser::VisitDisjunction(RegExpDisjunction* that, void* data) {
|
881
|
+
stream()->Add("(|");
|
882
|
+
for (int i = 0; i < that->alternatives()->length(); i++) {
|
883
|
+
stream()->Add(" ");
|
884
|
+
that->alternatives()->at(i)->Accept(this, data);
|
885
|
+
}
|
886
|
+
stream()->Add(")");
|
887
|
+
return NULL;
|
888
|
+
}
|
889
|
+
|
890
|
+
|
891
|
+
void* RegExpUnparser::VisitAlternative(RegExpAlternative* that, void* data) {
|
892
|
+
stream()->Add("(:");
|
893
|
+
for (int i = 0; i < that->nodes()->length(); i++) {
|
894
|
+
stream()->Add(" ");
|
895
|
+
that->nodes()->at(i)->Accept(this, data);
|
896
|
+
}
|
897
|
+
stream()->Add(")");
|
898
|
+
return NULL;
|
899
|
+
}
|
900
|
+
|
901
|
+
|
902
|
+
void RegExpUnparser::VisitCharacterRange(CharacterRange that) {
|
903
|
+
stream()->Add("%k", that.from());
|
904
|
+
if (!that.IsSingleton()) {
|
905
|
+
stream()->Add("-%k", that.to());
|
906
|
+
}
|
907
|
+
}
|
908
|
+
|
909
|
+
|
910
|
+
|
911
|
+
void* RegExpUnparser::VisitCharacterClass(RegExpCharacterClass* that,
|
912
|
+
void* data) {
|
913
|
+
if (that->is_negated())
|
914
|
+
stream()->Add("^");
|
915
|
+
stream()->Add("[");
|
916
|
+
for (int i = 0; i < that->ranges()->length(); i++) {
|
917
|
+
if (i > 0) stream()->Add(" ");
|
918
|
+
VisitCharacterRange(that->ranges()->at(i));
|
919
|
+
}
|
920
|
+
stream()->Add("]");
|
921
|
+
return NULL;
|
922
|
+
}
|
923
|
+
|
924
|
+
|
925
|
+
void* RegExpUnparser::VisitAssertion(RegExpAssertion* that, void* data) {
|
926
|
+
switch (that->type()) {
|
927
|
+
case RegExpAssertion::START_OF_INPUT:
|
928
|
+
stream()->Add("@^i");
|
929
|
+
break;
|
930
|
+
case RegExpAssertion::END_OF_INPUT:
|
931
|
+
stream()->Add("@$i");
|
932
|
+
break;
|
933
|
+
case RegExpAssertion::START_OF_LINE:
|
934
|
+
stream()->Add("@^l");
|
935
|
+
break;
|
936
|
+
case RegExpAssertion::END_OF_LINE:
|
937
|
+
stream()->Add("@$l");
|
938
|
+
break;
|
939
|
+
case RegExpAssertion::BOUNDARY:
|
940
|
+
stream()->Add("@b");
|
941
|
+
break;
|
942
|
+
case RegExpAssertion::NON_BOUNDARY:
|
943
|
+
stream()->Add("@B");
|
944
|
+
break;
|
945
|
+
}
|
946
|
+
return NULL;
|
947
|
+
}
|
948
|
+
|
949
|
+
|
950
|
+
void* RegExpUnparser::VisitAtom(RegExpAtom* that, void* data) {
|
951
|
+
stream()->Add("'");
|
952
|
+
Vector<const uc16> chardata = that->data();
|
953
|
+
for (int i = 0; i < chardata.length(); i++) {
|
954
|
+
stream()->Add("%k", chardata[i]);
|
955
|
+
}
|
956
|
+
stream()->Add("'");
|
957
|
+
return NULL;
|
958
|
+
}
|
959
|
+
|
960
|
+
|
961
|
+
void* RegExpUnparser::VisitText(RegExpText* that, void* data) {
|
962
|
+
if (that->elements()->length() == 1) {
|
963
|
+
that->elements()->at(0).data.u_atom->Accept(this, data);
|
964
|
+
} else {
|
965
|
+
stream()->Add("(!");
|
966
|
+
for (int i = 0; i < that->elements()->length(); i++) {
|
967
|
+
stream()->Add(" ");
|
968
|
+
that->elements()->at(i).data.u_atom->Accept(this, data);
|
969
|
+
}
|
970
|
+
stream()->Add(")");
|
971
|
+
}
|
972
|
+
return NULL;
|
973
|
+
}
|
974
|
+
|
975
|
+
|
976
|
+
void* RegExpUnparser::VisitQuantifier(RegExpQuantifier* that, void* data) {
|
977
|
+
stream()->Add("(# %i ", that->min());
|
978
|
+
if (that->max() == RegExpTree::kInfinity) {
|
979
|
+
stream()->Add("- ");
|
980
|
+
} else {
|
981
|
+
stream()->Add("%i ", that->max());
|
982
|
+
}
|
983
|
+
stream()->Add(that->is_greedy() ? "g " : that->is_possessive() ? "p " : "n ");
|
984
|
+
that->body()->Accept(this, data);
|
985
|
+
stream()->Add(")");
|
986
|
+
return NULL;
|
987
|
+
}
|
988
|
+
|
989
|
+
|
990
|
+
void* RegExpUnparser::VisitCapture(RegExpCapture* that, void* data) {
|
991
|
+
stream()->Add("(^ ");
|
992
|
+
that->body()->Accept(this, data);
|
993
|
+
stream()->Add(")");
|
994
|
+
return NULL;
|
995
|
+
}
|
996
|
+
|
997
|
+
|
998
|
+
void* RegExpUnparser::VisitLookahead(RegExpLookahead* that, void* data) {
|
999
|
+
stream()->Add("(-> ");
|
1000
|
+
stream()->Add(that->is_positive() ? "+ " : "- ");
|
1001
|
+
that->body()->Accept(this, data);
|
1002
|
+
stream()->Add(")");
|
1003
|
+
return NULL;
|
1004
|
+
}
|
1005
|
+
|
1006
|
+
|
1007
|
+
void* RegExpUnparser::VisitBackReference(RegExpBackReference* that,
|
1008
|
+
void* data) {
|
1009
|
+
stream()->Add("(<- %i)", that->index());
|
1010
|
+
return NULL;
|
1011
|
+
}
|
1012
|
+
|
1013
|
+
|
1014
|
+
void* RegExpUnparser::VisitEmpty(RegExpEmpty* that, void* data) {
|
1015
|
+
stream()->Put('%');
|
1016
|
+
return NULL;
|
1017
|
+
}
|
1018
|
+
|
1019
|
+
|
1020
|
+
SmartPointer<const char> RegExpTree::ToString() {
|
1021
|
+
RegExpUnparser unparser;
|
1022
|
+
Accept(&unparser, NULL);
|
1023
|
+
return unparser.ToString();
|
1024
|
+
}
|
1025
|
+
|
1026
|
+
|
1027
|
+
RegExpDisjunction::RegExpDisjunction(ZoneList<RegExpTree*>* alternatives)
|
1028
|
+
: alternatives_(alternatives) {
|
1029
|
+
ASSERT(alternatives->length() > 1);
|
1030
|
+
RegExpTree* first_alternative = alternatives->at(0);
|
1031
|
+
min_match_ = first_alternative->min_match();
|
1032
|
+
max_match_ = first_alternative->max_match();
|
1033
|
+
for (int i = 1; i < alternatives->length(); i++) {
|
1034
|
+
RegExpTree* alternative = alternatives->at(i);
|
1035
|
+
min_match_ = Min(min_match_, alternative->min_match());
|
1036
|
+
max_match_ = Max(max_match_, alternative->max_match());
|
1037
|
+
}
|
1038
|
+
}
|
1039
|
+
|
1040
|
+
|
1041
|
+
RegExpAlternative::RegExpAlternative(ZoneList<RegExpTree*>* nodes)
|
1042
|
+
: nodes_(nodes) {
|
1043
|
+
ASSERT(nodes->length() > 1);
|
1044
|
+
min_match_ = 0;
|
1045
|
+
max_match_ = 0;
|
1046
|
+
for (int i = 0; i < nodes->length(); i++) {
|
1047
|
+
RegExpTree* node = nodes->at(i);
|
1048
|
+
min_match_ += node->min_match();
|
1049
|
+
int node_max_match = node->max_match();
|
1050
|
+
if (kInfinity - max_match_ < node_max_match) {
|
1051
|
+
max_match_ = kInfinity;
|
1052
|
+
} else {
|
1053
|
+
max_match_ += node->max_match();
|
1054
|
+
}
|
1055
|
+
}
|
1056
|
+
}
|
1057
|
+
|
1058
|
+
|
1059
|
+
CaseClause::CaseClause(Expression* label,
|
1060
|
+
ZoneList<Statement*>* statements,
|
1061
|
+
int pos)
|
1062
|
+
: label_(label),
|
1063
|
+
statements_(statements),
|
1064
|
+
position_(pos),
|
1065
|
+
compare_type_(NONE) {}
|
1066
|
+
|
1067
|
+
} } // namespace v8::internal
|