therubyracer 0.9.0beta2 → 0.9.0beta3
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/.gitmodules +3 -0
- data/ext/v8/upstream/Makefile +1 -2
- data/ext/v8/upstream/v8/.gitignore +33 -0
- data/ext/v8/upstream/v8/AUTHORS +42 -0
- data/ext/v8/upstream/v8/ChangeLog +2663 -0
- data/ext/v8/upstream/{3.1.8 → v8}/LICENSE +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/LICENSE.strongtalk +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/LICENSE.v8 +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/LICENSE.valgrind +0 -0
- data/ext/v8/upstream/v8/SConstruct +1473 -0
- data/ext/v8/upstream/{3.1.8 → v8}/build/README.txt +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/build/all.gyp +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/build/armu.gypi +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/build/common.gypi +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/build/gyp_v8 +0 -0
- data/ext/v8/upstream/v8/include/v8-debug.h +394 -0
- data/ext/v8/upstream/v8/include/v8-preparser.h +116 -0
- data/ext/v8/upstream/v8/include/v8-profiler.h +505 -0
- data/ext/v8/upstream/v8/include/v8-testing.h +104 -0
- data/ext/v8/upstream/v8/include/v8.h +4000 -0
- data/ext/v8/upstream/{3.1.8 → v8}/include/v8stdint.h +0 -0
- data/ext/v8/upstream/v8/preparser/SConscript +38 -0
- data/ext/v8/upstream/v8/preparser/preparser-process.cc +169 -0
- data/ext/v8/upstream/v8/src/SConscript +380 -0
- data/ext/v8/upstream/v8/src/accessors.cc +766 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/accessors.h +0 -0
- data/ext/v8/upstream/v8/src/allocation-inl.h +49 -0
- data/ext/v8/upstream/v8/src/allocation.cc +122 -0
- data/ext/v8/upstream/v8/src/allocation.h +143 -0
- data/ext/v8/upstream/v8/src/api.cc +5678 -0
- data/ext/v8/upstream/v8/src/api.h +572 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/apinatives.js +0 -0
- data/ext/v8/upstream/v8/src/apiutils.h +73 -0
- data/ext/v8/upstream/v8/src/arguments.h +116 -0
- data/ext/v8/upstream/v8/src/arm/assembler-arm-inl.h +353 -0
- data/ext/v8/upstream/v8/src/arm/assembler-arm.cc +2877 -0
- data/ext/v8/upstream/v8/src/arm/assembler-arm.h +1382 -0
- data/ext/v8/upstream/v8/src/arm/builtins-arm.cc +1634 -0
- data/ext/v8/upstream/v8/src/arm/code-stubs-arm.cc +6917 -0
- data/ext/v8/upstream/v8/src/arm/code-stubs-arm.h +623 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/arm/codegen-arm-inl.h +0 -0
- data/ext/v8/upstream/v8/src/arm/codegen-arm.cc +7437 -0
- data/ext/v8/upstream/v8/src/arm/codegen-arm.h +595 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/arm/constants-arm.cc +0 -0
- data/ext/v8/upstream/v8/src/arm/constants-arm.h +778 -0
- data/ext/v8/upstream/v8/src/arm/cpu-arm.cc +149 -0
- data/ext/v8/upstream/v8/src/arm/debug-arm.cc +317 -0
- data/ext/v8/upstream/v8/src/arm/deoptimizer-arm.cc +737 -0
- data/ext/v8/upstream/v8/src/arm/disasm-arm.cc +1503 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/arm/frames-arm.cc +0 -0
- data/ext/v8/upstream/v8/src/arm/frames-arm.h +168 -0
- data/ext/v8/upstream/v8/src/arm/full-codegen-arm.cc +4374 -0
- data/ext/v8/upstream/v8/src/arm/ic-arm.cc +1793 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/arm/jump-target-arm.cc +0 -0
- data/ext/v8/upstream/v8/src/arm/lithium-arm.cc +2120 -0
- data/ext/v8/upstream/v8/src/arm/lithium-arm.h +2179 -0
- data/ext/v8/upstream/v8/src/arm/lithium-codegen-arm.cc +4132 -0
- data/ext/v8/upstream/v8/src/arm/lithium-codegen-arm.h +329 -0
- data/ext/v8/upstream/v8/src/arm/lithium-gap-resolver-arm.cc +305 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/arm/lithium-gap-resolver-arm.h +0 -0
- data/ext/v8/upstream/v8/src/arm/macro-assembler-arm.cc +2939 -0
- data/ext/v8/upstream/v8/src/arm/macro-assembler-arm.h +1071 -0
- data/ext/v8/upstream/v8/src/arm/regexp-macro-assembler-arm.cc +1287 -0
- data/ext/v8/upstream/v8/src/arm/regexp-macro-assembler-arm.h +253 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/arm/register-allocator-arm-inl.h +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/arm/register-allocator-arm.cc +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/arm/register-allocator-arm.h +0 -0
- data/ext/v8/upstream/v8/src/arm/simulator-arm.cc +3288 -0
- data/ext/v8/upstream/v8/src/arm/simulator-arm.h +413 -0
- data/ext/v8/upstream/v8/src/arm/stub-cache-arm.cc +4034 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/arm/virtual-frame-arm-inl.h +0 -0
- data/ext/v8/upstream/v8/src/arm/virtual-frame-arm.cc +843 -0
- data/ext/v8/upstream/v8/src/arm/virtual-frame-arm.h +523 -0
- data/ext/v8/upstream/v8/src/array.js +1249 -0
- data/ext/v8/upstream/v8/src/assembler.cc +1067 -0
- data/ext/v8/upstream/v8/src/assembler.h +823 -0
- data/ext/v8/upstream/v8/src/ast-inl.h +112 -0
- data/ext/v8/upstream/v8/src/ast.cc +1078 -0
- data/ext/v8/upstream/v8/src/ast.h +2234 -0
- data/ext/v8/upstream/v8/src/atomicops.h +167 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/atomicops_internals_arm_gcc.h +0 -0
- data/ext/v8/upstream/v8/src/atomicops_internals_mips_gcc.h +169 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/atomicops_internals_x86_gcc.cc +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/atomicops_internals_x86_gcc.h +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/atomicops_internals_x86_macosx.h +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/atomicops_internals_x86_msvc.h +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/bignum-dtoa.cc +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/bignum-dtoa.h +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/bignum.cc +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/bignum.h +0 -0
- data/ext/v8/upstream/v8/src/bootstrapper.cc +2138 -0
- data/ext/v8/upstream/v8/src/bootstrapper.h +185 -0
- data/ext/v8/upstream/v8/src/builtins.cc +1708 -0
- data/ext/v8/upstream/v8/src/builtins.h +368 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/bytecodes-irregexp.h +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/cached-powers.cc +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/cached-powers.h +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/char-predicates-inl.h +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/char-predicates.h +0 -0
- data/ext/v8/upstream/v8/src/checks.cc +110 -0
- data/ext/v8/upstream/v8/src/checks.h +296 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/circular-queue-inl.h +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/circular-queue.cc +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/circular-queue.h +0 -0
- data/ext/v8/upstream/v8/src/code-stubs.cc +240 -0
- data/ext/v8/upstream/v8/src/code-stubs.h +971 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/code.h +0 -0
- data/ext/v8/upstream/v8/src/codegen-inl.h +68 -0
- data/ext/v8/upstream/v8/src/codegen.cc +505 -0
- data/ext/v8/upstream/v8/src/codegen.h +245 -0
- data/ext/v8/upstream/v8/src/compilation-cache.cc +540 -0
- data/ext/v8/upstream/v8/src/compilation-cache.h +287 -0
- data/ext/v8/upstream/v8/src/compiler.cc +792 -0
- data/ext/v8/upstream/v8/src/compiler.h +307 -0
- data/ext/v8/upstream/v8/src/contexts.cc +327 -0
- data/ext/v8/upstream/v8/src/contexts.h +382 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/conversions-inl.h +0 -0
- data/ext/v8/upstream/v8/src/conversions.cc +1125 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/conversions.h +0 -0
- data/ext/v8/upstream/v8/src/counters.cc +93 -0
- data/ext/v8/upstream/v8/src/counters.h +254 -0
- data/ext/v8/upstream/v8/src/cpu-profiler-inl.h +101 -0
- data/ext/v8/upstream/v8/src/cpu-profiler.cc +606 -0
- data/ext/v8/upstream/v8/src/cpu-profiler.h +305 -0
- data/ext/v8/upstream/v8/src/cpu.h +67 -0
- data/ext/v8/upstream/v8/src/d8-debug.cc +367 -0
- data/ext/v8/upstream/v8/src/d8-debug.h +158 -0
- data/ext/v8/upstream/v8/src/d8-posix.cc +695 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/d8-readline.cc +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/d8-windows.cc +0 -0
- data/ext/v8/upstream/v8/src/d8.cc +796 -0
- data/ext/v8/upstream/v8/src/d8.gyp +88 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/d8.h +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/d8.js +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/data-flow.cc +0 -0
- data/ext/v8/upstream/v8/src/data-flow.h +379 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/date.js +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/dateparser-inl.h +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/dateparser.cc +0 -0
- data/ext/v8/upstream/v8/src/dateparser.h +265 -0
- data/ext/v8/upstream/v8/src/debug-agent.cc +447 -0
- data/ext/v8/upstream/v8/src/debug-agent.h +129 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/debug-debugger.js +0 -0
- data/ext/v8/upstream/v8/src/debug.cc +3188 -0
- data/ext/v8/upstream/v8/src/debug.h +1055 -0
- data/ext/v8/upstream/v8/src/deoptimizer.cc +1296 -0
- data/ext/v8/upstream/v8/src/deoptimizer.h +629 -0
- data/ext/v8/upstream/v8/src/disasm.h +80 -0
- data/ext/v8/upstream/v8/src/disassembler.cc +339 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/disassembler.h +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/diy-fp.cc +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/diy-fp.h +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/double.h +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/dtoa.cc +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/dtoa.h +0 -0
- data/ext/v8/upstream/v8/src/execution.cc +791 -0
- data/ext/v8/upstream/v8/src/execution.h +291 -0
- data/ext/v8/upstream/v8/src/extensions/experimental/break-iterator.cc +250 -0
- data/ext/v8/upstream/v8/src/extensions/experimental/break-iterator.h +89 -0
- data/ext/v8/upstream/v8/src/extensions/experimental/experimental.gyp +55 -0
- data/ext/v8/upstream/v8/src/extensions/experimental/i18n-extension.cc +284 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/extensions/experimental/i18n-extension.h +0 -0
- data/ext/v8/upstream/v8/src/extensions/externalize-string-extension.cc +141 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/extensions/externalize-string-extension.h +0 -0
- data/ext/v8/upstream/v8/src/extensions/gc-extension.cc +58 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/extensions/gc-extension.h +0 -0
- data/ext/v8/upstream/v8/src/factory.cc +1194 -0
- data/ext/v8/upstream/v8/src/factory.h +436 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/fast-dtoa.cc +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/fast-dtoa.h +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/fixed-dtoa.cc +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/fixed-dtoa.h +0 -0
- data/ext/v8/upstream/v8/src/flag-definitions.h +556 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/flags.cc +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/flags.h +0 -0
- data/ext/v8/upstream/v8/src/frame-element.cc +37 -0
- data/ext/v8/upstream/v8/src/frame-element.h +269 -0
- data/ext/v8/upstream/v8/src/frames-inl.h +236 -0
- data/ext/v8/upstream/v8/src/frames.cc +1273 -0
- data/ext/v8/upstream/v8/src/frames.h +854 -0
- data/ext/v8/upstream/v8/src/full-codegen.cc +1385 -0
- data/ext/v8/upstream/v8/src/full-codegen.h +753 -0
- data/ext/v8/upstream/v8/src/func-name-inferrer.cc +91 -0
- data/ext/v8/upstream/v8/src/func-name-inferrer.h +111 -0
- data/ext/v8/upstream/v8/src/gdb-jit.cc +1548 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/gdb-jit.h +0 -0
- data/ext/v8/upstream/v8/src/global-handles.cc +596 -0
- data/ext/v8/upstream/v8/src/global-handles.h +239 -0
- data/ext/v8/upstream/v8/src/globals.h +325 -0
- data/ext/v8/upstream/v8/src/handles-inl.h +177 -0
- data/ext/v8/upstream/v8/src/handles.cc +965 -0
- data/ext/v8/upstream/v8/src/handles.h +372 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/hashmap.cc +0 -0
- data/ext/v8/upstream/v8/src/hashmap.h +121 -0
- data/ext/v8/upstream/v8/src/heap-inl.h +703 -0
- data/ext/v8/upstream/v8/src/heap-profiler.cc +1173 -0
- data/ext/v8/upstream/v8/src/heap-profiler.h +396 -0
- data/ext/v8/upstream/v8/src/heap.cc +5856 -0
- data/ext/v8/upstream/v8/src/heap.h +2264 -0
- data/ext/v8/upstream/v8/src/hydrogen-instructions.cc +1639 -0
- data/ext/v8/upstream/v8/src/hydrogen-instructions.h +3657 -0
- data/ext/v8/upstream/v8/src/hydrogen.cc +6011 -0
- data/ext/v8/upstream/v8/src/hydrogen.h +1137 -0
- data/ext/v8/upstream/v8/src/ia32/assembler-ia32-inl.h +430 -0
- data/ext/v8/upstream/v8/src/ia32/assembler-ia32.cc +2846 -0
- data/ext/v8/upstream/v8/src/ia32/assembler-ia32.h +1159 -0
- data/ext/v8/upstream/v8/src/ia32/builtins-ia32.cc +1596 -0
- data/ext/v8/upstream/v8/src/ia32/code-stubs-ia32.cc +6549 -0
- data/ext/v8/upstream/v8/src/ia32/code-stubs-ia32.h +495 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/ia32/codegen-ia32-inl.h +0 -0
- data/ext/v8/upstream/v8/src/ia32/codegen-ia32.cc +10385 -0
- data/ext/v8/upstream/v8/src/ia32/codegen-ia32.h +801 -0
- data/ext/v8/upstream/v8/src/ia32/cpu-ia32.cc +88 -0
- data/ext/v8/upstream/v8/src/ia32/debug-ia32.cc +312 -0
- data/ext/v8/upstream/v8/src/ia32/deoptimizer-ia32.cc +774 -0
- data/ext/v8/upstream/v8/src/ia32/disasm-ia32.cc +1620 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/ia32/frames-ia32.cc +0 -0
- data/ext/v8/upstream/v8/src/ia32/frames-ia32.h +140 -0
- data/ext/v8/upstream/v8/src/ia32/full-codegen-ia32.cc +4357 -0
- data/ext/v8/upstream/v8/src/ia32/ic-ia32.cc +1779 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/ia32/jump-target-ia32.cc +0 -0
- data/ext/v8/upstream/v8/src/ia32/lithium-codegen-ia32.cc +4158 -0
- data/ext/v8/upstream/v8/src/ia32/lithium-codegen-ia32.h +318 -0
- data/ext/v8/upstream/v8/src/ia32/lithium-gap-resolver-ia32.cc +466 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/ia32/lithium-gap-resolver-ia32.h +0 -0
- data/ext/v8/upstream/v8/src/ia32/lithium-ia32.cc +2181 -0
- data/ext/v8/upstream/v8/src/ia32/lithium-ia32.h +2235 -0
- data/ext/v8/upstream/v8/src/ia32/macro-assembler-ia32.cc +2056 -0
- data/ext/v8/upstream/v8/src/ia32/macro-assembler-ia32.h +807 -0
- data/ext/v8/upstream/v8/src/ia32/regexp-macro-assembler-ia32.cc +1264 -0
- data/ext/v8/upstream/v8/src/ia32/regexp-macro-assembler-ia32.h +216 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/ia32/register-allocator-ia32-inl.h +0 -0
- data/ext/v8/upstream/v8/src/ia32/register-allocator-ia32.cc +157 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/ia32/register-allocator-ia32.h +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/ia32/simulator-ia32.cc +0 -0
- data/ext/v8/upstream/v8/src/ia32/simulator-ia32.h +72 -0
- data/ext/v8/upstream/v8/src/ia32/stub-cache-ia32.cc +3711 -0
- data/ext/v8/upstream/v8/src/ia32/virtual-frame-ia32.cc +1366 -0
- data/ext/v8/upstream/v8/src/ia32/virtual-frame-ia32.h +650 -0
- data/ext/v8/upstream/v8/src/ic-inl.h +130 -0
- data/ext/v8/upstream/v8/src/ic.cc +2389 -0
- data/ext/v8/upstream/v8/src/ic.h +675 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/inspector.cc +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/inspector.h +0 -0
- data/ext/v8/upstream/v8/src/interpreter-irregexp.cc +659 -0
- data/ext/v8/upstream/v8/src/interpreter-irregexp.h +49 -0
- data/ext/v8/upstream/v8/src/isolate.cc +883 -0
- data/ext/v8/upstream/v8/src/isolate.h +1306 -0
- data/ext/v8/upstream/v8/src/json.js +342 -0
- data/ext/v8/upstream/v8/src/jsregexp.cc +5371 -0
- data/ext/v8/upstream/v8/src/jsregexp.h +1483 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/jump-target-heavy-inl.h +0 -0
- data/ext/v8/upstream/v8/src/jump-target-heavy.cc +427 -0
- data/ext/v8/upstream/v8/src/jump-target-heavy.h +238 -0
- data/ext/v8/upstream/v8/src/jump-target-inl.h +48 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/jump-target-light-inl.h +0 -0
- data/ext/v8/upstream/v8/src/jump-target-light.cc +111 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/jump-target-light.h +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/jump-target.cc +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/jump-target.h +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/list-inl.h +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/list.h +0 -0
- data/ext/v8/upstream/v8/src/lithium-allocator-inl.h +142 -0
- data/ext/v8/upstream/v8/src/lithium-allocator.cc +2105 -0
- data/ext/v8/upstream/v8/src/lithium-allocator.h +630 -0
- data/ext/v8/upstream/v8/src/lithium.cc +169 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/lithium.h +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/liveedit-debugger.js +0 -0
- data/ext/v8/upstream/v8/src/liveedit.cc +1693 -0
- data/ext/v8/upstream/v8/src/liveedit.h +179 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/liveobjectlist-inl.h +0 -0
- data/ext/v8/upstream/v8/src/liveobjectlist.cc +2589 -0
- data/ext/v8/upstream/v8/src/liveobjectlist.h +322 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/log-inl.h +0 -0
- data/ext/v8/upstream/v8/src/log-utils.cc +423 -0
- data/ext/v8/upstream/v8/src/log-utils.h +229 -0
- data/ext/v8/upstream/v8/src/log.cc +1666 -0
- data/ext/v8/upstream/v8/src/log.h +446 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/macro-assembler.h +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/macros.py +0 -0
- data/ext/v8/upstream/v8/src/mark-compact.cc +3092 -0
- data/ext/v8/upstream/v8/src/mark-compact.h +506 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/math.js +0 -0
- data/ext/v8/upstream/v8/src/messages.cc +166 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/messages.h +0 -0
- data/ext/v8/upstream/v8/src/messages.js +1090 -0
- data/ext/v8/upstream/v8/src/mips/assembler-mips-inl.h +335 -0
- data/ext/v8/upstream/v8/src/mips/assembler-mips.cc +2093 -0
- data/ext/v8/upstream/v8/src/mips/assembler-mips.h +1066 -0
- data/ext/v8/upstream/v8/src/mips/builtins-mips.cc +148 -0
- data/ext/v8/upstream/v8/src/mips/code-stubs-mips.cc +752 -0
- data/ext/v8/upstream/v8/src/mips/code-stubs-mips.h +511 -0
- data/ext/v8/upstream/v8/src/mips/codegen-mips-inl.h +64 -0
- data/ext/v8/upstream/v8/src/mips/codegen-mips.cc +1213 -0
- data/ext/v8/upstream/v8/src/mips/codegen-mips.h +633 -0
- data/ext/v8/upstream/v8/src/mips/constants-mips.cc +352 -0
- data/ext/v8/upstream/v8/src/mips/constants-mips.h +723 -0
- data/ext/v8/upstream/v8/src/mips/cpu-mips.cc +90 -0
- data/ext/v8/upstream/v8/src/mips/debug-mips.cc +155 -0
- data/ext/v8/upstream/v8/src/mips/deoptimizer-mips.cc +91 -0
- data/ext/v8/upstream/v8/src/mips/disasm-mips.cc +1023 -0
- data/ext/v8/upstream/v8/src/mips/frames-mips.cc +48 -0
- data/ext/v8/upstream/v8/src/mips/frames-mips.h +179 -0
- data/ext/v8/upstream/v8/src/mips/full-codegen-mips.cc +727 -0
- data/ext/v8/upstream/v8/src/mips/ic-mips.cc +244 -0
- data/ext/v8/upstream/v8/src/mips/jump-target-mips.cc +80 -0
- data/ext/v8/upstream/v8/src/mips/lithium-codegen-mips.h +65 -0
- data/ext/v8/upstream/v8/src/mips/lithium-mips.h +304 -0
- data/ext/v8/upstream/v8/src/mips/macro-assembler-mips.cc +3327 -0
- data/ext/v8/upstream/v8/src/mips/macro-assembler-mips.h +1058 -0
- data/ext/v8/upstream/v8/src/mips/regexp-macro-assembler-mips.cc +478 -0
- data/ext/v8/upstream/v8/src/mips/regexp-macro-assembler-mips.h +250 -0
- data/ext/v8/upstream/v8/src/mips/register-allocator-mips-inl.h +134 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/mips/register-allocator-mips.cc +0 -0
- data/ext/v8/upstream/v8/src/mips/register-allocator-mips.h +47 -0
- data/ext/v8/upstream/v8/src/mips/simulator-mips.cc +2438 -0
- data/ext/v8/upstream/v8/src/mips/simulator-mips.h +394 -0
- data/ext/v8/upstream/v8/src/mips/stub-cache-mips.cc +601 -0
- data/ext/v8/upstream/v8/src/mips/virtual-frame-mips-inl.h +58 -0
- data/ext/v8/upstream/v8/src/mips/virtual-frame-mips.cc +307 -0
- data/ext/v8/upstream/v8/src/mips/virtual-frame-mips.h +530 -0
- data/ext/v8/upstream/v8/src/mirror-debugger.js +2381 -0
- data/ext/v8/upstream/v8/src/mksnapshot.cc +256 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/natives.h +0 -0
- data/ext/v8/upstream/v8/src/objects-debug.cc +722 -0
- data/ext/v8/upstream/v8/src/objects-inl.h +4166 -0
- data/ext/v8/upstream/v8/src/objects-printer.cc +801 -0
- data/ext/v8/upstream/v8/src/objects-visiting.cc +142 -0
- data/ext/v8/upstream/v8/src/objects-visiting.h +422 -0
- data/ext/v8/upstream/v8/src/objects.cc +10296 -0
- data/ext/v8/upstream/v8/src/objects.h +6662 -0
- data/ext/v8/upstream/v8/src/parser.cc +5168 -0
- data/ext/v8/upstream/v8/src/parser.h +823 -0
- data/ext/v8/upstream/v8/src/platform-cygwin.cc +811 -0
- data/ext/v8/upstream/v8/src/platform-freebsd.cc +854 -0
- data/ext/v8/upstream/v8/src/platform-linux.cc +1120 -0
- data/ext/v8/upstream/v8/src/platform-macos.cc +865 -0
- data/ext/v8/upstream/v8/src/platform-nullos.cc +504 -0
- data/ext/v8/upstream/v8/src/platform-openbsd.cc +672 -0
- data/ext/v8/upstream/v8/src/platform-posix.cc +424 -0
- data/ext/v8/upstream/v8/src/platform-solaris.cc +796 -0
- data/ext/v8/upstream/v8/src/platform-tls-mac.h +62 -0
- data/ext/v8/upstream/v8/src/platform-tls-win32.h +62 -0
- data/ext/v8/upstream/v8/src/platform-tls.h +50 -0
- data/ext/v8/upstream/v8/src/platform-win32.cc +2072 -0
- data/ext/v8/upstream/v8/src/platform.h +693 -0
- data/ext/v8/upstream/v8/src/preparse-data.cc +185 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/preparse-data.h +0 -0
- data/ext/v8/upstream/v8/src/preparser-api.cc +219 -0
- data/ext/v8/upstream/v8/src/preparser.cc +1205 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/preparser.h +0 -0
- data/ext/v8/upstream/v8/src/prettyprinter.cc +1530 -0
- data/ext/v8/upstream/v8/src/prettyprinter.h +223 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/profile-generator-inl.h +0 -0
- data/ext/v8/upstream/v8/src/profile-generator.cc +3095 -0
- data/ext/v8/upstream/v8/src/profile-generator.h +1125 -0
- data/ext/v8/upstream/v8/src/property.cc +102 -0
- data/ext/v8/upstream/v8/src/property.h +348 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/regexp-macro-assembler-irregexp-inl.h +0 -0
- data/ext/v8/upstream/v8/src/regexp-macro-assembler-irregexp.cc +470 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/regexp-macro-assembler-irregexp.h +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/regexp-macro-assembler-tracer.cc +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/regexp-macro-assembler-tracer.h +0 -0
- data/ext/v8/upstream/v8/src/regexp-macro-assembler.cc +266 -0
- data/ext/v8/upstream/v8/src/regexp-macro-assembler.h +236 -0
- data/ext/v8/upstream/v8/src/regexp-stack.cc +111 -0
- data/ext/v8/upstream/v8/src/regexp-stack.h +147 -0
- data/ext/v8/upstream/v8/src/regexp.js +483 -0
- data/ext/v8/upstream/v8/src/register-allocator-inl.h +141 -0
- data/ext/v8/upstream/v8/src/register-allocator.cc +98 -0
- data/ext/v8/upstream/v8/src/register-allocator.h +310 -0
- data/ext/v8/upstream/v8/src/rewriter.cc +1024 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/rewriter.h +0 -0
- data/ext/v8/upstream/v8/src/runtime-profiler.cc +478 -0
- data/ext/v8/upstream/v8/src/runtime-profiler.h +192 -0
- data/ext/v8/upstream/v8/src/runtime.cc +11949 -0
- data/ext/v8/upstream/v8/src/runtime.h +643 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/runtime.js +0 -0
- data/ext/v8/upstream/v8/src/safepoint-table.cc +256 -0
- data/ext/v8/upstream/v8/src/safepoint-table.h +269 -0
- data/ext/v8/upstream/v8/src/scanner-base.cc +964 -0
- data/ext/v8/upstream/v8/src/scanner-base.h +664 -0
- data/ext/v8/upstream/v8/src/scanner.cc +584 -0
- data/ext/v8/upstream/v8/src/scanner.h +196 -0
- data/ext/v8/upstream/v8/src/scopeinfo.cc +631 -0
- data/ext/v8/upstream/v8/src/scopeinfo.h +249 -0
- data/ext/v8/upstream/v8/src/scopes.cc +1093 -0
- data/ext/v8/upstream/v8/src/scopes.h +508 -0
- data/ext/v8/upstream/v8/src/serialize.cc +1574 -0
- data/ext/v8/upstream/v8/src/serialize.h +589 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/shell.h +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/simulator.h +0 -0
- data/ext/v8/upstream/v8/src/small-pointer-list.h +163 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/smart-pointer.h +0 -0
- data/ext/v8/upstream/v8/src/snapshot-common.cc +82 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/snapshot-empty.cc +0 -0
- data/ext/v8/upstream/v8/src/snapshot.h +73 -0
- data/ext/v8/upstream/v8/src/spaces-inl.h +529 -0
- data/ext/v8/upstream/v8/src/spaces.cc +3147 -0
- data/ext/v8/upstream/v8/src/spaces.h +2368 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/splay-tree-inl.h +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/splay-tree.h +0 -0
- data/ext/v8/upstream/v8/src/string-search.cc +41 -0
- data/ext/v8/upstream/v8/src/string-search.h +568 -0
- data/ext/v8/upstream/v8/src/string-stream.cc +592 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/string-stream.h +0 -0
- data/ext/v8/upstream/v8/src/string.js +915 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/strtod.cc +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/strtod.h +0 -0
- data/ext/v8/upstream/v8/src/stub-cache.cc +1940 -0
- data/ext/v8/upstream/v8/src/stub-cache.h +866 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/third_party/valgrind/valgrind.h +0 -0
- data/ext/v8/upstream/v8/src/token.cc +63 -0
- data/ext/v8/upstream/v8/src/token.h +288 -0
- data/ext/v8/upstream/v8/src/top.cc +983 -0
- data/ext/v8/upstream/v8/src/type-info.cc +472 -0
- data/ext/v8/upstream/v8/src/type-info.h +290 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/unbound-queue-inl.h +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/unbound-queue.h +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/unicode-inl.h +0 -0
- data/ext/v8/upstream/v8/src/unicode.cc +1624 -0
- data/ext/v8/upstream/v8/src/unicode.h +280 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/uri.js +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/utils.cc +0 -0
- data/ext/v8/upstream/v8/src/utils.h +796 -0
- data/ext/v8/upstream/v8/src/v8-counters.cc +62 -0
- data/ext/v8/upstream/v8/src/v8-counters.h +311 -0
- data/ext/v8/upstream/v8/src/v8.cc +215 -0
- data/ext/v8/upstream/v8/src/v8.h +130 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/v8checks.h +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/v8dll-main.cc +0 -0
- data/ext/v8/upstream/v8/src/v8globals.h +486 -0
- data/ext/v8/upstream/{3.1.8/src/memory.h → v8/src/v8memory.h} +0 -0
- data/ext/v8/upstream/v8/src/v8natives.js +1293 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/v8preparserdll-main.cc +0 -0
- data/ext/v8/upstream/v8/src/v8threads.cc +453 -0
- data/ext/v8/upstream/v8/src/v8threads.h +164 -0
- data/ext/v8/upstream/v8/src/v8utils.h +317 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/variables.cc +0 -0
- data/ext/v8/upstream/v8/src/variables.h +212 -0
- data/ext/v8/upstream/v8/src/version.cc +116 -0
- data/ext/v8/upstream/v8/src/version.h +68 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/virtual-frame-heavy-inl.h +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/virtual-frame-heavy.cc +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/virtual-frame-inl.h +0 -0
- data/ext/v8/upstream/v8/src/virtual-frame-light-inl.h +171 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/virtual-frame-light.cc +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/virtual-frame.cc +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/virtual-frame.h +0 -0
- data/ext/v8/upstream/v8/src/vm-state-inl.h +138 -0
- data/ext/v8/upstream/v8/src/vm-state.h +70 -0
- data/ext/v8/upstream/v8/src/win32-headers.h +96 -0
- data/ext/v8/upstream/v8/src/x64/assembler-x64-inl.h +456 -0
- data/ext/v8/upstream/v8/src/x64/assembler-x64.cc +2954 -0
- data/ext/v8/upstream/v8/src/x64/assembler-x64.h +1630 -0
- data/ext/v8/upstream/v8/src/x64/builtins-x64.cc +1493 -0
- data/ext/v8/upstream/v8/src/x64/code-stubs-x64.cc +5132 -0
- data/ext/v8/upstream/v8/src/x64/code-stubs-x64.h +477 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/x64/codegen-x64-inl.h +0 -0
- data/ext/v8/upstream/v8/src/x64/codegen-x64.cc +8843 -0
- data/ext/v8/upstream/v8/src/x64/codegen-x64.h +753 -0
- data/ext/v8/upstream/v8/src/x64/cpu-x64.cc +88 -0
- data/ext/v8/upstream/v8/src/x64/debug-x64.cc +318 -0
- data/ext/v8/upstream/v8/src/x64/deoptimizer-x64.cc +815 -0
- data/ext/v8/upstream/v8/src/x64/disasm-x64.cc +1752 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/x64/frames-x64.cc +0 -0
- data/ext/v8/upstream/v8/src/x64/frames-x64.h +130 -0
- data/ext/v8/upstream/v8/src/x64/full-codegen-x64.cc +4339 -0
- data/ext/v8/upstream/v8/src/x64/ic-x64.cc +1752 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/x64/jump-target-x64.cc +0 -0
- data/ext/v8/upstream/v8/src/x64/lithium-codegen-x64.cc +3970 -0
- data/ext/v8/upstream/v8/src/x64/lithium-codegen-x64.h +318 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/x64/lithium-gap-resolver-x64.cc +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/x64/lithium-gap-resolver-x64.h +0 -0
- data/ext/v8/upstream/v8/src/x64/lithium-x64.cc +2115 -0
- data/ext/v8/upstream/v8/src/x64/lithium-x64.h +2161 -0
- data/ext/v8/upstream/v8/src/x64/macro-assembler-x64.cc +2911 -0
- data/ext/v8/upstream/v8/src/x64/macro-assembler-x64.h +1984 -0
- data/ext/v8/upstream/v8/src/x64/regexp-macro-assembler-x64.cc +1398 -0
- data/ext/v8/upstream/v8/src/x64/regexp-macro-assembler-x64.h +282 -0
- data/ext/v8/upstream/v8/src/x64/register-allocator-x64-inl.h +87 -0
- data/ext/v8/upstream/v8/src/x64/register-allocator-x64.cc +95 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/x64/register-allocator-x64.h +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/src/x64/simulator-x64.cc +0 -0
- data/ext/v8/upstream/v8/src/x64/simulator-x64.h +71 -0
- data/ext/v8/upstream/v8/src/x64/stub-cache-x64.cc +3460 -0
- data/ext/v8/upstream/v8/src/x64/virtual-frame-x64.cc +1296 -0
- data/ext/v8/upstream/v8/src/x64/virtual-frame-x64.h +597 -0
- data/ext/v8/upstream/v8/src/zone-inl.h +129 -0
- data/ext/v8/upstream/v8/src/zone.cc +196 -0
- data/ext/v8/upstream/v8/src/zone.h +236 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/codemap.js +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/consarray.js +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/csvparser.js +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/disasm.py +0 -0
- data/ext/v8/upstream/v8/tools/freebsd-tick-processor +10 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/gc-nvp-trace-processor.py +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/generate-ten-powers.scm +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/grokdump.py +0 -0
- data/ext/v8/upstream/v8/tools/gyp/v8.gyp +844 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/js2c.py +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/jsmin.py +0 -0
- data/ext/v8/upstream/v8/tools/linux-tick-processor +35 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/ll_prof.py +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/logreader.js +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/mac-nm +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/mac-tick-processor +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/oom_dump/README +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/oom_dump/SConstruct +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/oom_dump/oom_dump.cc +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/presubmit.py +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/process-heap-prof.py +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/profile.js +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/profile_view.js +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/run-valgrind.py +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/splaytree.js +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/stats-viewer.py +0 -0
- data/ext/v8/upstream/v8/tools/test.py +1490 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/tickprocessor-driver.js +0 -0
- data/ext/v8/upstream/v8/tools/tickprocessor.js +877 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/utils.py +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/README.txt +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/arm.vsprops +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/common.vsprops +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/d8.vcproj +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/d8_arm.vcproj +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/d8_x64.vcproj +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/d8js2c.cmd +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/debug.vsprops +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/ia32.vsprops +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/js2c.cmd +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/release.vsprops +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8.sln +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8.vcproj +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_arm.sln +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_arm.vcproj +0 -0
- data/ext/v8/upstream/v8/tools/visual_studio/v8_base.vcproj +1308 -0
- data/ext/v8/upstream/v8/tools/visual_studio/v8_base_arm.vcproj +1238 -0
- data/ext/v8/upstream/v8/tools/visual_studio/v8_base_x64.vcproj +1300 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_cctest.vcproj +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_cctest_arm.vcproj +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_cctest_x64.vcproj +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_mksnapshot.vcproj +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_mksnapshot_x64.vcproj +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_process_sample.vcproj +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_process_sample_arm.vcproj +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_process_sample_x64.vcproj +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_shell_sample.vcproj +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_shell_sample_arm.vcproj +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_shell_sample_x64.vcproj +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_snapshot.vcproj +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_snapshot_cc.vcproj +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_snapshot_cc_x64.vcproj +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_snapshot_x64.vcproj +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_x64.sln +0 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/visual_studio/v8_x64.vcproj +0 -0
- data/ext/v8/upstream/v8/tools/visual_studio/x64.vsprops +18 -0
- data/ext/v8/upstream/{3.1.8 → v8}/tools/windows-tick-processor.bat +0 -0
- data/ext/v8/v8_callbacks.cpp +52 -92
- data/ext/v8/v8_date.cpp +2 -3
- data/ext/v8/v8_object.cpp +4 -0
- data/ext/v8/v8_template.cpp +2 -2
- data/ext/v8/v8_try_catch.cpp +8 -38
- data/lib/v8/version.rb +1 -1
- data/spec/ext/ext_spec_helper.rb +2 -20
- data/spec/ext/object_spec.rb +0 -12
- data/spec/ext/try_catch_spec.rb +29 -1
- data/spec/spec_helper.rb +1 -0
- data/spec/v8/portal/proxies_spec.rb +1 -84
- data/specmem/handle_memspec.rb +41 -0
- data/specmem/object_memspec.rb +16 -0
- data/specmem/proxies_memspec.rb +86 -0
- data/specmem/spec_helper.rb +24 -0
- data/therubyracer.gemspec +7 -2
- metadata +564 -541
- data/ext/v8/upstream/3.1.8/.gitignore +0 -31
- data/ext/v8/upstream/3.1.8/AUTHORS +0 -40
- data/ext/v8/upstream/3.1.8/ChangeLog +0 -2566
- data/ext/v8/upstream/3.1.8/SConstruct +0 -1192
- data/ext/v8/upstream/3.1.8/include/v8-debug.h +0 -384
- data/ext/v8/upstream/3.1.8/include/v8-preparser.h +0 -116
- data/ext/v8/upstream/3.1.8/include/v8-profiler.h +0 -426
- data/ext/v8/upstream/3.1.8/include/v8-testing.h +0 -99
- data/ext/v8/upstream/3.1.8/include/v8.h +0 -3846
- data/ext/v8/upstream/3.1.8/preparser/preparser-process.cc +0 -206
- data/ext/v8/upstream/3.1.8/src/SConscript +0 -356
- data/ext/v8/upstream/3.1.8/src/accessors.cc +0 -907
- data/ext/v8/upstream/3.1.8/src/allocation.cc +0 -204
- data/ext/v8/upstream/3.1.8/src/allocation.h +0 -176
- data/ext/v8/upstream/3.1.8/src/api.cc +0 -5191
- data/ext/v8/upstream/3.1.8/src/api.h +0 -508
- data/ext/v8/upstream/3.1.8/src/apiutils.h +0 -80
- data/ext/v8/upstream/3.1.8/src/arguments.h +0 -105
- data/ext/v8/upstream/3.1.8/src/arm/assembler-arm-inl.h +0 -352
- data/ext/v8/upstream/3.1.8/src/arm/assembler-arm.cc +0 -2756
- data/ext/v8/upstream/3.1.8/src/arm/assembler-arm.h +0 -1294
- data/ext/v8/upstream/3.1.8/src/arm/builtins-arm.cc +0 -1628
- data/ext/v8/upstream/3.1.8/src/arm/code-stubs-arm.cc +0 -6783
- data/ext/v8/upstream/3.1.8/src/arm/code-stubs-arm.h +0 -657
- data/ext/v8/upstream/3.1.8/src/arm/codegen-arm.cc +0 -7403
- data/ext/v8/upstream/3.1.8/src/arm/codegen-arm.h +0 -595
- data/ext/v8/upstream/3.1.8/src/arm/constants-arm.h +0 -769
- data/ext/v8/upstream/3.1.8/src/arm/cpu-arm.cc +0 -147
- data/ext/v8/upstream/3.1.8/src/arm/debug-arm.cc +0 -315
- data/ext/v8/upstream/3.1.8/src/arm/deoptimizer-arm.cc +0 -700
- data/ext/v8/upstream/3.1.8/src/arm/disasm-arm.cc +0 -1439
- data/ext/v8/upstream/3.1.8/src/arm/frames-arm.h +0 -168
- data/ext/v8/upstream/3.1.8/src/arm/full-codegen-arm.cc +0 -4230
- data/ext/v8/upstream/3.1.8/src/arm/ic-arm.cc +0 -1799
- data/ext/v8/upstream/3.1.8/src/arm/lithium-arm.cc +0 -2041
- data/ext/v8/upstream/3.1.8/src/arm/lithium-arm.h +0 -2046
- data/ext/v8/upstream/3.1.8/src/arm/lithium-codegen-arm.cc +0 -3822
- data/ext/v8/upstream/3.1.8/src/arm/lithium-codegen-arm.h +0 -312
- data/ext/v8/upstream/3.1.8/src/arm/lithium-gap-resolver-arm.cc +0 -303
- data/ext/v8/upstream/3.1.8/src/arm/macro-assembler-arm.cc +0 -2701
- data/ext/v8/upstream/3.1.8/src/arm/macro-assembler-arm.h +0 -1015
- data/ext/v8/upstream/3.1.8/src/arm/regexp-macro-assembler-arm.cc +0 -1280
- data/ext/v8/upstream/3.1.8/src/arm/regexp-macro-assembler-arm.h +0 -252
- data/ext/v8/upstream/3.1.8/src/arm/simulator-arm.cc +0 -3165
- data/ext/v8/upstream/3.1.8/src/arm/simulator-arm.h +0 -402
- data/ext/v8/upstream/3.1.8/src/arm/stub-cache-arm.cc +0 -4077
- data/ext/v8/upstream/3.1.8/src/arm/virtual-frame-arm.cc +0 -843
- data/ext/v8/upstream/3.1.8/src/arm/virtual-frame-arm.h +0 -520
- data/ext/v8/upstream/3.1.8/src/array.js +0 -1231
- data/ext/v8/upstream/3.1.8/src/assembler.cc +0 -973
- data/ext/v8/upstream/3.1.8/src/assembler.h +0 -787
- data/ext/v8/upstream/3.1.8/src/ast-inl.h +0 -107
- data/ext/v8/upstream/3.1.8/src/ast.cc +0 -1067
- data/ext/v8/upstream/3.1.8/src/ast.h +0 -2177
- data/ext/v8/upstream/3.1.8/src/atomicops.h +0 -165
- data/ext/v8/upstream/3.1.8/src/bootstrapper.cc +0 -1888
- data/ext/v8/upstream/3.1.8/src/bootstrapper.h +0 -118
- data/ext/v8/upstream/3.1.8/src/builtins.cc +0 -1586
- data/ext/v8/upstream/3.1.8/src/builtins.h +0 -339
- data/ext/v8/upstream/3.1.8/src/checks.cc +0 -110
- data/ext/v8/upstream/3.1.8/src/checks.h +0 -292
- data/ext/v8/upstream/3.1.8/src/code-stubs.cc +0 -230
- data/ext/v8/upstream/3.1.8/src/code-stubs.h +0 -950
- data/ext/v8/upstream/3.1.8/src/codegen-inl.h +0 -64
- data/ext/v8/upstream/3.1.8/src/codegen.cc +0 -495
- data/ext/v8/upstream/3.1.8/src/codegen.h +0 -245
- data/ext/v8/upstream/3.1.8/src/compilation-cache.cc +0 -654
- data/ext/v8/upstream/3.1.8/src/compilation-cache.h +0 -112
- data/ext/v8/upstream/3.1.8/src/compiler.cc +0 -806
- data/ext/v8/upstream/3.1.8/src/compiler.h +0 -290
- data/ext/v8/upstream/3.1.8/src/contexts.cc +0 -320
- data/ext/v8/upstream/3.1.8/src/contexts.h +0 -376
- data/ext/v8/upstream/3.1.8/src/conversions.cc +0 -1069
- data/ext/v8/upstream/3.1.8/src/counters.cc +0 -78
- data/ext/v8/upstream/3.1.8/src/counters.h +0 -242
- data/ext/v8/upstream/3.1.8/src/cpu-profiler-inl.h +0 -100
- data/ext/v8/upstream/3.1.8/src/cpu-profiler.cc +0 -554
- data/ext/v8/upstream/3.1.8/src/cpu-profiler.h +0 -291
- data/ext/v8/upstream/3.1.8/src/cpu.h +0 -65
- data/ext/v8/upstream/3.1.8/src/d8-debug.cc +0 -367
- data/ext/v8/upstream/3.1.8/src/d8-debug.h +0 -157
- data/ext/v8/upstream/3.1.8/src/d8-posix.cc +0 -693
- data/ext/v8/upstream/3.1.8/src/d8.cc +0 -792
- data/ext/v8/upstream/3.1.8/src/d8.gyp +0 -85
- data/ext/v8/upstream/3.1.8/src/data-flow.h +0 -379
- data/ext/v8/upstream/3.1.8/src/dateparser.h +0 -263
- data/ext/v8/upstream/3.1.8/src/debug-agent.cc +0 -446
- data/ext/v8/upstream/3.1.8/src/debug-agent.h +0 -131
- data/ext/v8/upstream/3.1.8/src/debug.cc +0 -3085
- data/ext/v8/upstream/3.1.8/src/debug.h +0 -1025
- data/ext/v8/upstream/3.1.8/src/deoptimizer.cc +0 -1185
- data/ext/v8/upstream/3.1.8/src/deoptimizer.h +0 -529
- data/ext/v8/upstream/3.1.8/src/disasm.h +0 -77
- data/ext/v8/upstream/3.1.8/src/disassembler.cc +0 -338
- data/ext/v8/upstream/3.1.8/src/execution.cc +0 -735
- data/ext/v8/upstream/3.1.8/src/execution.h +0 -322
- data/ext/v8/upstream/3.1.8/src/extensions/experimental/experimental.gyp +0 -53
- data/ext/v8/upstream/3.1.8/src/extensions/experimental/i18n-extension.cc +0 -264
- data/ext/v8/upstream/3.1.8/src/extensions/externalize-string-extension.cc +0 -141
- data/ext/v8/upstream/3.1.8/src/extensions/gc-extension.cc +0 -58
- data/ext/v8/upstream/3.1.8/src/factory.cc +0 -1087
- data/ext/v8/upstream/3.1.8/src/factory.h +0 -432
- data/ext/v8/upstream/3.1.8/src/flag-definitions.h +0 -552
- data/ext/v8/upstream/3.1.8/src/frame-element.cc +0 -42
- data/ext/v8/upstream/3.1.8/src/frame-element.h +0 -277
- data/ext/v8/upstream/3.1.8/src/frames-inl.h +0 -210
- data/ext/v8/upstream/3.1.8/src/frames.cc +0 -1232
- data/ext/v8/upstream/3.1.8/src/frames.h +0 -826
- data/ext/v8/upstream/3.1.8/src/full-codegen.cc +0 -1382
- data/ext/v8/upstream/3.1.8/src/full-codegen.h +0 -751
- data/ext/v8/upstream/3.1.8/src/func-name-inferrer.cc +0 -90
- data/ext/v8/upstream/3.1.8/src/func-name-inferrer.h +0 -111
- data/ext/v8/upstream/3.1.8/src/gdb-jit.cc +0 -1547
- data/ext/v8/upstream/3.1.8/src/global-handles.cc +0 -534
- data/ext/v8/upstream/3.1.8/src/global-handles.h +0 -181
- data/ext/v8/upstream/3.1.8/src/globals.h +0 -325
- data/ext/v8/upstream/3.1.8/src/handles-inl.h +0 -80
- data/ext/v8/upstream/3.1.8/src/handles.cc +0 -910
- data/ext/v8/upstream/3.1.8/src/handles.h +0 -424
- data/ext/v8/upstream/3.1.8/src/hashmap.h +0 -121
- data/ext/v8/upstream/3.1.8/src/heap-inl.h +0 -587
- data/ext/v8/upstream/3.1.8/src/heap-profiler.cc +0 -1128
- data/ext/v8/upstream/3.1.8/src/heap-profiler.h +0 -381
- data/ext/v8/upstream/3.1.8/src/heap.cc +0 -5610
- data/ext/v8/upstream/3.1.8/src/heap.h +0 -2218
- data/ext/v8/upstream/3.1.8/src/hydrogen-instructions.cc +0 -1490
- data/ext/v8/upstream/3.1.8/src/hydrogen-instructions.h +0 -3493
- data/ext/v8/upstream/3.1.8/src/hydrogen.cc +0 -6056
- data/ext/v8/upstream/3.1.8/src/hydrogen.h +0 -1091
- data/ext/v8/upstream/3.1.8/src/ia32/assembler-ia32-inl.h +0 -429
- data/ext/v8/upstream/3.1.8/src/ia32/assembler-ia32.cc +0 -2800
- data/ext/v8/upstream/3.1.8/src/ia32/assembler-ia32.h +0 -1093
- data/ext/v8/upstream/3.1.8/src/ia32/builtins-ia32.cc +0 -1590
- data/ext/v8/upstream/3.1.8/src/ia32/code-stubs-ia32.cc +0 -6624
- data/ext/v8/upstream/3.1.8/src/ia32/code-stubs-ia32.h +0 -536
- data/ext/v8/upstream/3.1.8/src/ia32/codegen-ia32.cc +0 -10354
- data/ext/v8/upstream/3.1.8/src/ia32/codegen-ia32.h +0 -798
- data/ext/v8/upstream/3.1.8/src/ia32/cpu-ia32.cc +0 -87
- data/ext/v8/upstream/3.1.8/src/ia32/debug-ia32.cc +0 -309
- data/ext/v8/upstream/3.1.8/src/ia32/deoptimizer-ia32.cc +0 -664
- data/ext/v8/upstream/3.1.8/src/ia32/disasm-ia32.cc +0 -1597
- data/ext/v8/upstream/3.1.8/src/ia32/frames-ia32.h +0 -140
- data/ext/v8/upstream/3.1.8/src/ia32/full-codegen-ia32.cc +0 -4278
- data/ext/v8/upstream/3.1.8/src/ia32/ic-ia32.cc +0 -1786
- data/ext/v8/upstream/3.1.8/src/ia32/lithium-codegen-ia32.cc +0 -3880
- data/ext/v8/upstream/3.1.8/src/ia32/lithium-codegen-ia32.h +0 -309
- data/ext/v8/upstream/3.1.8/src/ia32/lithium-gap-resolver-ia32.cc +0 -460
- data/ext/v8/upstream/3.1.8/src/ia32/lithium-ia32.cc +0 -2095
- data/ext/v8/upstream/3.1.8/src/ia32/lithium-ia32.h +0 -2127
- data/ext/v8/upstream/3.1.8/src/ia32/macro-assembler-ia32.cc +0 -2031
- data/ext/v8/upstream/3.1.8/src/ia32/macro-assembler-ia32.h +0 -798
- data/ext/v8/upstream/3.1.8/src/ia32/regexp-macro-assembler-ia32.cc +0 -1253
- data/ext/v8/upstream/3.1.8/src/ia32/regexp-macro-assembler-ia32.h +0 -215
- data/ext/v8/upstream/3.1.8/src/ia32/register-allocator-ia32.cc +0 -157
- data/ext/v8/upstream/3.1.8/src/ia32/simulator-ia32.h +0 -72
- data/ext/v8/upstream/3.1.8/src/ia32/stub-cache-ia32.cc +0 -3732
- data/ext/v8/upstream/3.1.8/src/ia32/virtual-frame-ia32.cc +0 -1360
- data/ext/v8/upstream/3.1.8/src/ia32/virtual-frame-ia32.h +0 -646
- data/ext/v8/upstream/3.1.8/src/ic-inl.h +0 -129
- data/ext/v8/upstream/3.1.8/src/ic.cc +0 -2333
- data/ext/v8/upstream/3.1.8/src/ic.h +0 -639
- data/ext/v8/upstream/3.1.8/src/interpreter-irregexp.cc +0 -655
- data/ext/v8/upstream/3.1.8/src/interpreter-irregexp.h +0 -48
- data/ext/v8/upstream/3.1.8/src/json.js +0 -342
- data/ext/v8/upstream/3.1.8/src/jsregexp.cc +0 -5340
- data/ext/v8/upstream/3.1.8/src/jsregexp.h +0 -1484
- data/ext/v8/upstream/3.1.8/src/jump-target-heavy.cc +0 -430
- data/ext/v8/upstream/3.1.8/src/jump-target-heavy.h +0 -244
- data/ext/v8/upstream/3.1.8/src/jump-target-inl.h +0 -48
- data/ext/v8/upstream/3.1.8/src/jump-target-light.cc +0 -111
- data/ext/v8/upstream/3.1.8/src/lithium-allocator-inl.h +0 -140
- data/ext/v8/upstream/3.1.8/src/lithium-allocator.cc +0 -2093
- data/ext/v8/upstream/3.1.8/src/lithium-allocator.h +0 -644
- data/ext/v8/upstream/3.1.8/src/lithium.cc +0 -168
- data/ext/v8/upstream/3.1.8/src/liveedit.cc +0 -1650
- data/ext/v8/upstream/3.1.8/src/liveedit.h +0 -174
- data/ext/v8/upstream/3.1.8/src/liveobjectlist.cc +0 -2527
- data/ext/v8/upstream/3.1.8/src/liveobjectlist.h +0 -322
- data/ext/v8/upstream/3.1.8/src/log-utils.cc +0 -336
- data/ext/v8/upstream/3.1.8/src/log-utils.h +0 -232
- data/ext/v8/upstream/3.1.8/src/log.cc +0 -1608
- data/ext/v8/upstream/3.1.8/src/log.h +0 -379
- data/ext/v8/upstream/3.1.8/src/mark-compact.cc +0 -2957
- data/ext/v8/upstream/3.1.8/src/mark-compact.h +0 -433
- data/ext/v8/upstream/3.1.8/src/messages.cc +0 -164
- data/ext/v8/upstream/3.1.8/src/messages.js +0 -1071
- data/ext/v8/upstream/3.1.8/src/mips/assembler-mips-inl.h +0 -215
- data/ext/v8/upstream/3.1.8/src/mips/assembler-mips.cc +0 -1219
- data/ext/v8/upstream/3.1.8/src/mips/assembler-mips.h +0 -667
- data/ext/v8/upstream/3.1.8/src/mips/builtins-mips.cc +0 -205
- data/ext/v8/upstream/3.1.8/src/mips/codegen-mips-inl.h +0 -70
- data/ext/v8/upstream/3.1.8/src/mips/codegen-mips.cc +0 -1437
- data/ext/v8/upstream/3.1.8/src/mips/codegen-mips.h +0 -431
- data/ext/v8/upstream/3.1.8/src/mips/constants-mips.cc +0 -328
- data/ext/v8/upstream/3.1.8/src/mips/constants-mips.h +0 -525
- data/ext/v8/upstream/3.1.8/src/mips/cpu-mips.cc +0 -73
- data/ext/v8/upstream/3.1.8/src/mips/debug-mips.cc +0 -127
- data/ext/v8/upstream/3.1.8/src/mips/disasm-mips.cc +0 -787
- data/ext/v8/upstream/3.1.8/src/mips/fast-codegen-mips.cc +0 -77
- data/ext/v8/upstream/3.1.8/src/mips/frames-mips.cc +0 -96
- data/ext/v8/upstream/3.1.8/src/mips/frames-mips.h +0 -164
- data/ext/v8/upstream/3.1.8/src/mips/full-codegen-mips.cc +0 -277
- data/ext/v8/upstream/3.1.8/src/mips/ic-mips.cc +0 -208
- data/ext/v8/upstream/3.1.8/src/mips/jump-target-mips.cc +0 -175
- data/ext/v8/upstream/3.1.8/src/mips/macro-assembler-mips.cc +0 -1326
- data/ext/v8/upstream/3.1.8/src/mips/macro-assembler-mips.h +0 -461
- data/ext/v8/upstream/3.1.8/src/mips/register-allocator-mips-inl.h +0 -137
- data/ext/v8/upstream/3.1.8/src/mips/register-allocator-mips.h +0 -46
- data/ext/v8/upstream/3.1.8/src/mips/simulator-mips.cc +0 -1650
- data/ext/v8/upstream/3.1.8/src/mips/simulator-mips.h +0 -311
- data/ext/v8/upstream/3.1.8/src/mips/stub-cache-mips.cc +0 -418
- data/ext/v8/upstream/3.1.8/src/mips/virtual-frame-mips.cc +0 -319
- data/ext/v8/upstream/3.1.8/src/mips/virtual-frame-mips.h +0 -548
- data/ext/v8/upstream/3.1.8/src/mirror-debugger.js +0 -2380
- data/ext/v8/upstream/3.1.8/src/mksnapshot.cc +0 -256
- data/ext/v8/upstream/3.1.8/src/objects-debug.cc +0 -722
- data/ext/v8/upstream/3.1.8/src/objects-inl.h +0 -3946
- data/ext/v8/upstream/3.1.8/src/objects-printer.cc +0 -801
- data/ext/v8/upstream/3.1.8/src/objects-visiting.cc +0 -142
- data/ext/v8/upstream/3.1.8/src/objects-visiting.h +0 -401
- data/ext/v8/upstream/3.1.8/src/objects.cc +0 -10044
- data/ext/v8/upstream/3.1.8/src/objects.h +0 -6571
- data/ext/v8/upstream/3.1.8/src/parser.cc +0 -5165
- data/ext/v8/upstream/3.1.8/src/parser.h +0 -802
- data/ext/v8/upstream/3.1.8/src/platform-cygwin.cc +0 -745
- data/ext/v8/upstream/3.1.8/src/platform-freebsd.cc +0 -702
- data/ext/v8/upstream/3.1.8/src/platform-linux.cc +0 -981
- data/ext/v8/upstream/3.1.8/src/platform-macos.cc +0 -732
- data/ext/v8/upstream/3.1.8/src/platform-nullos.cc +0 -498
- data/ext/v8/upstream/3.1.8/src/platform-openbsd.cc +0 -657
- data/ext/v8/upstream/3.1.8/src/platform-posix.cc +0 -399
- data/ext/v8/upstream/3.1.8/src/platform-solaris.cc +0 -714
- data/ext/v8/upstream/3.1.8/src/platform-win32.cc +0 -1974
- data/ext/v8/upstream/3.1.8/src/platform.h +0 -636
- data/ext/v8/upstream/3.1.8/src/preparse-data.cc +0 -183
- data/ext/v8/upstream/3.1.8/src/preparser-api.cc +0 -213
- data/ext/v8/upstream/3.1.8/src/preparser.cc +0 -1205
- data/ext/v8/upstream/3.1.8/src/prettyprinter.cc +0 -1539
- data/ext/v8/upstream/3.1.8/src/prettyprinter.h +0 -223
- data/ext/v8/upstream/3.1.8/src/profile-generator.cc +0 -2899
- data/ext/v8/upstream/3.1.8/src/profile-generator.h +0 -1151
- data/ext/v8/upstream/3.1.8/src/property.cc +0 -96
- data/ext/v8/upstream/3.1.8/src/property.h +0 -337
- data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler-irregexp.cc +0 -470
- data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler.cc +0 -257
- data/ext/v8/upstream/3.1.8/src/regexp-macro-assembler.h +0 -231
- data/ext/v8/upstream/3.1.8/src/regexp-stack.cc +0 -103
- data/ext/v8/upstream/3.1.8/src/regexp-stack.h +0 -123
- data/ext/v8/upstream/3.1.8/src/regexp.js +0 -483
- data/ext/v8/upstream/3.1.8/src/register-allocator-inl.h +0 -141
- data/ext/v8/upstream/3.1.8/src/register-allocator.cc +0 -104
- data/ext/v8/upstream/3.1.8/src/register-allocator.h +0 -320
- data/ext/v8/upstream/3.1.8/src/rewriter.cc +0 -1023
- data/ext/v8/upstream/3.1.8/src/runtime-profiler.cc +0 -443
- data/ext/v8/upstream/3.1.8/src/runtime-profiler.h +0 -77
- data/ext/v8/upstream/3.1.8/src/runtime.cc +0 -11592
- data/ext/v8/upstream/3.1.8/src/runtime.h +0 -582
- data/ext/v8/upstream/3.1.8/src/safepoint-table.cc +0 -253
- data/ext/v8/upstream/3.1.8/src/safepoint-table.h +0 -263
- data/ext/v8/upstream/3.1.8/src/scanner-base.cc +0 -971
- data/ext/v8/upstream/3.1.8/src/scanner-base.h +0 -653
- data/ext/v8/upstream/3.1.8/src/scanner.cc +0 -586
- data/ext/v8/upstream/3.1.8/src/scanner.h +0 -194
- data/ext/v8/upstream/3.1.8/src/scopeinfo.cc +0 -636
- data/ext/v8/upstream/3.1.8/src/scopeinfo.h +0 -238
- data/ext/v8/upstream/3.1.8/src/scopes.cc +0 -1063
- data/ext/v8/upstream/3.1.8/src/scopes.h +0 -494
- data/ext/v8/upstream/3.1.8/src/serialize.cc +0 -1535
- data/ext/v8/upstream/3.1.8/src/serialize.h +0 -584
- data/ext/v8/upstream/3.1.8/src/snapshot-common.cc +0 -82
- data/ext/v8/upstream/3.1.8/src/snapshot.h +0 -71
- data/ext/v8/upstream/3.1.8/src/spaces-inl.h +0 -524
- data/ext/v8/upstream/3.1.8/src/spaces.cc +0 -3254
- data/ext/v8/upstream/3.1.8/src/spaces.h +0 -2362
- data/ext/v8/upstream/3.1.8/src/string-search.cc +0 -40
- data/ext/v8/upstream/3.1.8/src/string-search.h +0 -567
- data/ext/v8/upstream/3.1.8/src/string-stream.cc +0 -584
- data/ext/v8/upstream/3.1.8/src/string.js +0 -915
- data/ext/v8/upstream/3.1.8/src/stub-cache.cc +0 -1878
- data/ext/v8/upstream/3.1.8/src/stub-cache.h +0 -849
- data/ext/v8/upstream/3.1.8/src/token.cc +0 -63
- data/ext/v8/upstream/3.1.8/src/token.h +0 -288
- data/ext/v8/upstream/3.1.8/src/top.cc +0 -1152
- data/ext/v8/upstream/3.1.8/src/top.h +0 -608
- data/ext/v8/upstream/3.1.8/src/type-info.cc +0 -406
- data/ext/v8/upstream/3.1.8/src/type-info.h +0 -283
- data/ext/v8/upstream/3.1.8/src/unicode.cc +0 -1624
- data/ext/v8/upstream/3.1.8/src/unicode.h +0 -280
- data/ext/v8/upstream/3.1.8/src/utils.h +0 -793
- data/ext/v8/upstream/3.1.8/src/v8-counters.cc +0 -55
- data/ext/v8/upstream/3.1.8/src/v8-counters.h +0 -290
- data/ext/v8/upstream/3.1.8/src/v8.cc +0 -270
- data/ext/v8/upstream/3.1.8/src/v8.h +0 -127
- data/ext/v8/upstream/3.1.8/src/v8globals.h +0 -480
- data/ext/v8/upstream/3.1.8/src/v8natives.js +0 -1252
- data/ext/v8/upstream/3.1.8/src/v8threads.cc +0 -440
- data/ext/v8/upstream/3.1.8/src/v8threads.h +0 -157
- data/ext/v8/upstream/3.1.8/src/v8utils.h +0 -354
- data/ext/v8/upstream/3.1.8/src/variables.h +0 -212
- data/ext/v8/upstream/3.1.8/src/version.cc +0 -95
- data/ext/v8/upstream/3.1.8/src/version.h +0 -64
- data/ext/v8/upstream/3.1.8/src/virtual-frame-light-inl.h +0 -170
- data/ext/v8/upstream/3.1.8/src/vm-state-inl.h +0 -134
- data/ext/v8/upstream/3.1.8/src/vm-state.h +0 -68
- data/ext/v8/upstream/3.1.8/src/win32-headers.h +0 -95
- data/ext/v8/upstream/3.1.8/src/x64/assembler-x64-inl.h +0 -455
- data/ext/v8/upstream/3.1.8/src/x64/assembler-x64.cc +0 -3162
- data/ext/v8/upstream/3.1.8/src/x64/assembler-x64.h +0 -1584
- data/ext/v8/upstream/3.1.8/src/x64/builtins-x64.cc +0 -1492
- data/ext/v8/upstream/3.1.8/src/x64/code-stubs-x64.cc +0 -5150
- data/ext/v8/upstream/3.1.8/src/x64/code-stubs-x64.h +0 -519
- data/ext/v8/upstream/3.1.8/src/x64/codegen-x64.cc +0 -8835
- data/ext/v8/upstream/3.1.8/src/x64/codegen-x64.h +0 -750
- data/ext/v8/upstream/3.1.8/src/x64/cpu-x64.cc +0 -86
- data/ext/v8/upstream/3.1.8/src/x64/debug-x64.cc +0 -316
- data/ext/v8/upstream/3.1.8/src/x64/deoptimizer-x64.cc +0 -781
- data/ext/v8/upstream/3.1.8/src/x64/disasm-x64.cc +0 -1737
- data/ext/v8/upstream/3.1.8/src/x64/frames-x64.h +0 -130
- data/ext/v8/upstream/3.1.8/src/x64/full-codegen-x64.cc +0 -3984
- data/ext/v8/upstream/3.1.8/src/x64/ic-x64.cc +0 -1761
- data/ext/v8/upstream/3.1.8/src/x64/lithium-codegen-x64.cc +0 -3639
- data/ext/v8/upstream/3.1.8/src/x64/lithium-codegen-x64.h +0 -305
- data/ext/v8/upstream/3.1.8/src/x64/lithium-x64.cc +0 -2044
- data/ext/v8/upstream/3.1.8/src/x64/lithium-x64.h +0 -2052
- data/ext/v8/upstream/3.1.8/src/x64/macro-assembler-x64.cc +0 -2660
- data/ext/v8/upstream/3.1.8/src/x64/macro-assembler-x64.h +0 -1852
- data/ext/v8/upstream/3.1.8/src/x64/regexp-macro-assembler-x64.cc +0 -1382
- data/ext/v8/upstream/3.1.8/src/x64/regexp-macro-assembler-x64.h +0 -278
- data/ext/v8/upstream/3.1.8/src/x64/register-allocator-x64-inl.h +0 -87
- data/ext/v8/upstream/3.1.8/src/x64/register-allocator-x64.cc +0 -91
- data/ext/v8/upstream/3.1.8/src/x64/simulator-x64.h +0 -71
- data/ext/v8/upstream/3.1.8/src/x64/stub-cache-x64.cc +0 -3509
- data/ext/v8/upstream/3.1.8/src/x64/virtual-frame-x64.cc +0 -1292
- data/ext/v8/upstream/3.1.8/src/x64/virtual-frame-x64.h +0 -593
- data/ext/v8/upstream/3.1.8/src/zone-inl.h +0 -83
- data/ext/v8/upstream/3.1.8/src/zone.cc +0 -195
- data/ext/v8/upstream/3.1.8/src/zone.h +0 -233
- data/ext/v8/upstream/3.1.8/tools/gyp/v8.gyp +0 -869
- data/ext/v8/upstream/3.1.8/tools/linux-tick-processor +0 -33
- data/ext/v8/upstream/3.1.8/tools/tickprocessor.js +0 -863
- data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_base.vcproj +0 -1296
- data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_base_arm.vcproj +0 -1234
- data/ext/v8/upstream/3.1.8/tools/visual_studio/v8_base_x64.vcproj +0 -1296
- data/ext/v8/upstream/3.1.8/tools/visual_studio/x64.vsprops +0 -17
- data/spec/ext/mem_spec.rb +0 -42
File without changes
|
@@ -0,0 +1,1530 @@
|
|
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
|
+
#include <stdarg.h>
|
29
|
+
|
30
|
+
#include "v8.h"
|
31
|
+
|
32
|
+
#include "prettyprinter.h"
|
33
|
+
#include "scopes.h"
|
34
|
+
#include "platform.h"
|
35
|
+
|
36
|
+
namespace v8 {
|
37
|
+
namespace internal {
|
38
|
+
|
39
|
+
#ifdef DEBUG
|
40
|
+
|
41
|
+
PrettyPrinter::PrettyPrinter() {
|
42
|
+
output_ = NULL;
|
43
|
+
size_ = 0;
|
44
|
+
pos_ = 0;
|
45
|
+
}
|
46
|
+
|
47
|
+
|
48
|
+
PrettyPrinter::~PrettyPrinter() {
|
49
|
+
DeleteArray(output_);
|
50
|
+
}
|
51
|
+
|
52
|
+
|
53
|
+
void PrettyPrinter::VisitBlock(Block* node) {
|
54
|
+
if (!node->is_initializer_block()) Print("{ ");
|
55
|
+
PrintStatements(node->statements());
|
56
|
+
if (node->statements()->length() > 0) Print(" ");
|
57
|
+
if (!node->is_initializer_block()) Print("}");
|
58
|
+
}
|
59
|
+
|
60
|
+
|
61
|
+
void PrettyPrinter::VisitDeclaration(Declaration* node) {
|
62
|
+
Print("var ");
|
63
|
+
PrintLiteral(node->proxy()->name(), false);
|
64
|
+
if (node->fun() != NULL) {
|
65
|
+
Print(" = ");
|
66
|
+
PrintFunctionLiteral(node->fun());
|
67
|
+
}
|
68
|
+
Print(";");
|
69
|
+
}
|
70
|
+
|
71
|
+
|
72
|
+
void PrettyPrinter::VisitExpressionStatement(ExpressionStatement* node) {
|
73
|
+
Visit(node->expression());
|
74
|
+
Print(";");
|
75
|
+
}
|
76
|
+
|
77
|
+
|
78
|
+
void PrettyPrinter::VisitEmptyStatement(EmptyStatement* node) {
|
79
|
+
Print(";");
|
80
|
+
}
|
81
|
+
|
82
|
+
|
83
|
+
void PrettyPrinter::VisitIfStatement(IfStatement* node) {
|
84
|
+
Print("if (");
|
85
|
+
Visit(node->condition());
|
86
|
+
Print(") ");
|
87
|
+
Visit(node->then_statement());
|
88
|
+
if (node->HasElseStatement()) {
|
89
|
+
Print(" else ");
|
90
|
+
Visit(node->else_statement());
|
91
|
+
}
|
92
|
+
}
|
93
|
+
|
94
|
+
|
95
|
+
void PrettyPrinter::VisitContinueStatement(ContinueStatement* node) {
|
96
|
+
Print("continue");
|
97
|
+
ZoneStringList* labels = node->target()->labels();
|
98
|
+
if (labels != NULL) {
|
99
|
+
Print(" ");
|
100
|
+
ASSERT(labels->length() > 0); // guaranteed to have at least one entry
|
101
|
+
PrintLiteral(labels->at(0), false); // any label from the list is fine
|
102
|
+
}
|
103
|
+
Print(";");
|
104
|
+
}
|
105
|
+
|
106
|
+
|
107
|
+
void PrettyPrinter::VisitBreakStatement(BreakStatement* node) {
|
108
|
+
Print("break");
|
109
|
+
ZoneStringList* labels = node->target()->labels();
|
110
|
+
if (labels != NULL) {
|
111
|
+
Print(" ");
|
112
|
+
ASSERT(labels->length() > 0); // guaranteed to have at least one entry
|
113
|
+
PrintLiteral(labels->at(0), false); // any label from the list is fine
|
114
|
+
}
|
115
|
+
Print(";");
|
116
|
+
}
|
117
|
+
|
118
|
+
|
119
|
+
void PrettyPrinter::VisitReturnStatement(ReturnStatement* node) {
|
120
|
+
Print("return ");
|
121
|
+
Visit(node->expression());
|
122
|
+
Print(";");
|
123
|
+
}
|
124
|
+
|
125
|
+
|
126
|
+
void PrettyPrinter::VisitWithEnterStatement(WithEnterStatement* node) {
|
127
|
+
Print("<enter with> (");
|
128
|
+
Visit(node->expression());
|
129
|
+
Print(") ");
|
130
|
+
}
|
131
|
+
|
132
|
+
|
133
|
+
void PrettyPrinter::VisitWithExitStatement(WithExitStatement* node) {
|
134
|
+
Print("<exit with>");
|
135
|
+
}
|
136
|
+
|
137
|
+
|
138
|
+
void PrettyPrinter::VisitSwitchStatement(SwitchStatement* node) {
|
139
|
+
PrintLabels(node->labels());
|
140
|
+
Print("switch (");
|
141
|
+
Visit(node->tag());
|
142
|
+
Print(") { ");
|
143
|
+
ZoneList<CaseClause*>* cases = node->cases();
|
144
|
+
for (int i = 0; i < cases->length(); i++)
|
145
|
+
PrintCaseClause(cases->at(i));
|
146
|
+
Print("}");
|
147
|
+
}
|
148
|
+
|
149
|
+
|
150
|
+
void PrettyPrinter::VisitDoWhileStatement(DoWhileStatement* node) {
|
151
|
+
PrintLabels(node->labels());
|
152
|
+
Print("do ");
|
153
|
+
Visit(node->body());
|
154
|
+
Print(" while (");
|
155
|
+
Visit(node->cond());
|
156
|
+
Print(");");
|
157
|
+
}
|
158
|
+
|
159
|
+
|
160
|
+
void PrettyPrinter::VisitWhileStatement(WhileStatement* node) {
|
161
|
+
PrintLabels(node->labels());
|
162
|
+
Print("while (");
|
163
|
+
Visit(node->cond());
|
164
|
+
Print(") ");
|
165
|
+
Visit(node->body());
|
166
|
+
}
|
167
|
+
|
168
|
+
|
169
|
+
void PrettyPrinter::VisitForStatement(ForStatement* node) {
|
170
|
+
PrintLabels(node->labels());
|
171
|
+
Print("for (");
|
172
|
+
if (node->init() != NULL) {
|
173
|
+
Visit(node->init());
|
174
|
+
Print(" ");
|
175
|
+
} else {
|
176
|
+
Print("; ");
|
177
|
+
}
|
178
|
+
if (node->cond() != NULL) Visit(node->cond());
|
179
|
+
Print("; ");
|
180
|
+
if (node->next() != NULL) {
|
181
|
+
Visit(node->next()); // prints extra ';', unfortunately
|
182
|
+
// to fix: should use Expression for next
|
183
|
+
}
|
184
|
+
Print(") ");
|
185
|
+
Visit(node->body());
|
186
|
+
}
|
187
|
+
|
188
|
+
|
189
|
+
void PrettyPrinter::VisitForInStatement(ForInStatement* node) {
|
190
|
+
PrintLabels(node->labels());
|
191
|
+
Print("for (");
|
192
|
+
Visit(node->each());
|
193
|
+
Print(" in ");
|
194
|
+
Visit(node->enumerable());
|
195
|
+
Print(") ");
|
196
|
+
Visit(node->body());
|
197
|
+
}
|
198
|
+
|
199
|
+
|
200
|
+
void PrettyPrinter::VisitTryCatchStatement(TryCatchStatement* node) {
|
201
|
+
Print("try ");
|
202
|
+
Visit(node->try_block());
|
203
|
+
Print(" catch (");
|
204
|
+
Visit(node->catch_var());
|
205
|
+
Print(") ");
|
206
|
+
Visit(node->catch_block());
|
207
|
+
}
|
208
|
+
|
209
|
+
|
210
|
+
void PrettyPrinter::VisitTryFinallyStatement(TryFinallyStatement* node) {
|
211
|
+
Print("try ");
|
212
|
+
Visit(node->try_block());
|
213
|
+
Print(" finally ");
|
214
|
+
Visit(node->finally_block());
|
215
|
+
}
|
216
|
+
|
217
|
+
|
218
|
+
void PrettyPrinter::VisitDebuggerStatement(DebuggerStatement* node) {
|
219
|
+
Print("debugger ");
|
220
|
+
}
|
221
|
+
|
222
|
+
|
223
|
+
void PrettyPrinter::VisitFunctionLiteral(FunctionLiteral* node) {
|
224
|
+
Print("(");
|
225
|
+
PrintFunctionLiteral(node);
|
226
|
+
Print(")");
|
227
|
+
}
|
228
|
+
|
229
|
+
|
230
|
+
void PrettyPrinter::VisitSharedFunctionInfoLiteral(
|
231
|
+
SharedFunctionInfoLiteral* node) {
|
232
|
+
Print("(");
|
233
|
+
PrintLiteral(node->shared_function_info(), true);
|
234
|
+
Print(")");
|
235
|
+
}
|
236
|
+
|
237
|
+
|
238
|
+
void PrettyPrinter::VisitConditional(Conditional* node) {
|
239
|
+
Visit(node->condition());
|
240
|
+
Print(" ? ");
|
241
|
+
Visit(node->then_expression());
|
242
|
+
Print(" : ");
|
243
|
+
Visit(node->else_expression());
|
244
|
+
}
|
245
|
+
|
246
|
+
|
247
|
+
void PrettyPrinter::VisitLiteral(Literal* node) {
|
248
|
+
PrintLiteral(node->handle(), true);
|
249
|
+
}
|
250
|
+
|
251
|
+
|
252
|
+
void PrettyPrinter::VisitRegExpLiteral(RegExpLiteral* node) {
|
253
|
+
Print(" RegExp(");
|
254
|
+
PrintLiteral(node->pattern(), false);
|
255
|
+
Print(",");
|
256
|
+
PrintLiteral(node->flags(), false);
|
257
|
+
Print(") ");
|
258
|
+
}
|
259
|
+
|
260
|
+
|
261
|
+
void PrettyPrinter::VisitObjectLiteral(ObjectLiteral* node) {
|
262
|
+
Print("{ ");
|
263
|
+
for (int i = 0; i < node->properties()->length(); i++) {
|
264
|
+
if (i != 0) Print(",");
|
265
|
+
ObjectLiteral::Property* property = node->properties()->at(i);
|
266
|
+
Print(" ");
|
267
|
+
Visit(property->key());
|
268
|
+
Print(": ");
|
269
|
+
Visit(property->value());
|
270
|
+
}
|
271
|
+
Print(" }");
|
272
|
+
}
|
273
|
+
|
274
|
+
|
275
|
+
void PrettyPrinter::VisitArrayLiteral(ArrayLiteral* node) {
|
276
|
+
Print("[ ");
|
277
|
+
for (int i = 0; i < node->values()->length(); i++) {
|
278
|
+
if (i != 0) Print(",");
|
279
|
+
Visit(node->values()->at(i));
|
280
|
+
}
|
281
|
+
Print(" ]");
|
282
|
+
}
|
283
|
+
|
284
|
+
|
285
|
+
void PrettyPrinter::VisitCatchExtensionObject(CatchExtensionObject* node) {
|
286
|
+
Print("{ ");
|
287
|
+
Visit(node->key());
|
288
|
+
Print(": ");
|
289
|
+
Visit(node->value());
|
290
|
+
Print(" }");
|
291
|
+
}
|
292
|
+
|
293
|
+
|
294
|
+
void PrettyPrinter::VisitSlot(Slot* node) {
|
295
|
+
switch (node->type()) {
|
296
|
+
case Slot::PARAMETER:
|
297
|
+
Print("parameter[%d]", node->index());
|
298
|
+
break;
|
299
|
+
case Slot::LOCAL:
|
300
|
+
Print("local[%d]", node->index());
|
301
|
+
break;
|
302
|
+
case Slot::CONTEXT:
|
303
|
+
Print("context[%d]", node->index());
|
304
|
+
break;
|
305
|
+
case Slot::LOOKUP:
|
306
|
+
Print("lookup[");
|
307
|
+
PrintLiteral(node->var()->name(), false);
|
308
|
+
Print("]");
|
309
|
+
break;
|
310
|
+
default:
|
311
|
+
UNREACHABLE();
|
312
|
+
}
|
313
|
+
}
|
314
|
+
|
315
|
+
|
316
|
+
void PrettyPrinter::VisitVariableProxy(VariableProxy* node) {
|
317
|
+
PrintLiteral(node->name(), false);
|
318
|
+
}
|
319
|
+
|
320
|
+
|
321
|
+
void PrettyPrinter::VisitAssignment(Assignment* node) {
|
322
|
+
Visit(node->target());
|
323
|
+
Print(" %s ", Token::String(node->op()));
|
324
|
+
Visit(node->value());
|
325
|
+
}
|
326
|
+
|
327
|
+
|
328
|
+
void PrettyPrinter::VisitThrow(Throw* node) {
|
329
|
+
Print("throw ");
|
330
|
+
Visit(node->exception());
|
331
|
+
}
|
332
|
+
|
333
|
+
|
334
|
+
void PrettyPrinter::VisitProperty(Property* node) {
|
335
|
+
Expression* key = node->key();
|
336
|
+
Literal* literal = key->AsLiteral();
|
337
|
+
if (literal != NULL && literal->handle()->IsSymbol()) {
|
338
|
+
Print("(");
|
339
|
+
Visit(node->obj());
|
340
|
+
Print(").");
|
341
|
+
PrintLiteral(literal->handle(), false);
|
342
|
+
} else {
|
343
|
+
Visit(node->obj());
|
344
|
+
Print("[");
|
345
|
+
Visit(key);
|
346
|
+
Print("]");
|
347
|
+
}
|
348
|
+
}
|
349
|
+
|
350
|
+
|
351
|
+
void PrettyPrinter::VisitCall(Call* node) {
|
352
|
+
Visit(node->expression());
|
353
|
+
PrintArguments(node->arguments());
|
354
|
+
}
|
355
|
+
|
356
|
+
|
357
|
+
void PrettyPrinter::VisitCallNew(CallNew* node) {
|
358
|
+
Print("new (");
|
359
|
+
Visit(node->expression());
|
360
|
+
Print(")");
|
361
|
+
PrintArguments(node->arguments());
|
362
|
+
}
|
363
|
+
|
364
|
+
|
365
|
+
void PrettyPrinter::VisitCallRuntime(CallRuntime* node) {
|
366
|
+
Print("%%");
|
367
|
+
PrintLiteral(node->name(), false);
|
368
|
+
PrintArguments(node->arguments());
|
369
|
+
}
|
370
|
+
|
371
|
+
|
372
|
+
void PrettyPrinter::VisitUnaryOperation(UnaryOperation* node) {
|
373
|
+
Print("(%s", Token::String(node->op()));
|
374
|
+
Visit(node->expression());
|
375
|
+
Print(")");
|
376
|
+
}
|
377
|
+
|
378
|
+
|
379
|
+
void PrettyPrinter::VisitIncrementOperation(IncrementOperation* node) {
|
380
|
+
UNREACHABLE();
|
381
|
+
}
|
382
|
+
|
383
|
+
|
384
|
+
void PrettyPrinter::VisitCountOperation(CountOperation* node) {
|
385
|
+
Print("(");
|
386
|
+
if (node->is_prefix()) Print("%s", Token::String(node->op()));
|
387
|
+
Visit(node->expression());
|
388
|
+
if (node->is_postfix()) Print("%s", Token::String(node->op()));
|
389
|
+
Print(")");
|
390
|
+
}
|
391
|
+
|
392
|
+
|
393
|
+
void PrettyPrinter::VisitBinaryOperation(BinaryOperation* node) {
|
394
|
+
Print("(");
|
395
|
+
Visit(node->left());
|
396
|
+
Print("%s", Token::String(node->op()));
|
397
|
+
Visit(node->right());
|
398
|
+
Print(")");
|
399
|
+
}
|
400
|
+
|
401
|
+
|
402
|
+
void PrettyPrinter::VisitCompareOperation(CompareOperation* node) {
|
403
|
+
Print("(");
|
404
|
+
Visit(node->left());
|
405
|
+
Print("%s", Token::String(node->op()));
|
406
|
+
Visit(node->right());
|
407
|
+
Print(")");
|
408
|
+
}
|
409
|
+
|
410
|
+
|
411
|
+
void PrettyPrinter::VisitCompareToNull(CompareToNull* node) {
|
412
|
+
Print("(");
|
413
|
+
Visit(node->expression());
|
414
|
+
Print("%s null)", Token::String(node->op()));
|
415
|
+
}
|
416
|
+
|
417
|
+
|
418
|
+
void PrettyPrinter::VisitThisFunction(ThisFunction* node) {
|
419
|
+
Print("<this-function>");
|
420
|
+
}
|
421
|
+
|
422
|
+
|
423
|
+
const char* PrettyPrinter::Print(AstNode* node) {
|
424
|
+
Init();
|
425
|
+
Visit(node);
|
426
|
+
return output_;
|
427
|
+
}
|
428
|
+
|
429
|
+
|
430
|
+
const char* PrettyPrinter::PrintExpression(FunctionLiteral* program) {
|
431
|
+
Init();
|
432
|
+
ExpressionStatement* statement =
|
433
|
+
program->body()->at(0)->AsExpressionStatement();
|
434
|
+
Visit(statement->expression());
|
435
|
+
return output_;
|
436
|
+
}
|
437
|
+
|
438
|
+
|
439
|
+
const char* PrettyPrinter::PrintProgram(FunctionLiteral* program) {
|
440
|
+
Init();
|
441
|
+
PrintStatements(program->body());
|
442
|
+
Print("\n");
|
443
|
+
return output_;
|
444
|
+
}
|
445
|
+
|
446
|
+
|
447
|
+
void PrettyPrinter::PrintOut(AstNode* node) {
|
448
|
+
PrettyPrinter printer;
|
449
|
+
PrintF("%s", printer.Print(node));
|
450
|
+
}
|
451
|
+
|
452
|
+
|
453
|
+
void PrettyPrinter::Init() {
|
454
|
+
if (size_ == 0) {
|
455
|
+
ASSERT(output_ == NULL);
|
456
|
+
const int initial_size = 256;
|
457
|
+
output_ = NewArray<char>(initial_size);
|
458
|
+
size_ = initial_size;
|
459
|
+
}
|
460
|
+
output_[0] = '\0';
|
461
|
+
pos_ = 0;
|
462
|
+
}
|
463
|
+
|
464
|
+
|
465
|
+
void PrettyPrinter::Print(const char* format, ...) {
|
466
|
+
for (;;) {
|
467
|
+
va_list arguments;
|
468
|
+
va_start(arguments, format);
|
469
|
+
int n = OS::VSNPrintF(Vector<char>(output_, size_) + pos_,
|
470
|
+
format,
|
471
|
+
arguments);
|
472
|
+
va_end(arguments);
|
473
|
+
|
474
|
+
if (n >= 0) {
|
475
|
+
// there was enough space - we are done
|
476
|
+
pos_ += n;
|
477
|
+
return;
|
478
|
+
} else {
|
479
|
+
// there was not enough space - allocate more and try again
|
480
|
+
const int slack = 32;
|
481
|
+
int new_size = size_ + (size_ >> 1) + slack;
|
482
|
+
char* new_output = NewArray<char>(new_size);
|
483
|
+
memcpy(new_output, output_, pos_);
|
484
|
+
DeleteArray(output_);
|
485
|
+
output_ = new_output;
|
486
|
+
size_ = new_size;
|
487
|
+
}
|
488
|
+
}
|
489
|
+
}
|
490
|
+
|
491
|
+
|
492
|
+
void PrettyPrinter::PrintStatements(ZoneList<Statement*>* statements) {
|
493
|
+
for (int i = 0; i < statements->length(); i++) {
|
494
|
+
if (i != 0) Print(" ");
|
495
|
+
Visit(statements->at(i));
|
496
|
+
}
|
497
|
+
}
|
498
|
+
|
499
|
+
|
500
|
+
void PrettyPrinter::PrintLabels(ZoneStringList* labels) {
|
501
|
+
if (labels != NULL) {
|
502
|
+
for (int i = 0; i < labels->length(); i++) {
|
503
|
+
PrintLiteral(labels->at(i), false);
|
504
|
+
Print(": ");
|
505
|
+
}
|
506
|
+
}
|
507
|
+
}
|
508
|
+
|
509
|
+
|
510
|
+
void PrettyPrinter::PrintArguments(ZoneList<Expression*>* arguments) {
|
511
|
+
Print("(");
|
512
|
+
for (int i = 0; i < arguments->length(); i++) {
|
513
|
+
if (i != 0) Print(", ");
|
514
|
+
Visit(arguments->at(i));
|
515
|
+
}
|
516
|
+
Print(")");
|
517
|
+
}
|
518
|
+
|
519
|
+
|
520
|
+
void PrettyPrinter::PrintLiteral(Handle<Object> value, bool quote) {
|
521
|
+
Object* object = *value;
|
522
|
+
if (object->IsString()) {
|
523
|
+
String* string = String::cast(object);
|
524
|
+
if (quote) Print("\"");
|
525
|
+
for (int i = 0; i < string->length(); i++) {
|
526
|
+
Print("%c", string->Get(i));
|
527
|
+
}
|
528
|
+
if (quote) Print("\"");
|
529
|
+
} else if (object->IsNull()) {
|
530
|
+
Print("null");
|
531
|
+
} else if (object->IsTrue()) {
|
532
|
+
Print("true");
|
533
|
+
} else if (object->IsFalse()) {
|
534
|
+
Print("false");
|
535
|
+
} else if (object->IsUndefined()) {
|
536
|
+
Print("undefined");
|
537
|
+
} else if (object->IsNumber()) {
|
538
|
+
Print("%g", object->Number());
|
539
|
+
} else if (object->IsJSObject()) {
|
540
|
+
// regular expression
|
541
|
+
if (object->IsJSFunction()) {
|
542
|
+
Print("JS-Function");
|
543
|
+
} else if (object->IsJSArray()) {
|
544
|
+
Print("JS-array[%u]", JSArray::cast(object)->length());
|
545
|
+
} else if (object->IsJSObject()) {
|
546
|
+
Print("JS-Object");
|
547
|
+
} else {
|
548
|
+
Print("?UNKNOWN?");
|
549
|
+
}
|
550
|
+
} else if (object->IsFixedArray()) {
|
551
|
+
Print("FixedArray");
|
552
|
+
} else {
|
553
|
+
Print("<unknown literal %p>", object);
|
554
|
+
}
|
555
|
+
}
|
556
|
+
|
557
|
+
|
558
|
+
void PrettyPrinter::PrintParameters(Scope* scope) {
|
559
|
+
Print("(");
|
560
|
+
for (int i = 0; i < scope->num_parameters(); i++) {
|
561
|
+
if (i > 0) Print(", ");
|
562
|
+
PrintLiteral(scope->parameter(i)->name(), false);
|
563
|
+
}
|
564
|
+
Print(")");
|
565
|
+
}
|
566
|
+
|
567
|
+
|
568
|
+
void PrettyPrinter::PrintDeclarations(ZoneList<Declaration*>* declarations) {
|
569
|
+
for (int i = 0; i < declarations->length(); i++) {
|
570
|
+
if (i > 0) Print(" ");
|
571
|
+
Visit(declarations->at(i));
|
572
|
+
}
|
573
|
+
}
|
574
|
+
|
575
|
+
|
576
|
+
void PrettyPrinter::PrintFunctionLiteral(FunctionLiteral* function) {
|
577
|
+
Print("function ");
|
578
|
+
PrintLiteral(function->name(), false);
|
579
|
+
PrintParameters(function->scope());
|
580
|
+
Print(" { ");
|
581
|
+
PrintDeclarations(function->scope()->declarations());
|
582
|
+
PrintStatements(function->body());
|
583
|
+
Print(" }");
|
584
|
+
}
|
585
|
+
|
586
|
+
|
587
|
+
void PrettyPrinter::PrintCaseClause(CaseClause* clause) {
|
588
|
+
if (clause->is_default()) {
|
589
|
+
Print("default");
|
590
|
+
} else {
|
591
|
+
Print("case ");
|
592
|
+
Visit(clause->label());
|
593
|
+
}
|
594
|
+
Print(": ");
|
595
|
+
PrintStatements(clause->statements());
|
596
|
+
if (clause->statements()->length() > 0)
|
597
|
+
Print(" ");
|
598
|
+
}
|
599
|
+
|
600
|
+
|
601
|
+
//-----------------------------------------------------------------------------
|
602
|
+
|
603
|
+
class IndentedScope BASE_EMBEDDED {
|
604
|
+
public:
|
605
|
+
explicit IndentedScope(AstPrinter* printer) : ast_printer_(printer) {
|
606
|
+
ast_printer_->inc_indent();
|
607
|
+
}
|
608
|
+
|
609
|
+
IndentedScope(AstPrinter* printer, const char* txt, AstNode* node = NULL)
|
610
|
+
: ast_printer_(printer) {
|
611
|
+
ast_printer_->PrintIndented(txt);
|
612
|
+
if (node != NULL && node->AsExpression() != NULL) {
|
613
|
+
Expression* expr = node->AsExpression();
|
614
|
+
bool printed_first = false;
|
615
|
+
if ((expr->type() != NULL) && (expr->type()->IsKnown())) {
|
616
|
+
ast_printer_->Print(" (type = ");
|
617
|
+
ast_printer_->Print(StaticType::Type2String(expr->type()));
|
618
|
+
printed_first = true;
|
619
|
+
}
|
620
|
+
if (printed_first) ast_printer_->Print(")");
|
621
|
+
}
|
622
|
+
ast_printer_->Print("\n");
|
623
|
+
ast_printer_->inc_indent();
|
624
|
+
}
|
625
|
+
|
626
|
+
virtual ~IndentedScope() {
|
627
|
+
ast_printer_->dec_indent();
|
628
|
+
}
|
629
|
+
|
630
|
+
private:
|
631
|
+
AstPrinter* ast_printer_;
|
632
|
+
};
|
633
|
+
|
634
|
+
|
635
|
+
//-----------------------------------------------------------------------------
|
636
|
+
|
637
|
+
|
638
|
+
AstPrinter::AstPrinter() : indent_(0) {
|
639
|
+
}
|
640
|
+
|
641
|
+
|
642
|
+
AstPrinter::~AstPrinter() {
|
643
|
+
ASSERT(indent_ == 0);
|
644
|
+
}
|
645
|
+
|
646
|
+
|
647
|
+
void AstPrinter::PrintIndented(const char* txt) {
|
648
|
+
for (int i = 0; i < indent_; i++) {
|
649
|
+
Print(". ");
|
650
|
+
}
|
651
|
+
Print(txt);
|
652
|
+
}
|
653
|
+
|
654
|
+
|
655
|
+
void AstPrinter::PrintLiteralIndented(const char* info,
|
656
|
+
Handle<Object> value,
|
657
|
+
bool quote) {
|
658
|
+
PrintIndented(info);
|
659
|
+
Print(" ");
|
660
|
+
PrintLiteral(value, quote);
|
661
|
+
Print("\n");
|
662
|
+
}
|
663
|
+
|
664
|
+
|
665
|
+
void AstPrinter::PrintLiteralWithModeIndented(const char* info,
|
666
|
+
Variable* var,
|
667
|
+
Handle<Object> value,
|
668
|
+
StaticType* type) {
|
669
|
+
if (var == NULL) {
|
670
|
+
PrintLiteralIndented(info, value, true);
|
671
|
+
} else {
|
672
|
+
EmbeddedVector<char, 256> buf;
|
673
|
+
int pos = OS::SNPrintF(buf, "%s (mode = %s", info,
|
674
|
+
Variable::Mode2String(var->mode()));
|
675
|
+
if (type->IsKnown()) {
|
676
|
+
pos += OS::SNPrintF(buf + pos, ", type = %s",
|
677
|
+
StaticType::Type2String(type));
|
678
|
+
}
|
679
|
+
OS::SNPrintF(buf + pos, ")");
|
680
|
+
PrintLiteralIndented(buf.start(), value, true);
|
681
|
+
}
|
682
|
+
}
|
683
|
+
|
684
|
+
|
685
|
+
void AstPrinter::PrintLabelsIndented(const char* info, ZoneStringList* labels) {
|
686
|
+
if (labels != NULL && labels->length() > 0) {
|
687
|
+
if (info == NULL) {
|
688
|
+
PrintIndented("LABELS ");
|
689
|
+
} else {
|
690
|
+
PrintIndented(info);
|
691
|
+
Print(" ");
|
692
|
+
}
|
693
|
+
PrintLabels(labels);
|
694
|
+
} else if (info != NULL) {
|
695
|
+
PrintIndented(info);
|
696
|
+
}
|
697
|
+
Print("\n");
|
698
|
+
}
|
699
|
+
|
700
|
+
|
701
|
+
void AstPrinter::PrintIndentedVisit(const char* s, AstNode* node) {
|
702
|
+
IndentedScope indent(this, s, node);
|
703
|
+
Visit(node);
|
704
|
+
}
|
705
|
+
|
706
|
+
|
707
|
+
const char* AstPrinter::PrintProgram(FunctionLiteral* program) {
|
708
|
+
Init();
|
709
|
+
{ IndentedScope indent(this, "FUNC");
|
710
|
+
PrintLiteralIndented("NAME", program->name(), true);
|
711
|
+
PrintLiteralIndented("INFERRED NAME", program->inferred_name(), true);
|
712
|
+
PrintParameters(program->scope());
|
713
|
+
PrintDeclarations(program->scope()->declarations());
|
714
|
+
PrintStatements(program->body());
|
715
|
+
}
|
716
|
+
return Output();
|
717
|
+
}
|
718
|
+
|
719
|
+
|
720
|
+
void AstPrinter::PrintDeclarations(ZoneList<Declaration*>* declarations) {
|
721
|
+
if (declarations->length() > 0) {
|
722
|
+
IndentedScope indent(this, "DECLS");
|
723
|
+
for (int i = 0; i < declarations->length(); i++) {
|
724
|
+
Visit(declarations->at(i));
|
725
|
+
}
|
726
|
+
}
|
727
|
+
}
|
728
|
+
|
729
|
+
|
730
|
+
void AstPrinter::PrintParameters(Scope* scope) {
|
731
|
+
if (scope->num_parameters() > 0) {
|
732
|
+
IndentedScope indent(this, "PARAMS");
|
733
|
+
for (int i = 0; i < scope->num_parameters(); i++) {
|
734
|
+
PrintLiteralWithModeIndented("VAR", scope->parameter(i),
|
735
|
+
scope->parameter(i)->name(),
|
736
|
+
scope->parameter(i)->type());
|
737
|
+
}
|
738
|
+
}
|
739
|
+
}
|
740
|
+
|
741
|
+
|
742
|
+
void AstPrinter::PrintStatements(ZoneList<Statement*>* statements) {
|
743
|
+
for (int i = 0; i < statements->length(); i++) {
|
744
|
+
Visit(statements->at(i));
|
745
|
+
}
|
746
|
+
}
|
747
|
+
|
748
|
+
|
749
|
+
void AstPrinter::PrintArguments(ZoneList<Expression*>* arguments) {
|
750
|
+
for (int i = 0; i < arguments->length(); i++) {
|
751
|
+
Visit(arguments->at(i));
|
752
|
+
}
|
753
|
+
}
|
754
|
+
|
755
|
+
|
756
|
+
void AstPrinter::PrintCaseClause(CaseClause* clause) {
|
757
|
+
if (clause->is_default()) {
|
758
|
+
IndentedScope indent(this, "DEFAULT");
|
759
|
+
PrintStatements(clause->statements());
|
760
|
+
} else {
|
761
|
+
IndentedScope indent(this, "CASE");
|
762
|
+
Visit(clause->label());
|
763
|
+
PrintStatements(clause->statements());
|
764
|
+
}
|
765
|
+
}
|
766
|
+
|
767
|
+
|
768
|
+
void AstPrinter::VisitBlock(Block* node) {
|
769
|
+
const char* block_txt = node->is_initializer_block() ? "BLOCK INIT" : "BLOCK";
|
770
|
+
IndentedScope indent(this, block_txt);
|
771
|
+
PrintStatements(node->statements());
|
772
|
+
}
|
773
|
+
|
774
|
+
|
775
|
+
void AstPrinter::VisitDeclaration(Declaration* node) {
|
776
|
+
if (node->fun() == NULL) {
|
777
|
+
// var or const declarations
|
778
|
+
PrintLiteralWithModeIndented(Variable::Mode2String(node->mode()),
|
779
|
+
node->proxy()->AsVariable(),
|
780
|
+
node->proxy()->name(),
|
781
|
+
node->proxy()->AsVariable()->type());
|
782
|
+
} else {
|
783
|
+
// function declarations
|
784
|
+
PrintIndented("FUNCTION ");
|
785
|
+
PrintLiteral(node->proxy()->name(), true);
|
786
|
+
Print(" = function ");
|
787
|
+
PrintLiteral(node->fun()->name(), false);
|
788
|
+
Print("\n");
|
789
|
+
}
|
790
|
+
}
|
791
|
+
|
792
|
+
|
793
|
+
void AstPrinter::VisitExpressionStatement(ExpressionStatement* node) {
|
794
|
+
Visit(node->expression());
|
795
|
+
}
|
796
|
+
|
797
|
+
|
798
|
+
void AstPrinter::VisitEmptyStatement(EmptyStatement* node) {
|
799
|
+
PrintIndented("EMPTY\n");
|
800
|
+
}
|
801
|
+
|
802
|
+
|
803
|
+
void AstPrinter::VisitIfStatement(IfStatement* node) {
|
804
|
+
PrintIndentedVisit("IF", node->condition());
|
805
|
+
PrintIndentedVisit("THEN", node->then_statement());
|
806
|
+
if (node->HasElseStatement()) {
|
807
|
+
PrintIndentedVisit("ELSE", node->else_statement());
|
808
|
+
}
|
809
|
+
}
|
810
|
+
|
811
|
+
|
812
|
+
void AstPrinter::VisitContinueStatement(ContinueStatement* node) {
|
813
|
+
PrintLabelsIndented("CONTINUE", node->target()->labels());
|
814
|
+
}
|
815
|
+
|
816
|
+
|
817
|
+
void AstPrinter::VisitBreakStatement(BreakStatement* node) {
|
818
|
+
PrintLabelsIndented("BREAK", node->target()->labels());
|
819
|
+
}
|
820
|
+
|
821
|
+
|
822
|
+
void AstPrinter::VisitReturnStatement(ReturnStatement* node) {
|
823
|
+
PrintIndentedVisit("RETURN", node->expression());
|
824
|
+
}
|
825
|
+
|
826
|
+
|
827
|
+
void AstPrinter::VisitWithEnterStatement(WithEnterStatement* node) {
|
828
|
+
PrintIndentedVisit("WITH ENTER", node->expression());
|
829
|
+
}
|
830
|
+
|
831
|
+
|
832
|
+
void AstPrinter::VisitWithExitStatement(WithExitStatement* node) {
|
833
|
+
PrintIndented("WITH EXIT\n");
|
834
|
+
}
|
835
|
+
|
836
|
+
|
837
|
+
void AstPrinter::VisitSwitchStatement(SwitchStatement* node) {
|
838
|
+
IndentedScope indent(this, "SWITCH");
|
839
|
+
PrintLabelsIndented(NULL, node->labels());
|
840
|
+
PrintIndentedVisit("TAG", node->tag());
|
841
|
+
for (int i = 0; i < node->cases()->length(); i++) {
|
842
|
+
PrintCaseClause(node->cases()->at(i));
|
843
|
+
}
|
844
|
+
}
|
845
|
+
|
846
|
+
|
847
|
+
void AstPrinter::VisitDoWhileStatement(DoWhileStatement* node) {
|
848
|
+
IndentedScope indent(this, "DO");
|
849
|
+
PrintLabelsIndented(NULL, node->labels());
|
850
|
+
PrintIndentedVisit("BODY", node->body());
|
851
|
+
PrintIndentedVisit("COND", node->cond());
|
852
|
+
}
|
853
|
+
|
854
|
+
|
855
|
+
void AstPrinter::VisitWhileStatement(WhileStatement* node) {
|
856
|
+
IndentedScope indent(this, "WHILE");
|
857
|
+
PrintLabelsIndented(NULL, node->labels());
|
858
|
+
PrintIndentedVisit("COND", node->cond());
|
859
|
+
PrintIndentedVisit("BODY", node->body());
|
860
|
+
}
|
861
|
+
|
862
|
+
|
863
|
+
void AstPrinter::VisitForStatement(ForStatement* node) {
|
864
|
+
IndentedScope indent(this, "FOR");
|
865
|
+
PrintLabelsIndented(NULL, node->labels());
|
866
|
+
if (node->init()) PrintIndentedVisit("INIT", node->init());
|
867
|
+
if (node->cond()) PrintIndentedVisit("COND", node->cond());
|
868
|
+
PrintIndentedVisit("BODY", node->body());
|
869
|
+
if (node->next()) PrintIndentedVisit("NEXT", node->next());
|
870
|
+
}
|
871
|
+
|
872
|
+
|
873
|
+
void AstPrinter::VisitForInStatement(ForInStatement* node) {
|
874
|
+
IndentedScope indent(this, "FOR IN");
|
875
|
+
PrintIndentedVisit("FOR", node->each());
|
876
|
+
PrintIndentedVisit("IN", node->enumerable());
|
877
|
+
PrintIndentedVisit("BODY", node->body());
|
878
|
+
}
|
879
|
+
|
880
|
+
|
881
|
+
void AstPrinter::VisitTryCatchStatement(TryCatchStatement* node) {
|
882
|
+
IndentedScope indent(this, "TRY CATCH");
|
883
|
+
PrintIndentedVisit("TRY", node->try_block());
|
884
|
+
PrintIndentedVisit("CATCHVAR", node->catch_var());
|
885
|
+
PrintIndentedVisit("CATCH", node->catch_block());
|
886
|
+
}
|
887
|
+
|
888
|
+
|
889
|
+
void AstPrinter::VisitTryFinallyStatement(TryFinallyStatement* node) {
|
890
|
+
IndentedScope indent(this, "TRY FINALLY");
|
891
|
+
PrintIndentedVisit("TRY", node->try_block());
|
892
|
+
PrintIndentedVisit("FINALLY", node->finally_block());
|
893
|
+
}
|
894
|
+
|
895
|
+
|
896
|
+
void AstPrinter::VisitDebuggerStatement(DebuggerStatement* node) {
|
897
|
+
IndentedScope indent(this, "DEBUGGER");
|
898
|
+
}
|
899
|
+
|
900
|
+
|
901
|
+
void AstPrinter::VisitFunctionLiteral(FunctionLiteral* node) {
|
902
|
+
IndentedScope indent(this, "FUNC LITERAL");
|
903
|
+
PrintLiteralIndented("NAME", node->name(), false);
|
904
|
+
PrintLiteralIndented("INFERRED NAME", node->inferred_name(), false);
|
905
|
+
PrintParameters(node->scope());
|
906
|
+
// We don't want to see the function literal in this case: it
|
907
|
+
// will be printed via PrintProgram when the code for it is
|
908
|
+
// generated.
|
909
|
+
// PrintStatements(node->body());
|
910
|
+
}
|
911
|
+
|
912
|
+
|
913
|
+
void AstPrinter::VisitSharedFunctionInfoLiteral(
|
914
|
+
SharedFunctionInfoLiteral* node) {
|
915
|
+
IndentedScope indent(this, "FUNC LITERAL");
|
916
|
+
PrintLiteralIndented("SHARED INFO", node->shared_function_info(), true);
|
917
|
+
}
|
918
|
+
|
919
|
+
|
920
|
+
void AstPrinter::VisitConditional(Conditional* node) {
|
921
|
+
IndentedScope indent(this, "CONDITIONAL");
|
922
|
+
PrintIndentedVisit("?", node->condition());
|
923
|
+
PrintIndentedVisit("THEN", node->then_expression());
|
924
|
+
PrintIndentedVisit("ELSE", node->else_expression());
|
925
|
+
}
|
926
|
+
|
927
|
+
|
928
|
+
void AstPrinter::VisitLiteral(Literal* node) {
|
929
|
+
PrintLiteralIndented("LITERAL", node->handle(), true);
|
930
|
+
}
|
931
|
+
|
932
|
+
|
933
|
+
void AstPrinter::VisitRegExpLiteral(RegExpLiteral* node) {
|
934
|
+
IndentedScope indent(this, "REGEXP LITERAL");
|
935
|
+
PrintLiteralIndented("PATTERN", node->pattern(), false);
|
936
|
+
PrintLiteralIndented("FLAGS", node->flags(), false);
|
937
|
+
}
|
938
|
+
|
939
|
+
|
940
|
+
void AstPrinter::VisitObjectLiteral(ObjectLiteral* node) {
|
941
|
+
IndentedScope indent(this, "OBJ LITERAL");
|
942
|
+
for (int i = 0; i < node->properties()->length(); i++) {
|
943
|
+
const char* prop_kind = NULL;
|
944
|
+
switch (node->properties()->at(i)->kind()) {
|
945
|
+
case ObjectLiteral::Property::CONSTANT:
|
946
|
+
prop_kind = "PROPERTY - CONSTANT";
|
947
|
+
break;
|
948
|
+
case ObjectLiteral::Property::COMPUTED:
|
949
|
+
prop_kind = "PROPERTY - COMPUTED";
|
950
|
+
break;
|
951
|
+
case ObjectLiteral::Property::MATERIALIZED_LITERAL:
|
952
|
+
prop_kind = "PROPERTY - MATERIALIZED_LITERAL";
|
953
|
+
break;
|
954
|
+
case ObjectLiteral::Property::PROTOTYPE:
|
955
|
+
prop_kind = "PROPERTY - PROTOTYPE";
|
956
|
+
break;
|
957
|
+
case ObjectLiteral::Property::GETTER:
|
958
|
+
prop_kind = "PROPERTY - GETTER";
|
959
|
+
break;
|
960
|
+
case ObjectLiteral::Property::SETTER:
|
961
|
+
prop_kind = "PROPERTY - SETTER";
|
962
|
+
break;
|
963
|
+
default:
|
964
|
+
UNREACHABLE();
|
965
|
+
}
|
966
|
+
IndentedScope prop(this, prop_kind);
|
967
|
+
PrintIndentedVisit("KEY", node->properties()->at(i)->key());
|
968
|
+
PrintIndentedVisit("VALUE", node->properties()->at(i)->value());
|
969
|
+
}
|
970
|
+
}
|
971
|
+
|
972
|
+
|
973
|
+
void AstPrinter::VisitArrayLiteral(ArrayLiteral* node) {
|
974
|
+
IndentedScope indent(this, "ARRAY LITERAL");
|
975
|
+
if (node->values()->length() > 0) {
|
976
|
+
IndentedScope indent(this, "VALUES");
|
977
|
+
for (int i = 0; i < node->values()->length(); i++) {
|
978
|
+
Visit(node->values()->at(i));
|
979
|
+
}
|
980
|
+
}
|
981
|
+
}
|
982
|
+
|
983
|
+
|
984
|
+
void AstPrinter::VisitCatchExtensionObject(CatchExtensionObject* node) {
|
985
|
+
IndentedScope indent(this, "CatchExtensionObject");
|
986
|
+
PrintIndentedVisit("KEY", node->key());
|
987
|
+
PrintIndentedVisit("VALUE", node->value());
|
988
|
+
}
|
989
|
+
|
990
|
+
|
991
|
+
void AstPrinter::VisitSlot(Slot* node) {
|
992
|
+
PrintIndented("SLOT ");
|
993
|
+
PrettyPrinter::VisitSlot(node);
|
994
|
+
Print("\n");
|
995
|
+
}
|
996
|
+
|
997
|
+
|
998
|
+
void AstPrinter::VisitVariableProxy(VariableProxy* node) {
|
999
|
+
PrintLiteralWithModeIndented("VAR PROXY", node->AsVariable(), node->name(),
|
1000
|
+
node->type());
|
1001
|
+
Variable* var = node->var();
|
1002
|
+
if (var != NULL && var->rewrite() != NULL) {
|
1003
|
+
IndentedScope indent(this);
|
1004
|
+
Visit(var->rewrite());
|
1005
|
+
}
|
1006
|
+
}
|
1007
|
+
|
1008
|
+
|
1009
|
+
void AstPrinter::VisitAssignment(Assignment* node) {
|
1010
|
+
IndentedScope indent(this, Token::Name(node->op()), node);
|
1011
|
+
Visit(node->target());
|
1012
|
+
Visit(node->value());
|
1013
|
+
}
|
1014
|
+
|
1015
|
+
|
1016
|
+
void AstPrinter::VisitThrow(Throw* node) {
|
1017
|
+
PrintIndentedVisit("THROW", node->exception());
|
1018
|
+
}
|
1019
|
+
|
1020
|
+
|
1021
|
+
void AstPrinter::VisitProperty(Property* node) {
|
1022
|
+
IndentedScope indent(this, "PROPERTY", node);
|
1023
|
+
Visit(node->obj());
|
1024
|
+
Literal* literal = node->key()->AsLiteral();
|
1025
|
+
if (literal != NULL && literal->handle()->IsSymbol()) {
|
1026
|
+
PrintLiteralIndented("NAME", literal->handle(), false);
|
1027
|
+
} else {
|
1028
|
+
PrintIndentedVisit("KEY", node->key());
|
1029
|
+
}
|
1030
|
+
}
|
1031
|
+
|
1032
|
+
|
1033
|
+
void AstPrinter::VisitCall(Call* node) {
|
1034
|
+
IndentedScope indent(this, "CALL");
|
1035
|
+
Visit(node->expression());
|
1036
|
+
PrintArguments(node->arguments());
|
1037
|
+
}
|
1038
|
+
|
1039
|
+
|
1040
|
+
void AstPrinter::VisitCallNew(CallNew* node) {
|
1041
|
+
IndentedScope indent(this, "CALL NEW");
|
1042
|
+
Visit(node->expression());
|
1043
|
+
PrintArguments(node->arguments());
|
1044
|
+
}
|
1045
|
+
|
1046
|
+
|
1047
|
+
void AstPrinter::VisitCallRuntime(CallRuntime* node) {
|
1048
|
+
PrintLiteralIndented("CALL RUNTIME ", node->name(), false);
|
1049
|
+
IndentedScope indent(this);
|
1050
|
+
PrintArguments(node->arguments());
|
1051
|
+
}
|
1052
|
+
|
1053
|
+
|
1054
|
+
void AstPrinter::VisitUnaryOperation(UnaryOperation* node) {
|
1055
|
+
PrintIndentedVisit(Token::Name(node->op()), node->expression());
|
1056
|
+
}
|
1057
|
+
|
1058
|
+
|
1059
|
+
void AstPrinter::VisitIncrementOperation(IncrementOperation* node) {
|
1060
|
+
UNREACHABLE();
|
1061
|
+
}
|
1062
|
+
|
1063
|
+
|
1064
|
+
void AstPrinter::VisitCountOperation(CountOperation* node) {
|
1065
|
+
EmbeddedVector<char, 128> buf;
|
1066
|
+
if (node->type()->IsKnown()) {
|
1067
|
+
OS::SNPrintF(buf, "%s %s (type = %s)",
|
1068
|
+
(node->is_prefix() ? "PRE" : "POST"),
|
1069
|
+
Token::Name(node->op()),
|
1070
|
+
StaticType::Type2String(node->type()));
|
1071
|
+
} else {
|
1072
|
+
OS::SNPrintF(buf, "%s %s", (node->is_prefix() ? "PRE" : "POST"),
|
1073
|
+
Token::Name(node->op()));
|
1074
|
+
}
|
1075
|
+
PrintIndentedVisit(buf.start(), node->expression());
|
1076
|
+
}
|
1077
|
+
|
1078
|
+
|
1079
|
+
void AstPrinter::VisitBinaryOperation(BinaryOperation* node) {
|
1080
|
+
IndentedScope indent(this, Token::Name(node->op()), node);
|
1081
|
+
Visit(node->left());
|
1082
|
+
Visit(node->right());
|
1083
|
+
}
|
1084
|
+
|
1085
|
+
|
1086
|
+
void AstPrinter::VisitCompareOperation(CompareOperation* node) {
|
1087
|
+
IndentedScope indent(this, Token::Name(node->op()), node);
|
1088
|
+
Visit(node->left());
|
1089
|
+
Visit(node->right());
|
1090
|
+
}
|
1091
|
+
|
1092
|
+
|
1093
|
+
void AstPrinter::VisitCompareToNull(CompareToNull* node) {
|
1094
|
+
const char* name = node->is_strict()
|
1095
|
+
? "COMPARE-TO-NULL-STRICT"
|
1096
|
+
: "COMPARE-TO-NULL";
|
1097
|
+
IndentedScope indent(this, name, node);
|
1098
|
+
Visit(node->expression());
|
1099
|
+
}
|
1100
|
+
|
1101
|
+
|
1102
|
+
void AstPrinter::VisitThisFunction(ThisFunction* node) {
|
1103
|
+
IndentedScope indent(this, "THIS-FUNCTION");
|
1104
|
+
}
|
1105
|
+
|
1106
|
+
|
1107
|
+
TagScope::TagScope(JsonAstBuilder* builder, const char* name)
|
1108
|
+
: builder_(builder), next_(builder->tag()), has_body_(false) {
|
1109
|
+
if (next_ != NULL) {
|
1110
|
+
next_->use();
|
1111
|
+
builder->Print(",\n");
|
1112
|
+
}
|
1113
|
+
builder->set_tag(this);
|
1114
|
+
builder->PrintIndented("[");
|
1115
|
+
builder->Print("\"%s\"", name);
|
1116
|
+
builder->increase_indent(JsonAstBuilder::kTagIndentSize);
|
1117
|
+
}
|
1118
|
+
|
1119
|
+
|
1120
|
+
TagScope::~TagScope() {
|
1121
|
+
builder_->decrease_indent(JsonAstBuilder::kTagIndentSize);
|
1122
|
+
if (has_body_) {
|
1123
|
+
builder_->Print("\n");
|
1124
|
+
builder_->PrintIndented("]");
|
1125
|
+
} else {
|
1126
|
+
builder_->Print("]");
|
1127
|
+
}
|
1128
|
+
builder_->set_tag(next_);
|
1129
|
+
}
|
1130
|
+
|
1131
|
+
|
1132
|
+
AttributesScope::AttributesScope(JsonAstBuilder* builder)
|
1133
|
+
: builder_(builder), attribute_count_(0) {
|
1134
|
+
builder->set_attributes(this);
|
1135
|
+
builder->tag()->use();
|
1136
|
+
builder->Print(",\n");
|
1137
|
+
builder->PrintIndented("{");
|
1138
|
+
builder->increase_indent(JsonAstBuilder::kAttributesIndentSize);
|
1139
|
+
}
|
1140
|
+
|
1141
|
+
|
1142
|
+
AttributesScope::~AttributesScope() {
|
1143
|
+
builder_->decrease_indent(JsonAstBuilder::kAttributesIndentSize);
|
1144
|
+
if (attribute_count_ > 1) {
|
1145
|
+
builder_->Print("\n");
|
1146
|
+
builder_->PrintIndented("}");
|
1147
|
+
} else {
|
1148
|
+
builder_->Print("}");
|
1149
|
+
}
|
1150
|
+
builder_->set_attributes(NULL);
|
1151
|
+
}
|
1152
|
+
|
1153
|
+
|
1154
|
+
const char* JsonAstBuilder::BuildProgram(FunctionLiteral* program) {
|
1155
|
+
Init();
|
1156
|
+
Visit(program);
|
1157
|
+
Print("\n");
|
1158
|
+
return Output();
|
1159
|
+
}
|
1160
|
+
|
1161
|
+
|
1162
|
+
void JsonAstBuilder::AddAttributePrefix(const char* name) {
|
1163
|
+
if (attributes()->is_used()) {
|
1164
|
+
Print(",\n");
|
1165
|
+
PrintIndented("\"");
|
1166
|
+
} else {
|
1167
|
+
Print("\"");
|
1168
|
+
}
|
1169
|
+
Print("%s\":", name);
|
1170
|
+
attributes()->use();
|
1171
|
+
}
|
1172
|
+
|
1173
|
+
|
1174
|
+
void JsonAstBuilder::AddAttribute(const char* name, Handle<String> value) {
|
1175
|
+
SmartPointer<char> value_string = value->ToCString();
|
1176
|
+
AddAttributePrefix(name);
|
1177
|
+
Print("\"%s\"", *value_string);
|
1178
|
+
}
|
1179
|
+
|
1180
|
+
|
1181
|
+
void JsonAstBuilder::AddAttribute(const char* name, const char* value) {
|
1182
|
+
AddAttributePrefix(name);
|
1183
|
+
Print("\"%s\"", value);
|
1184
|
+
}
|
1185
|
+
|
1186
|
+
|
1187
|
+
void JsonAstBuilder::AddAttribute(const char* name, int value) {
|
1188
|
+
AddAttributePrefix(name);
|
1189
|
+
Print("%d", value);
|
1190
|
+
}
|
1191
|
+
|
1192
|
+
|
1193
|
+
void JsonAstBuilder::AddAttribute(const char* name, bool value) {
|
1194
|
+
AddAttributePrefix(name);
|
1195
|
+
Print(value ? "true" : "false");
|
1196
|
+
}
|
1197
|
+
|
1198
|
+
|
1199
|
+
void JsonAstBuilder::VisitBlock(Block* stmt) {
|
1200
|
+
TagScope tag(this, "Block");
|
1201
|
+
VisitStatements(stmt->statements());
|
1202
|
+
}
|
1203
|
+
|
1204
|
+
|
1205
|
+
void JsonAstBuilder::VisitExpressionStatement(ExpressionStatement* stmt) {
|
1206
|
+
TagScope tag(this, "ExpressionStatement");
|
1207
|
+
Visit(stmt->expression());
|
1208
|
+
}
|
1209
|
+
|
1210
|
+
|
1211
|
+
void JsonAstBuilder::VisitEmptyStatement(EmptyStatement* stmt) {
|
1212
|
+
TagScope tag(this, "EmptyStatement");
|
1213
|
+
}
|
1214
|
+
|
1215
|
+
|
1216
|
+
void JsonAstBuilder::VisitIfStatement(IfStatement* stmt) {
|
1217
|
+
TagScope tag(this, "IfStatement");
|
1218
|
+
Visit(stmt->condition());
|
1219
|
+
Visit(stmt->then_statement());
|
1220
|
+
Visit(stmt->else_statement());
|
1221
|
+
}
|
1222
|
+
|
1223
|
+
|
1224
|
+
void JsonAstBuilder::VisitContinueStatement(ContinueStatement* stmt) {
|
1225
|
+
TagScope tag(this, "ContinueStatement");
|
1226
|
+
}
|
1227
|
+
|
1228
|
+
|
1229
|
+
void JsonAstBuilder::VisitBreakStatement(BreakStatement* stmt) {
|
1230
|
+
TagScope tag(this, "BreakStatement");
|
1231
|
+
}
|
1232
|
+
|
1233
|
+
|
1234
|
+
void JsonAstBuilder::VisitReturnStatement(ReturnStatement* stmt) {
|
1235
|
+
TagScope tag(this, "ReturnStatement");
|
1236
|
+
Visit(stmt->expression());
|
1237
|
+
}
|
1238
|
+
|
1239
|
+
|
1240
|
+
void JsonAstBuilder::VisitWithEnterStatement(WithEnterStatement* stmt) {
|
1241
|
+
TagScope tag(this, "WithEnterStatement");
|
1242
|
+
Visit(stmt->expression());
|
1243
|
+
}
|
1244
|
+
|
1245
|
+
|
1246
|
+
void JsonAstBuilder::VisitWithExitStatement(WithExitStatement* stmt) {
|
1247
|
+
TagScope tag(this, "WithExitStatement");
|
1248
|
+
}
|
1249
|
+
|
1250
|
+
|
1251
|
+
void JsonAstBuilder::VisitSwitchStatement(SwitchStatement* stmt) {
|
1252
|
+
TagScope tag(this, "SwitchStatement");
|
1253
|
+
}
|
1254
|
+
|
1255
|
+
|
1256
|
+
void JsonAstBuilder::VisitDoWhileStatement(DoWhileStatement* stmt) {
|
1257
|
+
TagScope tag(this, "DoWhileStatement");
|
1258
|
+
Visit(stmt->body());
|
1259
|
+
Visit(stmt->cond());
|
1260
|
+
}
|
1261
|
+
|
1262
|
+
|
1263
|
+
void JsonAstBuilder::VisitWhileStatement(WhileStatement* stmt) {
|
1264
|
+
TagScope tag(this, "WhileStatement");
|
1265
|
+
Visit(stmt->cond());
|
1266
|
+
Visit(stmt->body());
|
1267
|
+
}
|
1268
|
+
|
1269
|
+
|
1270
|
+
void JsonAstBuilder::VisitForStatement(ForStatement* stmt) {
|
1271
|
+
TagScope tag(this, "ForStatement");
|
1272
|
+
if (stmt->init() != NULL) Visit(stmt->init());
|
1273
|
+
if (stmt->cond() != NULL) Visit(stmt->cond());
|
1274
|
+
Visit(stmt->body());
|
1275
|
+
if (stmt->next() != NULL) Visit(stmt->next());
|
1276
|
+
}
|
1277
|
+
|
1278
|
+
|
1279
|
+
void JsonAstBuilder::VisitForInStatement(ForInStatement* stmt) {
|
1280
|
+
TagScope tag(this, "ForInStatement");
|
1281
|
+
Visit(stmt->each());
|
1282
|
+
Visit(stmt->enumerable());
|
1283
|
+
Visit(stmt->body());
|
1284
|
+
}
|
1285
|
+
|
1286
|
+
|
1287
|
+
void JsonAstBuilder::VisitTryCatchStatement(TryCatchStatement* stmt) {
|
1288
|
+
TagScope tag(this, "TryCatchStatement");
|
1289
|
+
Visit(stmt->try_block());
|
1290
|
+
Visit(stmt->catch_var());
|
1291
|
+
Visit(stmt->catch_block());
|
1292
|
+
}
|
1293
|
+
|
1294
|
+
|
1295
|
+
void JsonAstBuilder::VisitTryFinallyStatement(TryFinallyStatement* stmt) {
|
1296
|
+
TagScope tag(this, "TryFinallyStatement");
|
1297
|
+
Visit(stmt->try_block());
|
1298
|
+
Visit(stmt->finally_block());
|
1299
|
+
}
|
1300
|
+
|
1301
|
+
|
1302
|
+
void JsonAstBuilder::VisitDebuggerStatement(DebuggerStatement* stmt) {
|
1303
|
+
TagScope tag(this, "DebuggerStatement");
|
1304
|
+
}
|
1305
|
+
|
1306
|
+
|
1307
|
+
void JsonAstBuilder::VisitFunctionLiteral(FunctionLiteral* expr) {
|
1308
|
+
TagScope tag(this, "FunctionLiteral");
|
1309
|
+
{
|
1310
|
+
AttributesScope attributes(this);
|
1311
|
+
AddAttribute("name", expr->name());
|
1312
|
+
}
|
1313
|
+
VisitDeclarations(expr->scope()->declarations());
|
1314
|
+
VisitStatements(expr->body());
|
1315
|
+
}
|
1316
|
+
|
1317
|
+
|
1318
|
+
void JsonAstBuilder::VisitSharedFunctionInfoLiteral(
|
1319
|
+
SharedFunctionInfoLiteral* expr) {
|
1320
|
+
TagScope tag(this, "SharedFunctionInfoLiteral");
|
1321
|
+
}
|
1322
|
+
|
1323
|
+
|
1324
|
+
void JsonAstBuilder::VisitConditional(Conditional* expr) {
|
1325
|
+
TagScope tag(this, "Conditional");
|
1326
|
+
}
|
1327
|
+
|
1328
|
+
|
1329
|
+
void JsonAstBuilder::VisitSlot(Slot* expr) {
|
1330
|
+
TagScope tag(this, "Slot");
|
1331
|
+
{
|
1332
|
+
AttributesScope attributes(this);
|
1333
|
+
switch (expr->type()) {
|
1334
|
+
case Slot::PARAMETER:
|
1335
|
+
AddAttribute("type", "PARAMETER");
|
1336
|
+
break;
|
1337
|
+
case Slot::LOCAL:
|
1338
|
+
AddAttribute("type", "LOCAL");
|
1339
|
+
break;
|
1340
|
+
case Slot::CONTEXT:
|
1341
|
+
AddAttribute("type", "CONTEXT");
|
1342
|
+
break;
|
1343
|
+
case Slot::LOOKUP:
|
1344
|
+
AddAttribute("type", "LOOKUP");
|
1345
|
+
break;
|
1346
|
+
}
|
1347
|
+
AddAttribute("index", expr->index());
|
1348
|
+
}
|
1349
|
+
}
|
1350
|
+
|
1351
|
+
|
1352
|
+
void JsonAstBuilder::VisitVariableProxy(VariableProxy* expr) {
|
1353
|
+
if (expr->var()->rewrite() == NULL) {
|
1354
|
+
TagScope tag(this, "VariableProxy");
|
1355
|
+
{
|
1356
|
+
AttributesScope attributes(this);
|
1357
|
+
AddAttribute("name", expr->name());
|
1358
|
+
AddAttribute("mode", Variable::Mode2String(expr->var()->mode()));
|
1359
|
+
}
|
1360
|
+
} else {
|
1361
|
+
Visit(expr->var()->rewrite());
|
1362
|
+
}
|
1363
|
+
}
|
1364
|
+
|
1365
|
+
|
1366
|
+
void JsonAstBuilder::VisitLiteral(Literal* expr) {
|
1367
|
+
TagScope tag(this, "Literal");
|
1368
|
+
{
|
1369
|
+
AttributesScope attributes(this);
|
1370
|
+
Handle<Object> handle = expr->handle();
|
1371
|
+
if (handle->IsString()) {
|
1372
|
+
AddAttribute("handle", Handle<String>(String::cast(*handle)));
|
1373
|
+
} else if (handle->IsSmi()) {
|
1374
|
+
AddAttribute("handle", Smi::cast(*handle)->value());
|
1375
|
+
}
|
1376
|
+
}
|
1377
|
+
}
|
1378
|
+
|
1379
|
+
|
1380
|
+
void JsonAstBuilder::VisitRegExpLiteral(RegExpLiteral* expr) {
|
1381
|
+
TagScope tag(this, "RegExpLiteral");
|
1382
|
+
}
|
1383
|
+
|
1384
|
+
|
1385
|
+
void JsonAstBuilder::VisitObjectLiteral(ObjectLiteral* expr) {
|
1386
|
+
TagScope tag(this, "ObjectLiteral");
|
1387
|
+
}
|
1388
|
+
|
1389
|
+
|
1390
|
+
void JsonAstBuilder::VisitArrayLiteral(ArrayLiteral* expr) {
|
1391
|
+
TagScope tag(this, "ArrayLiteral");
|
1392
|
+
}
|
1393
|
+
|
1394
|
+
|
1395
|
+
void JsonAstBuilder::VisitCatchExtensionObject(CatchExtensionObject* expr) {
|
1396
|
+
TagScope tag(this, "CatchExtensionObject");
|
1397
|
+
Visit(expr->key());
|
1398
|
+
Visit(expr->value());
|
1399
|
+
}
|
1400
|
+
|
1401
|
+
|
1402
|
+
void JsonAstBuilder::VisitAssignment(Assignment* expr) {
|
1403
|
+
TagScope tag(this, "Assignment");
|
1404
|
+
{
|
1405
|
+
AttributesScope attributes(this);
|
1406
|
+
AddAttribute("op", Token::Name(expr->op()));
|
1407
|
+
}
|
1408
|
+
Visit(expr->target());
|
1409
|
+
Visit(expr->value());
|
1410
|
+
}
|
1411
|
+
|
1412
|
+
|
1413
|
+
void JsonAstBuilder::VisitThrow(Throw* expr) {
|
1414
|
+
TagScope tag(this, "Throw");
|
1415
|
+
Visit(expr->exception());
|
1416
|
+
}
|
1417
|
+
|
1418
|
+
|
1419
|
+
void JsonAstBuilder::VisitProperty(Property* expr) {
|
1420
|
+
TagScope tag(this, "Property");
|
1421
|
+
{
|
1422
|
+
AttributesScope attributes(this);
|
1423
|
+
AddAttribute("type", expr->is_synthetic() ? "SYNTHETIC" : "NORMAL");
|
1424
|
+
}
|
1425
|
+
Visit(expr->obj());
|
1426
|
+
Visit(expr->key());
|
1427
|
+
}
|
1428
|
+
|
1429
|
+
|
1430
|
+
void JsonAstBuilder::VisitCall(Call* expr) {
|
1431
|
+
TagScope tag(this, "Call");
|
1432
|
+
Visit(expr->expression());
|
1433
|
+
VisitExpressions(expr->arguments());
|
1434
|
+
}
|
1435
|
+
|
1436
|
+
|
1437
|
+
void JsonAstBuilder::VisitCallNew(CallNew* expr) {
|
1438
|
+
TagScope tag(this, "CallNew");
|
1439
|
+
Visit(expr->expression());
|
1440
|
+
VisitExpressions(expr->arguments());
|
1441
|
+
}
|
1442
|
+
|
1443
|
+
|
1444
|
+
void JsonAstBuilder::VisitCallRuntime(CallRuntime* expr) {
|
1445
|
+
TagScope tag(this, "CallRuntime");
|
1446
|
+
{
|
1447
|
+
AttributesScope attributes(this);
|
1448
|
+
AddAttribute("name", expr->name());
|
1449
|
+
}
|
1450
|
+
VisitExpressions(expr->arguments());
|
1451
|
+
}
|
1452
|
+
|
1453
|
+
|
1454
|
+
void JsonAstBuilder::VisitUnaryOperation(UnaryOperation* expr) {
|
1455
|
+
TagScope tag(this, "UnaryOperation");
|
1456
|
+
{
|
1457
|
+
AttributesScope attributes(this);
|
1458
|
+
AddAttribute("op", Token::Name(expr->op()));
|
1459
|
+
}
|
1460
|
+
Visit(expr->expression());
|
1461
|
+
}
|
1462
|
+
|
1463
|
+
|
1464
|
+
void JsonAstBuilder::VisitIncrementOperation(IncrementOperation* expr) {
|
1465
|
+
UNREACHABLE();
|
1466
|
+
}
|
1467
|
+
|
1468
|
+
|
1469
|
+
void JsonAstBuilder::VisitCountOperation(CountOperation* expr) {
|
1470
|
+
TagScope tag(this, "CountOperation");
|
1471
|
+
{
|
1472
|
+
AttributesScope attributes(this);
|
1473
|
+
AddAttribute("is_prefix", expr->is_prefix());
|
1474
|
+
AddAttribute("op", Token::Name(expr->op()));
|
1475
|
+
}
|
1476
|
+
Visit(expr->expression());
|
1477
|
+
}
|
1478
|
+
|
1479
|
+
|
1480
|
+
void JsonAstBuilder::VisitBinaryOperation(BinaryOperation* expr) {
|
1481
|
+
TagScope tag(this, "BinaryOperation");
|
1482
|
+
{
|
1483
|
+
AttributesScope attributes(this);
|
1484
|
+
AddAttribute("op", Token::Name(expr->op()));
|
1485
|
+
}
|
1486
|
+
Visit(expr->left());
|
1487
|
+
Visit(expr->right());
|
1488
|
+
}
|
1489
|
+
|
1490
|
+
|
1491
|
+
void JsonAstBuilder::VisitCompareOperation(CompareOperation* expr) {
|
1492
|
+
TagScope tag(this, "CompareOperation");
|
1493
|
+
{
|
1494
|
+
AttributesScope attributes(this);
|
1495
|
+
AddAttribute("op", Token::Name(expr->op()));
|
1496
|
+
}
|
1497
|
+
Visit(expr->left());
|
1498
|
+
Visit(expr->right());
|
1499
|
+
}
|
1500
|
+
|
1501
|
+
|
1502
|
+
void JsonAstBuilder::VisitCompareToNull(CompareToNull* expr) {
|
1503
|
+
TagScope tag(this, "CompareToNull");
|
1504
|
+
{
|
1505
|
+
AttributesScope attributes(this);
|
1506
|
+
AddAttribute("is_strict", expr->is_strict());
|
1507
|
+
}
|
1508
|
+
Visit(expr->expression());
|
1509
|
+
}
|
1510
|
+
|
1511
|
+
|
1512
|
+
void JsonAstBuilder::VisitThisFunction(ThisFunction* expr) {
|
1513
|
+
TagScope tag(this, "ThisFunction");
|
1514
|
+
}
|
1515
|
+
|
1516
|
+
|
1517
|
+
void JsonAstBuilder::VisitDeclaration(Declaration* decl) {
|
1518
|
+
TagScope tag(this, "Declaration");
|
1519
|
+
{
|
1520
|
+
AttributesScope attributes(this);
|
1521
|
+
AddAttribute("mode", Variable::Mode2String(decl->mode()));
|
1522
|
+
}
|
1523
|
+
Visit(decl->proxy());
|
1524
|
+
if (decl->fun() != NULL) Visit(decl->fun());
|
1525
|
+
}
|
1526
|
+
|
1527
|
+
|
1528
|
+
#endif // DEBUG
|
1529
|
+
|
1530
|
+
} } // namespace v8::internal
|