therubyracer 0.8.1.pre2 → 0.8.1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of therubyracer might be problematic. Click here for more details.
- data/Changelog.md +2 -1
- data/README.md +6 -3
- data/ext/v8/upstream/3.1.8/.gitignore +31 -0
- data/ext/v8/upstream/3.1.8/AUTHORS +40 -0
- data/ext/v8/upstream/3.1.8/ChangeLog +2566 -0
- data/ext/v8/upstream/3.1.8/LICENSE +52 -0
- data/ext/v8/upstream/3.1.8/LICENSE.strongtalk +29 -0
- data/ext/v8/upstream/3.1.8/LICENSE.v8 +26 -0
- data/ext/v8/upstream/3.1.8/LICENSE.valgrind +45 -0
- data/ext/v8/upstream/3.1.8/SConstruct +1192 -0
- data/ext/v8/upstream/3.1.8/build/README.txt +25 -0
- data/ext/v8/upstream/3.1.8/build/all.gyp +18 -0
- data/ext/v8/upstream/3.1.8/build/armu.gypi +32 -0
- data/ext/v8/upstream/3.1.8/build/common.gypi +82 -0
- data/ext/v8/upstream/3.1.8/build/gyp_v8 +145 -0
- data/ext/v8/upstream/3.1.8/include/v8-debug.h +384 -0
- data/ext/v8/upstream/3.1.8/include/v8-preparser.h +116 -0
- data/ext/v8/upstream/3.1.8/include/v8-profiler.h +426 -0
- data/ext/v8/upstream/3.1.8/include/v8-testing.h +99 -0
- data/ext/v8/upstream/3.1.8/include/v8.h +3846 -0
- data/ext/v8/upstream/3.1.8/include/v8stdint.h +53 -0
- data/ext/v8/upstream/3.1.8/preparser/preparser-process.cc +206 -0
- data/ext/v8/upstream/3.1.8/src/SConscript +356 -0
- data/ext/v8/upstream/3.1.8/src/accessors.cc +907 -0
- data/ext/v8/upstream/3.1.8/src/accessors.h +121 -0
- data/ext/v8/upstream/3.1.8/src/allocation.cc +204 -0
- data/ext/v8/upstream/3.1.8/src/allocation.h +176 -0
- data/ext/v8/upstream/3.1.8/src/api.cc +5191 -0
- data/ext/v8/upstream/3.1.8/src/api.h +508 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/apinatives.js +0 -0
- data/ext/v8/upstream/3.1.8/src/apiutils.h +80 -0
- data/ext/v8/upstream/3.1.8/src/arguments.h +105 -0
- data/ext/v8/upstream/3.1.8/src/arm/assembler-arm-inl.h +352 -0
- data/ext/v8/upstream/3.1.8/src/arm/assembler-arm.cc +2756 -0
- data/ext/v8/upstream/3.1.8/src/arm/assembler-arm.h +1294 -0
- data/ext/v8/upstream/3.1.8/src/arm/builtins-arm.cc +1628 -0
- data/ext/v8/upstream/3.1.8/src/arm/code-stubs-arm.cc +6783 -0
- data/ext/v8/upstream/3.1.8/src/arm/code-stubs-arm.h +657 -0
- data/ext/v8/upstream/3.1.8/src/arm/codegen-arm-inl.h +48 -0
- data/ext/v8/upstream/3.1.8/src/arm/codegen-arm.cc +7403 -0
- data/ext/v8/upstream/3.1.8/src/arm/codegen-arm.h +595 -0
- data/ext/v8/upstream/3.1.8/src/arm/constants-arm.cc +152 -0
- data/ext/v8/upstream/3.1.8/src/arm/constants-arm.h +769 -0
- data/ext/v8/upstream/3.1.8/src/arm/cpu-arm.cc +147 -0
- data/ext/v8/upstream/3.1.8/src/arm/debug-arm.cc +315 -0
- data/ext/v8/upstream/3.1.8/src/arm/deoptimizer-arm.cc +700 -0
- data/ext/v8/upstream/3.1.8/src/arm/disasm-arm.cc +1439 -0
- data/ext/v8/upstream/3.1.8/src/arm/frames-arm.cc +45 -0
- data/ext/v8/upstream/3.1.8/src/arm/frames-arm.h +168 -0
- data/ext/v8/upstream/3.1.8/src/arm/full-codegen-arm.cc +4230 -0
- data/ext/v8/upstream/3.1.8/src/arm/ic-arm.cc +1799 -0
- data/ext/v8/upstream/3.1.8/src/arm/jump-target-arm.cc +174 -0
- data/ext/v8/upstream/3.1.8/src/arm/lithium-arm.cc +2041 -0
- data/ext/v8/upstream/3.1.8/src/arm/lithium-arm.h +2046 -0
- data/ext/v8/upstream/3.1.8/src/arm/lithium-codegen-arm.cc +3822 -0
- data/ext/v8/upstream/3.1.8/src/arm/lithium-codegen-arm.h +312 -0
- data/ext/v8/upstream/3.1.8/src/arm/lithium-gap-resolver-arm.cc +303 -0
- data/ext/v8/upstream/3.1.8/src/arm/lithium-gap-resolver-arm.h +84 -0
- data/ext/v8/upstream/3.1.8/src/arm/macro-assembler-arm.cc +2701 -0
- data/ext/v8/upstream/3.1.8/src/arm/macro-assembler-arm.h +1015 -0
- data/ext/v8/upstream/3.1.8/src/arm/regexp-macro-assembler-arm.cc +1280 -0
- data/ext/v8/upstream/3.1.8/src/arm/regexp-macro-assembler-arm.h +252 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/arm/register-allocator-arm-inl.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/arm/register-allocator-arm.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/arm/register-allocator-arm.h +0 -0
- data/ext/v8/upstream/3.1.8/src/arm/simulator-arm.cc +3165 -0
- data/ext/v8/upstream/3.1.8/src/arm/simulator-arm.h +402 -0
- data/ext/v8/upstream/3.1.8/src/arm/stub-cache-arm.cc +4077 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/arm/virtual-frame-arm-inl.h +0 -0
- data/ext/v8/upstream/3.1.8/src/arm/virtual-frame-arm.cc +843 -0
- data/ext/v8/upstream/3.1.8/src/arm/virtual-frame-arm.h +520 -0
- data/ext/v8/upstream/3.1.8/src/array.js +1231 -0
- data/ext/v8/upstream/3.1.8/src/assembler.cc +973 -0
- data/ext/v8/upstream/3.1.8/src/assembler.h +787 -0
- data/ext/v8/upstream/3.1.8/src/ast-inl.h +107 -0
- data/ext/v8/upstream/3.1.8/src/ast.cc +1067 -0
- data/ext/v8/upstream/3.1.8/src/ast.h +2177 -0
- data/ext/v8/upstream/3.1.8/src/atomicops.h +165 -0
- data/ext/v8/upstream/3.1.8/src/atomicops_internals_arm_gcc.h +145 -0
- data/ext/v8/upstream/3.1.8/src/atomicops_internals_x86_gcc.cc +126 -0
- data/ext/v8/upstream/3.1.8/src/atomicops_internals_x86_gcc.h +287 -0
- data/ext/v8/upstream/3.1.8/src/atomicops_internals_x86_macosx.h +301 -0
- data/ext/v8/upstream/3.1.8/src/atomicops_internals_x86_msvc.h +203 -0
- data/ext/v8/upstream/3.1.8/src/bignum-dtoa.cc +655 -0
- data/ext/v8/upstream/3.1.8/src/bignum-dtoa.h +81 -0
- data/ext/v8/upstream/3.1.8/src/bignum.cc +768 -0
- data/ext/v8/upstream/3.1.8/src/bignum.h +140 -0
- data/ext/v8/upstream/3.1.8/src/bootstrapper.cc +1888 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/bootstrapper.h +0 -0
- data/ext/v8/upstream/3.1.8/src/builtins.cc +1586 -0
- data/ext/v8/upstream/3.1.8/src/builtins.h +339 -0
- data/ext/v8/upstream/3.1.8/src/bytecodes-irregexp.h +105 -0
- data/ext/v8/upstream/3.1.8/src/cached-powers.cc +177 -0
- data/ext/v8/upstream/3.1.8/src/cached-powers.h +65 -0
- data/ext/v8/upstream/3.1.8/src/char-predicates-inl.h +94 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/char-predicates.h +0 -0
- data/ext/v8/upstream/3.1.8/src/checks.cc +110 -0
- data/ext/v8/upstream/3.1.8/src/checks.h +292 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/circular-queue-inl.h +0 -0
- data/ext/v8/upstream/3.1.8/src/circular-queue.cc +122 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/circular-queue.h +0 -0
- data/ext/v8/upstream/3.1.8/src/code-stubs.cc +230 -0
- data/ext/v8/upstream/3.1.8/src/code-stubs.h +950 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/code.h +0 -0
- data/ext/v8/upstream/3.1.8/src/codegen-inl.h +64 -0
- data/ext/v8/upstream/3.1.8/src/codegen.cc +495 -0
- data/ext/v8/upstream/3.1.8/src/codegen.h +245 -0
- data/ext/v8/upstream/3.1.8/src/compilation-cache.cc +654 -0
- data/ext/v8/upstream/3.1.8/src/compilation-cache.h +112 -0
- data/ext/v8/upstream/3.1.8/src/compiler.cc +806 -0
- data/ext/v8/upstream/3.1.8/src/compiler.h +290 -0
- data/ext/v8/upstream/3.1.8/src/contexts.cc +320 -0
- data/ext/v8/upstream/3.1.8/src/contexts.h +376 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/conversions-inl.h +0 -0
- data/ext/v8/upstream/3.1.8/src/conversions.cc +1069 -0
- data/ext/v8/upstream/3.1.8/src/conversions.h +122 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/counters.cc +0 -0
- data/ext/v8/upstream/3.1.8/src/counters.h +242 -0
- data/ext/v8/upstream/3.1.8/src/cpu-profiler-inl.h +100 -0
- data/ext/v8/upstream/3.1.8/src/cpu-profiler.cc +554 -0
- data/ext/v8/upstream/3.1.8/src/cpu-profiler.h +291 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/cpu.h +0 -0
- data/ext/v8/upstream/3.1.8/src/d8-debug.cc +367 -0
- data/ext/v8/upstream/3.1.8/src/d8-debug.h +157 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/d8-posix.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/d8-readline.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/d8-windows.cc +0 -0
- data/ext/v8/upstream/3.1.8/src/d8.cc +792 -0
- data/ext/v8/upstream/3.1.8/src/d8.gyp +85 -0
- data/ext/v8/upstream/3.1.8/src/d8.h +231 -0
- data/ext/v8/upstream/3.1.8/src/d8.js +2798 -0
- data/ext/v8/upstream/3.1.8/src/data-flow.cc +545 -0
- data/ext/v8/upstream/3.1.8/src/data-flow.h +379 -0
- data/ext/v8/upstream/3.1.8/src/date.js +1103 -0
- data/ext/v8/upstream/3.1.8/src/dateparser-inl.h +125 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/dateparser.cc +0 -0
- data/ext/v8/upstream/3.1.8/src/dateparser.h +263 -0
- data/ext/v8/upstream/3.1.8/src/debug-agent.cc +446 -0
- data/ext/v8/upstream/3.1.8/src/debug-agent.h +131 -0
- data/ext/v8/upstream/3.1.8/src/debug-debugger.js +2569 -0
- data/ext/v8/upstream/3.1.8/src/debug.cc +3085 -0
- data/ext/v8/upstream/3.1.8/src/debug.h +1025 -0
- data/ext/v8/upstream/3.1.8/src/deoptimizer.cc +1185 -0
- data/ext/v8/upstream/3.1.8/src/deoptimizer.h +529 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/disasm.h +0 -0
- data/ext/v8/upstream/3.1.8/src/disassembler.cc +338 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/disassembler.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/diy-fp.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/diy-fp.h +0 -0
- data/ext/v8/upstream/3.1.8/src/double.h +238 -0
- data/ext/v8/upstream/3.1.8/src/dtoa.cc +103 -0
- data/ext/v8/upstream/3.1.8/src/dtoa.h +85 -0
- data/ext/v8/upstream/3.1.8/src/execution.cc +735 -0
- data/ext/v8/upstream/3.1.8/src/execution.h +322 -0
- data/ext/v8/upstream/3.1.8/src/extensions/experimental/experimental.gyp +53 -0
- data/ext/v8/upstream/3.1.8/src/extensions/experimental/i18n-extension.cc +264 -0
- data/ext/v8/upstream/3.1.8/src/extensions/experimental/i18n-extension.h +64 -0
- data/ext/v8/upstream/3.1.8/src/extensions/externalize-string-extension.cc +141 -0
- data/ext/v8/upstream/3.1.8/src/extensions/externalize-string-extension.h +50 -0
- data/ext/v8/upstream/3.1.8/src/extensions/gc-extension.cc +58 -0
- data/ext/v8/upstream/3.1.8/src/extensions/gc-extension.h +49 -0
- data/ext/v8/upstream/3.1.8/src/factory.cc +1087 -0
- data/ext/v8/upstream/3.1.8/src/factory.h +432 -0
- data/ext/v8/upstream/3.1.8/src/fast-dtoa.cc +736 -0
- data/ext/v8/upstream/3.1.8/src/fast-dtoa.h +83 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/fixed-dtoa.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/fixed-dtoa.h +0 -0
- data/ext/v8/upstream/3.1.8/src/flag-definitions.h +552 -0
- data/ext/v8/upstream/3.1.8/src/flags.cc +551 -0
- data/ext/v8/upstream/3.1.8/src/flags.h +79 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/frame-element.cc +0 -0
- data/ext/v8/upstream/3.1.8/src/frame-element.h +277 -0
- data/ext/v8/upstream/3.1.8/src/frames-inl.h +210 -0
- data/ext/v8/upstream/3.1.8/src/frames.cc +1232 -0
- data/ext/v8/upstream/3.1.8/src/frames.h +826 -0
- data/ext/v8/upstream/3.1.8/src/full-codegen.cc +1382 -0
- data/ext/v8/upstream/3.1.8/src/full-codegen.h +751 -0
- data/ext/v8/upstream/3.1.8/src/func-name-inferrer.cc +90 -0
- data/ext/v8/upstream/3.1.8/src/func-name-inferrer.h +111 -0
- data/ext/v8/upstream/3.1.8/src/gdb-jit.cc +1547 -0
- data/ext/v8/upstream/3.1.8/src/gdb-jit.h +138 -0
- data/ext/v8/upstream/3.1.8/src/global-handles.cc +534 -0
- data/ext/v8/upstream/3.1.8/src/global-handles.h +181 -0
- data/ext/v8/upstream/3.1.8/src/globals.h +325 -0
- data/ext/v8/upstream/3.1.8/src/handles-inl.h +80 -0
- data/ext/v8/upstream/3.1.8/src/handles.cc +910 -0
- data/ext/v8/upstream/3.1.8/src/handles.h +424 -0
- data/ext/v8/upstream/3.1.8/src/hashmap.cc +230 -0
- data/ext/v8/upstream/3.1.8/src/hashmap.h +121 -0
- data/ext/v8/upstream/3.1.8/src/heap-inl.h +587 -0
- data/ext/v8/upstream/3.1.8/src/heap-profiler.cc +1128 -0
- data/ext/v8/upstream/3.1.8/src/heap-profiler.h +381 -0
- data/ext/v8/upstream/3.1.8/src/heap.cc +5610 -0
- data/ext/v8/upstream/3.1.8/src/heap.h +2218 -0
- data/ext/v8/upstream/3.1.8/src/hydrogen-instructions.cc +1490 -0
- data/ext/v8/upstream/3.1.8/src/hydrogen-instructions.h +3493 -0
- data/ext/v8/upstream/3.1.8/src/hydrogen.cc +6056 -0
- data/ext/v8/upstream/3.1.8/src/hydrogen.h +1091 -0
- data/ext/v8/upstream/3.1.8/src/ia32/assembler-ia32-inl.h +429 -0
- data/ext/v8/upstream/3.1.8/src/ia32/assembler-ia32.cc +2800 -0
- data/ext/v8/upstream/3.1.8/src/ia32/assembler-ia32.h +1093 -0
- data/ext/v8/upstream/3.1.8/src/ia32/builtins-ia32.cc +1590 -0
- data/ext/v8/upstream/3.1.8/src/ia32/code-stubs-ia32.cc +6624 -0
- data/ext/v8/upstream/3.1.8/src/ia32/code-stubs-ia32.h +536 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/codegen-ia32-inl.h +0 -0
- data/ext/v8/upstream/3.1.8/src/ia32/codegen-ia32.cc +10354 -0
- data/ext/v8/upstream/3.1.8/src/ia32/codegen-ia32.h +798 -0
- data/ext/v8/upstream/3.1.8/src/ia32/cpu-ia32.cc +87 -0
- data/ext/v8/upstream/3.1.8/src/ia32/debug-ia32.cc +309 -0
- data/ext/v8/upstream/3.1.8/src/ia32/deoptimizer-ia32.cc +664 -0
- data/ext/v8/upstream/3.1.8/src/ia32/disasm-ia32.cc +1597 -0
- data/ext/v8/upstream/3.1.8/src/ia32/frames-ia32.cc +45 -0
- data/ext/v8/upstream/3.1.8/src/ia32/frames-ia32.h +140 -0
- data/ext/v8/upstream/3.1.8/src/ia32/full-codegen-ia32.cc +4278 -0
- data/ext/v8/upstream/3.1.8/src/ia32/ic-ia32.cc +1786 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/jump-target-ia32.cc +0 -0
- data/ext/v8/upstream/3.1.8/src/ia32/lithium-codegen-ia32.cc +3880 -0
- data/ext/v8/upstream/3.1.8/src/ia32/lithium-codegen-ia32.h +309 -0
- data/ext/v8/upstream/3.1.8/src/ia32/lithium-gap-resolver-ia32.cc +460 -0
- data/ext/v8/upstream/3.1.8/src/ia32/lithium-gap-resolver-ia32.h +110 -0
- data/ext/v8/upstream/3.1.8/src/ia32/lithium-ia32.cc +2095 -0
- data/ext/v8/upstream/3.1.8/src/ia32/lithium-ia32.h +2127 -0
- data/ext/v8/upstream/3.1.8/src/ia32/macro-assembler-ia32.cc +2031 -0
- data/ext/v8/upstream/3.1.8/src/ia32/macro-assembler-ia32.h +798 -0
- data/ext/v8/upstream/3.1.8/src/ia32/regexp-macro-assembler-ia32.cc +1253 -0
- data/ext/v8/upstream/3.1.8/src/ia32/regexp-macro-assembler-ia32.h +215 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/register-allocator-ia32-inl.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/register-allocator-ia32.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/register-allocator-ia32.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/ia32/simulator-ia32.cc +0 -0
- data/ext/v8/upstream/3.1.8/src/ia32/simulator-ia32.h +72 -0
- data/ext/v8/upstream/3.1.8/src/ia32/stub-cache-ia32.cc +3732 -0
- data/ext/v8/upstream/3.1.8/src/ia32/virtual-frame-ia32.cc +1360 -0
- data/ext/v8/upstream/3.1.8/src/ia32/virtual-frame-ia32.h +646 -0
- data/ext/v8/upstream/3.1.8/src/ic-inl.h +129 -0
- data/ext/v8/upstream/3.1.8/src/ic.cc +2333 -0
- data/ext/v8/upstream/3.1.8/src/ic.h +639 -0
- data/ext/v8/upstream/3.1.8/src/inspector.cc +63 -0
- data/ext/v8/upstream/3.1.8/src/inspector.h +62 -0
- data/ext/v8/upstream/3.1.8/src/interpreter-irregexp.cc +655 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/interpreter-irregexp.h +0 -0
- data/ext/v8/upstream/3.1.8/src/json.js +342 -0
- data/ext/v8/upstream/3.1.8/src/jsregexp.cc +5340 -0
- data/ext/v8/upstream/3.1.8/src/jsregexp.h +1484 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/jump-target-heavy-inl.h +0 -0
- data/ext/v8/upstream/3.1.8/src/jump-target-heavy.cc +430 -0
- data/ext/v8/upstream/3.1.8/src/jump-target-heavy.h +244 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/jump-target-inl.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/jump-target-light-inl.h +0 -0
- data/ext/v8/upstream/3.1.8/src/jump-target-light.cc +111 -0
- data/ext/v8/upstream/3.1.8/src/jump-target-light.h +193 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/jump-target.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/jump-target.h +0 -0
- data/ext/v8/upstream/3.1.8/src/list-inl.h +206 -0
- data/ext/v8/upstream/3.1.8/src/list.h +164 -0
- data/ext/v8/upstream/3.1.8/src/lithium-allocator-inl.h +140 -0
- data/ext/v8/upstream/3.1.8/src/lithium-allocator.cc +2093 -0
- data/ext/v8/upstream/3.1.8/src/lithium-allocator.h +644 -0
- data/ext/v8/upstream/3.1.8/src/lithium.cc +168 -0
- data/ext/v8/upstream/3.1.8/src/lithium.h +592 -0
- data/ext/v8/upstream/3.1.8/src/liveedit-debugger.js +1082 -0
- data/ext/v8/upstream/3.1.8/src/liveedit.cc +1650 -0
- data/ext/v8/upstream/3.1.8/src/liveedit.h +174 -0
- data/ext/v8/upstream/3.1.8/src/liveobjectlist-inl.h +126 -0
- data/ext/v8/upstream/3.1.8/src/liveobjectlist.cc +2527 -0
- data/ext/v8/upstream/3.1.8/src/liveobjectlist.h +322 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/log-inl.h +0 -0
- data/ext/v8/upstream/3.1.8/src/log-utils.cc +336 -0
- data/ext/v8/upstream/3.1.8/src/log-utils.h +232 -0
- data/ext/v8/upstream/3.1.8/src/log.cc +1608 -0
- data/ext/v8/upstream/3.1.8/src/log.h +379 -0
- data/ext/v8/upstream/3.1.8/src/macro-assembler.h +120 -0
- data/ext/v8/upstream/3.1.8/src/macros.py +178 -0
- data/ext/v8/upstream/3.1.8/src/mark-compact.cc +2957 -0
- data/ext/v8/upstream/3.1.8/src/mark-compact.h +433 -0
- data/ext/v8/upstream/3.1.8/src/math.js +264 -0
- data/ext/v8/upstream/3.1.8/src/memory.h +82 -0
- data/ext/v8/upstream/3.1.8/src/messages.cc +164 -0
- data/ext/v8/upstream/3.1.8/src/messages.h +114 -0
- data/ext/v8/upstream/3.1.8/src/messages.js +1071 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/assembler-mips-inl.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/assembler-mips.cc +0 -0
- data/ext/v8/upstream/3.1.8/src/mips/assembler-mips.h +667 -0
- data/ext/v8/upstream/3.1.8/src/mips/builtins-mips.cc +205 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/codegen-mips-inl.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/codegen-mips.cc +0 -0
- data/ext/v8/upstream/3.1.8/src/mips/codegen-mips.h +431 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/constants-mips.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/constants-mips.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/cpu-mips.cc +0 -0
- data/ext/v8/upstream/3.1.8/src/mips/debug-mips.cc +127 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/disasm-mips.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/fast-codegen-mips.cc +0 -0
- data/ext/v8/upstream/3.1.8/src/mips/frames-mips.cc +96 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/frames-mips.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/full-codegen-mips.cc +0 -0
- data/ext/v8/upstream/3.1.8/src/mips/ic-mips.cc +208 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/jump-target-mips.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/macro-assembler-mips.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/macro-assembler-mips.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/register-allocator-mips-inl.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/register-allocator-mips.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/register-allocator-mips.h +0 -0
- data/ext/v8/upstream/3.1.8/src/mips/simulator-mips.cc +1650 -0
- data/ext/v8/upstream/3.1.8/src/mips/simulator-mips.h +311 -0
- data/ext/v8/upstream/3.1.8/src/mips/stub-cache-mips.cc +418 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/virtual-frame-mips.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mips/virtual-frame-mips.h +0 -0
- data/ext/v8/upstream/3.1.8/src/mirror-debugger.js +2380 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/mksnapshot.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/natives.h +0 -0
- data/ext/v8/upstream/3.1.8/src/objects-debug.cc +722 -0
- data/ext/v8/upstream/3.1.8/src/objects-inl.h +3946 -0
- data/ext/v8/upstream/3.1.8/src/objects-printer.cc +801 -0
- data/ext/v8/upstream/3.1.8/src/objects-visiting.cc +142 -0
- data/ext/v8/upstream/3.1.8/src/objects-visiting.h +401 -0
- data/ext/v8/upstream/3.1.8/src/objects.cc +10044 -0
- data/ext/v8/upstream/3.1.8/src/objects.h +6571 -0
- data/ext/v8/upstream/3.1.8/src/parser.cc +5165 -0
- data/ext/v8/upstream/3.1.8/src/parser.h +802 -0
- data/ext/v8/upstream/3.1.8/src/platform-cygwin.cc +745 -0
- data/ext/v8/upstream/3.1.8/src/platform-freebsd.cc +702 -0
- data/ext/v8/upstream/3.1.8/src/platform-linux.cc +981 -0
- data/ext/v8/upstream/3.1.8/src/platform-macos.cc +732 -0
- data/ext/v8/upstream/3.1.8/src/platform-nullos.cc +498 -0
- data/ext/v8/upstream/3.1.8/src/platform-openbsd.cc +657 -0
- data/ext/v8/upstream/3.1.8/src/platform-posix.cc +399 -0
- data/ext/v8/upstream/3.1.8/src/platform-solaris.cc +714 -0
- data/ext/v8/upstream/3.1.8/src/platform-win32.cc +1974 -0
- data/ext/v8/upstream/3.1.8/src/platform.h +636 -0
- data/ext/v8/upstream/3.1.8/src/preparse-data.cc +183 -0
- data/ext/v8/upstream/3.1.8/src/preparse-data.h +249 -0
- data/ext/v8/upstream/3.1.8/src/preparser-api.cc +213 -0
- data/ext/v8/upstream/3.1.8/src/preparser.cc +1205 -0
- data/ext/v8/upstream/3.1.8/src/preparser.h +278 -0
- data/ext/v8/upstream/3.1.8/src/prettyprinter.cc +1539 -0
- data/ext/v8/upstream/3.1.8/src/prettyprinter.h +223 -0
- data/ext/v8/upstream/3.1.8/src/profile-generator-inl.h +128 -0
- data/ext/v8/upstream/3.1.8/src/profile-generator.cc +2899 -0
- data/ext/v8/upstream/3.1.8/src/profile-generator.h +1151 -0
- data/ext/v8/upstream/3.1.8/src/property.cc +96 -0
- data/ext/v8/upstream/3.1.8/src/property.h +337 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/regexp-macro-assembler-irregexp-inl.h +0 -0
- data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler-irregexp.cc +470 -0
- data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler-irregexp.h +142 -0
- data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler-tracer.cc +373 -0
- data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler-tracer.h +104 -0
- data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler.cc +257 -0
- data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler.h +231 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/regexp-stack.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/regexp-stack.h +0 -0
- data/ext/v8/upstream/3.1.8/src/regexp.js +483 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/register-allocator-inl.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/register-allocator.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/register-allocator.h +0 -0
- data/ext/v8/upstream/3.1.8/src/rewriter.cc +1023 -0
- data/ext/v8/upstream/3.1.8/src/rewriter.h +59 -0
- data/ext/v8/upstream/3.1.8/src/runtime-profiler.cc +443 -0
- data/ext/v8/upstream/3.1.8/src/runtime-profiler.h +77 -0
- data/ext/v8/upstream/3.1.8/src/runtime.cc +11592 -0
- data/ext/v8/upstream/3.1.8/src/runtime.h +582 -0
- data/ext/v8/upstream/3.1.8/src/runtime.js +643 -0
- data/ext/v8/upstream/3.1.8/src/safepoint-table.cc +253 -0
- data/ext/v8/upstream/3.1.8/src/safepoint-table.h +263 -0
- data/ext/v8/upstream/3.1.8/src/scanner-base.cc +971 -0
- data/ext/v8/upstream/3.1.8/src/scanner-base.h +653 -0
- data/ext/v8/upstream/3.1.8/src/scanner.cc +586 -0
- data/ext/v8/upstream/3.1.8/src/scanner.h +194 -0
- data/ext/v8/upstream/3.1.8/src/scopeinfo.cc +636 -0
- data/ext/v8/upstream/3.1.8/src/scopeinfo.h +238 -0
- data/ext/v8/upstream/3.1.8/src/scopes.cc +1063 -0
- data/ext/v8/upstream/3.1.8/src/scopes.h +494 -0
- data/ext/v8/upstream/3.1.8/src/serialize.cc +1535 -0
- data/ext/v8/upstream/3.1.8/src/serialize.h +584 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/shell.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/simulator.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/smart-pointer.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/snapshot-common.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/snapshot-empty.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/snapshot.h +0 -0
- data/ext/v8/upstream/3.1.8/src/spaces-inl.h +524 -0
- data/ext/v8/upstream/3.1.8/src/spaces.cc +3254 -0
- data/ext/v8/upstream/3.1.8/src/spaces.h +2362 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/splay-tree-inl.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/splay-tree.h +0 -0
- data/ext/v8/upstream/3.1.8/src/string-search.cc +40 -0
- data/ext/v8/upstream/3.1.8/src/string-search.h +567 -0
- data/ext/v8/upstream/3.1.8/src/string-stream.cc +584 -0
- data/ext/v8/upstream/3.1.8/src/string-stream.h +191 -0
- data/ext/v8/upstream/3.1.8/src/string.js +915 -0
- data/ext/v8/upstream/3.1.8/src/strtod.cc +440 -0
- data/ext/v8/upstream/3.1.8/src/strtod.h +40 -0
- data/ext/v8/upstream/3.1.8/src/stub-cache.cc +1878 -0
- data/ext/v8/upstream/3.1.8/src/stub-cache.h +849 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/third_party/valgrind/valgrind.h +0 -0
- data/ext/v8/upstream/3.1.8/src/token.cc +63 -0
- data/ext/v8/upstream/3.1.8/src/token.h +288 -0
- data/ext/v8/upstream/3.1.8/src/top.cc +1152 -0
- data/ext/v8/upstream/3.1.8/src/top.h +608 -0
- data/ext/v8/upstream/3.1.8/src/type-info.cc +406 -0
- data/ext/v8/upstream/3.1.8/src/type-info.h +283 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/unbound-queue-inl.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/unbound-queue.h +0 -0
- data/ext/v8/upstream/3.1.8/src/unicode-inl.h +238 -0
- data/ext/v8/upstream/3.1.8/src/unicode.cc +1624 -0
- data/ext/v8/upstream/3.1.8/src/unicode.h +280 -0
- data/ext/v8/upstream/3.1.8/src/uri.js +402 -0
- data/ext/v8/upstream/3.1.8/src/utils.cc +371 -0
- data/ext/v8/upstream/3.1.8/src/utils.h +793 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/v8-counters.cc +0 -0
- data/ext/v8/upstream/3.1.8/src/v8-counters.h +290 -0
- data/ext/v8/upstream/3.1.8/src/v8.cc +270 -0
- data/ext/v8/upstream/3.1.8/src/v8.h +127 -0
- data/ext/v8/upstream/3.1.8/src/v8checks.h +64 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/v8dll-main.cc +0 -0
- data/ext/v8/upstream/3.1.8/src/v8globals.h +480 -0
- data/ext/v8/upstream/3.1.8/src/v8natives.js +1252 -0
- data/ext/v8/upstream/3.1.8/src/v8preparserdll-main.cc +39 -0
- data/ext/v8/upstream/3.1.8/src/v8threads.cc +440 -0
- data/ext/v8/upstream/3.1.8/src/v8threads.h +157 -0
- data/ext/v8/upstream/3.1.8/src/v8utils.h +354 -0
- data/ext/v8/upstream/3.1.8/src/variables.cc +132 -0
- data/ext/v8/upstream/3.1.8/src/variables.h +212 -0
- data/ext/v8/upstream/3.1.8/src/version.cc +95 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/version.h +0 -0
- data/ext/v8/upstream/3.1.8/src/virtual-frame-heavy-inl.h +190 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/virtual-frame-heavy.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/virtual-frame-inl.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/virtual-frame-light-inl.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/virtual-frame-light.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/virtual-frame.cc +0 -0
- data/ext/v8/upstream/3.1.8/src/virtual-frame.h +59 -0
- data/ext/v8/upstream/3.1.8/src/vm-state-inl.h +134 -0
- data/ext/v8/upstream/3.1.8/src/vm-state.h +68 -0
- data/ext/v8/upstream/3.1.8/src/win32-headers.h +95 -0
- data/ext/v8/upstream/3.1.8/src/x64/assembler-x64-inl.h +455 -0
- data/ext/v8/upstream/3.1.8/src/x64/assembler-x64.cc +3162 -0
- data/ext/v8/upstream/3.1.8/src/x64/assembler-x64.h +1584 -0
- data/ext/v8/upstream/3.1.8/src/x64/builtins-x64.cc +1492 -0
- data/ext/v8/upstream/3.1.8/src/x64/code-stubs-x64.cc +5150 -0
- data/ext/v8/upstream/3.1.8/src/x64/code-stubs-x64.h +519 -0
- data/ext/v8/upstream/3.1.8/src/x64/codegen-x64-inl.h +46 -0
- data/ext/v8/upstream/3.1.8/src/x64/codegen-x64.cc +8835 -0
- data/ext/v8/upstream/3.1.8/src/x64/codegen-x64.h +750 -0
- data/ext/v8/upstream/3.1.8/src/x64/cpu-x64.cc +86 -0
- data/ext/v8/upstream/3.1.8/src/x64/debug-x64.cc +316 -0
- data/ext/v8/upstream/3.1.8/src/x64/deoptimizer-x64.cc +781 -0
- data/ext/v8/upstream/3.1.8/src/x64/disasm-x64.cc +1737 -0
- data/ext/v8/upstream/3.1.8/src/x64/frames-x64.cc +45 -0
- data/ext/v8/upstream/3.1.8/src/x64/frames-x64.h +130 -0
- data/ext/v8/upstream/3.1.8/src/x64/full-codegen-x64.cc +3984 -0
- data/ext/v8/upstream/3.1.8/src/x64/ic-x64.cc +1761 -0
- data/ext/v8/upstream/3.1.8/src/x64/jump-target-x64.cc +437 -0
- data/ext/v8/upstream/3.1.8/src/x64/lithium-codegen-x64.cc +3639 -0
- data/ext/v8/upstream/3.1.8/src/x64/lithium-codegen-x64.h +305 -0
- data/ext/v8/upstream/3.1.8/src/x64/lithium-gap-resolver-x64.cc +320 -0
- data/ext/v8/upstream/3.1.8/src/x64/lithium-gap-resolver-x64.h +74 -0
- data/ext/v8/upstream/3.1.8/src/x64/lithium-x64.cc +2044 -0
- data/ext/v8/upstream/3.1.8/src/x64/lithium-x64.h +2052 -0
- data/ext/v8/upstream/3.1.8/src/x64/macro-assembler-x64.cc +2660 -0
- data/ext/v8/upstream/3.1.8/src/x64/macro-assembler-x64.h +1852 -0
- data/ext/v8/upstream/3.1.8/src/x64/regexp-macro-assembler-x64.cc +1382 -0
- data/ext/v8/upstream/3.1.8/src/x64/regexp-macro-assembler-x64.h +278 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/x64/register-allocator-x64-inl.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/x64/register-allocator-x64.cc +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/x64/register-allocator-x64.h +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/src/x64/simulator-x64.cc +0 -0
- data/ext/v8/upstream/3.1.8/src/x64/simulator-x64.h +71 -0
- data/ext/v8/upstream/3.1.8/src/x64/stub-cache-x64.cc +3509 -0
- data/ext/v8/upstream/3.1.8/src/x64/virtual-frame-x64.cc +1292 -0
- data/ext/v8/upstream/3.1.8/src/x64/virtual-frame-x64.h +593 -0
- data/ext/v8/upstream/3.1.8/src/zone-inl.h +83 -0
- data/ext/v8/upstream/3.1.8/src/zone.cc +195 -0
- data/ext/v8/upstream/3.1.8/src/zone.h +233 -0
- data/ext/v8/upstream/3.1.8/tools/codemap.js +265 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/consarray.js +0 -0
- data/ext/v8/upstream/3.1.8/tools/csvparser.js +78 -0
- data/ext/v8/upstream/3.1.8/tools/disasm.py +92 -0
- data/ext/v8/upstream/3.1.8/tools/gc-nvp-trace-processor.py +328 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/generate-ten-powers.scm +0 -0
- data/ext/v8/upstream/3.1.8/tools/grokdump.py +840 -0
- data/ext/v8/upstream/3.1.8/tools/gyp/v8.gyp +869 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/js2c.py +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/jsmin.py +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/linux-tick-processor +0 -0
- data/ext/v8/upstream/3.1.8/tools/ll_prof.py +919 -0
- data/ext/v8/upstream/3.1.8/tools/logreader.js +185 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/mac-nm +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/mac-tick-processor +0 -0
- data/ext/v8/upstream/3.1.8/tools/oom_dump/README +31 -0
- data/ext/v8/upstream/3.1.8/tools/oom_dump/SConstruct +42 -0
- data/ext/v8/upstream/3.1.8/tools/oom_dump/oom_dump.cc +288 -0
- data/ext/v8/upstream/3.1.8/tools/presubmit.py +305 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/process-heap-prof.py +0 -0
- data/ext/v8/upstream/3.1.8/tools/profile.js +751 -0
- data/ext/v8/upstream/3.1.8/tools/profile_view.js +219 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/run-valgrind.py +0 -0
- data/ext/v8/upstream/3.1.8/tools/splaytree.js +316 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/stats-viewer.py +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/tickprocessor-driver.js +0 -0
- data/ext/v8/upstream/3.1.8/tools/tickprocessor.js +863 -0
- data/ext/v8/upstream/3.1.8/tools/utils.py +96 -0
- data/ext/v8/upstream/3.1.8/tools/visual_studio/README.txt +70 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/arm.vsprops +0 -0
- data/ext/v8/upstream/3.1.8/tools/visual_studio/common.vsprops +34 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/d8.vcproj +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/d8_arm.vcproj +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/d8_x64.vcproj +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/d8js2c.cmd +0 -0
- data/ext/v8/upstream/3.1.8/tools/visual_studio/debug.vsprops +17 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/ia32.vsprops +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/js2c.cmd +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/release.vsprops +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8.sln +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8.vcproj +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_arm.sln +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_arm.vcproj +0 -0
- data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_base.vcproj +1296 -0
- data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_base_arm.vcproj +1234 -0
- data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_base_x64.vcproj +1296 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_cctest.vcproj +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_cctest_arm.vcproj +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_cctest_x64.vcproj +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_mksnapshot.vcproj +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_mksnapshot_x64.vcproj +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_process_sample.vcproj +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_process_sample_arm.vcproj +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_process_sample_x64.vcproj +0 -0
- data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_shell_sample.vcproj +147 -0
- data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_shell_sample_arm.vcproj +147 -0
- data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_shell_sample_x64.vcproj +163 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_snapshot.vcproj +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_snapshot_cc.vcproj +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_snapshot_cc_x64.vcproj +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_snapshot_x64.vcproj +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_x64.sln +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/v8_x64.vcproj +0 -0
- data/ext/v8/upstream/{2.3.3 → 3.1.8}/tools/visual_studio/x64.vsprops +0 -0
- data/ext/v8/upstream/3.1.8/tools/windows-tick-processor.bat +30 -0
- data/ext/v8/upstream/Makefile +2 -1
- data/ext/v8/v8_template.cpp +2 -2
- data/lib/v8/version.rb +1 -1
- data/spec/redjs/jsapi_spec.rb +2 -2
- metadata +552 -490
- data/ext/v8/upstream/2.3.3/.gitignore +0 -26
- data/ext/v8/upstream/2.3.3/AUTHORS +0 -31
- data/ext/v8/upstream/2.3.3/ChangeLog +0 -1916
- data/ext/v8/upstream/2.3.3/LICENSE +0 -55
- data/ext/v8/upstream/2.3.3/SConstruct +0 -1154
- data/ext/v8/upstream/2.3.3/include/v8-debug.h +0 -381
- data/ext/v8/upstream/2.3.3/include/v8-profiler.h +0 -353
- data/ext/v8/upstream/2.3.3/include/v8.h +0 -3616
- data/ext/v8/upstream/2.3.3/src/SConscript +0 -330
- data/ext/v8/upstream/2.3.3/src/accessors.cc +0 -661
- data/ext/v8/upstream/2.3.3/src/accessors.h +0 -114
- data/ext/v8/upstream/2.3.3/src/allocation.cc +0 -198
- data/ext/v8/upstream/2.3.3/src/allocation.h +0 -169
- data/ext/v8/upstream/2.3.3/src/api.cc +0 -4795
- data/ext/v8/upstream/2.3.3/src/api.h +0 -485
- data/ext/v8/upstream/2.3.3/src/apiutils.h +0 -69
- data/ext/v8/upstream/2.3.3/src/arguments.h +0 -96
- data/ext/v8/upstream/2.3.3/src/arm/assembler-arm-inl.h +0 -305
- data/ext/v8/upstream/2.3.3/src/arm/assembler-arm.cc +0 -2580
- data/ext/v8/upstream/2.3.3/src/arm/assembler-arm.h +0 -1275
- data/ext/v8/upstream/2.3.3/src/arm/builtins-arm.cc +0 -1320
- data/ext/v8/upstream/2.3.3/src/arm/codegen-arm-inl.h +0 -48
- data/ext/v8/upstream/2.3.3/src/arm/codegen-arm.cc +0 -11398
- data/ext/v8/upstream/2.3.3/src/arm/codegen-arm.h +0 -1102
- data/ext/v8/upstream/2.3.3/src/arm/constants-arm.cc +0 -154
- data/ext/v8/upstream/2.3.3/src/arm/constants-arm.h +0 -388
- data/ext/v8/upstream/2.3.3/src/arm/cpu-arm.cc +0 -142
- data/ext/v8/upstream/2.3.3/src/arm/debug-arm.cc +0 -309
- data/ext/v8/upstream/2.3.3/src/arm/disasm-arm.cc +0 -1459
- data/ext/v8/upstream/2.3.3/src/arm/fast-codegen-arm.cc +0 -241
- data/ext/v8/upstream/2.3.3/src/arm/frames-arm.cc +0 -123
- data/ext/v8/upstream/2.3.3/src/arm/frames-arm.h +0 -162
- data/ext/v8/upstream/2.3.3/src/arm/full-codegen-arm.cc +0 -3178
- data/ext/v8/upstream/2.3.3/src/arm/ic-arm.cc +0 -2258
- data/ext/v8/upstream/2.3.3/src/arm/jump-target-arm.cc +0 -164
- data/ext/v8/upstream/2.3.3/src/arm/macro-assembler-arm.cc +0 -1892
- data/ext/v8/upstream/2.3.3/src/arm/macro-assembler-arm.h +0 -727
- data/ext/v8/upstream/2.3.3/src/arm/regexp-macro-assembler-arm.cc +0 -1261
- data/ext/v8/upstream/2.3.3/src/arm/regexp-macro-assembler-arm.h +0 -266
- data/ext/v8/upstream/2.3.3/src/arm/simulator-arm.cc +0 -2822
- data/ext/v8/upstream/2.3.3/src/arm/simulator-arm.h +0 -361
- data/ext/v8/upstream/2.3.3/src/arm/stub-cache-arm.cc +0 -2387
- data/ext/v8/upstream/2.3.3/src/arm/virtual-frame-arm.cc +0 -834
- data/ext/v8/upstream/2.3.3/src/arm/virtual-frame-arm.h +0 -519
- data/ext/v8/upstream/2.3.3/src/array.js +0 -1127
- data/ext/v8/upstream/2.3.3/src/assembler.cc +0 -801
- data/ext/v8/upstream/2.3.3/src/assembler.h +0 -573
- data/ext/v8/upstream/2.3.3/src/ast-inl.h +0 -81
- data/ext/v8/upstream/2.3.3/src/ast.cc +0 -1152
- data/ext/v8/upstream/2.3.3/src/ast.h +0 -2106
- data/ext/v8/upstream/2.3.3/src/bootstrapper.cc +0 -1819
- data/ext/v8/upstream/2.3.3/src/builtins.cc +0 -1529
- data/ext/v8/upstream/2.3.3/src/builtins.h +0 -263
- data/ext/v8/upstream/2.3.3/src/bytecodes-irregexp.h +0 -104
- data/ext/v8/upstream/2.3.3/src/cached-powers.h +0 -119
- data/ext/v8/upstream/2.3.3/src/char-predicates-inl.h +0 -86
- data/ext/v8/upstream/2.3.3/src/checks.cc +0 -100
- data/ext/v8/upstream/2.3.3/src/checks.h +0 -310
- data/ext/v8/upstream/2.3.3/src/circular-queue.cc +0 -121
- data/ext/v8/upstream/2.3.3/src/code-stubs.cc +0 -177
- data/ext/v8/upstream/2.3.3/src/code-stubs.h +0 -177
- data/ext/v8/upstream/2.3.3/src/codegen-inl.h +0 -60
- data/ext/v8/upstream/2.3.3/src/codegen.cc +0 -516
- data/ext/v8/upstream/2.3.3/src/codegen.h +0 -897
- data/ext/v8/upstream/2.3.3/src/compilation-cache.cc +0 -562
- data/ext/v8/upstream/2.3.3/src/compilation-cache.h +0 -102
- data/ext/v8/upstream/2.3.3/src/compiler.cc +0 -654
- data/ext/v8/upstream/2.3.3/src/compiler.h +0 -299
- data/ext/v8/upstream/2.3.3/src/contexts.cc +0 -256
- data/ext/v8/upstream/2.3.3/src/contexts.h +0 -342
- data/ext/v8/upstream/2.3.3/src/conversions.cc +0 -1119
- data/ext/v8/upstream/2.3.3/src/conversions.h +0 -123
- data/ext/v8/upstream/2.3.3/src/counters.h +0 -239
- data/ext/v8/upstream/2.3.3/src/cpu-profiler-inl.h +0 -100
- data/ext/v8/upstream/2.3.3/src/cpu-profiler.cc +0 -538
- data/ext/v8/upstream/2.3.3/src/cpu-profiler.h +0 -285
- data/ext/v8/upstream/2.3.3/src/d8-debug.cc +0 -356
- data/ext/v8/upstream/2.3.3/src/d8-debug.h +0 -155
- data/ext/v8/upstream/2.3.3/src/d8.cc +0 -783
- data/ext/v8/upstream/2.3.3/src/d8.h +0 -227
- data/ext/v8/upstream/2.3.3/src/d8.js +0 -1683
- data/ext/v8/upstream/2.3.3/src/data-flow.cc +0 -758
- data/ext/v8/upstream/2.3.3/src/data-flow.h +0 -278
- data/ext/v8/upstream/2.3.3/src/date.js +0 -1059
- data/ext/v8/upstream/2.3.3/src/dateparser-inl.h +0 -123
- data/ext/v8/upstream/2.3.3/src/dateparser.h +0 -244
- data/ext/v8/upstream/2.3.3/src/debug-agent.cc +0 -427
- data/ext/v8/upstream/2.3.3/src/debug-agent.h +0 -129
- data/ext/v8/upstream/2.3.3/src/debug-debugger.js +0 -2227
- data/ext/v8/upstream/2.3.3/src/debug.cc +0 -3005
- data/ext/v8/upstream/2.3.3/src/debug.h +0 -993
- data/ext/v8/upstream/2.3.3/src/disassembler.cc +0 -312
- data/ext/v8/upstream/2.3.3/src/double.h +0 -169
- data/ext/v8/upstream/2.3.3/src/dtoa-config.c +0 -92
- data/ext/v8/upstream/2.3.3/src/dtoa.cc +0 -77
- data/ext/v8/upstream/2.3.3/src/dtoa.h +0 -81
- data/ext/v8/upstream/2.3.3/src/execution.cc +0 -809
- data/ext/v8/upstream/2.3.3/src/execution.h +0 -336
- data/ext/v8/upstream/2.3.3/src/factory.cc +0 -1003
- data/ext/v8/upstream/2.3.3/src/factory.h +0 -410
- data/ext/v8/upstream/2.3.3/src/fast-codegen.cc +0 -746
- data/ext/v8/upstream/2.3.3/src/fast-codegen.h +0 -161
- data/ext/v8/upstream/2.3.3/src/fast-dtoa.cc +0 -505
- data/ext/v8/upstream/2.3.3/src/fast-dtoa.h +0 -58
- data/ext/v8/upstream/2.3.3/src/flag-definitions.h +0 -455
- data/ext/v8/upstream/2.3.3/src/flags.cc +0 -551
- data/ext/v8/upstream/2.3.3/src/flags.h +0 -81
- data/ext/v8/upstream/2.3.3/src/flow-graph.cc +0 -763
- data/ext/v8/upstream/2.3.3/src/flow-graph.h +0 -180
- data/ext/v8/upstream/2.3.3/src/frame-element.h +0 -273
- data/ext/v8/upstream/2.3.3/src/frames-inl.h +0 -217
- data/ext/v8/upstream/2.3.3/src/frames.cc +0 -826
- data/ext/v8/upstream/2.3.3/src/frames.h +0 -682
- data/ext/v8/upstream/2.3.3/src/full-codegen.cc +0 -1443
- data/ext/v8/upstream/2.3.3/src/full-codegen.h +0 -548
- data/ext/v8/upstream/2.3.3/src/func-name-inferrer.cc +0 -76
- data/ext/v8/upstream/2.3.3/src/func-name-inferrer.h +0 -135
- data/ext/v8/upstream/2.3.3/src/global-handles.cc +0 -520
- data/ext/v8/upstream/2.3.3/src/global-handles.h +0 -180
- data/ext/v8/upstream/2.3.3/src/globals.h +0 -669
- data/ext/v8/upstream/2.3.3/src/handles-inl.h +0 -76
- data/ext/v8/upstream/2.3.3/src/handles.cc +0 -825
- data/ext/v8/upstream/2.3.3/src/handles.h +0 -393
- data/ext/v8/upstream/2.3.3/src/hashmap.cc +0 -226
- data/ext/v8/upstream/2.3.3/src/hashmap.h +0 -120
- data/ext/v8/upstream/2.3.3/src/heap-inl.h +0 -493
- data/ext/v8/upstream/2.3.3/src/heap-profiler.cc +0 -779
- data/ext/v8/upstream/2.3.3/src/heap-profiler.h +0 -323
- data/ext/v8/upstream/2.3.3/src/heap.cc +0 -4994
- data/ext/v8/upstream/2.3.3/src/heap.h +0 -1984
- data/ext/v8/upstream/2.3.3/src/ia32/assembler-ia32-inl.h +0 -360
- data/ext/v8/upstream/2.3.3/src/ia32/assembler-ia32.cc +0 -2600
- data/ext/v8/upstream/2.3.3/src/ia32/assembler-ia32.h +0 -969
- data/ext/v8/upstream/2.3.3/src/ia32/builtins-ia32.cc +0 -1261
- data/ext/v8/upstream/2.3.3/src/ia32/codegen-ia32.cc +0 -13968
- data/ext/v8/upstream/2.3.3/src/ia32/codegen-ia32.h +0 -1097
- data/ext/v8/upstream/2.3.3/src/ia32/cpu-ia32.cc +0 -83
- data/ext/v8/upstream/2.3.3/src/ia32/debug-ia32.cc +0 -309
- data/ext/v8/upstream/2.3.3/src/ia32/disasm-ia32.cc +0 -1471
- data/ext/v8/upstream/2.3.3/src/ia32/fast-codegen-ia32.cc +0 -954
- data/ext/v8/upstream/2.3.3/src/ia32/fast-codegen-ia32.h +0 -155
- data/ext/v8/upstream/2.3.3/src/ia32/frames-ia32.cc +0 -115
- data/ext/v8/upstream/2.3.3/src/ia32/frames-ia32.h +0 -135
- data/ext/v8/upstream/2.3.3/src/ia32/full-codegen-ia32.cc +0 -3281
- data/ext/v8/upstream/2.3.3/src/ia32/ic-ia32.cc +0 -1966
- data/ext/v8/upstream/2.3.3/src/ia32/macro-assembler-ia32.cc +0 -1610
- data/ext/v8/upstream/2.3.3/src/ia32/macro-assembler-ia32.h +0 -610
- data/ext/v8/upstream/2.3.3/src/ia32/regexp-macro-assembler-ia32.cc +0 -1247
- data/ext/v8/upstream/2.3.3/src/ia32/regexp-macro-assembler-ia32.h +0 -214
- data/ext/v8/upstream/2.3.3/src/ia32/simulator-ia32.h +0 -62
- data/ext/v8/upstream/2.3.3/src/ia32/stub-cache-ia32.cc +0 -2750
- data/ext/v8/upstream/2.3.3/src/ia32/virtual-frame-ia32.cc +0 -1334
- data/ext/v8/upstream/2.3.3/src/ia32/virtual-frame-ia32.h +0 -627
- data/ext/v8/upstream/2.3.3/src/ic-inl.h +0 -120
- data/ext/v8/upstream/2.3.3/src/ic.cc +0 -1827
- data/ext/v8/upstream/2.3.3/src/ic.h +0 -515
- data/ext/v8/upstream/2.3.3/src/interpreter-irregexp.cc +0 -646
- data/ext/v8/upstream/2.3.3/src/json.js +0 -268
- data/ext/v8/upstream/2.3.3/src/jsregexp.cc +0 -5283
- data/ext/v8/upstream/2.3.3/src/jsregexp.h +0 -1463
- data/ext/v8/upstream/2.3.3/src/jump-target-heavy.cc +0 -429
- data/ext/v8/upstream/2.3.3/src/jump-target-heavy.h +0 -244
- data/ext/v8/upstream/2.3.3/src/jump-target-light.cc +0 -110
- data/ext/v8/upstream/2.3.3/src/jump-target-light.h +0 -192
- data/ext/v8/upstream/2.3.3/src/list-inl.h +0 -166
- data/ext/v8/upstream/2.3.3/src/list.h +0 -159
- data/ext/v8/upstream/2.3.3/src/liveedit-debugger.js +0 -1057
- data/ext/v8/upstream/2.3.3/src/liveedit.cc +0 -1480
- data/ext/v8/upstream/2.3.3/src/liveedit.h +0 -170
- data/ext/v8/upstream/2.3.3/src/log-utils.cc +0 -497
- data/ext/v8/upstream/2.3.3/src/log-utils.h +0 -289
- data/ext/v8/upstream/2.3.3/src/log.cc +0 -1561
- data/ext/v8/upstream/2.3.3/src/log.h +0 -384
- data/ext/v8/upstream/2.3.3/src/macro-assembler.h +0 -86
- data/ext/v8/upstream/2.3.3/src/macros.py +0 -177
- data/ext/v8/upstream/2.3.3/src/mark-compact.cc +0 -2330
- data/ext/v8/upstream/2.3.3/src/mark-compact.h +0 -451
- data/ext/v8/upstream/2.3.3/src/math.js +0 -264
- data/ext/v8/upstream/2.3.3/src/memory.h +0 -74
- data/ext/v8/upstream/2.3.3/src/messages.cc +0 -183
- data/ext/v8/upstream/2.3.3/src/messages.h +0 -113
- data/ext/v8/upstream/2.3.3/src/messages.js +0 -982
- data/ext/v8/upstream/2.3.3/src/mips/assembler-mips.h +0 -668
- data/ext/v8/upstream/2.3.3/src/mips/builtins-mips.cc +0 -205
- data/ext/v8/upstream/2.3.3/src/mips/codegen-mips.h +0 -434
- data/ext/v8/upstream/2.3.3/src/mips/debug-mips.cc +0 -131
- data/ext/v8/upstream/2.3.3/src/mips/frames-mips.cc +0 -102
- data/ext/v8/upstream/2.3.3/src/mips/ic-mips.cc +0 -220
- data/ext/v8/upstream/2.3.3/src/mips/simulator-mips.cc +0 -1651
- data/ext/v8/upstream/2.3.3/src/mips/simulator-mips.h +0 -311
- data/ext/v8/upstream/2.3.3/src/mips/stub-cache-mips.cc +0 -403
- data/ext/v8/upstream/2.3.3/src/mirror-debugger.js +0 -2380
- data/ext/v8/upstream/2.3.3/src/objects-debug.cc +0 -1366
- data/ext/v8/upstream/2.3.3/src/objects-inl.h +0 -3333
- data/ext/v8/upstream/2.3.3/src/objects.cc +0 -8820
- data/ext/v8/upstream/2.3.3/src/objects.h +0 -5373
- data/ext/v8/upstream/2.3.3/src/oprofile-agent.cc +0 -108
- data/ext/v8/upstream/2.3.3/src/oprofile-agent.h +0 -77
- data/ext/v8/upstream/2.3.3/src/parser.cc +0 -5207
- data/ext/v8/upstream/2.3.3/src/parser.h +0 -197
- data/ext/v8/upstream/2.3.3/src/platform-freebsd.cc +0 -667
- data/ext/v8/upstream/2.3.3/src/platform-linux.cc +0 -862
- data/ext/v8/upstream/2.3.3/src/platform-macos.cc +0 -665
- data/ext/v8/upstream/2.3.3/src/platform-nullos.cc +0 -454
- data/ext/v8/upstream/2.3.3/src/platform-openbsd.cc +0 -622
- data/ext/v8/upstream/2.3.3/src/platform-posix.cc +0 -362
- data/ext/v8/upstream/2.3.3/src/platform-solaris.cc +0 -653
- data/ext/v8/upstream/2.3.3/src/platform-win32.cc +0 -1911
- data/ext/v8/upstream/2.3.3/src/platform.h +0 -577
- data/ext/v8/upstream/2.3.3/src/powers-ten.h +0 -2461
- data/ext/v8/upstream/2.3.3/src/prettyprinter.cc +0 -1531
- data/ext/v8/upstream/2.3.3/src/prettyprinter.h +0 -221
- data/ext/v8/upstream/2.3.3/src/profile-generator-inl.h +0 -148
- data/ext/v8/upstream/2.3.3/src/profile-generator.cc +0 -1830
- data/ext/v8/upstream/2.3.3/src/profile-generator.h +0 -853
- data/ext/v8/upstream/2.3.3/src/property.cc +0 -96
- data/ext/v8/upstream/2.3.3/src/property.h +0 -315
- data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler-irregexp.cc +0 -464
- data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler-irregexp.h +0 -141
- data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler-tracer.cc +0 -356
- data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler-tracer.h +0 -103
- data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler.cc +0 -261
- data/ext/v8/upstream/2.3.3/src/regexp-macro-assembler.h +0 -228
- data/ext/v8/upstream/2.3.3/src/regexp.js +0 -549
- data/ext/v8/upstream/2.3.3/src/rewriter.cc +0 -1038
- data/ext/v8/upstream/2.3.3/src/rewriter.h +0 -54
- data/ext/v8/upstream/2.3.3/src/runtime.cc +0 -10599
- data/ext/v8/upstream/2.3.3/src/runtime.h +0 -459
- data/ext/v8/upstream/2.3.3/src/runtime.js +0 -629
- data/ext/v8/upstream/2.3.3/src/scanner.cc +0 -1346
- data/ext/v8/upstream/2.3.3/src/scanner.h +0 -503
- data/ext/v8/upstream/2.3.3/src/scopeinfo.cc +0 -637
- data/ext/v8/upstream/2.3.3/src/scopeinfo.h +0 -233
- data/ext/v8/upstream/2.3.3/src/scopes.cc +0 -962
- data/ext/v8/upstream/2.3.3/src/scopes.h +0 -400
- data/ext/v8/upstream/2.3.3/src/serialize.cc +0 -1461
- data/ext/v8/upstream/2.3.3/src/serialize.h +0 -581
- data/ext/v8/upstream/2.3.3/src/spaces-inl.h +0 -483
- data/ext/v8/upstream/2.3.3/src/spaces.cc +0 -2901
- data/ext/v8/upstream/2.3.3/src/spaces.h +0 -2197
- data/ext/v8/upstream/2.3.3/src/string-stream.cc +0 -584
- data/ext/v8/upstream/2.3.3/src/string-stream.h +0 -189
- data/ext/v8/upstream/2.3.3/src/string.js +0 -1006
- data/ext/v8/upstream/2.3.3/src/stub-cache.cc +0 -1379
- data/ext/v8/upstream/2.3.3/src/stub-cache.h +0 -756
- data/ext/v8/upstream/2.3.3/src/third_party/dtoa/COPYING +0 -15
- data/ext/v8/upstream/2.3.3/src/third_party/dtoa/dtoa.c +0 -3334
- data/ext/v8/upstream/2.3.3/src/token.cc +0 -56
- data/ext/v8/upstream/2.3.3/src/token.h +0 -270
- data/ext/v8/upstream/2.3.3/src/top.cc +0 -1067
- data/ext/v8/upstream/2.3.3/src/top.h +0 -463
- data/ext/v8/upstream/2.3.3/src/type-info.cc +0 -53
- data/ext/v8/upstream/2.3.3/src/type-info.h +0 -244
- data/ext/v8/upstream/2.3.3/src/unicode-inl.h +0 -238
- data/ext/v8/upstream/2.3.3/src/unicode.cc +0 -749
- data/ext/v8/upstream/2.3.3/src/unicode.h +0 -279
- data/ext/v8/upstream/2.3.3/src/uri.js +0 -415
- data/ext/v8/upstream/2.3.3/src/utils.cc +0 -285
- data/ext/v8/upstream/2.3.3/src/utils.h +0 -745
- data/ext/v8/upstream/2.3.3/src/v8-counters.h +0 -250
- data/ext/v8/upstream/2.3.3/src/v8.cc +0 -228
- data/ext/v8/upstream/2.3.3/src/v8.h +0 -121
- data/ext/v8/upstream/2.3.3/src/v8natives.js +0 -1188
- data/ext/v8/upstream/2.3.3/src/v8threads.cc +0 -461
- data/ext/v8/upstream/2.3.3/src/v8threads.h +0 -159
- data/ext/v8/upstream/2.3.3/src/variables.cc +0 -119
- data/ext/v8/upstream/2.3.3/src/variables.h +0 -205
- data/ext/v8/upstream/2.3.3/src/version.cc +0 -88
- data/ext/v8/upstream/2.3.3/src/virtual-frame-heavy-inl.h +0 -192
- data/ext/v8/upstream/2.3.3/src/virtual-frame.h +0 -46
- data/ext/v8/upstream/2.3.3/src/vm-state-inl.h +0 -137
- data/ext/v8/upstream/2.3.3/src/vm-state.cc +0 -39
- data/ext/v8/upstream/2.3.3/src/vm-state.h +0 -77
- data/ext/v8/upstream/2.3.3/src/x64/assembler-x64-inl.h +0 -400
- data/ext/v8/upstream/2.3.3/src/x64/assembler-x64.cc +0 -2963
- data/ext/v8/upstream/2.3.3/src/x64/assembler-x64.h +0 -1438
- data/ext/v8/upstream/2.3.3/src/x64/builtins-x64.cc +0 -1296
- data/ext/v8/upstream/2.3.3/src/x64/codegen-x64-inl.h +0 -46
- data/ext/v8/upstream/2.3.3/src/x64/codegen-x64.cc +0 -12491
- data/ext/v8/upstream/2.3.3/src/x64/codegen-x64.h +0 -1090
- data/ext/v8/upstream/2.3.3/src/x64/cpu-x64.cc +0 -83
- data/ext/v8/upstream/2.3.3/src/x64/debug-x64.cc +0 -267
- data/ext/v8/upstream/2.3.3/src/x64/disasm-x64.cc +0 -1696
- data/ext/v8/upstream/2.3.3/src/x64/fast-codegen-x64.cc +0 -250
- data/ext/v8/upstream/2.3.3/src/x64/frames-x64.cc +0 -113
- data/ext/v8/upstream/2.3.3/src/x64/frames-x64.h +0 -125
- data/ext/v8/upstream/2.3.3/src/x64/full-codegen-x64.cc +0 -3270
- data/ext/v8/upstream/2.3.3/src/x64/ic-x64.cc +0 -1907
- data/ext/v8/upstream/2.3.3/src/x64/jump-target-x64.cc +0 -437
- data/ext/v8/upstream/2.3.3/src/x64/macro-assembler-x64.cc +0 -2793
- data/ext/v8/upstream/2.3.3/src/x64/macro-assembler-x64.h +0 -916
- data/ext/v8/upstream/2.3.3/src/x64/regexp-macro-assembler-x64.cc +0 -1374
- data/ext/v8/upstream/2.3.3/src/x64/regexp-macro-assembler-x64.h +0 -277
- data/ext/v8/upstream/2.3.3/src/x64/simulator-x64.h +0 -63
- data/ext/v8/upstream/2.3.3/src/x64/stub-cache-x64.cc +0 -2560
- data/ext/v8/upstream/2.3.3/src/x64/virtual-frame-x64.cc +0 -1264
- data/ext/v8/upstream/2.3.3/src/x64/virtual-frame-x64.h +0 -590
- data/ext/v8/upstream/2.3.3/src/zone-inl.h +0 -82
- data/ext/v8/upstream/2.3.3/src/zone.cc +0 -194
- data/ext/v8/upstream/2.3.3/src/zone.h +0 -221
- data/ext/v8/upstream/2.3.3/tools/codemap.js +0 -270
- data/ext/v8/upstream/2.3.3/tools/csvparser.js +0 -83
- data/ext/v8/upstream/2.3.3/tools/gc-nvp-trace-processor.py +0 -317
- data/ext/v8/upstream/2.3.3/tools/gyp/v8.gyp +0 -749
- data/ext/v8/upstream/2.3.3/tools/linux-tick-processor.py +0 -78
- data/ext/v8/upstream/2.3.3/tools/logreader.js +0 -338
- data/ext/v8/upstream/2.3.3/tools/oprofile/annotate +0 -7
- data/ext/v8/upstream/2.3.3/tools/oprofile/common +0 -19
- data/ext/v8/upstream/2.3.3/tools/oprofile/dump +0 -7
- data/ext/v8/upstream/2.3.3/tools/oprofile/report +0 -7
- data/ext/v8/upstream/2.3.3/tools/oprofile/reset +0 -7
- data/ext/v8/upstream/2.3.3/tools/oprofile/run +0 -14
- data/ext/v8/upstream/2.3.3/tools/oprofile/shutdown +0 -7
- data/ext/v8/upstream/2.3.3/tools/oprofile/start +0 -7
- data/ext/v8/upstream/2.3.3/tools/presubmit.py +0 -299
- data/ext/v8/upstream/2.3.3/tools/profile.js +0 -691
- data/ext/v8/upstream/2.3.3/tools/profile_view.js +0 -224
- data/ext/v8/upstream/2.3.3/tools/splaytree.js +0 -322
- data/ext/v8/upstream/2.3.3/tools/splaytree.py +0 -226
- data/ext/v8/upstream/2.3.3/tools/tickprocessor.js +0 -862
- data/ext/v8/upstream/2.3.3/tools/tickprocessor.py +0 -571
- data/ext/v8/upstream/2.3.3/tools/utils.py +0 -88
- data/ext/v8/upstream/2.3.3/tools/visual_studio/README.txt +0 -71
- data/ext/v8/upstream/2.3.3/tools/visual_studio/common.vsprops +0 -34
- data/ext/v8/upstream/2.3.3/tools/visual_studio/debug.vsprops +0 -17
- data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_base.vcproj +0 -1143
- data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_base_arm.vcproj +0 -1115
- data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_base_x64.vcproj +0 -1096
- data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_shell_sample.vcproj +0 -145
- data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_shell_sample_arm.vcproj +0 -145
- data/ext/v8/upstream/2.3.3/tools/visual_studio/v8_shell_sample_x64.vcproj +0 -161
- data/ext/v8/upstream/2.3.3/tools/windows-tick-processor.bat +0 -29
- data/ext/v8/upstream/2.3.3/tools/windows-tick-processor.py +0 -137
@@ -1,410 +0,0 @@
|
|
1
|
-
// Copyright 2006-2008 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_FACTORY_H_
|
29
|
-
#define V8_FACTORY_H_
|
30
|
-
|
31
|
-
#include "globals.h"
|
32
|
-
#include "heap.h"
|
33
|
-
|
34
|
-
namespace v8 {
|
35
|
-
namespace internal {
|
36
|
-
|
37
|
-
// Interface for handle based allocation.
|
38
|
-
|
39
|
-
class Factory : public AllStatic {
|
40
|
-
public:
|
41
|
-
// Allocate a new fixed array with undefined entries.
|
42
|
-
static Handle<FixedArray> NewFixedArray(
|
43
|
-
int size,
|
44
|
-
PretenureFlag pretenure = NOT_TENURED);
|
45
|
-
|
46
|
-
// Allocate a new fixed array with non-existing entries (the hole).
|
47
|
-
static Handle<FixedArray> NewFixedArrayWithHoles(
|
48
|
-
int size,
|
49
|
-
PretenureFlag pretenure = NOT_TENURED);
|
50
|
-
|
51
|
-
static Handle<NumberDictionary> NewNumberDictionary(int at_least_space_for);
|
52
|
-
|
53
|
-
static Handle<StringDictionary> NewStringDictionary(int at_least_space_for);
|
54
|
-
|
55
|
-
static Handle<DescriptorArray> NewDescriptorArray(int number_of_descriptors);
|
56
|
-
|
57
|
-
static Handle<String> LookupSymbol(Vector<const char> str);
|
58
|
-
static Handle<String> LookupAsciiSymbol(const char* str) {
|
59
|
-
return LookupSymbol(CStrVector(str));
|
60
|
-
}
|
61
|
-
|
62
|
-
|
63
|
-
// String creation functions. Most of the string creation functions take
|
64
|
-
// a Heap::PretenureFlag argument to optionally request that they be
|
65
|
-
// allocated in the old generation. The pretenure flag defaults to
|
66
|
-
// DONT_TENURE.
|
67
|
-
//
|
68
|
-
// Creates a new String object. There are two String encodings: ASCII and
|
69
|
-
// two byte. One should choose between the three string factory functions
|
70
|
-
// based on the encoding of the string buffer that the string is
|
71
|
-
// initialized from.
|
72
|
-
// - ...FromAscii initializes the string from a buffer that is ASCII
|
73
|
-
// encoded (it does not check that the buffer is ASCII encoded) and
|
74
|
-
// the result will be ASCII encoded.
|
75
|
-
// - ...FromUtf8 initializes the string from a buffer that is UTF-8
|
76
|
-
// encoded. If the characters are all single-byte characters, the
|
77
|
-
// result will be ASCII encoded, otherwise it will converted to two
|
78
|
-
// byte.
|
79
|
-
// - ...FromTwoByte initializes the string from a buffer that is two
|
80
|
-
// byte encoded. If the characters are all single-byte characters,
|
81
|
-
// the result will be converted to ASCII, otherwise it will be left as
|
82
|
-
// two byte.
|
83
|
-
//
|
84
|
-
// ASCII strings are pretenured when used as keys in the SourceCodeCache.
|
85
|
-
static Handle<String> NewStringFromAscii(
|
86
|
-
Vector<const char> str,
|
87
|
-
PretenureFlag pretenure = NOT_TENURED);
|
88
|
-
|
89
|
-
// UTF8 strings are pretenured when used for regexp literal patterns and
|
90
|
-
// flags in the parser.
|
91
|
-
static Handle<String> NewStringFromUtf8(
|
92
|
-
Vector<const char> str,
|
93
|
-
PretenureFlag pretenure = NOT_TENURED);
|
94
|
-
|
95
|
-
static Handle<String> NewStringFromTwoByte(
|
96
|
-
Vector<const uc16> str,
|
97
|
-
PretenureFlag pretenure = NOT_TENURED);
|
98
|
-
|
99
|
-
// Allocates and partially initializes an ASCII or TwoByte String. The
|
100
|
-
// characters of the string are uninitialized. Currently used in regexp code
|
101
|
-
// only, where they are pretenured.
|
102
|
-
static Handle<String> NewRawAsciiString(
|
103
|
-
int length,
|
104
|
-
PretenureFlag pretenure = NOT_TENURED);
|
105
|
-
static Handle<String> NewRawTwoByteString(
|
106
|
-
int length,
|
107
|
-
PretenureFlag pretenure = NOT_TENURED);
|
108
|
-
|
109
|
-
// Create a new cons string object which consists of a pair of strings.
|
110
|
-
static Handle<String> NewConsString(Handle<String> first,
|
111
|
-
Handle<String> second);
|
112
|
-
|
113
|
-
// Create a new string object which holds a substring of a string.
|
114
|
-
static Handle<String> NewSubString(Handle<String> str,
|
115
|
-
int begin,
|
116
|
-
int end);
|
117
|
-
|
118
|
-
// Creates a new external String object. There are two String encodings
|
119
|
-
// in the system: ASCII and two byte. Unlike other String types, it does
|
120
|
-
// not make sense to have a UTF-8 factory function for external strings,
|
121
|
-
// because we cannot change the underlying buffer.
|
122
|
-
static Handle<String> NewExternalStringFromAscii(
|
123
|
-
ExternalAsciiString::Resource* resource);
|
124
|
-
static Handle<String> NewExternalStringFromTwoByte(
|
125
|
-
ExternalTwoByteString::Resource* resource);
|
126
|
-
|
127
|
-
// Create a global (but otherwise uninitialized) context.
|
128
|
-
static Handle<Context> NewGlobalContext();
|
129
|
-
|
130
|
-
// Create a function context.
|
131
|
-
static Handle<Context> NewFunctionContext(int length,
|
132
|
-
Handle<JSFunction> closure);
|
133
|
-
|
134
|
-
// Create a 'with' context.
|
135
|
-
static Handle<Context> NewWithContext(Handle<Context> previous,
|
136
|
-
Handle<JSObject> extension,
|
137
|
-
bool is_catch_context);
|
138
|
-
|
139
|
-
// Return the Symbol matching the passed in string.
|
140
|
-
static Handle<String> SymbolFromString(Handle<String> value);
|
141
|
-
|
142
|
-
// Allocate a new struct. The struct is pretenured (allocated directly in
|
143
|
-
// the old generation).
|
144
|
-
static Handle<Struct> NewStruct(InstanceType type);
|
145
|
-
|
146
|
-
static Handle<AccessorInfo> NewAccessorInfo();
|
147
|
-
|
148
|
-
static Handle<Script> NewScript(Handle<String> source);
|
149
|
-
|
150
|
-
// Proxies are pretenured when allocated by the bootstrapper.
|
151
|
-
static Handle<Proxy> NewProxy(Address addr,
|
152
|
-
PretenureFlag pretenure = NOT_TENURED);
|
153
|
-
|
154
|
-
// Allocate a new proxy. The proxy is pretenured (allocated directly in
|
155
|
-
// the old generation).
|
156
|
-
static Handle<Proxy> NewProxy(const AccessorDescriptor* proxy);
|
157
|
-
|
158
|
-
static Handle<ByteArray> NewByteArray(int length,
|
159
|
-
PretenureFlag pretenure = NOT_TENURED);
|
160
|
-
|
161
|
-
static Handle<PixelArray> NewPixelArray(
|
162
|
-
int length,
|
163
|
-
uint8_t* external_pointer,
|
164
|
-
PretenureFlag pretenure = NOT_TENURED);
|
165
|
-
|
166
|
-
static Handle<ExternalArray> NewExternalArray(
|
167
|
-
int length,
|
168
|
-
ExternalArrayType array_type,
|
169
|
-
void* external_pointer,
|
170
|
-
PretenureFlag pretenure = NOT_TENURED);
|
171
|
-
|
172
|
-
static Handle<Map> NewMap(InstanceType type, int instance_size);
|
173
|
-
|
174
|
-
static Handle<JSObject> NewFunctionPrototype(Handle<JSFunction> function);
|
175
|
-
|
176
|
-
static Handle<Map> CopyMapDropDescriptors(Handle<Map> map);
|
177
|
-
|
178
|
-
// Copy the map adding more inobject properties if possible without
|
179
|
-
// overflowing the instance size.
|
180
|
-
static Handle<Map> CopyMap(Handle<Map> map, int extra_inobject_props);
|
181
|
-
|
182
|
-
static Handle<Map> CopyMapDropTransitions(Handle<Map> map);
|
183
|
-
|
184
|
-
static Handle<Map> GetFastElementsMap(Handle<Map> map);
|
185
|
-
|
186
|
-
static Handle<Map> GetSlowElementsMap(Handle<Map> map);
|
187
|
-
|
188
|
-
static Handle<FixedArray> CopyFixedArray(Handle<FixedArray> array);
|
189
|
-
|
190
|
-
// Numbers (eg, literals) are pretenured by the parser.
|
191
|
-
static Handle<Object> NewNumber(double value,
|
192
|
-
PretenureFlag pretenure = NOT_TENURED);
|
193
|
-
|
194
|
-
static Handle<Object> NewNumberFromInt(int value);
|
195
|
-
static Handle<Object> NewNumberFromUint(uint32_t value);
|
196
|
-
|
197
|
-
// These objects are used by the api to create env-independent data
|
198
|
-
// structures in the heap.
|
199
|
-
static Handle<JSObject> NewNeanderObject();
|
200
|
-
|
201
|
-
static Handle<JSObject> NewArgumentsObject(Handle<Object> callee, int length);
|
202
|
-
|
203
|
-
// JS objects are pretenured when allocated by the bootstrapper and
|
204
|
-
// runtime.
|
205
|
-
static Handle<JSObject> NewJSObject(Handle<JSFunction> constructor,
|
206
|
-
PretenureFlag pretenure = NOT_TENURED);
|
207
|
-
|
208
|
-
// Global objects are pretenured.
|
209
|
-
static Handle<GlobalObject> NewGlobalObject(Handle<JSFunction> constructor);
|
210
|
-
|
211
|
-
// JS objects are pretenured when allocated by the bootstrapper and
|
212
|
-
// runtime.
|
213
|
-
static Handle<JSObject> NewJSObjectFromMap(Handle<Map> map);
|
214
|
-
|
215
|
-
// JS arrays are pretenured when allocated by the parser.
|
216
|
-
static Handle<JSArray> NewJSArray(int init_length,
|
217
|
-
PretenureFlag pretenure = NOT_TENURED);
|
218
|
-
|
219
|
-
static Handle<JSArray> NewJSArrayWithElements(
|
220
|
-
Handle<FixedArray> elements,
|
221
|
-
PretenureFlag pretenure = NOT_TENURED);
|
222
|
-
|
223
|
-
static Handle<JSFunction> NewFunction(Handle<String> name,
|
224
|
-
Handle<Object> prototype);
|
225
|
-
|
226
|
-
static Handle<JSFunction> NewFunctionWithoutPrototype(Handle<String> name);
|
227
|
-
|
228
|
-
static Handle<JSFunction> NewFunction(Handle<Object> super, bool is_global);
|
229
|
-
|
230
|
-
static Handle<JSFunction> BaseNewFunctionFromSharedFunctionInfo(
|
231
|
-
Handle<SharedFunctionInfo> function_info,
|
232
|
-
Handle<Map> function_map,
|
233
|
-
PretenureFlag pretenure);
|
234
|
-
|
235
|
-
static Handle<JSFunction> NewFunctionFromSharedFunctionInfo(
|
236
|
-
Handle<SharedFunctionInfo> function_info,
|
237
|
-
Handle<Context> context,
|
238
|
-
PretenureFlag pretenure = TENURED);
|
239
|
-
|
240
|
-
static Handle<Code> NewCode(const CodeDesc& desc,
|
241
|
-
Code::Flags flags,
|
242
|
-
Handle<Object> self_reference);
|
243
|
-
|
244
|
-
static Handle<Code> CopyCode(Handle<Code> code);
|
245
|
-
|
246
|
-
static Handle<Code> CopyCode(Handle<Code> code, Vector<byte> reloc_info);
|
247
|
-
|
248
|
-
static Handle<Object> ToObject(Handle<Object> object);
|
249
|
-
static Handle<Object> ToObject(Handle<Object> object,
|
250
|
-
Handle<Context> global_context);
|
251
|
-
|
252
|
-
// Interface for creating error objects.
|
253
|
-
|
254
|
-
static Handle<Object> NewError(const char* maker, const char* type,
|
255
|
-
Handle<JSArray> args);
|
256
|
-
static Handle<Object> NewError(const char* maker, const char* type,
|
257
|
-
Vector< Handle<Object> > args);
|
258
|
-
static Handle<Object> NewError(const char* type,
|
259
|
-
Vector< Handle<Object> > args);
|
260
|
-
static Handle<Object> NewError(Handle<String> message);
|
261
|
-
static Handle<Object> NewError(const char* constructor,
|
262
|
-
Handle<String> message);
|
263
|
-
|
264
|
-
static Handle<Object> NewTypeError(const char* type,
|
265
|
-
Vector< Handle<Object> > args);
|
266
|
-
static Handle<Object> NewTypeError(Handle<String> message);
|
267
|
-
|
268
|
-
static Handle<Object> NewRangeError(const char* type,
|
269
|
-
Vector< Handle<Object> > args);
|
270
|
-
static Handle<Object> NewRangeError(Handle<String> message);
|
271
|
-
|
272
|
-
static Handle<Object> NewSyntaxError(const char* type, Handle<JSArray> args);
|
273
|
-
static Handle<Object> NewSyntaxError(Handle<String> message);
|
274
|
-
|
275
|
-
static Handle<Object> NewReferenceError(const char* type,
|
276
|
-
Vector< Handle<Object> > args);
|
277
|
-
static Handle<Object> NewReferenceError(Handle<String> message);
|
278
|
-
|
279
|
-
static Handle<Object> NewEvalError(const char* type,
|
280
|
-
Vector< Handle<Object> > args);
|
281
|
-
|
282
|
-
|
283
|
-
static Handle<JSFunction> NewFunction(Handle<String> name,
|
284
|
-
InstanceType type,
|
285
|
-
int instance_size,
|
286
|
-
Handle<Code> code,
|
287
|
-
bool force_initial_map);
|
288
|
-
|
289
|
-
static Handle<JSFunction> NewFunction(Handle<Map> function_map,
|
290
|
-
Handle<SharedFunctionInfo> shared, Handle<Object> prototype);
|
291
|
-
|
292
|
-
|
293
|
-
static Handle<JSFunction> NewFunctionWithPrototype(Handle<String> name,
|
294
|
-
InstanceType type,
|
295
|
-
int instance_size,
|
296
|
-
Handle<JSObject> prototype,
|
297
|
-
Handle<Code> code,
|
298
|
-
bool force_initial_map);
|
299
|
-
|
300
|
-
static Handle<JSFunction> NewFunctionWithoutPrototype(Handle<String> name,
|
301
|
-
Handle<Code> code);
|
302
|
-
|
303
|
-
static Handle<DescriptorArray> CopyAppendProxyDescriptor(
|
304
|
-
Handle<DescriptorArray> array,
|
305
|
-
Handle<String> key,
|
306
|
-
Handle<Object> value,
|
307
|
-
PropertyAttributes attributes);
|
308
|
-
|
309
|
-
static Handle<String> NumberToString(Handle<Object> number);
|
310
|
-
|
311
|
-
enum ApiInstanceType {
|
312
|
-
JavaScriptObject,
|
313
|
-
InnerGlobalObject,
|
314
|
-
OuterGlobalObject
|
315
|
-
};
|
316
|
-
|
317
|
-
static Handle<JSFunction> CreateApiFunction(
|
318
|
-
Handle<FunctionTemplateInfo> data,
|
319
|
-
ApiInstanceType type = JavaScriptObject);
|
320
|
-
|
321
|
-
static Handle<JSFunction> InstallMembers(Handle<JSFunction> function);
|
322
|
-
|
323
|
-
// Installs interceptors on the instance. 'desc' is a function template,
|
324
|
-
// and instance is an object instance created by the function of this
|
325
|
-
// function template.
|
326
|
-
static void ConfigureInstance(Handle<FunctionTemplateInfo> desc,
|
327
|
-
Handle<JSObject> instance,
|
328
|
-
bool* pending_exception);
|
329
|
-
|
330
|
-
#define ROOT_ACCESSOR(type, name, camel_name) \
|
331
|
-
static inline Handle<type> name() { \
|
332
|
-
return Handle<type>(BitCast<type**, Object**>( \
|
333
|
-
&Heap::roots_[Heap::k##camel_name##RootIndex])); \
|
334
|
-
}
|
335
|
-
ROOT_LIST(ROOT_ACCESSOR)
|
336
|
-
#undef ROOT_ACCESSOR_ACCESSOR
|
337
|
-
|
338
|
-
#define SYMBOL_ACCESSOR(name, str) \
|
339
|
-
static inline Handle<String> name() { \
|
340
|
-
return Handle<String>(BitCast<String**, Object**>( \
|
341
|
-
&Heap::roots_[Heap::k##name##RootIndex])); \
|
342
|
-
}
|
343
|
-
SYMBOL_LIST(SYMBOL_ACCESSOR)
|
344
|
-
#undef SYMBOL_ACCESSOR
|
345
|
-
|
346
|
-
static Handle<String> hidden_symbol() {
|
347
|
-
return Handle<String>(&Heap::hidden_symbol_);
|
348
|
-
}
|
349
|
-
|
350
|
-
static Handle<SharedFunctionInfo> NewSharedFunctionInfo(
|
351
|
-
Handle<String> name,
|
352
|
-
int number_of_literals,
|
353
|
-
Handle<Code> code,
|
354
|
-
Handle<SerializedScopeInfo> scope_info);
|
355
|
-
static Handle<SharedFunctionInfo> NewSharedFunctionInfo(Handle<String> name);
|
356
|
-
|
357
|
-
static Handle<NumberDictionary> DictionaryAtNumberPut(
|
358
|
-
Handle<NumberDictionary>,
|
359
|
-
uint32_t key,
|
360
|
-
Handle<Object> value);
|
361
|
-
|
362
|
-
#ifdef ENABLE_DEBUGGER_SUPPORT
|
363
|
-
static Handle<DebugInfo> NewDebugInfo(Handle<SharedFunctionInfo> shared);
|
364
|
-
#endif
|
365
|
-
|
366
|
-
// Return a map using the map cache in the global context.
|
367
|
-
// The key the an ordered set of property names.
|
368
|
-
static Handle<Map> ObjectLiteralMapFromCache(Handle<Context> context,
|
369
|
-
Handle<FixedArray> keys);
|
370
|
-
|
371
|
-
// Creates a new FixedArray that holds the data associated with the
|
372
|
-
// atom regexp and stores it in the regexp.
|
373
|
-
static void SetRegExpAtomData(Handle<JSRegExp> regexp,
|
374
|
-
JSRegExp::Type type,
|
375
|
-
Handle<String> source,
|
376
|
-
JSRegExp::Flags flags,
|
377
|
-
Handle<Object> match_pattern);
|
378
|
-
|
379
|
-
// Creates a new FixedArray that holds the data associated with the
|
380
|
-
// irregexp regexp and stores it in the regexp.
|
381
|
-
static void SetRegExpIrregexpData(Handle<JSRegExp> regexp,
|
382
|
-
JSRegExp::Type type,
|
383
|
-
Handle<String> source,
|
384
|
-
JSRegExp::Flags flags,
|
385
|
-
int capture_count);
|
386
|
-
|
387
|
-
private:
|
388
|
-
static Handle<JSFunction> NewFunctionHelper(Handle<String> name,
|
389
|
-
Handle<Object> prototype);
|
390
|
-
|
391
|
-
static Handle<JSFunction> NewFunctionWithoutPrototypeHelper(
|
392
|
-
Handle<String> name);
|
393
|
-
|
394
|
-
static Handle<DescriptorArray> CopyAppendCallbackDescriptors(
|
395
|
-
Handle<DescriptorArray> array,
|
396
|
-
Handle<Object> descriptors);
|
397
|
-
|
398
|
-
// Create a new map cache.
|
399
|
-
static Handle<MapCache> NewMapCache(int at_least_space_for);
|
400
|
-
|
401
|
-
// Update the map cache in the global context with (keys, map)
|
402
|
-
static Handle<MapCache> AddToMapCache(Handle<Context> context,
|
403
|
-
Handle<FixedArray> keys,
|
404
|
-
Handle<Map> map);
|
405
|
-
};
|
406
|
-
|
407
|
-
|
408
|
-
} } // namespace v8::internal
|
409
|
-
|
410
|
-
#endif // V8_FACTORY_H_
|
@@ -1,746 +0,0 @@
|
|
1
|
-
// Copyright 2010 the V8 project authors. All rights reserved.
|
2
|
-
// Redistribution and use in source and binary forms, with or without
|
3
|
-
// modification, are permitted provided that the following conditions are
|
4
|
-
// met:
|
5
|
-
//
|
6
|
-
// * Redistributions of source code must retain the above copyright
|
7
|
-
// notice, this list of conditions and the following disclaimer.
|
8
|
-
// * Redistributions in binary form must reproduce the above
|
9
|
-
// copyright notice, this list of conditions and the following
|
10
|
-
// disclaimer in the documentation and/or other materials provided
|
11
|
-
// with the distribution.
|
12
|
-
// * Neither the name of Google Inc. nor the names of its
|
13
|
-
// contributors may be used to endorse or promote products derived
|
14
|
-
// from this software without specific prior written permission.
|
15
|
-
//
|
16
|
-
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
17
|
-
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
18
|
-
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
19
|
-
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
20
|
-
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
21
|
-
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
22
|
-
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
23
|
-
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
24
|
-
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
25
|
-
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
26
|
-
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
27
|
-
|
28
|
-
#include "v8.h"
|
29
|
-
|
30
|
-
#include "codegen-inl.h"
|
31
|
-
#include "data-flow.h"
|
32
|
-
#include "fast-codegen.h"
|
33
|
-
#include "scopes.h"
|
34
|
-
|
35
|
-
namespace v8 {
|
36
|
-
namespace internal {
|
37
|
-
|
38
|
-
#define BAILOUT(reason) \
|
39
|
-
do { \
|
40
|
-
if (FLAG_trace_bailout) { \
|
41
|
-
PrintF("%s\n", reason); \
|
42
|
-
} \
|
43
|
-
has_supported_syntax_ = false; \
|
44
|
-
return; \
|
45
|
-
} while (false)
|
46
|
-
|
47
|
-
|
48
|
-
#define CHECK_BAILOUT \
|
49
|
-
do { \
|
50
|
-
if (!has_supported_syntax_) return; \
|
51
|
-
} while (false)
|
52
|
-
|
53
|
-
|
54
|
-
void FastCodeGenSyntaxChecker::Check(CompilationInfo* info) {
|
55
|
-
info_ = info;
|
56
|
-
|
57
|
-
// We do not specialize if we do not have a receiver or if it is not a
|
58
|
-
// JS object with fast mode properties.
|
59
|
-
if (!info->has_receiver()) BAILOUT("No receiver");
|
60
|
-
if (!info->receiver()->IsJSObject()) BAILOUT("Receiver is not an object");
|
61
|
-
Handle<JSObject> object = Handle<JSObject>::cast(info->receiver());
|
62
|
-
if (!object->HasFastProperties()) BAILOUT("Receiver is in dictionary mode");
|
63
|
-
|
64
|
-
// We do not support stack or heap slots (both of which require
|
65
|
-
// allocation).
|
66
|
-
Scope* scope = info->scope();
|
67
|
-
if (scope->num_stack_slots() > 0) {
|
68
|
-
BAILOUT("Function has stack-allocated locals");
|
69
|
-
}
|
70
|
-
if (scope->num_heap_slots() > 0) {
|
71
|
-
BAILOUT("Function has context-allocated locals");
|
72
|
-
}
|
73
|
-
|
74
|
-
VisitDeclarations(scope->declarations());
|
75
|
-
CHECK_BAILOUT;
|
76
|
-
|
77
|
-
// We do not support empty function bodies.
|
78
|
-
if (info->function()->body()->is_empty()) {
|
79
|
-
BAILOUT("Function has an empty body");
|
80
|
-
}
|
81
|
-
VisitStatements(info->function()->body());
|
82
|
-
}
|
83
|
-
|
84
|
-
|
85
|
-
void FastCodeGenSyntaxChecker::VisitDeclarations(
|
86
|
-
ZoneList<Declaration*>* decls) {
|
87
|
-
if (!decls->is_empty()) BAILOUT("Function has declarations");
|
88
|
-
}
|
89
|
-
|
90
|
-
|
91
|
-
void FastCodeGenSyntaxChecker::VisitStatements(ZoneList<Statement*>* stmts) {
|
92
|
-
if (stmts->length() != 1) {
|
93
|
-
BAILOUT("Function body is not a singleton statement.");
|
94
|
-
}
|
95
|
-
Visit(stmts->at(0));
|
96
|
-
}
|
97
|
-
|
98
|
-
|
99
|
-
void FastCodeGenSyntaxChecker::VisitDeclaration(Declaration* decl) {
|
100
|
-
UNREACHABLE();
|
101
|
-
}
|
102
|
-
|
103
|
-
|
104
|
-
void FastCodeGenSyntaxChecker::VisitBlock(Block* stmt) {
|
105
|
-
VisitStatements(stmt->statements());
|
106
|
-
}
|
107
|
-
|
108
|
-
|
109
|
-
void FastCodeGenSyntaxChecker::VisitExpressionStatement(
|
110
|
-
ExpressionStatement* stmt) {
|
111
|
-
Visit(stmt->expression());
|
112
|
-
}
|
113
|
-
|
114
|
-
|
115
|
-
void FastCodeGenSyntaxChecker::VisitEmptyStatement(EmptyStatement* stmt) {
|
116
|
-
// Supported.
|
117
|
-
}
|
118
|
-
|
119
|
-
|
120
|
-
void FastCodeGenSyntaxChecker::VisitIfStatement(IfStatement* stmt) {
|
121
|
-
BAILOUT("IfStatement");
|
122
|
-
}
|
123
|
-
|
124
|
-
|
125
|
-
void FastCodeGenSyntaxChecker::VisitContinueStatement(ContinueStatement* stmt) {
|
126
|
-
BAILOUT("Continuestatement");
|
127
|
-
}
|
128
|
-
|
129
|
-
|
130
|
-
void FastCodeGenSyntaxChecker::VisitBreakStatement(BreakStatement* stmt) {
|
131
|
-
BAILOUT("BreakStatement");
|
132
|
-
}
|
133
|
-
|
134
|
-
|
135
|
-
void FastCodeGenSyntaxChecker::VisitReturnStatement(ReturnStatement* stmt) {
|
136
|
-
BAILOUT("ReturnStatement");
|
137
|
-
}
|
138
|
-
|
139
|
-
|
140
|
-
void FastCodeGenSyntaxChecker::VisitWithEnterStatement(
|
141
|
-
WithEnterStatement* stmt) {
|
142
|
-
BAILOUT("WithEnterStatement");
|
143
|
-
}
|
144
|
-
|
145
|
-
|
146
|
-
void FastCodeGenSyntaxChecker::VisitWithExitStatement(WithExitStatement* stmt) {
|
147
|
-
BAILOUT("WithExitStatement");
|
148
|
-
}
|
149
|
-
|
150
|
-
|
151
|
-
void FastCodeGenSyntaxChecker::VisitSwitchStatement(SwitchStatement* stmt) {
|
152
|
-
BAILOUT("SwitchStatement");
|
153
|
-
}
|
154
|
-
|
155
|
-
|
156
|
-
void FastCodeGenSyntaxChecker::VisitDoWhileStatement(DoWhileStatement* stmt) {
|
157
|
-
BAILOUT("DoWhileStatement");
|
158
|
-
}
|
159
|
-
|
160
|
-
|
161
|
-
void FastCodeGenSyntaxChecker::VisitWhileStatement(WhileStatement* stmt) {
|
162
|
-
BAILOUT("WhileStatement");
|
163
|
-
}
|
164
|
-
|
165
|
-
|
166
|
-
void FastCodeGenSyntaxChecker::VisitForStatement(ForStatement* stmt) {
|
167
|
-
BAILOUT("ForStatement");
|
168
|
-
}
|
169
|
-
|
170
|
-
|
171
|
-
void FastCodeGenSyntaxChecker::VisitForInStatement(ForInStatement* stmt) {
|
172
|
-
BAILOUT("ForInStatement");
|
173
|
-
}
|
174
|
-
|
175
|
-
|
176
|
-
void FastCodeGenSyntaxChecker::VisitTryCatchStatement(TryCatchStatement* stmt) {
|
177
|
-
BAILOUT("TryCatchStatement");
|
178
|
-
}
|
179
|
-
|
180
|
-
|
181
|
-
void FastCodeGenSyntaxChecker::VisitTryFinallyStatement(
|
182
|
-
TryFinallyStatement* stmt) {
|
183
|
-
BAILOUT("TryFinallyStatement");
|
184
|
-
}
|
185
|
-
|
186
|
-
|
187
|
-
void FastCodeGenSyntaxChecker::VisitDebuggerStatement(
|
188
|
-
DebuggerStatement* stmt) {
|
189
|
-
BAILOUT("DebuggerStatement");
|
190
|
-
}
|
191
|
-
|
192
|
-
|
193
|
-
void FastCodeGenSyntaxChecker::VisitFunctionLiteral(FunctionLiteral* expr) {
|
194
|
-
BAILOUT("FunctionLiteral");
|
195
|
-
}
|
196
|
-
|
197
|
-
|
198
|
-
void FastCodeGenSyntaxChecker::VisitSharedFunctionInfoLiteral(
|
199
|
-
SharedFunctionInfoLiteral* expr) {
|
200
|
-
BAILOUT("SharedFunctionInfoLiteral");
|
201
|
-
}
|
202
|
-
|
203
|
-
|
204
|
-
void FastCodeGenSyntaxChecker::VisitConditional(Conditional* expr) {
|
205
|
-
BAILOUT("Conditional");
|
206
|
-
}
|
207
|
-
|
208
|
-
|
209
|
-
void FastCodeGenSyntaxChecker::VisitSlot(Slot* expr) {
|
210
|
-
UNREACHABLE();
|
211
|
-
}
|
212
|
-
|
213
|
-
|
214
|
-
void FastCodeGenSyntaxChecker::VisitVariableProxy(VariableProxy* expr) {
|
215
|
-
// Only global variable references are supported.
|
216
|
-
Variable* var = expr->var();
|
217
|
-
if (!var->is_global() || var->is_this()) BAILOUT("Non-global variable");
|
218
|
-
|
219
|
-
// Check if the global variable is existing and non-deletable.
|
220
|
-
if (info()->has_global_object()) {
|
221
|
-
LookupResult lookup;
|
222
|
-
info()->global_object()->Lookup(*expr->name(), &lookup);
|
223
|
-
if (!lookup.IsProperty()) {
|
224
|
-
BAILOUT("Non-existing global variable");
|
225
|
-
}
|
226
|
-
// We do not handle global variables with accessors or interceptors.
|
227
|
-
if (lookup.type() != NORMAL) {
|
228
|
-
BAILOUT("Global variable with accessors or interceptors.");
|
229
|
-
}
|
230
|
-
// We do not handle deletable global variables.
|
231
|
-
if (!lookup.IsDontDelete()) {
|
232
|
-
BAILOUT("Deletable global variable");
|
233
|
-
}
|
234
|
-
}
|
235
|
-
}
|
236
|
-
|
237
|
-
|
238
|
-
void FastCodeGenSyntaxChecker::VisitLiteral(Literal* expr) {
|
239
|
-
BAILOUT("Literal");
|
240
|
-
}
|
241
|
-
|
242
|
-
|
243
|
-
void FastCodeGenSyntaxChecker::VisitRegExpLiteral(RegExpLiteral* expr) {
|
244
|
-
BAILOUT("RegExpLiteral");
|
245
|
-
}
|
246
|
-
|
247
|
-
|
248
|
-
void FastCodeGenSyntaxChecker::VisitObjectLiteral(ObjectLiteral* expr) {
|
249
|
-
BAILOUT("ObjectLiteral");
|
250
|
-
}
|
251
|
-
|
252
|
-
|
253
|
-
void FastCodeGenSyntaxChecker::VisitArrayLiteral(ArrayLiteral* expr) {
|
254
|
-
BAILOUT("ArrayLiteral");
|
255
|
-
}
|
256
|
-
|
257
|
-
|
258
|
-
void FastCodeGenSyntaxChecker::VisitCatchExtensionObject(
|
259
|
-
CatchExtensionObject* expr) {
|
260
|
-
BAILOUT("CatchExtensionObject");
|
261
|
-
}
|
262
|
-
|
263
|
-
|
264
|
-
void FastCodeGenSyntaxChecker::VisitAssignment(Assignment* expr) {
|
265
|
-
// Simple assignments to (named) this properties are supported.
|
266
|
-
if (expr->op() != Token::ASSIGN) BAILOUT("Non-simple assignment");
|
267
|
-
|
268
|
-
Property* prop = expr->target()->AsProperty();
|
269
|
-
if (prop == NULL) BAILOUT("Non-property assignment");
|
270
|
-
VariableProxy* proxy = prop->obj()->AsVariableProxy();
|
271
|
-
if (proxy == NULL || !proxy->var()->is_this()) {
|
272
|
-
BAILOUT("Non-this-property assignment");
|
273
|
-
}
|
274
|
-
if (!prop->key()->IsPropertyName()) {
|
275
|
-
BAILOUT("Non-named-property assignment");
|
276
|
-
}
|
277
|
-
|
278
|
-
// We will only specialize for fields on the object itself.
|
279
|
-
// Expression::IsPropertyName implies that the name is a literal
|
280
|
-
// symbol but we do not assume that.
|
281
|
-
Literal* key = prop->key()->AsLiteral();
|
282
|
-
if (key != NULL && key->handle()->IsString()) {
|
283
|
-
Handle<Object> receiver = info()->receiver();
|
284
|
-
Handle<String> name = Handle<String>::cast(key->handle());
|
285
|
-
LookupResult lookup;
|
286
|
-
receiver->Lookup(*name, &lookup);
|
287
|
-
if (!lookup.IsProperty()) {
|
288
|
-
BAILOUT("Assigned property not found at compile time");
|
289
|
-
}
|
290
|
-
if (lookup.holder() != *receiver) BAILOUT("Non-own property assignment");
|
291
|
-
if (!lookup.type() == FIELD) BAILOUT("Non-field property assignment");
|
292
|
-
} else {
|
293
|
-
UNREACHABLE();
|
294
|
-
BAILOUT("Unexpected non-string-literal property key");
|
295
|
-
}
|
296
|
-
|
297
|
-
Visit(expr->value());
|
298
|
-
}
|
299
|
-
|
300
|
-
|
301
|
-
void FastCodeGenSyntaxChecker::VisitThrow(Throw* expr) {
|
302
|
-
BAILOUT("Throw");
|
303
|
-
}
|
304
|
-
|
305
|
-
|
306
|
-
void FastCodeGenSyntaxChecker::VisitProperty(Property* expr) {
|
307
|
-
// We support named this property references.
|
308
|
-
VariableProxy* proxy = expr->obj()->AsVariableProxy();
|
309
|
-
if (proxy == NULL || !proxy->var()->is_this()) {
|
310
|
-
BAILOUT("Non-this-property reference");
|
311
|
-
}
|
312
|
-
if (!expr->key()->IsPropertyName()) {
|
313
|
-
BAILOUT("Non-named-property reference");
|
314
|
-
}
|
315
|
-
|
316
|
-
// We will only specialize for fields on the object itself.
|
317
|
-
// Expression::IsPropertyName implies that the name is a literal
|
318
|
-
// symbol but we do not assume that.
|
319
|
-
Literal* key = expr->key()->AsLiteral();
|
320
|
-
if (key != NULL && key->handle()->IsString()) {
|
321
|
-
Handle<Object> receiver = info()->receiver();
|
322
|
-
Handle<String> name = Handle<String>::cast(key->handle());
|
323
|
-
LookupResult lookup;
|
324
|
-
receiver->Lookup(*name, &lookup);
|
325
|
-
if (!lookup.IsProperty()) {
|
326
|
-
BAILOUT("Referenced property not found at compile time");
|
327
|
-
}
|
328
|
-
if (lookup.holder() != *receiver) BAILOUT("Non-own property reference");
|
329
|
-
if (!lookup.type() == FIELD) BAILOUT("Non-field property reference");
|
330
|
-
} else {
|
331
|
-
UNREACHABLE();
|
332
|
-
BAILOUT("Unexpected non-string-literal property key");
|
333
|
-
}
|
334
|
-
}
|
335
|
-
|
336
|
-
|
337
|
-
void FastCodeGenSyntaxChecker::VisitCall(Call* expr) {
|
338
|
-
BAILOUT("Call");
|
339
|
-
}
|
340
|
-
|
341
|
-
|
342
|
-
void FastCodeGenSyntaxChecker::VisitCallNew(CallNew* expr) {
|
343
|
-
BAILOUT("CallNew");
|
344
|
-
}
|
345
|
-
|
346
|
-
|
347
|
-
void FastCodeGenSyntaxChecker::VisitCallRuntime(CallRuntime* expr) {
|
348
|
-
BAILOUT("CallRuntime");
|
349
|
-
}
|
350
|
-
|
351
|
-
|
352
|
-
void FastCodeGenSyntaxChecker::VisitUnaryOperation(UnaryOperation* expr) {
|
353
|
-
BAILOUT("UnaryOperation");
|
354
|
-
}
|
355
|
-
|
356
|
-
|
357
|
-
void FastCodeGenSyntaxChecker::VisitCountOperation(CountOperation* expr) {
|
358
|
-
BAILOUT("CountOperation");
|
359
|
-
}
|
360
|
-
|
361
|
-
|
362
|
-
void FastCodeGenSyntaxChecker::VisitBinaryOperation(BinaryOperation* expr) {
|
363
|
-
// We support bitwise OR.
|
364
|
-
switch (expr->op()) {
|
365
|
-
case Token::COMMA:
|
366
|
-
BAILOUT("BinaryOperation COMMA");
|
367
|
-
case Token::OR:
|
368
|
-
BAILOUT("BinaryOperation OR");
|
369
|
-
case Token::AND:
|
370
|
-
BAILOUT("BinaryOperation AND");
|
371
|
-
|
372
|
-
case Token::BIT_OR:
|
373
|
-
// We support expressions nested on the left because they only require
|
374
|
-
// a pair of registers to keep all intermediate values in registers
|
375
|
-
// (i.e., the expression stack has height no more than two).
|
376
|
-
if (!expr->right()->IsLeaf()) BAILOUT("expression nested on right");
|
377
|
-
|
378
|
-
// We do not allow subexpressions with side effects because we
|
379
|
-
// (currently) bail out to the beginning of the full function. The
|
380
|
-
// only expressions with side effects that we would otherwise handle
|
381
|
-
// are assignments.
|
382
|
-
if (expr->left()->AsAssignment() != NULL ||
|
383
|
-
expr->right()->AsAssignment() != NULL) {
|
384
|
-
BAILOUT("subexpression of binary operation has side effects");
|
385
|
-
}
|
386
|
-
|
387
|
-
Visit(expr->left());
|
388
|
-
CHECK_BAILOUT;
|
389
|
-
Visit(expr->right());
|
390
|
-
break;
|
391
|
-
|
392
|
-
case Token::BIT_XOR:
|
393
|
-
BAILOUT("BinaryOperation BIT_XOR");
|
394
|
-
case Token::BIT_AND:
|
395
|
-
BAILOUT("BinaryOperation BIT_AND");
|
396
|
-
case Token::SHL:
|
397
|
-
BAILOUT("BinaryOperation SHL");
|
398
|
-
case Token::SAR:
|
399
|
-
BAILOUT("BinaryOperation SAR");
|
400
|
-
case Token::SHR:
|
401
|
-
BAILOUT("BinaryOperation SHR");
|
402
|
-
case Token::ADD:
|
403
|
-
BAILOUT("BinaryOperation ADD");
|
404
|
-
case Token::SUB:
|
405
|
-
BAILOUT("BinaryOperation SUB");
|
406
|
-
case Token::MUL:
|
407
|
-
BAILOUT("BinaryOperation MUL");
|
408
|
-
case Token::DIV:
|
409
|
-
BAILOUT("BinaryOperation DIV");
|
410
|
-
case Token::MOD:
|
411
|
-
BAILOUT("BinaryOperation MOD");
|
412
|
-
default:
|
413
|
-
UNREACHABLE();
|
414
|
-
}
|
415
|
-
}
|
416
|
-
|
417
|
-
|
418
|
-
void FastCodeGenSyntaxChecker::VisitCompareOperation(CompareOperation* expr) {
|
419
|
-
BAILOUT("CompareOperation");
|
420
|
-
}
|
421
|
-
|
422
|
-
|
423
|
-
void FastCodeGenSyntaxChecker::VisitThisFunction(ThisFunction* expr) {
|
424
|
-
BAILOUT("ThisFunction");
|
425
|
-
}
|
426
|
-
|
427
|
-
#undef BAILOUT
|
428
|
-
#undef CHECK_BAILOUT
|
429
|
-
|
430
|
-
|
431
|
-
#define __ ACCESS_MASM(masm())
|
432
|
-
|
433
|
-
Handle<Code> FastCodeGenerator::MakeCode(CompilationInfo* info) {
|
434
|
-
// Label the AST before calling MakeCodePrologue, so AST node numbers are
|
435
|
-
// printed with the AST.
|
436
|
-
AstLabeler labeler;
|
437
|
-
labeler.Label(info);
|
438
|
-
|
439
|
-
CodeGenerator::MakeCodePrologue(info);
|
440
|
-
|
441
|
-
const int kInitialBufferSize = 4 * KB;
|
442
|
-
MacroAssembler masm(NULL, kInitialBufferSize);
|
443
|
-
|
444
|
-
// Generate the fast-path code.
|
445
|
-
FastCodeGenerator fast_cgen(&masm);
|
446
|
-
fast_cgen.Generate(info);
|
447
|
-
if (fast_cgen.HasStackOverflow()) {
|
448
|
-
ASSERT(!Top::has_pending_exception());
|
449
|
-
return Handle<Code>::null();
|
450
|
-
}
|
451
|
-
|
452
|
-
// Generate the full code for the function in bailout mode, using the same
|
453
|
-
// macro assembler.
|
454
|
-
CodeGenerator cgen(&masm);
|
455
|
-
CodeGeneratorScope scope(&cgen);
|
456
|
-
info->set_mode(CompilationInfo::SECONDARY);
|
457
|
-
cgen.Generate(info);
|
458
|
-
if (cgen.HasStackOverflow()) {
|
459
|
-
ASSERT(!Top::has_pending_exception());
|
460
|
-
return Handle<Code>::null();
|
461
|
-
}
|
462
|
-
|
463
|
-
Code::Flags flags = Code::ComputeFlags(Code::FUNCTION, NOT_IN_LOOP);
|
464
|
-
return CodeGenerator::MakeCodeEpilogue(&masm, flags, info);
|
465
|
-
}
|
466
|
-
|
467
|
-
|
468
|
-
void FastCodeGenerator::VisitDeclaration(Declaration* decl) {
|
469
|
-
UNREACHABLE();
|
470
|
-
}
|
471
|
-
|
472
|
-
|
473
|
-
void FastCodeGenerator::VisitBlock(Block* stmt) {
|
474
|
-
VisitStatements(stmt->statements());
|
475
|
-
}
|
476
|
-
|
477
|
-
|
478
|
-
void FastCodeGenerator::VisitExpressionStatement(ExpressionStatement* stmt) {
|
479
|
-
Visit(stmt->expression());
|
480
|
-
}
|
481
|
-
|
482
|
-
|
483
|
-
void FastCodeGenerator::VisitEmptyStatement(EmptyStatement* stmt) {
|
484
|
-
// Nothing to do.
|
485
|
-
}
|
486
|
-
|
487
|
-
|
488
|
-
void FastCodeGenerator::VisitIfStatement(IfStatement* stmt) {
|
489
|
-
UNREACHABLE();
|
490
|
-
}
|
491
|
-
|
492
|
-
|
493
|
-
void FastCodeGenerator::VisitContinueStatement(ContinueStatement* stmt) {
|
494
|
-
UNREACHABLE();
|
495
|
-
}
|
496
|
-
|
497
|
-
|
498
|
-
void FastCodeGenerator::VisitBreakStatement(BreakStatement* stmt) {
|
499
|
-
UNREACHABLE();
|
500
|
-
}
|
501
|
-
|
502
|
-
|
503
|
-
void FastCodeGenerator::VisitReturnStatement(ReturnStatement* stmt) {
|
504
|
-
UNREACHABLE();
|
505
|
-
}
|
506
|
-
|
507
|
-
|
508
|
-
void FastCodeGenerator::VisitWithEnterStatement(WithEnterStatement* stmt) {
|
509
|
-
UNREACHABLE();
|
510
|
-
}
|
511
|
-
|
512
|
-
|
513
|
-
void FastCodeGenerator::VisitWithExitStatement(WithExitStatement* stmt) {
|
514
|
-
UNREACHABLE();
|
515
|
-
}
|
516
|
-
|
517
|
-
|
518
|
-
void FastCodeGenerator::VisitSwitchStatement(SwitchStatement* stmt) {
|
519
|
-
UNREACHABLE();
|
520
|
-
}
|
521
|
-
|
522
|
-
|
523
|
-
void FastCodeGenerator::VisitDoWhileStatement(DoWhileStatement* stmt) {
|
524
|
-
UNREACHABLE();
|
525
|
-
}
|
526
|
-
|
527
|
-
|
528
|
-
void FastCodeGenerator::VisitWhileStatement(WhileStatement* stmt) {
|
529
|
-
UNREACHABLE();
|
530
|
-
}
|
531
|
-
|
532
|
-
|
533
|
-
void FastCodeGenerator::VisitForStatement(ForStatement* stmt) {
|
534
|
-
UNREACHABLE();
|
535
|
-
}
|
536
|
-
|
537
|
-
|
538
|
-
void FastCodeGenerator::VisitForInStatement(ForInStatement* stmt) {
|
539
|
-
UNREACHABLE();
|
540
|
-
}
|
541
|
-
|
542
|
-
|
543
|
-
void FastCodeGenerator::VisitTryCatchStatement(TryCatchStatement* stmt) {
|
544
|
-
UNREACHABLE();
|
545
|
-
}
|
546
|
-
|
547
|
-
|
548
|
-
void FastCodeGenerator::VisitTryFinallyStatement(TryFinallyStatement* stmt) {
|
549
|
-
UNREACHABLE();
|
550
|
-
}
|
551
|
-
|
552
|
-
|
553
|
-
void FastCodeGenerator::VisitDebuggerStatement(DebuggerStatement* stmt) {
|
554
|
-
UNREACHABLE();
|
555
|
-
}
|
556
|
-
|
557
|
-
|
558
|
-
void FastCodeGenerator::VisitFunctionLiteral(FunctionLiteral* expr) {
|
559
|
-
UNREACHABLE();
|
560
|
-
}
|
561
|
-
|
562
|
-
|
563
|
-
void FastCodeGenerator::VisitSharedFunctionInfoLiteral(
|
564
|
-
SharedFunctionInfoLiteral* expr) {
|
565
|
-
UNREACHABLE();
|
566
|
-
}
|
567
|
-
|
568
|
-
|
569
|
-
void FastCodeGenerator::VisitConditional(Conditional* expr) {
|
570
|
-
UNREACHABLE();
|
571
|
-
}
|
572
|
-
|
573
|
-
|
574
|
-
void FastCodeGenerator::VisitSlot(Slot* expr) {
|
575
|
-
UNREACHABLE();
|
576
|
-
}
|
577
|
-
|
578
|
-
|
579
|
-
void FastCodeGenerator::VisitVariableProxy(VariableProxy* expr) {
|
580
|
-
ASSERT(expr->var()->is_global() && !expr->var()->is_this());
|
581
|
-
// Check if we can compile a global variable load directly from the cell.
|
582
|
-
ASSERT(info()->has_global_object());
|
583
|
-
LookupResult lookup;
|
584
|
-
info()->global_object()->Lookup(*expr->name(), &lookup);
|
585
|
-
// We only support normal (non-accessor/interceptor) DontDelete properties
|
586
|
-
// for now.
|
587
|
-
ASSERT(lookup.IsProperty());
|
588
|
-
ASSERT_EQ(NORMAL, lookup.type());
|
589
|
-
ASSERT(lookup.IsDontDelete());
|
590
|
-
Handle<Object> cell(info()->global_object()->GetPropertyCell(&lookup));
|
591
|
-
|
592
|
-
// Global variable lookups do not have side effects, so we do not need to
|
593
|
-
// emit code if we are in an effect context.
|
594
|
-
if (!destination().is(no_reg)) {
|
595
|
-
Comment cmnt(masm(), ";; Global");
|
596
|
-
if (FLAG_print_ir) {
|
597
|
-
SmartPointer<char> name = expr->name()->ToCString();
|
598
|
-
PrintF("%d: t%d = Global(%s)\n", expr->num(),
|
599
|
-
expr->num(), *name);
|
600
|
-
}
|
601
|
-
EmitGlobalVariableLoad(cell);
|
602
|
-
}
|
603
|
-
}
|
604
|
-
|
605
|
-
|
606
|
-
void FastCodeGenerator::VisitLiteral(Literal* expr) {
|
607
|
-
UNREACHABLE();
|
608
|
-
}
|
609
|
-
|
610
|
-
|
611
|
-
void FastCodeGenerator::VisitRegExpLiteral(RegExpLiteral* expr) {
|
612
|
-
UNREACHABLE();
|
613
|
-
}
|
614
|
-
|
615
|
-
|
616
|
-
void FastCodeGenerator::VisitObjectLiteral(ObjectLiteral* expr) {
|
617
|
-
UNREACHABLE();
|
618
|
-
}
|
619
|
-
|
620
|
-
|
621
|
-
void FastCodeGenerator::VisitArrayLiteral(ArrayLiteral* expr) {
|
622
|
-
UNREACHABLE();
|
623
|
-
}
|
624
|
-
|
625
|
-
|
626
|
-
void FastCodeGenerator::VisitCatchExtensionObject(CatchExtensionObject* expr) {
|
627
|
-
UNREACHABLE();
|
628
|
-
}
|
629
|
-
|
630
|
-
|
631
|
-
void FastCodeGenerator::VisitAssignment(Assignment* expr) {
|
632
|
-
// Known to be a simple this property assignment. Effectively a unary
|
633
|
-
// operation.
|
634
|
-
{ Register my_destination = destination();
|
635
|
-
set_destination(accumulator0());
|
636
|
-
Visit(expr->value());
|
637
|
-
set_destination(my_destination);
|
638
|
-
}
|
639
|
-
|
640
|
-
Property* prop = expr->target()->AsProperty();
|
641
|
-
ASSERT_NOT_NULL(prop);
|
642
|
-
ASSERT_NOT_NULL(prop->obj()->AsVariableProxy());
|
643
|
-
ASSERT(prop->obj()->AsVariableProxy()->var()->is_this());
|
644
|
-
ASSERT(prop->key()->IsPropertyName());
|
645
|
-
Handle<String> name =
|
646
|
-
Handle<String>::cast(prop->key()->AsLiteral()->handle());
|
647
|
-
|
648
|
-
Comment cmnt(masm(), ";; Store to this");
|
649
|
-
if (FLAG_print_ir) {
|
650
|
-
SmartPointer<char> name_string = name->ToCString();
|
651
|
-
PrintF("%d: ", expr->num());
|
652
|
-
if (!destination().is(no_reg)) PrintF("t%d = ", expr->num());
|
653
|
-
PrintF("Store(this, \"%s\", t%d)\n", *name_string,
|
654
|
-
expr->value()->num());
|
655
|
-
}
|
656
|
-
|
657
|
-
EmitThisPropertyStore(name);
|
658
|
-
}
|
659
|
-
|
660
|
-
|
661
|
-
void FastCodeGenerator::VisitThrow(Throw* expr) {
|
662
|
-
UNREACHABLE();
|
663
|
-
}
|
664
|
-
|
665
|
-
|
666
|
-
void FastCodeGenerator::VisitProperty(Property* expr) {
|
667
|
-
ASSERT_NOT_NULL(expr->obj()->AsVariableProxy());
|
668
|
-
ASSERT(expr->obj()->AsVariableProxy()->var()->is_this());
|
669
|
-
ASSERT(expr->key()->IsPropertyName());
|
670
|
-
if (!destination().is(no_reg)) {
|
671
|
-
Handle<String> name =
|
672
|
-
Handle<String>::cast(expr->key()->AsLiteral()->handle());
|
673
|
-
|
674
|
-
Comment cmnt(masm(), ";; Load from this");
|
675
|
-
if (FLAG_print_ir) {
|
676
|
-
SmartPointer<char> name_string = name->ToCString();
|
677
|
-
PrintF("%d: t%d = Load(this, \"%s\")\n",
|
678
|
-
expr->num(), expr->num(), *name_string);
|
679
|
-
}
|
680
|
-
EmitThisPropertyLoad(name);
|
681
|
-
}
|
682
|
-
}
|
683
|
-
|
684
|
-
|
685
|
-
void FastCodeGenerator::VisitCall(Call* expr) {
|
686
|
-
UNREACHABLE();
|
687
|
-
}
|
688
|
-
|
689
|
-
|
690
|
-
void FastCodeGenerator::VisitCallNew(CallNew* expr) {
|
691
|
-
UNREACHABLE();
|
692
|
-
}
|
693
|
-
|
694
|
-
|
695
|
-
void FastCodeGenerator::VisitCallRuntime(CallRuntime* expr) {
|
696
|
-
UNREACHABLE();
|
697
|
-
}
|
698
|
-
|
699
|
-
|
700
|
-
void FastCodeGenerator::VisitUnaryOperation(UnaryOperation* expr) {
|
701
|
-
UNREACHABLE();
|
702
|
-
}
|
703
|
-
|
704
|
-
|
705
|
-
void FastCodeGenerator::VisitCountOperation(CountOperation* expr) {
|
706
|
-
UNREACHABLE();
|
707
|
-
}
|
708
|
-
|
709
|
-
|
710
|
-
void FastCodeGenerator::VisitBinaryOperation(BinaryOperation* expr) {
|
711
|
-
// We support limited binary operations: bitwise OR only allowed to be
|
712
|
-
// nested on the left.
|
713
|
-
ASSERT(expr->op() == Token::BIT_OR);
|
714
|
-
ASSERT(expr->right()->IsLeaf());
|
715
|
-
|
716
|
-
{ Register my_destination = destination();
|
717
|
-
set_destination(accumulator1());
|
718
|
-
Visit(expr->left());
|
719
|
-
set_destination(accumulator0());
|
720
|
-
Visit(expr->right());
|
721
|
-
set_destination(my_destination);
|
722
|
-
}
|
723
|
-
|
724
|
-
Comment cmnt(masm(), ";; BIT_OR");
|
725
|
-
if (FLAG_print_ir) {
|
726
|
-
PrintF("%d: ", expr->num());
|
727
|
-
if (!destination().is(no_reg)) PrintF("t%d = ", expr->num());
|
728
|
-
PrintF("BIT_OR(t%d, t%d)\n", expr->left()->num(), expr->right()->num());
|
729
|
-
}
|
730
|
-
EmitBitOr();
|
731
|
-
}
|
732
|
-
|
733
|
-
|
734
|
-
void FastCodeGenerator::VisitCompareOperation(CompareOperation* expr) {
|
735
|
-
UNREACHABLE();
|
736
|
-
}
|
737
|
-
|
738
|
-
|
739
|
-
void FastCodeGenerator::VisitThisFunction(ThisFunction* expr) {
|
740
|
-
UNREACHABLE();
|
741
|
-
}
|
742
|
-
|
743
|
-
#undef __
|
744
|
-
|
745
|
-
|
746
|
-
} } // namespace v8::internal
|