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
@@ -1,232 +0,0 @@
|
|
1
|
-
// Copyright 2006-2009 the V8 project authors. All rights reserved.
|
2
|
-
// Redistribution and use in source and binary forms, with or without
|
3
|
-
// modification, are permitted provided that the following conditions are
|
4
|
-
// met:
|
5
|
-
//
|
6
|
-
// * Redistributions of source code must retain the above copyright
|
7
|
-
// notice, this list of conditions and the following disclaimer.
|
8
|
-
// * Redistributions in binary form must reproduce the above
|
9
|
-
// copyright notice, this list of conditions and the following
|
10
|
-
// disclaimer in the documentation and/or other materials provided
|
11
|
-
// with the distribution.
|
12
|
-
// * Neither the name of Google Inc. nor the names of its
|
13
|
-
// contributors may be used to endorse or promote products derived
|
14
|
-
// from this software without specific prior written permission.
|
15
|
-
//
|
16
|
-
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
17
|
-
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
18
|
-
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
19
|
-
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
20
|
-
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
21
|
-
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
22
|
-
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
23
|
-
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
24
|
-
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
25
|
-
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
26
|
-
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
27
|
-
|
28
|
-
#ifndef V8_LOG_UTILS_H_
|
29
|
-
#define V8_LOG_UTILS_H_
|
30
|
-
|
31
|
-
namespace v8 {
|
32
|
-
namespace internal {
|
33
|
-
|
34
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
35
|
-
|
36
|
-
// A memory buffer that increments its size as you write in it. Size
|
37
|
-
// is incremented with 'block_size' steps, never exceeding 'max_size'.
|
38
|
-
// During growth, memory contents are never copied. At the end of the
|
39
|
-
// buffer an amount of memory specified in 'seal_size' is reserved.
|
40
|
-
// When writing position reaches max_size - seal_size, buffer auto-seals
|
41
|
-
// itself with 'seal' and allows no further writes. Data pointed by
|
42
|
-
// 'seal' must be available during entire LogDynamicBuffer lifetime.
|
43
|
-
//
|
44
|
-
// An instance of this class is created dynamically by Log.
|
45
|
-
class LogDynamicBuffer {
|
46
|
-
public:
|
47
|
-
LogDynamicBuffer(
|
48
|
-
int block_size, int max_size, const char* seal, int seal_size);
|
49
|
-
|
50
|
-
~LogDynamicBuffer();
|
51
|
-
|
52
|
-
// Reads contents of the buffer starting from 'from_pos'. Upon
|
53
|
-
// return, 'dest_buf' is filled with the data. Actual amount of data
|
54
|
-
// filled is returned, it is <= 'buf_size'.
|
55
|
-
int Read(int from_pos, char* dest_buf, int buf_size);
|
56
|
-
|
57
|
-
// Writes 'data' to the buffer, making it larger if necessary. If
|
58
|
-
// data is too big to fit in the buffer, it doesn't get written at
|
59
|
-
// all. In that case, buffer auto-seals itself and stops to accept
|
60
|
-
// any incoming writes. Returns amount of data written (it is either
|
61
|
-
// 'data_size', or 0, if 'data' is too big).
|
62
|
-
int Write(const char* data, int data_size);
|
63
|
-
|
64
|
-
private:
|
65
|
-
void AllocateBlock(int index) {
|
66
|
-
blocks_[index] = NewArray<char>(block_size_);
|
67
|
-
}
|
68
|
-
|
69
|
-
int BlockIndex(int pos) const { return pos / block_size_; }
|
70
|
-
|
71
|
-
int BlocksCount() const { return BlockIndex(max_size_) + 1; }
|
72
|
-
|
73
|
-
int PosInBlock(int pos) const { return pos % block_size_; }
|
74
|
-
|
75
|
-
int Seal();
|
76
|
-
|
77
|
-
int WriteInternal(const char* data, int data_size);
|
78
|
-
|
79
|
-
const int block_size_;
|
80
|
-
const int max_size_;
|
81
|
-
const char* seal_;
|
82
|
-
const int seal_size_;
|
83
|
-
ScopedVector<char*> blocks_;
|
84
|
-
int write_pos_;
|
85
|
-
int block_index_;
|
86
|
-
int block_write_pos_;
|
87
|
-
bool is_sealed_;
|
88
|
-
};
|
89
|
-
|
90
|
-
|
91
|
-
// Functions and data for performing output of log messages.
|
92
|
-
class Log : public AllStatic {
|
93
|
-
public:
|
94
|
-
// Opens stdout for logging.
|
95
|
-
static void OpenStdout();
|
96
|
-
|
97
|
-
// Opens file for logging.
|
98
|
-
static void OpenFile(const char* name);
|
99
|
-
|
100
|
-
// Opens memory buffer for logging.
|
101
|
-
static void OpenMemoryBuffer();
|
102
|
-
|
103
|
-
// Disables logging, but preserves acquired resources.
|
104
|
-
static void stop() { is_stopped_ = true; }
|
105
|
-
|
106
|
-
// Frees all resources acquired in Open... functions.
|
107
|
-
static void Close();
|
108
|
-
|
109
|
-
// See description in include/v8.h.
|
110
|
-
static int GetLogLines(int from_pos, char* dest_buf, int max_size);
|
111
|
-
|
112
|
-
// Returns whether logging is enabled.
|
113
|
-
static bool IsEnabled() {
|
114
|
-
return !is_stopped_ && (output_handle_ != NULL || output_buffer_ != NULL);
|
115
|
-
}
|
116
|
-
|
117
|
-
// Size of buffer used for formatting log messages.
|
118
|
-
static const int kMessageBufferSize = v8::V8::kMinimumSizeForLogLinesBuffer;
|
119
|
-
|
120
|
-
private:
|
121
|
-
typedef int (*WritePtr)(const char* msg, int length);
|
122
|
-
|
123
|
-
// Initialization function called from Open... functions.
|
124
|
-
static void Init();
|
125
|
-
|
126
|
-
// Write functions assume that mutex_ is acquired by the caller.
|
127
|
-
static WritePtr Write;
|
128
|
-
|
129
|
-
// Implementation of writing to a log file.
|
130
|
-
static int WriteToFile(const char* msg, int length) {
|
131
|
-
ASSERT(output_handle_ != NULL);
|
132
|
-
size_t rv = fwrite(msg, 1, length, output_handle_);
|
133
|
-
ASSERT(static_cast<size_t>(length) == rv);
|
134
|
-
USE(rv);
|
135
|
-
fflush(output_handle_);
|
136
|
-
return length;
|
137
|
-
}
|
138
|
-
|
139
|
-
// Implementation of writing to a memory buffer.
|
140
|
-
static int WriteToMemory(const char* msg, int length) {
|
141
|
-
ASSERT(output_buffer_ != NULL);
|
142
|
-
return output_buffer_->Write(msg, length);
|
143
|
-
}
|
144
|
-
|
145
|
-
// Whether logging is stopped (e.g. due to insufficient resources).
|
146
|
-
static bool is_stopped_;
|
147
|
-
|
148
|
-
// When logging is active, either output_handle_ or output_buffer_ is used
|
149
|
-
// to store a pointer to log destination. If logging was opened via OpenStdout
|
150
|
-
// or OpenFile, then output_handle_ is used. If logging was opened
|
151
|
-
// via OpenMemoryBuffer, then output_buffer_ is used.
|
152
|
-
// mutex_ should be acquired before using output_handle_ or output_buffer_.
|
153
|
-
static FILE* output_handle_;
|
154
|
-
|
155
|
-
// Used when low-level profiling is active to save code object contents.
|
156
|
-
static FILE* output_code_handle_;
|
157
|
-
|
158
|
-
static LogDynamicBuffer* output_buffer_;
|
159
|
-
|
160
|
-
// Size of dynamic buffer block (and dynamic buffer initial size).
|
161
|
-
static const int kDynamicBufferBlockSize = 65536;
|
162
|
-
|
163
|
-
// Maximum size of dynamic buffer.
|
164
|
-
static const int kMaxDynamicBufferSize = 50 * 1024 * 1024;
|
165
|
-
|
166
|
-
// Message to "seal" dynamic buffer with.
|
167
|
-
static const char* kDynamicBufferSeal;
|
168
|
-
|
169
|
-
// mutex_ is a Mutex used for enforcing exclusive
|
170
|
-
// access to the formatting buffer and the log file or log memory buffer.
|
171
|
-
static Mutex* mutex_;
|
172
|
-
|
173
|
-
// Buffer used for formatting log messages. This is a singleton buffer and
|
174
|
-
// mutex_ should be acquired before using it.
|
175
|
-
static char* message_buffer_;
|
176
|
-
|
177
|
-
friend class Logger;
|
178
|
-
friend class LogMessageBuilder;
|
179
|
-
};
|
180
|
-
|
181
|
-
|
182
|
-
// Utility class for formatting log messages. It fills the message into the
|
183
|
-
// static buffer in Log.
|
184
|
-
class LogMessageBuilder BASE_EMBEDDED {
|
185
|
-
public:
|
186
|
-
// Create a message builder starting from position 0. This acquires the mutex
|
187
|
-
// in the log as well.
|
188
|
-
explicit LogMessageBuilder();
|
189
|
-
~LogMessageBuilder() { }
|
190
|
-
|
191
|
-
// Append string data to the log message.
|
192
|
-
void Append(const char* format, ...);
|
193
|
-
|
194
|
-
// Append string data to the log message.
|
195
|
-
void AppendVA(const char* format, va_list args);
|
196
|
-
|
197
|
-
// Append a character to the log message.
|
198
|
-
void Append(const char c);
|
199
|
-
|
200
|
-
// Append a heap string.
|
201
|
-
void Append(String* str);
|
202
|
-
|
203
|
-
// Appends an address.
|
204
|
-
void AppendAddress(Address addr);
|
205
|
-
|
206
|
-
void AppendDetailed(String* str, bool show_impl_info);
|
207
|
-
|
208
|
-
// Append a portion of a string.
|
209
|
-
void AppendStringPart(const char* str, int len);
|
210
|
-
|
211
|
-
// Write the log message to the log file currently opened.
|
212
|
-
void WriteToLogFile();
|
213
|
-
|
214
|
-
// A handler that is called when Log::Write fails.
|
215
|
-
typedef void (*WriteFailureHandler)();
|
216
|
-
|
217
|
-
static void set_write_failure_handler(WriteFailureHandler handler) {
|
218
|
-
write_failure_handler = handler;
|
219
|
-
}
|
220
|
-
|
221
|
-
private:
|
222
|
-
static WriteFailureHandler write_failure_handler;
|
223
|
-
|
224
|
-
ScopedLock sl;
|
225
|
-
int pos_;
|
226
|
-
};
|
227
|
-
|
228
|
-
#endif // ENABLE_LOGGING_AND_PROFILING
|
229
|
-
|
230
|
-
} } // namespace v8::internal
|
231
|
-
|
232
|
-
#endif // V8_LOG_UTILS_H_
|
@@ -1,1608 +0,0 @@
|
|
1
|
-
// Copyright 2009 the V8 project authors. All rights reserved.
|
2
|
-
// Redistribution and use in source and binary forms, with or without
|
3
|
-
// modification, are permitted provided that the following conditions are
|
4
|
-
// met:
|
5
|
-
//
|
6
|
-
// * Redistributions of source code must retain the above copyright
|
7
|
-
// notice, this list of conditions and the following disclaimer.
|
8
|
-
// * Redistributions in binary form must reproduce the above
|
9
|
-
// copyright notice, this list of conditions and the following
|
10
|
-
// disclaimer in the documentation and/or other materials provided
|
11
|
-
// with the distribution.
|
12
|
-
// * Neither the name of Google Inc. nor the names of its
|
13
|
-
// contributors may be used to endorse or promote products derived
|
14
|
-
// from this software without specific prior written permission.
|
15
|
-
//
|
16
|
-
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
17
|
-
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
18
|
-
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
19
|
-
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
20
|
-
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
21
|
-
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
22
|
-
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
23
|
-
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
24
|
-
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
25
|
-
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
26
|
-
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
27
|
-
|
28
|
-
#include <stdarg.h>
|
29
|
-
|
30
|
-
#include "v8.h"
|
31
|
-
|
32
|
-
#include "bootstrapper.h"
|
33
|
-
#include "code-stubs.h"
|
34
|
-
#include "deoptimizer.h"
|
35
|
-
#include "global-handles.h"
|
36
|
-
#include "log.h"
|
37
|
-
#include "macro-assembler.h"
|
38
|
-
#include "runtime-profiler.h"
|
39
|
-
#include "serialize.h"
|
40
|
-
#include "string-stream.h"
|
41
|
-
#include "vm-state-inl.h"
|
42
|
-
|
43
|
-
namespace v8 {
|
44
|
-
namespace internal {
|
45
|
-
|
46
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
47
|
-
|
48
|
-
//
|
49
|
-
// Sliding state window. Updates counters to keep track of the last
|
50
|
-
// window of kBufferSize states. This is useful to track where we
|
51
|
-
// spent our time.
|
52
|
-
//
|
53
|
-
class SlidingStateWindow {
|
54
|
-
public:
|
55
|
-
SlidingStateWindow();
|
56
|
-
~SlidingStateWindow();
|
57
|
-
void AddState(StateTag state);
|
58
|
-
|
59
|
-
private:
|
60
|
-
static const int kBufferSize = 256;
|
61
|
-
int current_index_;
|
62
|
-
bool is_full_;
|
63
|
-
byte buffer_[kBufferSize];
|
64
|
-
|
65
|
-
|
66
|
-
void IncrementStateCounter(StateTag state) {
|
67
|
-
Counters::state_counters[state].Increment();
|
68
|
-
}
|
69
|
-
|
70
|
-
|
71
|
-
void DecrementStateCounter(StateTag state) {
|
72
|
-
Counters::state_counters[state].Decrement();
|
73
|
-
}
|
74
|
-
};
|
75
|
-
|
76
|
-
|
77
|
-
//
|
78
|
-
// The Profiler samples pc and sp values for the main thread.
|
79
|
-
// Each sample is appended to a circular buffer.
|
80
|
-
// An independent thread removes data and writes it to the log.
|
81
|
-
// This design minimizes the time spent in the sampler.
|
82
|
-
//
|
83
|
-
class Profiler: public Thread {
|
84
|
-
public:
|
85
|
-
Profiler();
|
86
|
-
void Engage();
|
87
|
-
void Disengage();
|
88
|
-
|
89
|
-
// Inserts collected profiling data into buffer.
|
90
|
-
void Insert(TickSample* sample) {
|
91
|
-
if (paused_)
|
92
|
-
return;
|
93
|
-
|
94
|
-
if (Succ(head_) == tail_) {
|
95
|
-
overflow_ = true;
|
96
|
-
} else {
|
97
|
-
buffer_[head_] = *sample;
|
98
|
-
head_ = Succ(head_);
|
99
|
-
buffer_semaphore_->Signal(); // Tell we have an element.
|
100
|
-
}
|
101
|
-
}
|
102
|
-
|
103
|
-
// Waits for a signal and removes profiling data.
|
104
|
-
bool Remove(TickSample* sample) {
|
105
|
-
buffer_semaphore_->Wait(); // Wait for an element.
|
106
|
-
*sample = buffer_[tail_];
|
107
|
-
bool result = overflow_;
|
108
|
-
tail_ = Succ(tail_);
|
109
|
-
overflow_ = false;
|
110
|
-
return result;
|
111
|
-
}
|
112
|
-
|
113
|
-
void Run();
|
114
|
-
|
115
|
-
// Pause and Resume TickSample data collection.
|
116
|
-
static bool paused() { return paused_; }
|
117
|
-
static void pause() { paused_ = true; }
|
118
|
-
static void resume() { paused_ = false; }
|
119
|
-
|
120
|
-
private:
|
121
|
-
// Returns the next index in the cyclic buffer.
|
122
|
-
int Succ(int index) { return (index + 1) % kBufferSize; }
|
123
|
-
|
124
|
-
// Cyclic buffer for communicating profiling samples
|
125
|
-
// between the signal handler and the worker thread.
|
126
|
-
static const int kBufferSize = 128;
|
127
|
-
TickSample buffer_[kBufferSize]; // Buffer storage.
|
128
|
-
int head_; // Index to the buffer head.
|
129
|
-
int tail_; // Index to the buffer tail.
|
130
|
-
bool overflow_; // Tell whether a buffer overflow has occurred.
|
131
|
-
Semaphore* buffer_semaphore_; // Sempahore used for buffer synchronization.
|
132
|
-
|
133
|
-
// Tells whether profiler is engaged, that is, processing thread is stated.
|
134
|
-
bool engaged_;
|
135
|
-
|
136
|
-
// Tells whether worker thread should continue running.
|
137
|
-
bool running_;
|
138
|
-
|
139
|
-
// Tells whether we are currently recording tick samples.
|
140
|
-
static bool paused_;
|
141
|
-
};
|
142
|
-
|
143
|
-
bool Profiler::paused_ = false;
|
144
|
-
|
145
|
-
|
146
|
-
//
|
147
|
-
// StackTracer implementation
|
148
|
-
//
|
149
|
-
void StackTracer::Trace(TickSample* sample) {
|
150
|
-
sample->tos = NULL;
|
151
|
-
sample->frames_count = 0;
|
152
|
-
|
153
|
-
// Avoid collecting traces while doing GC.
|
154
|
-
if (sample->state == GC) return;
|
155
|
-
|
156
|
-
const Address js_entry_sp = Top::js_entry_sp(Top::GetCurrentThread());
|
157
|
-
if (js_entry_sp == 0) {
|
158
|
-
// Not executing JS now.
|
159
|
-
return;
|
160
|
-
}
|
161
|
-
|
162
|
-
// Sample potential return address value for frameless invocation of
|
163
|
-
// stubs (we'll figure out later, if this value makes sense).
|
164
|
-
sample->tos = Memory::Address_at(sample->sp);
|
165
|
-
|
166
|
-
int i = 0;
|
167
|
-
const Address callback = Top::external_callback();
|
168
|
-
// Surprisingly, PC can point _exactly_ to callback start, with good
|
169
|
-
// probability, and this will result in reporting fake nested
|
170
|
-
// callback call.
|
171
|
-
if (callback != NULL && callback != sample->pc) {
|
172
|
-
sample->stack[i++] = callback;
|
173
|
-
}
|
174
|
-
|
175
|
-
SafeStackTraceFrameIterator it(sample->fp, sample->sp,
|
176
|
-
sample->sp, js_entry_sp);
|
177
|
-
while (!it.done() && i < TickSample::kMaxFramesCount) {
|
178
|
-
sample->stack[i++] = it.frame()->pc();
|
179
|
-
it.Advance();
|
180
|
-
}
|
181
|
-
sample->frames_count = i;
|
182
|
-
}
|
183
|
-
|
184
|
-
|
185
|
-
//
|
186
|
-
// Ticker used to provide ticks to the profiler and the sliding state
|
187
|
-
// window.
|
188
|
-
//
|
189
|
-
class Ticker: public Sampler {
|
190
|
-
public:
|
191
|
-
explicit Ticker(int interval) :
|
192
|
-
Sampler(interval),
|
193
|
-
window_(NULL),
|
194
|
-
profiler_(NULL) {}
|
195
|
-
|
196
|
-
~Ticker() { if (IsActive()) Stop(); }
|
197
|
-
|
198
|
-
virtual void Tick(TickSample* sample) {
|
199
|
-
if (profiler_) profiler_->Insert(sample);
|
200
|
-
if (window_) window_->AddState(sample->state);
|
201
|
-
}
|
202
|
-
|
203
|
-
void SetWindow(SlidingStateWindow* window) {
|
204
|
-
window_ = window;
|
205
|
-
if (!IsActive()) Start();
|
206
|
-
}
|
207
|
-
|
208
|
-
void ClearWindow() {
|
209
|
-
window_ = NULL;
|
210
|
-
if (!profiler_ && IsActive() && !RuntimeProfiler::IsEnabled()) Stop();
|
211
|
-
}
|
212
|
-
|
213
|
-
void SetProfiler(Profiler* profiler) {
|
214
|
-
ASSERT(profiler_ == NULL);
|
215
|
-
profiler_ = profiler;
|
216
|
-
IncreaseProfilingDepth();
|
217
|
-
if (!FLAG_prof_lazy && !IsActive()) Start();
|
218
|
-
}
|
219
|
-
|
220
|
-
void ClearProfiler() {
|
221
|
-
DecreaseProfilingDepth();
|
222
|
-
profiler_ = NULL;
|
223
|
-
if (!window_ && IsActive() && !RuntimeProfiler::IsEnabled()) Stop();
|
224
|
-
}
|
225
|
-
|
226
|
-
protected:
|
227
|
-
virtual void DoSampleStack(TickSample* sample) {
|
228
|
-
StackTracer::Trace(sample);
|
229
|
-
}
|
230
|
-
|
231
|
-
private:
|
232
|
-
SlidingStateWindow* window_;
|
233
|
-
Profiler* profiler_;
|
234
|
-
};
|
235
|
-
|
236
|
-
|
237
|
-
//
|
238
|
-
// SlidingStateWindow implementation.
|
239
|
-
//
|
240
|
-
SlidingStateWindow::SlidingStateWindow(): current_index_(0), is_full_(false) {
|
241
|
-
for (int i = 0; i < kBufferSize; i++) {
|
242
|
-
buffer_[i] = static_cast<byte>(OTHER);
|
243
|
-
}
|
244
|
-
Logger::ticker_->SetWindow(this);
|
245
|
-
}
|
246
|
-
|
247
|
-
|
248
|
-
SlidingStateWindow::~SlidingStateWindow() {
|
249
|
-
Logger::ticker_->ClearWindow();
|
250
|
-
}
|
251
|
-
|
252
|
-
|
253
|
-
void SlidingStateWindow::AddState(StateTag state) {
|
254
|
-
if (is_full_) {
|
255
|
-
DecrementStateCounter(static_cast<StateTag>(buffer_[current_index_]));
|
256
|
-
} else if (current_index_ == kBufferSize - 1) {
|
257
|
-
is_full_ = true;
|
258
|
-
}
|
259
|
-
buffer_[current_index_] = static_cast<byte>(state);
|
260
|
-
IncrementStateCounter(state);
|
261
|
-
ASSERT(IsPowerOf2(kBufferSize));
|
262
|
-
current_index_ = (current_index_ + 1) & (kBufferSize - 1);
|
263
|
-
}
|
264
|
-
|
265
|
-
|
266
|
-
//
|
267
|
-
// Profiler implementation.
|
268
|
-
//
|
269
|
-
Profiler::Profiler()
|
270
|
-
: Thread("v8:Profiler"),
|
271
|
-
head_(0),
|
272
|
-
tail_(0),
|
273
|
-
overflow_(false),
|
274
|
-
buffer_semaphore_(OS::CreateSemaphore(0)),
|
275
|
-
engaged_(false),
|
276
|
-
running_(false) {
|
277
|
-
}
|
278
|
-
|
279
|
-
|
280
|
-
void Profiler::Engage() {
|
281
|
-
if (engaged_) return;
|
282
|
-
engaged_ = true;
|
283
|
-
|
284
|
-
// TODO(mnaganov): This is actually "Chromium" mode. Flags need to be revised.
|
285
|
-
// http://code.google.com/p/v8/issues/detail?id=487
|
286
|
-
if (!FLAG_prof_lazy) {
|
287
|
-
OS::LogSharedLibraryAddresses();
|
288
|
-
}
|
289
|
-
|
290
|
-
// Start thread processing the profiler buffer.
|
291
|
-
running_ = true;
|
292
|
-
Start();
|
293
|
-
|
294
|
-
// Register to get ticks.
|
295
|
-
Logger::ticker_->SetProfiler(this);
|
296
|
-
|
297
|
-
Logger::ProfilerBeginEvent();
|
298
|
-
}
|
299
|
-
|
300
|
-
|
301
|
-
void Profiler::Disengage() {
|
302
|
-
if (!engaged_) return;
|
303
|
-
|
304
|
-
// Stop receiving ticks.
|
305
|
-
Logger::ticker_->ClearProfiler();
|
306
|
-
|
307
|
-
// Terminate the worker thread by setting running_ to false,
|
308
|
-
// inserting a fake element in the queue and then wait for
|
309
|
-
// the thread to terminate.
|
310
|
-
running_ = false;
|
311
|
-
TickSample sample;
|
312
|
-
// Reset 'paused_' flag, otherwise semaphore may not be signalled.
|
313
|
-
resume();
|
314
|
-
Insert(&sample);
|
315
|
-
Join();
|
316
|
-
|
317
|
-
LOG(UncheckedStringEvent("profiler", "end"));
|
318
|
-
}
|
319
|
-
|
320
|
-
|
321
|
-
void Profiler::Run() {
|
322
|
-
TickSample sample;
|
323
|
-
bool overflow = Remove(&sample);
|
324
|
-
while (running_) {
|
325
|
-
LOG(TickEvent(&sample, overflow));
|
326
|
-
overflow = Remove(&sample);
|
327
|
-
}
|
328
|
-
}
|
329
|
-
|
330
|
-
|
331
|
-
//
|
332
|
-
// Logger class implementation.
|
333
|
-
//
|
334
|
-
Ticker* Logger::ticker_ = NULL;
|
335
|
-
Profiler* Logger::profiler_ = NULL;
|
336
|
-
SlidingStateWindow* Logger::sliding_state_window_ = NULL;
|
337
|
-
int Logger::logging_nesting_ = 0;
|
338
|
-
int Logger::cpu_profiler_nesting_ = 0;
|
339
|
-
int Logger::heap_profiler_nesting_ = 0;
|
340
|
-
|
341
|
-
#define DECLARE_EVENT(ignore1, name) name,
|
342
|
-
const char* kLogEventsNames[Logger::NUMBER_OF_LOG_EVENTS] = {
|
343
|
-
LOG_EVENTS_AND_TAGS_LIST(DECLARE_EVENT)
|
344
|
-
};
|
345
|
-
#undef DECLARE_EVENT
|
346
|
-
|
347
|
-
|
348
|
-
void Logger::ProfilerBeginEvent() {
|
349
|
-
if (!Log::IsEnabled()) return;
|
350
|
-
LogMessageBuilder msg;
|
351
|
-
msg.Append("profiler,\"begin\",%d\n", kSamplingIntervalMs);
|
352
|
-
msg.WriteToLogFile();
|
353
|
-
}
|
354
|
-
|
355
|
-
#endif // ENABLE_LOGGING_AND_PROFILING
|
356
|
-
|
357
|
-
|
358
|
-
void Logger::StringEvent(const char* name, const char* value) {
|
359
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
360
|
-
if (FLAG_log) UncheckedStringEvent(name, value);
|
361
|
-
#endif
|
362
|
-
}
|
363
|
-
|
364
|
-
|
365
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
366
|
-
void Logger::UncheckedStringEvent(const char* name, const char* value) {
|
367
|
-
if (!Log::IsEnabled()) return;
|
368
|
-
LogMessageBuilder msg;
|
369
|
-
msg.Append("%s,\"%s\"\n", name, value);
|
370
|
-
msg.WriteToLogFile();
|
371
|
-
}
|
372
|
-
#endif
|
373
|
-
|
374
|
-
|
375
|
-
void Logger::IntEvent(const char* name, int value) {
|
376
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
377
|
-
if (FLAG_log) UncheckedIntEvent(name, value);
|
378
|
-
#endif
|
379
|
-
}
|
380
|
-
|
381
|
-
|
382
|
-
void Logger::IntPtrTEvent(const char* name, intptr_t value) {
|
383
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
384
|
-
if (FLAG_log) UncheckedIntPtrTEvent(name, value);
|
385
|
-
#endif
|
386
|
-
}
|
387
|
-
|
388
|
-
|
389
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
390
|
-
void Logger::UncheckedIntEvent(const char* name, int value) {
|
391
|
-
if (!Log::IsEnabled()) return;
|
392
|
-
LogMessageBuilder msg;
|
393
|
-
msg.Append("%s,%d\n", name, value);
|
394
|
-
msg.WriteToLogFile();
|
395
|
-
}
|
396
|
-
#endif
|
397
|
-
|
398
|
-
|
399
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
400
|
-
void Logger::UncheckedIntPtrTEvent(const char* name, intptr_t value) {
|
401
|
-
if (!Log::IsEnabled()) return;
|
402
|
-
LogMessageBuilder msg;
|
403
|
-
msg.Append("%s,%" V8_PTR_PREFIX "d\n", name, value);
|
404
|
-
msg.WriteToLogFile();
|
405
|
-
}
|
406
|
-
#endif
|
407
|
-
|
408
|
-
|
409
|
-
void Logger::HandleEvent(const char* name, Object** location) {
|
410
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
411
|
-
if (!Log::IsEnabled() || !FLAG_log_handles) return;
|
412
|
-
LogMessageBuilder msg;
|
413
|
-
msg.Append("%s,0x%" V8PRIxPTR "\n", name, location);
|
414
|
-
msg.WriteToLogFile();
|
415
|
-
#endif
|
416
|
-
}
|
417
|
-
|
418
|
-
|
419
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
420
|
-
// ApiEvent is private so all the calls come from the Logger class. It is the
|
421
|
-
// caller's responsibility to ensure that log is enabled and that
|
422
|
-
// FLAG_log_api is true.
|
423
|
-
void Logger::ApiEvent(const char* format, ...) {
|
424
|
-
ASSERT(Log::IsEnabled() && FLAG_log_api);
|
425
|
-
LogMessageBuilder msg;
|
426
|
-
va_list ap;
|
427
|
-
va_start(ap, format);
|
428
|
-
msg.AppendVA(format, ap);
|
429
|
-
va_end(ap);
|
430
|
-
msg.WriteToLogFile();
|
431
|
-
}
|
432
|
-
#endif
|
433
|
-
|
434
|
-
|
435
|
-
void Logger::ApiNamedSecurityCheck(Object* key) {
|
436
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
437
|
-
if (!Log::IsEnabled() || !FLAG_log_api) return;
|
438
|
-
if (key->IsString()) {
|
439
|
-
SmartPointer<char> str =
|
440
|
-
String::cast(key)->ToCString(DISALLOW_NULLS, ROBUST_STRING_TRAVERSAL);
|
441
|
-
ApiEvent("api,check-security,\"%s\"\n", *str);
|
442
|
-
} else if (key->IsUndefined()) {
|
443
|
-
ApiEvent("api,check-security,undefined\n");
|
444
|
-
} else {
|
445
|
-
ApiEvent("api,check-security,['no-name']\n");
|
446
|
-
}
|
447
|
-
#endif
|
448
|
-
}
|
449
|
-
|
450
|
-
|
451
|
-
void Logger::SharedLibraryEvent(const char* library_path,
|
452
|
-
uintptr_t start,
|
453
|
-
uintptr_t end) {
|
454
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
455
|
-
if (!Log::IsEnabled() || !FLAG_prof) return;
|
456
|
-
LogMessageBuilder msg;
|
457
|
-
msg.Append("shared-library,\"%s\",0x%08" V8PRIxPTR ",0x%08" V8PRIxPTR "\n",
|
458
|
-
library_path,
|
459
|
-
start,
|
460
|
-
end);
|
461
|
-
msg.WriteToLogFile();
|
462
|
-
#endif
|
463
|
-
}
|
464
|
-
|
465
|
-
|
466
|
-
void Logger::SharedLibraryEvent(const wchar_t* library_path,
|
467
|
-
uintptr_t start,
|
468
|
-
uintptr_t end) {
|
469
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
470
|
-
if (!Log::IsEnabled() || !FLAG_prof) return;
|
471
|
-
LogMessageBuilder msg;
|
472
|
-
msg.Append("shared-library,\"%ls\",0x%08" V8PRIxPTR ",0x%08" V8PRIxPTR "\n",
|
473
|
-
library_path,
|
474
|
-
start,
|
475
|
-
end);
|
476
|
-
msg.WriteToLogFile();
|
477
|
-
#endif
|
478
|
-
}
|
479
|
-
|
480
|
-
|
481
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
482
|
-
void Logger::LogRegExpSource(Handle<JSRegExp> regexp) {
|
483
|
-
// Prints "/" + re.source + "/" +
|
484
|
-
// (re.global?"g":"") + (re.ignorecase?"i":"") + (re.multiline?"m":"")
|
485
|
-
LogMessageBuilder msg;
|
486
|
-
|
487
|
-
Handle<Object> source = GetProperty(regexp, "source");
|
488
|
-
if (!source->IsString()) {
|
489
|
-
msg.Append("no source");
|
490
|
-
return;
|
491
|
-
}
|
492
|
-
|
493
|
-
switch (regexp->TypeTag()) {
|
494
|
-
case JSRegExp::ATOM:
|
495
|
-
msg.Append('a');
|
496
|
-
break;
|
497
|
-
default:
|
498
|
-
break;
|
499
|
-
}
|
500
|
-
msg.Append('/');
|
501
|
-
msg.AppendDetailed(*Handle<String>::cast(source), false);
|
502
|
-
msg.Append('/');
|
503
|
-
|
504
|
-
// global flag
|
505
|
-
Handle<Object> global = GetProperty(regexp, "global");
|
506
|
-
if (global->IsTrue()) {
|
507
|
-
msg.Append('g');
|
508
|
-
}
|
509
|
-
// ignorecase flag
|
510
|
-
Handle<Object> ignorecase = GetProperty(regexp, "ignoreCase");
|
511
|
-
if (ignorecase->IsTrue()) {
|
512
|
-
msg.Append('i');
|
513
|
-
}
|
514
|
-
// multiline flag
|
515
|
-
Handle<Object> multiline = GetProperty(regexp, "multiline");
|
516
|
-
if (multiline->IsTrue()) {
|
517
|
-
msg.Append('m');
|
518
|
-
}
|
519
|
-
|
520
|
-
msg.WriteToLogFile();
|
521
|
-
}
|
522
|
-
#endif // ENABLE_LOGGING_AND_PROFILING
|
523
|
-
|
524
|
-
|
525
|
-
void Logger::RegExpCompileEvent(Handle<JSRegExp> regexp, bool in_cache) {
|
526
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
527
|
-
if (!Log::IsEnabled() || !FLAG_log_regexp) return;
|
528
|
-
LogMessageBuilder msg;
|
529
|
-
msg.Append("regexp-compile,");
|
530
|
-
LogRegExpSource(regexp);
|
531
|
-
msg.Append(in_cache ? ",hit\n" : ",miss\n");
|
532
|
-
msg.WriteToLogFile();
|
533
|
-
#endif
|
534
|
-
}
|
535
|
-
|
536
|
-
|
537
|
-
void Logger::LogRuntime(Vector<const char> format, JSArray* args) {
|
538
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
539
|
-
if (!Log::IsEnabled() || !FLAG_log_runtime) return;
|
540
|
-
HandleScope scope;
|
541
|
-
LogMessageBuilder msg;
|
542
|
-
for (int i = 0; i < format.length(); i++) {
|
543
|
-
char c = format[i];
|
544
|
-
if (c == '%' && i <= format.length() - 2) {
|
545
|
-
i++;
|
546
|
-
ASSERT('0' <= format[i] && format[i] <= '9');
|
547
|
-
MaybeObject* maybe = args->GetElement(format[i] - '0');
|
548
|
-
Object* obj;
|
549
|
-
if (!maybe->ToObject(&obj)) {
|
550
|
-
msg.Append("<exception>");
|
551
|
-
continue;
|
552
|
-
}
|
553
|
-
i++;
|
554
|
-
switch (format[i]) {
|
555
|
-
case 's':
|
556
|
-
msg.AppendDetailed(String::cast(obj), false);
|
557
|
-
break;
|
558
|
-
case 'S':
|
559
|
-
msg.AppendDetailed(String::cast(obj), true);
|
560
|
-
break;
|
561
|
-
case 'r':
|
562
|
-
Logger::LogRegExpSource(Handle<JSRegExp>(JSRegExp::cast(obj)));
|
563
|
-
break;
|
564
|
-
case 'x':
|
565
|
-
msg.Append("0x%x", Smi::cast(obj)->value());
|
566
|
-
break;
|
567
|
-
case 'i':
|
568
|
-
msg.Append("%i", Smi::cast(obj)->value());
|
569
|
-
break;
|
570
|
-
default:
|
571
|
-
UNREACHABLE();
|
572
|
-
}
|
573
|
-
} else {
|
574
|
-
msg.Append(c);
|
575
|
-
}
|
576
|
-
}
|
577
|
-
msg.Append('\n');
|
578
|
-
msg.WriteToLogFile();
|
579
|
-
#endif
|
580
|
-
}
|
581
|
-
|
582
|
-
|
583
|
-
void Logger::ApiIndexedSecurityCheck(uint32_t index) {
|
584
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
585
|
-
if (!Log::IsEnabled() || !FLAG_log_api) return;
|
586
|
-
ApiEvent("api,check-security,%u\n", index);
|
587
|
-
#endif
|
588
|
-
}
|
589
|
-
|
590
|
-
|
591
|
-
void Logger::ApiNamedPropertyAccess(const char* tag,
|
592
|
-
JSObject* holder,
|
593
|
-
Object* name) {
|
594
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
595
|
-
ASSERT(name->IsString());
|
596
|
-
if (!Log::IsEnabled() || !FLAG_log_api) return;
|
597
|
-
String* class_name_obj = holder->class_name();
|
598
|
-
SmartPointer<char> class_name =
|
599
|
-
class_name_obj->ToCString(DISALLOW_NULLS, ROBUST_STRING_TRAVERSAL);
|
600
|
-
SmartPointer<char> property_name =
|
601
|
-
String::cast(name)->ToCString(DISALLOW_NULLS, ROBUST_STRING_TRAVERSAL);
|
602
|
-
Logger::ApiEvent("api,%s,\"%s\",\"%s\"\n", tag, *class_name, *property_name);
|
603
|
-
#endif
|
604
|
-
}
|
605
|
-
|
606
|
-
void Logger::ApiIndexedPropertyAccess(const char* tag,
|
607
|
-
JSObject* holder,
|
608
|
-
uint32_t index) {
|
609
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
610
|
-
if (!Log::IsEnabled() || !FLAG_log_api) return;
|
611
|
-
String* class_name_obj = holder->class_name();
|
612
|
-
SmartPointer<char> class_name =
|
613
|
-
class_name_obj->ToCString(DISALLOW_NULLS, ROBUST_STRING_TRAVERSAL);
|
614
|
-
Logger::ApiEvent("api,%s,\"%s\",%u\n", tag, *class_name, index);
|
615
|
-
#endif
|
616
|
-
}
|
617
|
-
|
618
|
-
void Logger::ApiObjectAccess(const char* tag, JSObject* object) {
|
619
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
620
|
-
if (!Log::IsEnabled() || !FLAG_log_api) return;
|
621
|
-
String* class_name_obj = object->class_name();
|
622
|
-
SmartPointer<char> class_name =
|
623
|
-
class_name_obj->ToCString(DISALLOW_NULLS, ROBUST_STRING_TRAVERSAL);
|
624
|
-
Logger::ApiEvent("api,%s,\"%s\"\n", tag, *class_name);
|
625
|
-
#endif
|
626
|
-
}
|
627
|
-
|
628
|
-
|
629
|
-
void Logger::ApiEntryCall(const char* name) {
|
630
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
631
|
-
if (!Log::IsEnabled() || !FLAG_log_api) return;
|
632
|
-
Logger::ApiEvent("api,%s\n", name);
|
633
|
-
#endif
|
634
|
-
}
|
635
|
-
|
636
|
-
|
637
|
-
void Logger::NewEvent(const char* name, void* object, size_t size) {
|
638
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
639
|
-
if (!Log::IsEnabled() || !FLAG_log) return;
|
640
|
-
LogMessageBuilder msg;
|
641
|
-
msg.Append("new,%s,0x%" V8PRIxPTR ",%u\n", name, object,
|
642
|
-
static_cast<unsigned int>(size));
|
643
|
-
msg.WriteToLogFile();
|
644
|
-
#endif
|
645
|
-
}
|
646
|
-
|
647
|
-
|
648
|
-
void Logger::DeleteEvent(const char* name, void* object) {
|
649
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
650
|
-
if (!Log::IsEnabled() || !FLAG_log) return;
|
651
|
-
LogMessageBuilder msg;
|
652
|
-
msg.Append("delete,%s,0x%" V8PRIxPTR "\n", name, object);
|
653
|
-
msg.WriteToLogFile();
|
654
|
-
#endif
|
655
|
-
}
|
656
|
-
|
657
|
-
|
658
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
659
|
-
void Logger::CallbackEventInternal(const char* prefix, const char* name,
|
660
|
-
Address entry_point) {
|
661
|
-
if (!Log::IsEnabled() || !FLAG_log_code) return;
|
662
|
-
LogMessageBuilder msg;
|
663
|
-
msg.Append("%s,%s,",
|
664
|
-
kLogEventsNames[CODE_CREATION_EVENT],
|
665
|
-
kLogEventsNames[CALLBACK_TAG]);
|
666
|
-
msg.AppendAddress(entry_point);
|
667
|
-
msg.Append(",1,\"%s%s\"", prefix, name);
|
668
|
-
msg.Append('\n');
|
669
|
-
msg.WriteToLogFile();
|
670
|
-
}
|
671
|
-
#endif
|
672
|
-
|
673
|
-
|
674
|
-
void Logger::CallbackEvent(String* name, Address entry_point) {
|
675
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
676
|
-
if (!Log::IsEnabled() || !FLAG_log_code) return;
|
677
|
-
SmartPointer<char> str =
|
678
|
-
name->ToCString(DISALLOW_NULLS, ROBUST_STRING_TRAVERSAL);
|
679
|
-
CallbackEventInternal("", *str, entry_point);
|
680
|
-
#endif
|
681
|
-
}
|
682
|
-
|
683
|
-
|
684
|
-
void Logger::GetterCallbackEvent(String* name, Address entry_point) {
|
685
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
686
|
-
if (!Log::IsEnabled() || !FLAG_log_code) return;
|
687
|
-
SmartPointer<char> str =
|
688
|
-
name->ToCString(DISALLOW_NULLS, ROBUST_STRING_TRAVERSAL);
|
689
|
-
CallbackEventInternal("get ", *str, entry_point);
|
690
|
-
#endif
|
691
|
-
}
|
692
|
-
|
693
|
-
|
694
|
-
void Logger::SetterCallbackEvent(String* name, Address entry_point) {
|
695
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
696
|
-
if (!Log::IsEnabled() || !FLAG_log_code) return;
|
697
|
-
SmartPointer<char> str =
|
698
|
-
name->ToCString(DISALLOW_NULLS, ROBUST_STRING_TRAVERSAL);
|
699
|
-
CallbackEventInternal("set ", *str, entry_point);
|
700
|
-
#endif
|
701
|
-
}
|
702
|
-
|
703
|
-
|
704
|
-
void Logger::CodeCreateEvent(LogEventsAndTags tag,
|
705
|
-
Code* code,
|
706
|
-
const char* comment) {
|
707
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
708
|
-
if (!Log::IsEnabled() || !FLAG_log_code) return;
|
709
|
-
LogMessageBuilder msg;
|
710
|
-
msg.Append("%s,%s,",
|
711
|
-
kLogEventsNames[CODE_CREATION_EVENT],
|
712
|
-
kLogEventsNames[tag]);
|
713
|
-
msg.AppendAddress(code->address());
|
714
|
-
msg.Append(",%d,\"", code->ExecutableSize());
|
715
|
-
for (const char* p = comment; *p != '\0'; p++) {
|
716
|
-
if (*p == '"') {
|
717
|
-
msg.Append('\\');
|
718
|
-
}
|
719
|
-
msg.Append(*p);
|
720
|
-
}
|
721
|
-
msg.Append('"');
|
722
|
-
LowLevelCodeCreateEvent(code, &msg);
|
723
|
-
msg.Append('\n');
|
724
|
-
msg.WriteToLogFile();
|
725
|
-
#endif
|
726
|
-
}
|
727
|
-
|
728
|
-
|
729
|
-
void Logger::CodeCreateEvent(LogEventsAndTags tag,
|
730
|
-
Code* code,
|
731
|
-
String* name) {
|
732
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
733
|
-
if (name != NULL) {
|
734
|
-
SmartPointer<char> str =
|
735
|
-
name->ToCString(DISALLOW_NULLS, ROBUST_STRING_TRAVERSAL);
|
736
|
-
CodeCreateEvent(tag, code, *str);
|
737
|
-
} else {
|
738
|
-
CodeCreateEvent(tag, code, "");
|
739
|
-
}
|
740
|
-
#endif
|
741
|
-
}
|
742
|
-
|
743
|
-
|
744
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
745
|
-
// ComputeMarker must only be used when SharedFunctionInfo is known.
|
746
|
-
static const char* ComputeMarker(Code* code) {
|
747
|
-
switch (code->kind()) {
|
748
|
-
case Code::FUNCTION: return code->optimizable() ? "~" : "";
|
749
|
-
case Code::OPTIMIZED_FUNCTION: return "*";
|
750
|
-
default: return "";
|
751
|
-
}
|
752
|
-
}
|
753
|
-
#endif
|
754
|
-
|
755
|
-
|
756
|
-
void Logger::CodeCreateEvent(LogEventsAndTags tag,
|
757
|
-
Code* code,
|
758
|
-
SharedFunctionInfo* shared,
|
759
|
-
String* name) {
|
760
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
761
|
-
if (!Log::IsEnabled() || !FLAG_log_code) return;
|
762
|
-
if (code == Builtins::builtin(Builtins::LazyCompile)) return;
|
763
|
-
LogMessageBuilder msg;
|
764
|
-
SmartPointer<char> str =
|
765
|
-
name->ToCString(DISALLOW_NULLS, ROBUST_STRING_TRAVERSAL);
|
766
|
-
msg.Append("%s,%s,",
|
767
|
-
kLogEventsNames[CODE_CREATION_EVENT],
|
768
|
-
kLogEventsNames[tag]);
|
769
|
-
msg.AppendAddress(code->address());
|
770
|
-
msg.Append(",%d,\"%s\",", code->ExecutableSize(), *str);
|
771
|
-
msg.AppendAddress(shared->address());
|
772
|
-
msg.Append(",%s", ComputeMarker(code));
|
773
|
-
LowLevelCodeCreateEvent(code, &msg);
|
774
|
-
msg.Append('\n');
|
775
|
-
msg.WriteToLogFile();
|
776
|
-
#endif
|
777
|
-
}
|
778
|
-
|
779
|
-
|
780
|
-
// Although, it is possible to extract source and line from
|
781
|
-
// the SharedFunctionInfo object, we left it to caller
|
782
|
-
// to leave logging functions free from heap allocations.
|
783
|
-
void Logger::CodeCreateEvent(LogEventsAndTags tag,
|
784
|
-
Code* code,
|
785
|
-
SharedFunctionInfo* shared,
|
786
|
-
String* source, int line) {
|
787
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
788
|
-
if (!Log::IsEnabled() || !FLAG_log_code) return;
|
789
|
-
LogMessageBuilder msg;
|
790
|
-
SmartPointer<char> name =
|
791
|
-
shared->DebugName()->ToCString(DISALLOW_NULLS, ROBUST_STRING_TRAVERSAL);
|
792
|
-
SmartPointer<char> sourcestr =
|
793
|
-
source->ToCString(DISALLOW_NULLS, ROBUST_STRING_TRAVERSAL);
|
794
|
-
msg.Append("%s,%s,",
|
795
|
-
kLogEventsNames[CODE_CREATION_EVENT],
|
796
|
-
kLogEventsNames[tag]);
|
797
|
-
msg.AppendAddress(code->address());
|
798
|
-
msg.Append(",%d,\"%s %s:%d\",",
|
799
|
-
code->ExecutableSize(),
|
800
|
-
*name,
|
801
|
-
*sourcestr,
|
802
|
-
line);
|
803
|
-
msg.AppendAddress(shared->address());
|
804
|
-
msg.Append(",%s", ComputeMarker(code));
|
805
|
-
LowLevelCodeCreateEvent(code, &msg);
|
806
|
-
msg.Append('\n');
|
807
|
-
msg.WriteToLogFile();
|
808
|
-
#endif
|
809
|
-
}
|
810
|
-
|
811
|
-
|
812
|
-
void Logger::CodeCreateEvent(LogEventsAndTags tag, Code* code, int args_count) {
|
813
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
814
|
-
if (!Log::IsEnabled() || !FLAG_log_code) return;
|
815
|
-
LogMessageBuilder msg;
|
816
|
-
msg.Append("%s,%s,",
|
817
|
-
kLogEventsNames[CODE_CREATION_EVENT],
|
818
|
-
kLogEventsNames[tag]);
|
819
|
-
msg.AppendAddress(code->address());
|
820
|
-
msg.Append(",%d,\"args_count: %d\"", code->ExecutableSize(), args_count);
|
821
|
-
LowLevelCodeCreateEvent(code, &msg);
|
822
|
-
msg.Append('\n');
|
823
|
-
msg.WriteToLogFile();
|
824
|
-
#endif
|
825
|
-
}
|
826
|
-
|
827
|
-
|
828
|
-
void Logger::CodeMovingGCEvent() {
|
829
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
830
|
-
if (!Log::IsEnabled() || !FLAG_log_code || !FLAG_ll_prof) return;
|
831
|
-
LogMessageBuilder msg;
|
832
|
-
msg.Append("%s\n", kLogEventsNames[CODE_MOVING_GC]);
|
833
|
-
msg.WriteToLogFile();
|
834
|
-
OS::SignalCodeMovingGC();
|
835
|
-
#endif
|
836
|
-
}
|
837
|
-
|
838
|
-
|
839
|
-
void Logger::RegExpCodeCreateEvent(Code* code, String* source) {
|
840
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
841
|
-
if (!Log::IsEnabled() || !FLAG_log_code) return;
|
842
|
-
LogMessageBuilder msg;
|
843
|
-
msg.Append("%s,%s,",
|
844
|
-
kLogEventsNames[CODE_CREATION_EVENT],
|
845
|
-
kLogEventsNames[REG_EXP_TAG]);
|
846
|
-
msg.AppendAddress(code->address());
|
847
|
-
msg.Append(",%d,\"", code->ExecutableSize());
|
848
|
-
msg.AppendDetailed(source, false);
|
849
|
-
msg.Append('\"');
|
850
|
-
LowLevelCodeCreateEvent(code, &msg);
|
851
|
-
msg.Append('\n');
|
852
|
-
msg.WriteToLogFile();
|
853
|
-
#endif
|
854
|
-
}
|
855
|
-
|
856
|
-
|
857
|
-
void Logger::CodeMoveEvent(Address from, Address to) {
|
858
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
859
|
-
MoveEventInternal(CODE_MOVE_EVENT, from, to);
|
860
|
-
#endif
|
861
|
-
}
|
862
|
-
|
863
|
-
|
864
|
-
void Logger::CodeDeleteEvent(Address from) {
|
865
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
866
|
-
DeleteEventInternal(CODE_DELETE_EVENT, from);
|
867
|
-
#endif
|
868
|
-
}
|
869
|
-
|
870
|
-
|
871
|
-
void Logger::SnapshotPositionEvent(Address addr, int pos) {
|
872
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
873
|
-
if (!Log::IsEnabled() || !FLAG_log_snapshot_positions) return;
|
874
|
-
LogMessageBuilder msg;
|
875
|
-
msg.Append("%s,", kLogEventsNames[SNAPSHOT_POSITION_EVENT]);
|
876
|
-
msg.AppendAddress(addr);
|
877
|
-
msg.Append(",%d", pos);
|
878
|
-
msg.Append('\n');
|
879
|
-
msg.WriteToLogFile();
|
880
|
-
#endif
|
881
|
-
}
|
882
|
-
|
883
|
-
|
884
|
-
void Logger::SFIMoveEvent(Address from, Address to) {
|
885
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
886
|
-
MoveEventInternal(SFI_MOVE_EVENT, from, to);
|
887
|
-
#endif
|
888
|
-
}
|
889
|
-
|
890
|
-
|
891
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
892
|
-
void Logger::MoveEventInternal(LogEventsAndTags event,
|
893
|
-
Address from,
|
894
|
-
Address to) {
|
895
|
-
if (!Log::IsEnabled() || !FLAG_log_code) return;
|
896
|
-
LogMessageBuilder msg;
|
897
|
-
msg.Append("%s,", kLogEventsNames[event]);
|
898
|
-
msg.AppendAddress(from);
|
899
|
-
msg.Append(',');
|
900
|
-
msg.AppendAddress(to);
|
901
|
-
msg.Append('\n');
|
902
|
-
msg.WriteToLogFile();
|
903
|
-
}
|
904
|
-
#endif
|
905
|
-
|
906
|
-
|
907
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
908
|
-
void Logger::DeleteEventInternal(LogEventsAndTags event, Address from) {
|
909
|
-
if (!Log::IsEnabled() || !FLAG_log_code) return;
|
910
|
-
LogMessageBuilder msg;
|
911
|
-
msg.Append("%s,", kLogEventsNames[event]);
|
912
|
-
msg.AppendAddress(from);
|
913
|
-
msg.Append('\n');
|
914
|
-
msg.WriteToLogFile();
|
915
|
-
}
|
916
|
-
#endif
|
917
|
-
|
918
|
-
|
919
|
-
void Logger::ResourceEvent(const char* name, const char* tag) {
|
920
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
921
|
-
if (!Log::IsEnabled() || !FLAG_log) return;
|
922
|
-
LogMessageBuilder msg;
|
923
|
-
msg.Append("%s,%s,", name, tag);
|
924
|
-
|
925
|
-
uint32_t sec, usec;
|
926
|
-
if (OS::GetUserTime(&sec, &usec) != -1) {
|
927
|
-
msg.Append("%d,%d,", sec, usec);
|
928
|
-
}
|
929
|
-
msg.Append("%.0f", OS::TimeCurrentMillis());
|
930
|
-
|
931
|
-
msg.Append('\n');
|
932
|
-
msg.WriteToLogFile();
|
933
|
-
#endif
|
934
|
-
}
|
935
|
-
|
936
|
-
|
937
|
-
void Logger::SuspectReadEvent(String* name, Object* obj) {
|
938
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
939
|
-
if (!Log::IsEnabled() || !FLAG_log_suspect) return;
|
940
|
-
LogMessageBuilder msg;
|
941
|
-
String* class_name = obj->IsJSObject()
|
942
|
-
? JSObject::cast(obj)->class_name()
|
943
|
-
: Heap::empty_string();
|
944
|
-
msg.Append("suspect-read,");
|
945
|
-
msg.Append(class_name);
|
946
|
-
msg.Append(',');
|
947
|
-
msg.Append('"');
|
948
|
-
msg.Append(name);
|
949
|
-
msg.Append('"');
|
950
|
-
msg.Append('\n');
|
951
|
-
msg.WriteToLogFile();
|
952
|
-
#endif
|
953
|
-
}
|
954
|
-
|
955
|
-
|
956
|
-
void Logger::HeapSampleBeginEvent(const char* space, const char* kind) {
|
957
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
958
|
-
if (!Log::IsEnabled() || !FLAG_log_gc) return;
|
959
|
-
LogMessageBuilder msg;
|
960
|
-
// Using non-relative system time in order to be able to synchronize with
|
961
|
-
// external memory profiling events (e.g. DOM memory size).
|
962
|
-
msg.Append("heap-sample-begin,\"%s\",\"%s\",%.0f\n",
|
963
|
-
space, kind, OS::TimeCurrentMillis());
|
964
|
-
msg.WriteToLogFile();
|
965
|
-
#endif
|
966
|
-
}
|
967
|
-
|
968
|
-
|
969
|
-
void Logger::HeapSampleStats(const char* space, const char* kind,
|
970
|
-
intptr_t capacity, intptr_t used) {
|
971
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
972
|
-
if (!Log::IsEnabled() || !FLAG_log_gc) return;
|
973
|
-
LogMessageBuilder msg;
|
974
|
-
msg.Append("heap-sample-stats,\"%s\",\"%s\","
|
975
|
-
"%" V8_PTR_PREFIX "d,%" V8_PTR_PREFIX "d\n",
|
976
|
-
space, kind, capacity, used);
|
977
|
-
msg.WriteToLogFile();
|
978
|
-
#endif
|
979
|
-
}
|
980
|
-
|
981
|
-
|
982
|
-
void Logger::HeapSampleEndEvent(const char* space, const char* kind) {
|
983
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
984
|
-
if (!Log::IsEnabled() || !FLAG_log_gc) return;
|
985
|
-
LogMessageBuilder msg;
|
986
|
-
msg.Append("heap-sample-end,\"%s\",\"%s\"\n", space, kind);
|
987
|
-
msg.WriteToLogFile();
|
988
|
-
#endif
|
989
|
-
}
|
990
|
-
|
991
|
-
|
992
|
-
void Logger::HeapSampleItemEvent(const char* type, int number, int bytes) {
|
993
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
994
|
-
if (!Log::IsEnabled() || !FLAG_log_gc) return;
|
995
|
-
LogMessageBuilder msg;
|
996
|
-
msg.Append("heap-sample-item,%s,%d,%d\n", type, number, bytes);
|
997
|
-
msg.WriteToLogFile();
|
998
|
-
#endif
|
999
|
-
}
|
1000
|
-
|
1001
|
-
|
1002
|
-
void Logger::HeapSampleJSConstructorEvent(const char* constructor,
|
1003
|
-
int number, int bytes) {
|
1004
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
1005
|
-
if (!Log::IsEnabled() || !FLAG_log_gc) return;
|
1006
|
-
LogMessageBuilder msg;
|
1007
|
-
msg.Append("heap-js-cons-item,%s,%d,%d\n", constructor, number, bytes);
|
1008
|
-
msg.WriteToLogFile();
|
1009
|
-
#endif
|
1010
|
-
}
|
1011
|
-
|
1012
|
-
|
1013
|
-
void Logger::HeapSampleJSRetainersEvent(
|
1014
|
-
const char* constructor, const char* event) {
|
1015
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
1016
|
-
if (!Log::IsEnabled() || !FLAG_log_gc) return;
|
1017
|
-
// Event starts with comma, so we don't have it in the format string.
|
1018
|
-
static const char* event_text = "heap-js-ret-item,%s";
|
1019
|
-
// We take placeholder strings into account, but it's OK to be conservative.
|
1020
|
-
static const int event_text_len = StrLength(event_text);
|
1021
|
-
const int cons_len = StrLength(constructor);
|
1022
|
-
const int event_len = StrLength(event);
|
1023
|
-
int pos = 0;
|
1024
|
-
// Retainer lists can be long. We may need to split them into multiple events.
|
1025
|
-
do {
|
1026
|
-
LogMessageBuilder msg;
|
1027
|
-
msg.Append(event_text, constructor);
|
1028
|
-
int to_write = event_len - pos;
|
1029
|
-
if (to_write > Log::kMessageBufferSize - (cons_len + event_text_len)) {
|
1030
|
-
int cut_pos = pos + Log::kMessageBufferSize - (cons_len + event_text_len);
|
1031
|
-
ASSERT(cut_pos < event_len);
|
1032
|
-
while (cut_pos > pos && event[cut_pos] != ',') --cut_pos;
|
1033
|
-
if (event[cut_pos] != ',') {
|
1034
|
-
// Crash in debug mode, skip in release mode.
|
1035
|
-
ASSERT(false);
|
1036
|
-
return;
|
1037
|
-
}
|
1038
|
-
// Append a piece of event that fits, without trailing comma.
|
1039
|
-
msg.AppendStringPart(event + pos, cut_pos - pos);
|
1040
|
-
// Start next piece with comma.
|
1041
|
-
pos = cut_pos;
|
1042
|
-
} else {
|
1043
|
-
msg.Append("%s", event + pos);
|
1044
|
-
pos += event_len;
|
1045
|
-
}
|
1046
|
-
msg.Append('\n');
|
1047
|
-
msg.WriteToLogFile();
|
1048
|
-
} while (pos < event_len);
|
1049
|
-
#endif
|
1050
|
-
}
|
1051
|
-
|
1052
|
-
|
1053
|
-
void Logger::HeapSampleJSProducerEvent(const char* constructor,
|
1054
|
-
Address* stack) {
|
1055
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
1056
|
-
if (!Log::IsEnabled() || !FLAG_log_gc) return;
|
1057
|
-
LogMessageBuilder msg;
|
1058
|
-
msg.Append("heap-js-prod-item,%s", constructor);
|
1059
|
-
while (*stack != NULL) {
|
1060
|
-
msg.Append(",0x%" V8PRIxPTR, *stack++);
|
1061
|
-
}
|
1062
|
-
msg.Append("\n");
|
1063
|
-
msg.WriteToLogFile();
|
1064
|
-
#endif
|
1065
|
-
}
|
1066
|
-
|
1067
|
-
|
1068
|
-
void Logger::DebugTag(const char* call_site_tag) {
|
1069
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
1070
|
-
if (!Log::IsEnabled() || !FLAG_log) return;
|
1071
|
-
LogMessageBuilder msg;
|
1072
|
-
msg.Append("debug-tag,%s\n", call_site_tag);
|
1073
|
-
msg.WriteToLogFile();
|
1074
|
-
#endif
|
1075
|
-
}
|
1076
|
-
|
1077
|
-
|
1078
|
-
void Logger::DebugEvent(const char* event_type, Vector<uint16_t> parameter) {
|
1079
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
1080
|
-
if (!Log::IsEnabled() || !FLAG_log) return;
|
1081
|
-
StringBuilder s(parameter.length() + 1);
|
1082
|
-
for (int i = 0; i < parameter.length(); ++i) {
|
1083
|
-
s.AddCharacter(static_cast<char>(parameter[i]));
|
1084
|
-
}
|
1085
|
-
char* parameter_string = s.Finalize();
|
1086
|
-
LogMessageBuilder msg;
|
1087
|
-
msg.Append("debug-queue-event,%s,%15.3f,%s\n",
|
1088
|
-
event_type,
|
1089
|
-
OS::TimeCurrentMillis(),
|
1090
|
-
parameter_string);
|
1091
|
-
DeleteArray(parameter_string);
|
1092
|
-
msg.WriteToLogFile();
|
1093
|
-
#endif
|
1094
|
-
}
|
1095
|
-
|
1096
|
-
|
1097
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
1098
|
-
void Logger::TickEvent(TickSample* sample, bool overflow) {
|
1099
|
-
if (!Log::IsEnabled() || !FLAG_prof) return;
|
1100
|
-
LogMessageBuilder msg;
|
1101
|
-
msg.Append("%s,", kLogEventsNames[TICK_EVENT]);
|
1102
|
-
msg.AppendAddress(sample->pc);
|
1103
|
-
msg.Append(',');
|
1104
|
-
msg.AppendAddress(sample->sp);
|
1105
|
-
msg.Append(',');
|
1106
|
-
msg.AppendAddress(sample->tos);
|
1107
|
-
msg.Append(",%d", static_cast<int>(sample->state));
|
1108
|
-
if (overflow) {
|
1109
|
-
msg.Append(",overflow");
|
1110
|
-
}
|
1111
|
-
for (int i = 0; i < sample->frames_count; ++i) {
|
1112
|
-
msg.Append(',');
|
1113
|
-
msg.AppendAddress(sample->stack[i]);
|
1114
|
-
}
|
1115
|
-
msg.Append('\n');
|
1116
|
-
msg.WriteToLogFile();
|
1117
|
-
}
|
1118
|
-
|
1119
|
-
|
1120
|
-
int Logger::GetActiveProfilerModules() {
|
1121
|
-
int result = PROFILER_MODULE_NONE;
|
1122
|
-
if (profiler_ != NULL && !profiler_->paused()) {
|
1123
|
-
result |= PROFILER_MODULE_CPU;
|
1124
|
-
}
|
1125
|
-
if (FLAG_log_gc) {
|
1126
|
-
result |= PROFILER_MODULE_HEAP_STATS | PROFILER_MODULE_JS_CONSTRUCTORS;
|
1127
|
-
}
|
1128
|
-
return result;
|
1129
|
-
}
|
1130
|
-
|
1131
|
-
|
1132
|
-
void Logger::PauseProfiler(int flags, int tag) {
|
1133
|
-
if (!Log::IsEnabled()) return;
|
1134
|
-
if (profiler_ != NULL && (flags & PROFILER_MODULE_CPU)) {
|
1135
|
-
// It is OK to have negative nesting.
|
1136
|
-
if (--cpu_profiler_nesting_ == 0) {
|
1137
|
-
profiler_->pause();
|
1138
|
-
if (FLAG_prof_lazy) {
|
1139
|
-
if (!FLAG_sliding_state_window && !RuntimeProfiler::IsEnabled()) {
|
1140
|
-
ticker_->Stop();
|
1141
|
-
}
|
1142
|
-
FLAG_log_code = false;
|
1143
|
-
// Must be the same message as Log::kDynamicBufferSeal.
|
1144
|
-
LOG(UncheckedStringEvent("profiler", "pause"));
|
1145
|
-
}
|
1146
|
-
--logging_nesting_;
|
1147
|
-
}
|
1148
|
-
}
|
1149
|
-
if (flags &
|
1150
|
-
(PROFILER_MODULE_HEAP_STATS | PROFILER_MODULE_JS_CONSTRUCTORS)) {
|
1151
|
-
if (--heap_profiler_nesting_ == 0) {
|
1152
|
-
FLAG_log_gc = false;
|
1153
|
-
--logging_nesting_;
|
1154
|
-
}
|
1155
|
-
}
|
1156
|
-
if (tag != 0) {
|
1157
|
-
UncheckedIntEvent("close-tag", tag);
|
1158
|
-
}
|
1159
|
-
}
|
1160
|
-
|
1161
|
-
|
1162
|
-
void Logger::ResumeProfiler(int flags, int tag) {
|
1163
|
-
if (!Log::IsEnabled()) return;
|
1164
|
-
if (tag != 0) {
|
1165
|
-
UncheckedIntEvent("open-tag", tag);
|
1166
|
-
}
|
1167
|
-
if (profiler_ != NULL && (flags & PROFILER_MODULE_CPU)) {
|
1168
|
-
if (cpu_profiler_nesting_++ == 0) {
|
1169
|
-
++logging_nesting_;
|
1170
|
-
if (FLAG_prof_lazy) {
|
1171
|
-
profiler_->Engage();
|
1172
|
-
LOG(UncheckedStringEvent("profiler", "resume"));
|
1173
|
-
FLAG_log_code = true;
|
1174
|
-
LogCompiledFunctions();
|
1175
|
-
LogAccessorCallbacks();
|
1176
|
-
if (!FLAG_sliding_state_window && !ticker_->IsActive()) {
|
1177
|
-
ticker_->Start();
|
1178
|
-
}
|
1179
|
-
}
|
1180
|
-
profiler_->resume();
|
1181
|
-
}
|
1182
|
-
}
|
1183
|
-
if (flags &
|
1184
|
-
(PROFILER_MODULE_HEAP_STATS | PROFILER_MODULE_JS_CONSTRUCTORS)) {
|
1185
|
-
if (heap_profiler_nesting_++ == 0) {
|
1186
|
-
++logging_nesting_;
|
1187
|
-
FLAG_log_gc = true;
|
1188
|
-
}
|
1189
|
-
}
|
1190
|
-
}
|
1191
|
-
|
1192
|
-
|
1193
|
-
// This function can be called when Log's mutex is acquired,
|
1194
|
-
// either from main or Profiler's thread.
|
1195
|
-
void Logger::StopLoggingAndProfiling() {
|
1196
|
-
Log::stop();
|
1197
|
-
PauseProfiler(PROFILER_MODULE_CPU, 0);
|
1198
|
-
}
|
1199
|
-
|
1200
|
-
|
1201
|
-
bool Logger::IsProfilerSamplerActive() {
|
1202
|
-
return ticker_->IsActive();
|
1203
|
-
}
|
1204
|
-
|
1205
|
-
|
1206
|
-
int Logger::GetLogLines(int from_pos, char* dest_buf, int max_size) {
|
1207
|
-
return Log::GetLogLines(from_pos, dest_buf, max_size);
|
1208
|
-
}
|
1209
|
-
|
1210
|
-
|
1211
|
-
class EnumerateOptimizedFunctionsVisitor: public OptimizedFunctionVisitor {
|
1212
|
-
public:
|
1213
|
-
EnumerateOptimizedFunctionsVisitor(Handle<SharedFunctionInfo>* sfis,
|
1214
|
-
Handle<Code>* code_objects,
|
1215
|
-
int* count)
|
1216
|
-
: sfis_(sfis), code_objects_(code_objects), count_(count) { }
|
1217
|
-
|
1218
|
-
virtual void EnterContext(Context* context) {}
|
1219
|
-
virtual void LeaveContext(Context* context) {}
|
1220
|
-
|
1221
|
-
virtual void VisitFunction(JSFunction* function) {
|
1222
|
-
if (sfis_ != NULL) {
|
1223
|
-
sfis_[*count_] = Handle<SharedFunctionInfo>(function->shared());
|
1224
|
-
}
|
1225
|
-
if (code_objects_ != NULL) {
|
1226
|
-
ASSERT(function->code()->kind() == Code::OPTIMIZED_FUNCTION);
|
1227
|
-
code_objects_[*count_] = Handle<Code>(function->code());
|
1228
|
-
}
|
1229
|
-
*count_ = *count_ + 1;
|
1230
|
-
}
|
1231
|
-
|
1232
|
-
private:
|
1233
|
-
Handle<SharedFunctionInfo>* sfis_;
|
1234
|
-
Handle<Code>* code_objects_;
|
1235
|
-
int* count_;
|
1236
|
-
};
|
1237
|
-
|
1238
|
-
|
1239
|
-
static int EnumerateCompiledFunctions(Handle<SharedFunctionInfo>* sfis,
|
1240
|
-
Handle<Code>* code_objects) {
|
1241
|
-
AssertNoAllocation no_alloc;
|
1242
|
-
int compiled_funcs_count = 0;
|
1243
|
-
|
1244
|
-
// Iterate the heap to find shared function info objects and record
|
1245
|
-
// the unoptimized code for them.
|
1246
|
-
HeapIterator iterator;
|
1247
|
-
for (HeapObject* obj = iterator.next(); obj != NULL; obj = iterator.next()) {
|
1248
|
-
if (!obj->IsSharedFunctionInfo()) continue;
|
1249
|
-
SharedFunctionInfo* sfi = SharedFunctionInfo::cast(obj);
|
1250
|
-
if (sfi->is_compiled()
|
1251
|
-
&& (!sfi->script()->IsScript()
|
1252
|
-
|| Script::cast(sfi->script())->HasValidSource())) {
|
1253
|
-
if (sfis != NULL) {
|
1254
|
-
sfis[compiled_funcs_count] = Handle<SharedFunctionInfo>(sfi);
|
1255
|
-
}
|
1256
|
-
if (code_objects != NULL) {
|
1257
|
-
code_objects[compiled_funcs_count] = Handle<Code>(sfi->code());
|
1258
|
-
}
|
1259
|
-
++compiled_funcs_count;
|
1260
|
-
}
|
1261
|
-
}
|
1262
|
-
|
1263
|
-
// Iterate all optimized functions in all contexts.
|
1264
|
-
EnumerateOptimizedFunctionsVisitor visitor(sfis,
|
1265
|
-
code_objects,
|
1266
|
-
&compiled_funcs_count);
|
1267
|
-
Deoptimizer::VisitAllOptimizedFunctions(&visitor);
|
1268
|
-
|
1269
|
-
return compiled_funcs_count;
|
1270
|
-
}
|
1271
|
-
|
1272
|
-
|
1273
|
-
void Logger::LogCodeObject(Object* object) {
|
1274
|
-
if (FLAG_log_code) {
|
1275
|
-
Code* code_object = Code::cast(object);
|
1276
|
-
LogEventsAndTags tag = Logger::STUB_TAG;
|
1277
|
-
const char* description = "Unknown code from the snapshot";
|
1278
|
-
switch (code_object->kind()) {
|
1279
|
-
case Code::FUNCTION:
|
1280
|
-
case Code::OPTIMIZED_FUNCTION:
|
1281
|
-
return; // We log this later using LogCompiledFunctions.
|
1282
|
-
case Code::BINARY_OP_IC: // fall through
|
1283
|
-
case Code::TYPE_RECORDING_BINARY_OP_IC: // fall through
|
1284
|
-
case Code::COMPARE_IC: // fall through
|
1285
|
-
case Code::STUB:
|
1286
|
-
description =
|
1287
|
-
CodeStub::MajorName(CodeStub::GetMajorKey(code_object), true);
|
1288
|
-
if (description == NULL)
|
1289
|
-
description = "A stub from the snapshot";
|
1290
|
-
tag = Logger::STUB_TAG;
|
1291
|
-
break;
|
1292
|
-
case Code::BUILTIN:
|
1293
|
-
description = "A builtin from the snapshot";
|
1294
|
-
tag = Logger::BUILTIN_TAG;
|
1295
|
-
break;
|
1296
|
-
case Code::KEYED_LOAD_IC:
|
1297
|
-
description = "A keyed load IC from the snapshot";
|
1298
|
-
tag = Logger::KEYED_LOAD_IC_TAG;
|
1299
|
-
break;
|
1300
|
-
case Code::LOAD_IC:
|
1301
|
-
description = "A load IC from the snapshot";
|
1302
|
-
tag = Logger::LOAD_IC_TAG;
|
1303
|
-
break;
|
1304
|
-
case Code::STORE_IC:
|
1305
|
-
description = "A store IC from the snapshot";
|
1306
|
-
tag = Logger::STORE_IC_TAG;
|
1307
|
-
break;
|
1308
|
-
case Code::KEYED_STORE_IC:
|
1309
|
-
description = "A keyed store IC from the snapshot";
|
1310
|
-
tag = Logger::KEYED_STORE_IC_TAG;
|
1311
|
-
break;
|
1312
|
-
case Code::CALL_IC:
|
1313
|
-
description = "A call IC from the snapshot";
|
1314
|
-
tag = Logger::CALL_IC_TAG;
|
1315
|
-
break;
|
1316
|
-
case Code::KEYED_CALL_IC:
|
1317
|
-
description = "A keyed call IC from the snapshot";
|
1318
|
-
tag = Logger::KEYED_CALL_IC_TAG;
|
1319
|
-
break;
|
1320
|
-
}
|
1321
|
-
PROFILE(CodeCreateEvent(tag, code_object, description));
|
1322
|
-
}
|
1323
|
-
}
|
1324
|
-
|
1325
|
-
|
1326
|
-
void Logger::LogCodeInfo() {
|
1327
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
1328
|
-
if (!Log::IsEnabled() || !FLAG_log_code || !FLAG_ll_prof) return;
|
1329
|
-
#if V8_TARGET_ARCH_IA32
|
1330
|
-
const char arch[] = "ia32";
|
1331
|
-
#elif V8_TARGET_ARCH_X64
|
1332
|
-
const char arch[] = "x64";
|
1333
|
-
#elif V8_TARGET_ARCH_ARM
|
1334
|
-
const char arch[] = "arm";
|
1335
|
-
#else
|
1336
|
-
const char arch[] = "unknown";
|
1337
|
-
#endif
|
1338
|
-
LogMessageBuilder msg;
|
1339
|
-
msg.Append("code-info,%s,%d\n", arch, Code::kHeaderSize);
|
1340
|
-
msg.WriteToLogFile();
|
1341
|
-
#endif // ENABLE_LOGGING_AND_PROFILING
|
1342
|
-
}
|
1343
|
-
|
1344
|
-
|
1345
|
-
void Logger::LowLevelCodeCreateEvent(Code* code, LogMessageBuilder* msg) {
|
1346
|
-
if (!FLAG_ll_prof || Log::output_code_handle_ == NULL) return;
|
1347
|
-
int pos = static_cast<int>(ftell(Log::output_code_handle_));
|
1348
|
-
size_t rv = fwrite(code->instruction_start(), 1, code->instruction_size(),
|
1349
|
-
Log::output_code_handle_);
|
1350
|
-
ASSERT(static_cast<size_t>(code->instruction_size()) == rv);
|
1351
|
-
USE(rv);
|
1352
|
-
msg->Append(",%d", pos);
|
1353
|
-
}
|
1354
|
-
|
1355
|
-
|
1356
|
-
void Logger::LogCodeObjects() {
|
1357
|
-
AssertNoAllocation no_alloc;
|
1358
|
-
HeapIterator iterator;
|
1359
|
-
for (HeapObject* obj = iterator.next(); obj != NULL; obj = iterator.next()) {
|
1360
|
-
if (obj->IsCode()) LogCodeObject(obj);
|
1361
|
-
}
|
1362
|
-
}
|
1363
|
-
|
1364
|
-
|
1365
|
-
void Logger::LogCompiledFunctions() {
|
1366
|
-
HandleScope scope;
|
1367
|
-
const int compiled_funcs_count = EnumerateCompiledFunctions(NULL, NULL);
|
1368
|
-
ScopedVector< Handle<SharedFunctionInfo> > sfis(compiled_funcs_count);
|
1369
|
-
ScopedVector< Handle<Code> > code_objects(compiled_funcs_count);
|
1370
|
-
EnumerateCompiledFunctions(sfis.start(), code_objects.start());
|
1371
|
-
|
1372
|
-
// During iteration, there can be heap allocation due to
|
1373
|
-
// GetScriptLineNumber call.
|
1374
|
-
for (int i = 0; i < compiled_funcs_count; ++i) {
|
1375
|
-
if (*code_objects[i] == Builtins::builtin(Builtins::LazyCompile)) continue;
|
1376
|
-
Handle<SharedFunctionInfo> shared = sfis[i];
|
1377
|
-
Handle<String> func_name(shared->DebugName());
|
1378
|
-
if (shared->script()->IsScript()) {
|
1379
|
-
Handle<Script> script(Script::cast(shared->script()));
|
1380
|
-
if (script->name()->IsString()) {
|
1381
|
-
Handle<String> script_name(String::cast(script->name()));
|
1382
|
-
int line_num = GetScriptLineNumber(script, shared->start_position());
|
1383
|
-
if (line_num > 0) {
|
1384
|
-
PROFILE(CodeCreateEvent(
|
1385
|
-
Logger::ToNativeByScript(Logger::LAZY_COMPILE_TAG, *script),
|
1386
|
-
*code_objects[i], *shared,
|
1387
|
-
*script_name, line_num + 1));
|
1388
|
-
} else {
|
1389
|
-
// Can't distinguish eval and script here, so always use Script.
|
1390
|
-
PROFILE(CodeCreateEvent(
|
1391
|
-
Logger::ToNativeByScript(Logger::SCRIPT_TAG, *script),
|
1392
|
-
*code_objects[i], *shared, *script_name));
|
1393
|
-
}
|
1394
|
-
} else {
|
1395
|
-
PROFILE(CodeCreateEvent(
|
1396
|
-
Logger::ToNativeByScript(Logger::LAZY_COMPILE_TAG, *script),
|
1397
|
-
*code_objects[i], *shared, *func_name));
|
1398
|
-
}
|
1399
|
-
} else if (shared->IsApiFunction()) {
|
1400
|
-
// API function.
|
1401
|
-
FunctionTemplateInfo* fun_data = shared->get_api_func_data();
|
1402
|
-
Object* raw_call_data = fun_data->call_code();
|
1403
|
-
if (!raw_call_data->IsUndefined()) {
|
1404
|
-
CallHandlerInfo* call_data = CallHandlerInfo::cast(raw_call_data);
|
1405
|
-
Object* callback_obj = call_data->callback();
|
1406
|
-
Address entry_point = v8::ToCData<Address>(callback_obj);
|
1407
|
-
PROFILE(CallbackEvent(*func_name, entry_point));
|
1408
|
-
}
|
1409
|
-
} else {
|
1410
|
-
PROFILE(CodeCreateEvent(
|
1411
|
-
Logger::LAZY_COMPILE_TAG, *code_objects[i], *shared, *func_name));
|
1412
|
-
}
|
1413
|
-
}
|
1414
|
-
}
|
1415
|
-
|
1416
|
-
|
1417
|
-
void Logger::LogAccessorCallbacks() {
|
1418
|
-
AssertNoAllocation no_alloc;
|
1419
|
-
HeapIterator iterator;
|
1420
|
-
for (HeapObject* obj = iterator.next(); obj != NULL; obj = iterator.next()) {
|
1421
|
-
if (!obj->IsAccessorInfo()) continue;
|
1422
|
-
AccessorInfo* ai = AccessorInfo::cast(obj);
|
1423
|
-
if (!ai->name()->IsString()) continue;
|
1424
|
-
String* name = String::cast(ai->name());
|
1425
|
-
Address getter_entry = v8::ToCData<Address>(ai->getter());
|
1426
|
-
if (getter_entry != 0) {
|
1427
|
-
PROFILE(GetterCallbackEvent(name, getter_entry));
|
1428
|
-
}
|
1429
|
-
Address setter_entry = v8::ToCData<Address>(ai->setter());
|
1430
|
-
if (setter_entry != 0) {
|
1431
|
-
PROFILE(SetterCallbackEvent(name, setter_entry));
|
1432
|
-
}
|
1433
|
-
}
|
1434
|
-
}
|
1435
|
-
|
1436
|
-
#endif
|
1437
|
-
|
1438
|
-
|
1439
|
-
bool Logger::Setup() {
|
1440
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
1441
|
-
// --log-all enables all the log flags.
|
1442
|
-
if (FLAG_log_all) {
|
1443
|
-
FLAG_log_runtime = true;
|
1444
|
-
FLAG_log_api = true;
|
1445
|
-
FLAG_log_code = true;
|
1446
|
-
FLAG_log_gc = true;
|
1447
|
-
FLAG_log_suspect = true;
|
1448
|
-
FLAG_log_handles = true;
|
1449
|
-
FLAG_log_regexp = true;
|
1450
|
-
}
|
1451
|
-
|
1452
|
-
// --prof implies --log-code.
|
1453
|
-
if (FLAG_prof) FLAG_log_code = true;
|
1454
|
-
|
1455
|
-
// --ll-prof implies --log-code and --log-snapshot-positions.
|
1456
|
-
if (FLAG_ll_prof) {
|
1457
|
-
FLAG_log_code = true;
|
1458
|
-
FLAG_log_snapshot_positions = true;
|
1459
|
-
}
|
1460
|
-
|
1461
|
-
// --prof_lazy controls --log-code, implies --noprof_auto.
|
1462
|
-
if (FLAG_prof_lazy) {
|
1463
|
-
FLAG_log_code = false;
|
1464
|
-
FLAG_prof_auto = false;
|
1465
|
-
}
|
1466
|
-
|
1467
|
-
bool start_logging = FLAG_log || FLAG_log_runtime || FLAG_log_api
|
1468
|
-
|| FLAG_log_code || FLAG_log_gc || FLAG_log_handles || FLAG_log_suspect
|
1469
|
-
|| FLAG_log_regexp || FLAG_log_state_changes;
|
1470
|
-
|
1471
|
-
bool open_log_file = start_logging || FLAG_prof_lazy;
|
1472
|
-
|
1473
|
-
// If we're logging anything, we need to open the log file.
|
1474
|
-
if (open_log_file) {
|
1475
|
-
if (strcmp(FLAG_logfile, "-") == 0) {
|
1476
|
-
Log::OpenStdout();
|
1477
|
-
} else if (strcmp(FLAG_logfile, "*") == 0) {
|
1478
|
-
Log::OpenMemoryBuffer();
|
1479
|
-
} else if (strchr(FLAG_logfile, '%') != NULL) {
|
1480
|
-
// If there's a '%' in the log file name we have to expand
|
1481
|
-
// placeholders.
|
1482
|
-
HeapStringAllocator allocator;
|
1483
|
-
StringStream stream(&allocator);
|
1484
|
-
for (const char* p = FLAG_logfile; *p; p++) {
|
1485
|
-
if (*p == '%') {
|
1486
|
-
p++;
|
1487
|
-
switch (*p) {
|
1488
|
-
case '\0':
|
1489
|
-
// If there's a % at the end of the string we back up
|
1490
|
-
// one character so we can escape the loop properly.
|
1491
|
-
p--;
|
1492
|
-
break;
|
1493
|
-
case 't': {
|
1494
|
-
// %t expands to the current time in milliseconds.
|
1495
|
-
double time = OS::TimeCurrentMillis();
|
1496
|
-
stream.Add("%.0f", FmtElm(time));
|
1497
|
-
break;
|
1498
|
-
}
|
1499
|
-
case '%':
|
1500
|
-
// %% expands (contracts really) to %.
|
1501
|
-
stream.Put('%');
|
1502
|
-
break;
|
1503
|
-
default:
|
1504
|
-
// All other %'s expand to themselves.
|
1505
|
-
stream.Put('%');
|
1506
|
-
stream.Put(*p);
|
1507
|
-
break;
|
1508
|
-
}
|
1509
|
-
} else {
|
1510
|
-
stream.Put(*p);
|
1511
|
-
}
|
1512
|
-
}
|
1513
|
-
SmartPointer<const char> expanded = stream.ToCString();
|
1514
|
-
Log::OpenFile(*expanded);
|
1515
|
-
} else {
|
1516
|
-
Log::OpenFile(FLAG_logfile);
|
1517
|
-
}
|
1518
|
-
}
|
1519
|
-
|
1520
|
-
if (FLAG_ll_prof) LogCodeInfo();
|
1521
|
-
|
1522
|
-
ticker_ = new Ticker(kSamplingIntervalMs);
|
1523
|
-
|
1524
|
-
if (FLAG_sliding_state_window && sliding_state_window_ == NULL) {
|
1525
|
-
sliding_state_window_ = new SlidingStateWindow();
|
1526
|
-
}
|
1527
|
-
|
1528
|
-
if (start_logging) {
|
1529
|
-
logging_nesting_ = 1;
|
1530
|
-
}
|
1531
|
-
|
1532
|
-
if (FLAG_prof) {
|
1533
|
-
profiler_ = new Profiler();
|
1534
|
-
if (!FLAG_prof_auto) {
|
1535
|
-
profiler_->pause();
|
1536
|
-
} else {
|
1537
|
-
logging_nesting_ = 1;
|
1538
|
-
}
|
1539
|
-
if (!FLAG_prof_lazy) {
|
1540
|
-
profiler_->Engage();
|
1541
|
-
}
|
1542
|
-
}
|
1543
|
-
|
1544
|
-
LogMessageBuilder::set_write_failure_handler(StopLoggingAndProfiling);
|
1545
|
-
return true;
|
1546
|
-
|
1547
|
-
#else
|
1548
|
-
return false;
|
1549
|
-
#endif
|
1550
|
-
}
|
1551
|
-
|
1552
|
-
|
1553
|
-
void Logger::EnsureTickerStarted() {
|
1554
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
1555
|
-
ASSERT(ticker_ != NULL);
|
1556
|
-
if (!ticker_->IsActive()) ticker_->Start();
|
1557
|
-
#endif
|
1558
|
-
}
|
1559
|
-
|
1560
|
-
|
1561
|
-
void Logger::EnsureTickerStopped() {
|
1562
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
1563
|
-
if (ticker_ != NULL && ticker_->IsActive()) ticker_->Stop();
|
1564
|
-
#endif
|
1565
|
-
}
|
1566
|
-
|
1567
|
-
|
1568
|
-
void Logger::TearDown() {
|
1569
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
1570
|
-
LogMessageBuilder::set_write_failure_handler(NULL);
|
1571
|
-
|
1572
|
-
// Stop the profiler before closing the file.
|
1573
|
-
if (profiler_ != NULL) {
|
1574
|
-
profiler_->Disengage();
|
1575
|
-
delete profiler_;
|
1576
|
-
profiler_ = NULL;
|
1577
|
-
}
|
1578
|
-
|
1579
|
-
delete sliding_state_window_;
|
1580
|
-
sliding_state_window_ = NULL;
|
1581
|
-
|
1582
|
-
delete ticker_;
|
1583
|
-
ticker_ = NULL;
|
1584
|
-
|
1585
|
-
Log::Close();
|
1586
|
-
#endif
|
1587
|
-
}
|
1588
|
-
|
1589
|
-
|
1590
|
-
void Logger::EnableSlidingStateWindow() {
|
1591
|
-
#ifdef ENABLE_LOGGING_AND_PROFILING
|
1592
|
-
// If the ticker is NULL, Logger::Setup has not been called yet. In
|
1593
|
-
// that case, we set the sliding_state_window flag so that the
|
1594
|
-
// sliding window computation will be started when Logger::Setup is
|
1595
|
-
// called.
|
1596
|
-
if (ticker_ == NULL) {
|
1597
|
-
FLAG_sliding_state_window = true;
|
1598
|
-
return;
|
1599
|
-
}
|
1600
|
-
// Otherwise, if the sliding state window computation has not been
|
1601
|
-
// started we do it now.
|
1602
|
-
if (sliding_state_window_ == NULL) {
|
1603
|
-
sliding_state_window_ = new SlidingStateWindow();
|
1604
|
-
}
|
1605
|
-
#endif
|
1606
|
-
}
|
1607
|
-
|
1608
|
-
} } // namespace v8::internal
|