libv8-sgonyea 3.3.10
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +8 -0
- data/.gitmodules +3 -0
- data/Gemfile +4 -0
- data/README.md +76 -0
- data/Rakefile +113 -0
- data/ext/libv8/extconf.rb +28 -0
- data/lib/libv8.rb +15 -0
- data/lib/libv8/Makefile +30 -0
- data/lib/libv8/detect_cpu.rb +27 -0
- data/lib/libv8/fpic-on-linux-amd64.patch +13 -0
- data/lib/libv8/v8/.gitignore +35 -0
- data/lib/libv8/v8/AUTHORS +44 -0
- data/lib/libv8/v8/ChangeLog +2839 -0
- data/lib/libv8/v8/LICENSE +52 -0
- data/lib/libv8/v8/LICENSE.strongtalk +29 -0
- data/lib/libv8/v8/LICENSE.v8 +26 -0
- data/lib/libv8/v8/LICENSE.valgrind +45 -0
- data/lib/libv8/v8/SConstruct +1478 -0
- data/lib/libv8/v8/build/README.txt +49 -0
- data/lib/libv8/v8/build/all.gyp +18 -0
- data/lib/libv8/v8/build/armu.gypi +32 -0
- data/lib/libv8/v8/build/common.gypi +144 -0
- data/lib/libv8/v8/build/gyp_v8 +145 -0
- data/lib/libv8/v8/include/v8-debug.h +395 -0
- data/lib/libv8/v8/include/v8-preparser.h +117 -0
- data/lib/libv8/v8/include/v8-profiler.h +505 -0
- data/lib/libv8/v8/include/v8-testing.h +104 -0
- data/lib/libv8/v8/include/v8.h +4124 -0
- data/lib/libv8/v8/include/v8stdint.h +53 -0
- data/lib/libv8/v8/preparser/SConscript +38 -0
- data/lib/libv8/v8/preparser/preparser-process.cc +379 -0
- data/lib/libv8/v8/src/SConscript +368 -0
- data/lib/libv8/v8/src/accessors.cc +767 -0
- data/lib/libv8/v8/src/accessors.h +123 -0
- data/lib/libv8/v8/src/allocation-inl.h +49 -0
- data/lib/libv8/v8/src/allocation.cc +122 -0
- data/lib/libv8/v8/src/allocation.h +143 -0
- data/lib/libv8/v8/src/api.cc +5845 -0
- data/lib/libv8/v8/src/api.h +574 -0
- data/lib/libv8/v8/src/apinatives.js +110 -0
- data/lib/libv8/v8/src/apiutils.h +73 -0
- data/lib/libv8/v8/src/arguments.h +118 -0
- data/lib/libv8/v8/src/arm/assembler-arm-inl.h +353 -0
- data/lib/libv8/v8/src/arm/assembler-arm.cc +2661 -0
- data/lib/libv8/v8/src/arm/assembler-arm.h +1375 -0
- data/lib/libv8/v8/src/arm/builtins-arm.cc +1658 -0
- data/lib/libv8/v8/src/arm/code-stubs-arm.cc +6398 -0
- data/lib/libv8/v8/src/arm/code-stubs-arm.h +673 -0
- data/lib/libv8/v8/src/arm/codegen-arm.cc +52 -0
- data/lib/libv8/v8/src/arm/codegen-arm.h +91 -0
- data/lib/libv8/v8/src/arm/constants-arm.cc +152 -0
- data/lib/libv8/v8/src/arm/constants-arm.h +775 -0
- data/lib/libv8/v8/src/arm/cpu-arm.cc +120 -0
- data/lib/libv8/v8/src/arm/debug-arm.cc +317 -0
- data/lib/libv8/v8/src/arm/deoptimizer-arm.cc +754 -0
- data/lib/libv8/v8/src/arm/disasm-arm.cc +1506 -0
- data/lib/libv8/v8/src/arm/frames-arm.cc +45 -0
- data/lib/libv8/v8/src/arm/frames-arm.h +168 -0
- data/lib/libv8/v8/src/arm/full-codegen-arm.cc +4375 -0
- data/lib/libv8/v8/src/arm/ic-arm.cc +1562 -0
- data/lib/libv8/v8/src/arm/lithium-arm.cc +2206 -0
- data/lib/libv8/v8/src/arm/lithium-arm.h +2348 -0
- data/lib/libv8/v8/src/arm/lithium-codegen-arm.cc +4526 -0
- data/lib/libv8/v8/src/arm/lithium-codegen-arm.h +403 -0
- data/lib/libv8/v8/src/arm/lithium-gap-resolver-arm.cc +305 -0
- data/lib/libv8/v8/src/arm/lithium-gap-resolver-arm.h +84 -0
- data/lib/libv8/v8/src/arm/macro-assembler-arm.cc +3163 -0
- data/lib/libv8/v8/src/arm/macro-assembler-arm.h +1126 -0
- data/lib/libv8/v8/src/arm/regexp-macro-assembler-arm.cc +1287 -0
- data/lib/libv8/v8/src/arm/regexp-macro-assembler-arm.h +253 -0
- data/lib/libv8/v8/src/arm/simulator-arm.cc +3424 -0
- data/lib/libv8/v8/src/arm/simulator-arm.h +431 -0
- data/lib/libv8/v8/src/arm/stub-cache-arm.cc +4243 -0
- data/lib/libv8/v8/src/array.js +1366 -0
- data/lib/libv8/v8/src/assembler.cc +1207 -0
- data/lib/libv8/v8/src/assembler.h +858 -0
- data/lib/libv8/v8/src/ast-inl.h +112 -0
- data/lib/libv8/v8/src/ast.cc +1146 -0
- data/lib/libv8/v8/src/ast.h +2188 -0
- data/lib/libv8/v8/src/atomicops.h +167 -0
- data/lib/libv8/v8/src/atomicops_internals_arm_gcc.h +145 -0
- data/lib/libv8/v8/src/atomicops_internals_mips_gcc.h +169 -0
- data/lib/libv8/v8/src/atomicops_internals_x86_gcc.cc +133 -0
- data/lib/libv8/v8/src/atomicops_internals_x86_gcc.h +287 -0
- data/lib/libv8/v8/src/atomicops_internals_x86_macosx.h +301 -0
- data/lib/libv8/v8/src/atomicops_internals_x86_msvc.h +203 -0
- data/lib/libv8/v8/src/bignum-dtoa.cc +655 -0
- data/lib/libv8/v8/src/bignum-dtoa.h +81 -0
- data/lib/libv8/v8/src/bignum.cc +768 -0
- data/lib/libv8/v8/src/bignum.h +140 -0
- data/lib/libv8/v8/src/bootstrapper.cc +2184 -0
- data/lib/libv8/v8/src/bootstrapper.h +188 -0
- data/lib/libv8/v8/src/builtins.cc +1707 -0
- data/lib/libv8/v8/src/builtins.h +371 -0
- data/lib/libv8/v8/src/bytecodes-irregexp.h +105 -0
- data/lib/libv8/v8/src/cached-powers.cc +177 -0
- data/lib/libv8/v8/src/cached-powers.h +65 -0
- data/lib/libv8/v8/src/char-predicates-inl.h +94 -0
- data/lib/libv8/v8/src/char-predicates.h +67 -0
- data/lib/libv8/v8/src/checks.cc +110 -0
- data/lib/libv8/v8/src/checks.h +296 -0
- data/lib/libv8/v8/src/circular-queue-inl.h +53 -0
- data/lib/libv8/v8/src/circular-queue.cc +122 -0
- data/lib/libv8/v8/src/circular-queue.h +103 -0
- data/lib/libv8/v8/src/code-stubs.cc +267 -0
- data/lib/libv8/v8/src/code-stubs.h +1011 -0
- data/lib/libv8/v8/src/code.h +70 -0
- data/lib/libv8/v8/src/codegen.cc +231 -0
- data/lib/libv8/v8/src/codegen.h +84 -0
- data/lib/libv8/v8/src/compilation-cache.cc +540 -0
- data/lib/libv8/v8/src/compilation-cache.h +287 -0
- data/lib/libv8/v8/src/compiler.cc +786 -0
- data/lib/libv8/v8/src/compiler.h +312 -0
- data/lib/libv8/v8/src/contexts.cc +347 -0
- data/lib/libv8/v8/src/contexts.h +391 -0
- data/lib/libv8/v8/src/conversions-inl.h +106 -0
- data/lib/libv8/v8/src/conversions.cc +1131 -0
- data/lib/libv8/v8/src/conversions.h +135 -0
- data/lib/libv8/v8/src/counters.cc +93 -0
- data/lib/libv8/v8/src/counters.h +254 -0
- data/lib/libv8/v8/src/cpu-profiler-inl.h +101 -0
- data/lib/libv8/v8/src/cpu-profiler.cc +609 -0
- data/lib/libv8/v8/src/cpu-profiler.h +302 -0
- data/lib/libv8/v8/src/cpu.h +69 -0
- data/lib/libv8/v8/src/d8-debug.cc +367 -0
- data/lib/libv8/v8/src/d8-debug.h +158 -0
- data/lib/libv8/v8/src/d8-posix.cc +695 -0
- data/lib/libv8/v8/src/d8-readline.cc +130 -0
- data/lib/libv8/v8/src/d8-windows.cc +42 -0
- data/lib/libv8/v8/src/d8.cc +803 -0
- data/lib/libv8/v8/src/d8.gyp +91 -0
- data/lib/libv8/v8/src/d8.h +235 -0
- data/lib/libv8/v8/src/d8.js +2798 -0
- data/lib/libv8/v8/src/data-flow.cc +66 -0
- data/lib/libv8/v8/src/data-flow.h +205 -0
- data/lib/libv8/v8/src/date.js +1103 -0
- data/lib/libv8/v8/src/dateparser-inl.h +127 -0
- data/lib/libv8/v8/src/dateparser.cc +178 -0
- data/lib/libv8/v8/src/dateparser.h +266 -0
- data/lib/libv8/v8/src/debug-agent.cc +447 -0
- data/lib/libv8/v8/src/debug-agent.h +129 -0
- data/lib/libv8/v8/src/debug-debugger.js +2569 -0
- data/lib/libv8/v8/src/debug.cc +3165 -0
- data/lib/libv8/v8/src/debug.h +1057 -0
- data/lib/libv8/v8/src/deoptimizer.cc +1256 -0
- data/lib/libv8/v8/src/deoptimizer.h +602 -0
- data/lib/libv8/v8/src/disasm.h +80 -0
- data/lib/libv8/v8/src/disassembler.cc +343 -0
- data/lib/libv8/v8/src/disassembler.h +58 -0
- data/lib/libv8/v8/src/diy-fp.cc +58 -0
- data/lib/libv8/v8/src/diy-fp.h +117 -0
- data/lib/libv8/v8/src/double.h +238 -0
- data/lib/libv8/v8/src/dtoa.cc +103 -0
- data/lib/libv8/v8/src/dtoa.h +85 -0
- data/lib/libv8/v8/src/execution.cc +849 -0
- data/lib/libv8/v8/src/execution.h +297 -0
- data/lib/libv8/v8/src/extensions/experimental/break-iterator.cc +250 -0
- data/lib/libv8/v8/src/extensions/experimental/break-iterator.h +89 -0
- data/lib/libv8/v8/src/extensions/experimental/collator.cc +218 -0
- data/lib/libv8/v8/src/extensions/experimental/collator.h +69 -0
- data/lib/libv8/v8/src/extensions/experimental/experimental.gyp +94 -0
- data/lib/libv8/v8/src/extensions/experimental/i18n-extension.cc +78 -0
- data/lib/libv8/v8/src/extensions/experimental/i18n-extension.h +54 -0
- data/lib/libv8/v8/src/extensions/experimental/i18n-locale.cc +112 -0
- data/lib/libv8/v8/src/extensions/experimental/i18n-locale.h +60 -0
- data/lib/libv8/v8/src/extensions/experimental/i18n-utils.cc +43 -0
- data/lib/libv8/v8/src/extensions/experimental/i18n-utils.h +49 -0
- data/lib/libv8/v8/src/extensions/experimental/i18n.js +180 -0
- data/lib/libv8/v8/src/extensions/experimental/language-matcher.cc +251 -0
- data/lib/libv8/v8/src/extensions/experimental/language-matcher.h +95 -0
- data/lib/libv8/v8/src/extensions/externalize-string-extension.cc +141 -0
- data/lib/libv8/v8/src/extensions/externalize-string-extension.h +50 -0
- data/lib/libv8/v8/src/extensions/gc-extension.cc +58 -0
- data/lib/libv8/v8/src/extensions/gc-extension.h +49 -0
- data/lib/libv8/v8/src/factory.cc +1222 -0
- data/lib/libv8/v8/src/factory.h +442 -0
- data/lib/libv8/v8/src/fast-dtoa.cc +736 -0
- data/lib/libv8/v8/src/fast-dtoa.h +83 -0
- data/lib/libv8/v8/src/fixed-dtoa.cc +405 -0
- data/lib/libv8/v8/src/fixed-dtoa.h +55 -0
- data/lib/libv8/v8/src/flag-definitions.h +560 -0
- data/lib/libv8/v8/src/flags.cc +551 -0
- data/lib/libv8/v8/src/flags.h +79 -0
- data/lib/libv8/v8/src/frames-inl.h +247 -0
- data/lib/libv8/v8/src/frames.cc +1243 -0
- data/lib/libv8/v8/src/frames.h +870 -0
- data/lib/libv8/v8/src/full-codegen.cc +1374 -0
- data/lib/libv8/v8/src/full-codegen.h +771 -0
- data/lib/libv8/v8/src/func-name-inferrer.cc +92 -0
- data/lib/libv8/v8/src/func-name-inferrer.h +111 -0
- data/lib/libv8/v8/src/gdb-jit.cc +1555 -0
- data/lib/libv8/v8/src/gdb-jit.h +143 -0
- data/lib/libv8/v8/src/global-handles.cc +665 -0
- data/lib/libv8/v8/src/global-handles.h +284 -0
- data/lib/libv8/v8/src/globals.h +325 -0
- data/lib/libv8/v8/src/handles-inl.h +177 -0
- data/lib/libv8/v8/src/handles.cc +987 -0
- data/lib/libv8/v8/src/handles.h +382 -0
- data/lib/libv8/v8/src/hashmap.cc +230 -0
- data/lib/libv8/v8/src/hashmap.h +123 -0
- data/lib/libv8/v8/src/heap-inl.h +704 -0
- data/lib/libv8/v8/src/heap-profiler.cc +1173 -0
- data/lib/libv8/v8/src/heap-profiler.h +397 -0
- data/lib/libv8/v8/src/heap.cc +5930 -0
- data/lib/libv8/v8/src/heap.h +2268 -0
- data/lib/libv8/v8/src/hydrogen-instructions.cc +1769 -0
- data/lib/libv8/v8/src/hydrogen-instructions.h +3971 -0
- data/lib/libv8/v8/src/hydrogen.cc +6239 -0
- data/lib/libv8/v8/src/hydrogen.h +1202 -0
- data/lib/libv8/v8/src/ia32/assembler-ia32-inl.h +446 -0
- data/lib/libv8/v8/src/ia32/assembler-ia32.cc +2487 -0
- data/lib/libv8/v8/src/ia32/assembler-ia32.h +1144 -0
- data/lib/libv8/v8/src/ia32/builtins-ia32.cc +1621 -0
- data/lib/libv8/v8/src/ia32/code-stubs-ia32.cc +6198 -0
- data/lib/libv8/v8/src/ia32/code-stubs-ia32.h +517 -0
- data/lib/libv8/v8/src/ia32/codegen-ia32.cc +265 -0
- data/lib/libv8/v8/src/ia32/codegen-ia32.h +79 -0
- data/lib/libv8/v8/src/ia32/cpu-ia32.cc +88 -0
- data/lib/libv8/v8/src/ia32/debug-ia32.cc +312 -0
- data/lib/libv8/v8/src/ia32/deoptimizer-ia32.cc +774 -0
- data/lib/libv8/v8/src/ia32/disasm-ia32.cc +1628 -0
- data/lib/libv8/v8/src/ia32/frames-ia32.cc +45 -0
- data/lib/libv8/v8/src/ia32/frames-ia32.h +142 -0
- data/lib/libv8/v8/src/ia32/full-codegen-ia32.cc +4338 -0
- data/lib/libv8/v8/src/ia32/ic-ia32.cc +1597 -0
- data/lib/libv8/v8/src/ia32/lithium-codegen-ia32.cc +4461 -0
- data/lib/libv8/v8/src/ia32/lithium-codegen-ia32.h +375 -0
- data/lib/libv8/v8/src/ia32/lithium-gap-resolver-ia32.cc +475 -0
- data/lib/libv8/v8/src/ia32/lithium-gap-resolver-ia32.h +110 -0
- data/lib/libv8/v8/src/ia32/lithium-ia32.cc +2261 -0
- data/lib/libv8/v8/src/ia32/lithium-ia32.h +2396 -0
- data/lib/libv8/v8/src/ia32/macro-assembler-ia32.cc +2136 -0
- data/lib/libv8/v8/src/ia32/macro-assembler-ia32.h +775 -0
- data/lib/libv8/v8/src/ia32/regexp-macro-assembler-ia32.cc +1263 -0
- data/lib/libv8/v8/src/ia32/regexp-macro-assembler-ia32.h +216 -0
- data/lib/libv8/v8/src/ia32/simulator-ia32.cc +30 -0
- data/lib/libv8/v8/src/ia32/simulator-ia32.h +74 -0
- data/lib/libv8/v8/src/ia32/stub-cache-ia32.cc +3847 -0
- data/lib/libv8/v8/src/ic-inl.h +130 -0
- data/lib/libv8/v8/src/ic.cc +2577 -0
- data/lib/libv8/v8/src/ic.h +736 -0
- data/lib/libv8/v8/src/inspector.cc +63 -0
- data/lib/libv8/v8/src/inspector.h +62 -0
- data/lib/libv8/v8/src/interpreter-irregexp.cc +659 -0
- data/lib/libv8/v8/src/interpreter-irregexp.h +49 -0
- data/lib/libv8/v8/src/isolate-inl.h +50 -0
- data/lib/libv8/v8/src/isolate.cc +1869 -0
- data/lib/libv8/v8/src/isolate.h +1382 -0
- data/lib/libv8/v8/src/json-parser.cc +504 -0
- data/lib/libv8/v8/src/json-parser.h +161 -0
- data/lib/libv8/v8/src/json.js +342 -0
- data/lib/libv8/v8/src/jsregexp.cc +5385 -0
- data/lib/libv8/v8/src/jsregexp.h +1492 -0
- data/lib/libv8/v8/src/list-inl.h +212 -0
- data/lib/libv8/v8/src/list.h +174 -0
- data/lib/libv8/v8/src/lithium-allocator-inl.h +142 -0
- data/lib/libv8/v8/src/lithium-allocator.cc +2123 -0
- data/lib/libv8/v8/src/lithium-allocator.h +630 -0
- data/lib/libv8/v8/src/lithium.cc +190 -0
- data/lib/libv8/v8/src/lithium.h +597 -0
- data/lib/libv8/v8/src/liveedit-debugger.js +1082 -0
- data/lib/libv8/v8/src/liveedit.cc +1691 -0
- data/lib/libv8/v8/src/liveedit.h +180 -0
- data/lib/libv8/v8/src/liveobjectlist-inl.h +126 -0
- data/lib/libv8/v8/src/liveobjectlist.cc +2589 -0
- data/lib/libv8/v8/src/liveobjectlist.h +322 -0
- data/lib/libv8/v8/src/log-inl.h +59 -0
- data/lib/libv8/v8/src/log-utils.cc +428 -0
- data/lib/libv8/v8/src/log-utils.h +231 -0
- data/lib/libv8/v8/src/log.cc +1993 -0
- data/lib/libv8/v8/src/log.h +476 -0
- data/lib/libv8/v8/src/macro-assembler.h +120 -0
- data/lib/libv8/v8/src/macros.py +178 -0
- data/lib/libv8/v8/src/mark-compact.cc +3143 -0
- data/lib/libv8/v8/src/mark-compact.h +506 -0
- data/lib/libv8/v8/src/math.js +264 -0
- data/lib/libv8/v8/src/messages.cc +179 -0
- data/lib/libv8/v8/src/messages.h +113 -0
- data/lib/libv8/v8/src/messages.js +1096 -0
- data/lib/libv8/v8/src/mips/assembler-mips-inl.h +312 -0
- data/lib/libv8/v8/src/mips/assembler-mips.cc +1960 -0
- data/lib/libv8/v8/src/mips/assembler-mips.h +1138 -0
- data/lib/libv8/v8/src/mips/builtins-mips.cc +1628 -0
- data/lib/libv8/v8/src/mips/code-stubs-mips.cc +6656 -0
- data/lib/libv8/v8/src/mips/code-stubs-mips.h +682 -0
- data/lib/libv8/v8/src/mips/codegen-mips.cc +52 -0
- data/lib/libv8/v8/src/mips/codegen-mips.h +98 -0
- data/lib/libv8/v8/src/mips/constants-mips.cc +352 -0
- data/lib/libv8/v8/src/mips/constants-mips.h +739 -0
- data/lib/libv8/v8/src/mips/cpu-mips.cc +96 -0
- data/lib/libv8/v8/src/mips/debug-mips.cc +308 -0
- data/lib/libv8/v8/src/mips/deoptimizer-mips.cc +91 -0
- data/lib/libv8/v8/src/mips/disasm-mips.cc +1050 -0
- data/lib/libv8/v8/src/mips/frames-mips.cc +47 -0
- data/lib/libv8/v8/src/mips/frames-mips.h +219 -0
- data/lib/libv8/v8/src/mips/full-codegen-mips.cc +4388 -0
- data/lib/libv8/v8/src/mips/ic-mips.cc +1580 -0
- data/lib/libv8/v8/src/mips/lithium-codegen-mips.h +65 -0
- data/lib/libv8/v8/src/mips/lithium-mips.h +307 -0
- data/lib/libv8/v8/src/mips/macro-assembler-mips.cc +4056 -0
- data/lib/libv8/v8/src/mips/macro-assembler-mips.h +1214 -0
- data/lib/libv8/v8/src/mips/regexp-macro-assembler-mips.cc +1251 -0
- data/lib/libv8/v8/src/mips/regexp-macro-assembler-mips.h +252 -0
- data/lib/libv8/v8/src/mips/simulator-mips.cc +2621 -0
- data/lib/libv8/v8/src/mips/simulator-mips.h +401 -0
- data/lib/libv8/v8/src/mips/stub-cache-mips.cc +4285 -0
- data/lib/libv8/v8/src/mirror-debugger.js +2382 -0
- data/lib/libv8/v8/src/mksnapshot.cc +328 -0
- data/lib/libv8/v8/src/natives.h +64 -0
- data/lib/libv8/v8/src/objects-debug.cc +738 -0
- data/lib/libv8/v8/src/objects-inl.h +4323 -0
- data/lib/libv8/v8/src/objects-printer.cc +829 -0
- data/lib/libv8/v8/src/objects-visiting.cc +148 -0
- data/lib/libv8/v8/src/objects-visiting.h +424 -0
- data/lib/libv8/v8/src/objects.cc +10585 -0
- data/lib/libv8/v8/src/objects.h +6838 -0
- data/lib/libv8/v8/src/parser.cc +4997 -0
- data/lib/libv8/v8/src/parser.h +765 -0
- data/lib/libv8/v8/src/platform-cygwin.cc +779 -0
- data/lib/libv8/v8/src/platform-freebsd.cc +826 -0
- data/lib/libv8/v8/src/platform-linux.cc +1149 -0
- data/lib/libv8/v8/src/platform-macos.cc +830 -0
- data/lib/libv8/v8/src/platform-nullos.cc +479 -0
- data/lib/libv8/v8/src/platform-openbsd.cc +640 -0
- data/lib/libv8/v8/src/platform-posix.cc +424 -0
- data/lib/libv8/v8/src/platform-solaris.cc +762 -0
- data/lib/libv8/v8/src/platform-tls-mac.h +62 -0
- data/lib/libv8/v8/src/platform-tls-win32.h +62 -0
- data/lib/libv8/v8/src/platform-tls.h +50 -0
- data/lib/libv8/v8/src/platform-win32.cc +2021 -0
- data/lib/libv8/v8/src/platform.h +667 -0
- data/lib/libv8/v8/src/preparse-data-format.h +62 -0
- data/lib/libv8/v8/src/preparse-data.cc +183 -0
- data/lib/libv8/v8/src/preparse-data.h +225 -0
- data/lib/libv8/v8/src/preparser-api.cc +220 -0
- data/lib/libv8/v8/src/preparser.cc +1450 -0
- data/lib/libv8/v8/src/preparser.h +493 -0
- data/lib/libv8/v8/src/prettyprinter.cc +1493 -0
- data/lib/libv8/v8/src/prettyprinter.h +223 -0
- data/lib/libv8/v8/src/profile-generator-inl.h +128 -0
- data/lib/libv8/v8/src/profile-generator.cc +3098 -0
- data/lib/libv8/v8/src/profile-generator.h +1126 -0
- data/lib/libv8/v8/src/property.cc +105 -0
- data/lib/libv8/v8/src/property.h +365 -0
- data/lib/libv8/v8/src/proxy.js +83 -0
- data/lib/libv8/v8/src/regexp-macro-assembler-irregexp-inl.h +78 -0
- data/lib/libv8/v8/src/regexp-macro-assembler-irregexp.cc +471 -0
- data/lib/libv8/v8/src/regexp-macro-assembler-irregexp.h +142 -0
- data/lib/libv8/v8/src/regexp-macro-assembler-tracer.cc +373 -0
- data/lib/libv8/v8/src/regexp-macro-assembler-tracer.h +104 -0
- data/lib/libv8/v8/src/regexp-macro-assembler.cc +267 -0
- data/lib/libv8/v8/src/regexp-macro-assembler.h +243 -0
- data/lib/libv8/v8/src/regexp-stack.cc +111 -0
- data/lib/libv8/v8/src/regexp-stack.h +147 -0
- data/lib/libv8/v8/src/regexp.js +483 -0
- data/lib/libv8/v8/src/rewriter.cc +360 -0
- data/lib/libv8/v8/src/rewriter.h +50 -0
- data/lib/libv8/v8/src/runtime-profiler.cc +489 -0
- data/lib/libv8/v8/src/runtime-profiler.h +201 -0
- data/lib/libv8/v8/src/runtime.cc +12227 -0
- data/lib/libv8/v8/src/runtime.h +652 -0
- data/lib/libv8/v8/src/runtime.js +649 -0
- data/lib/libv8/v8/src/safepoint-table.cc +256 -0
- data/lib/libv8/v8/src/safepoint-table.h +270 -0
- data/lib/libv8/v8/src/scanner-base.cc +952 -0
- data/lib/libv8/v8/src/scanner-base.h +670 -0
- data/lib/libv8/v8/src/scanner.cc +345 -0
- data/lib/libv8/v8/src/scanner.h +146 -0
- data/lib/libv8/v8/src/scopeinfo.cc +646 -0
- data/lib/libv8/v8/src/scopeinfo.h +254 -0
- data/lib/libv8/v8/src/scopes.cc +1150 -0
- data/lib/libv8/v8/src/scopes.h +507 -0
- data/lib/libv8/v8/src/serialize.cc +1574 -0
- data/lib/libv8/v8/src/serialize.h +589 -0
- data/lib/libv8/v8/src/shell.h +55 -0
- data/lib/libv8/v8/src/simulator.h +43 -0
- data/lib/libv8/v8/src/small-pointer-list.h +163 -0
- data/lib/libv8/v8/src/smart-pointer.h +109 -0
- data/lib/libv8/v8/src/snapshot-common.cc +83 -0
- data/lib/libv8/v8/src/snapshot-empty.cc +54 -0
- data/lib/libv8/v8/src/snapshot.h +91 -0
- data/lib/libv8/v8/src/spaces-inl.h +529 -0
- data/lib/libv8/v8/src/spaces.cc +3145 -0
- data/lib/libv8/v8/src/spaces.h +2369 -0
- data/lib/libv8/v8/src/splay-tree-inl.h +310 -0
- data/lib/libv8/v8/src/splay-tree.h +205 -0
- data/lib/libv8/v8/src/string-search.cc +41 -0
- data/lib/libv8/v8/src/string-search.h +568 -0
- data/lib/libv8/v8/src/string-stream.cc +592 -0
- data/lib/libv8/v8/src/string-stream.h +191 -0
- data/lib/libv8/v8/src/string.js +994 -0
- data/lib/libv8/v8/src/strtod.cc +440 -0
- data/lib/libv8/v8/src/strtod.h +40 -0
- data/lib/libv8/v8/src/stub-cache.cc +1965 -0
- data/lib/libv8/v8/src/stub-cache.h +924 -0
- data/lib/libv8/v8/src/third_party/valgrind/valgrind.h +3925 -0
- data/lib/libv8/v8/src/token.cc +63 -0
- data/lib/libv8/v8/src/token.h +288 -0
- data/lib/libv8/v8/src/type-info.cc +507 -0
- data/lib/libv8/v8/src/type-info.h +272 -0
- data/lib/libv8/v8/src/unbound-queue-inl.h +95 -0
- data/lib/libv8/v8/src/unbound-queue.h +69 -0
- data/lib/libv8/v8/src/unicode-inl.h +238 -0
- data/lib/libv8/v8/src/unicode.cc +1624 -0
- data/lib/libv8/v8/src/unicode.h +280 -0
- data/lib/libv8/v8/src/uri.js +408 -0
- data/lib/libv8/v8/src/utils-inl.h +48 -0
- data/lib/libv8/v8/src/utils.cc +371 -0
- data/lib/libv8/v8/src/utils.h +800 -0
- data/lib/libv8/v8/src/v8-counters.cc +62 -0
- data/lib/libv8/v8/src/v8-counters.h +314 -0
- data/lib/libv8/v8/src/v8.cc +213 -0
- data/lib/libv8/v8/src/v8.h +131 -0
- data/lib/libv8/v8/src/v8checks.h +64 -0
- data/lib/libv8/v8/src/v8dll-main.cc +44 -0
- data/lib/libv8/v8/src/v8globals.h +512 -0
- data/lib/libv8/v8/src/v8memory.h +82 -0
- data/lib/libv8/v8/src/v8natives.js +1310 -0
- data/lib/libv8/v8/src/v8preparserdll-main.cc +39 -0
- data/lib/libv8/v8/src/v8threads.cc +464 -0
- data/lib/libv8/v8/src/v8threads.h +165 -0
- data/lib/libv8/v8/src/v8utils.h +319 -0
- data/lib/libv8/v8/src/variables.cc +114 -0
- data/lib/libv8/v8/src/variables.h +167 -0
- data/lib/libv8/v8/src/version.cc +116 -0
- data/lib/libv8/v8/src/version.h +68 -0
- data/lib/libv8/v8/src/vm-state-inl.h +138 -0
- data/lib/libv8/v8/src/vm-state.h +71 -0
- data/lib/libv8/v8/src/win32-headers.h +96 -0
- data/lib/libv8/v8/src/x64/assembler-x64-inl.h +462 -0
- data/lib/libv8/v8/src/x64/assembler-x64.cc +3027 -0
- data/lib/libv8/v8/src/x64/assembler-x64.h +1633 -0
- data/lib/libv8/v8/src/x64/builtins-x64.cc +1520 -0
- data/lib/libv8/v8/src/x64/code-stubs-x64.cc +5132 -0
- data/lib/libv8/v8/src/x64/code-stubs-x64.h +514 -0
- data/lib/libv8/v8/src/x64/codegen-x64.cc +146 -0
- data/lib/libv8/v8/src/x64/codegen-x64.h +76 -0
- data/lib/libv8/v8/src/x64/cpu-x64.cc +88 -0
- data/lib/libv8/v8/src/x64/debug-x64.cc +319 -0
- data/lib/libv8/v8/src/x64/deoptimizer-x64.cc +815 -0
- data/lib/libv8/v8/src/x64/disasm-x64.cc +1832 -0
- data/lib/libv8/v8/src/x64/frames-x64.cc +45 -0
- data/lib/libv8/v8/src/x64/frames-x64.h +130 -0
- data/lib/libv8/v8/src/x64/full-codegen-x64.cc +4318 -0
- data/lib/libv8/v8/src/x64/ic-x64.cc +1608 -0
- data/lib/libv8/v8/src/x64/lithium-codegen-x64.cc +4267 -0
- data/lib/libv8/v8/src/x64/lithium-codegen-x64.h +367 -0
- data/lib/libv8/v8/src/x64/lithium-gap-resolver-x64.cc +320 -0
- data/lib/libv8/v8/src/x64/lithium-gap-resolver-x64.h +74 -0
- data/lib/libv8/v8/src/x64/lithium-x64.cc +2202 -0
- data/lib/libv8/v8/src/x64/lithium-x64.h +2333 -0
- data/lib/libv8/v8/src/x64/macro-assembler-x64.cc +3745 -0
- data/lib/libv8/v8/src/x64/macro-assembler-x64.h +1290 -0
- data/lib/libv8/v8/src/x64/regexp-macro-assembler-x64.cc +1398 -0
- data/lib/libv8/v8/src/x64/regexp-macro-assembler-x64.h +282 -0
- data/lib/libv8/v8/src/x64/simulator-x64.cc +27 -0
- data/lib/libv8/v8/src/x64/simulator-x64.h +72 -0
- data/lib/libv8/v8/src/x64/stub-cache-x64.cc +3610 -0
- data/lib/libv8/v8/src/zone-inl.h +140 -0
- data/lib/libv8/v8/src/zone.cc +196 -0
- data/lib/libv8/v8/src/zone.h +240 -0
- data/lib/libv8/v8/tools/codemap.js +265 -0
- data/lib/libv8/v8/tools/consarray.js +93 -0
- data/lib/libv8/v8/tools/csvparser.js +78 -0
- data/lib/libv8/v8/tools/disasm.py +92 -0
- data/lib/libv8/v8/tools/freebsd-tick-processor +10 -0
- data/lib/libv8/v8/tools/gc-nvp-trace-processor.py +342 -0
- data/lib/libv8/v8/tools/gcmole/README +62 -0
- data/lib/libv8/v8/tools/gcmole/gccause.lua +60 -0
- data/lib/libv8/v8/tools/gcmole/gcmole.cc +1261 -0
- data/lib/libv8/v8/tools/gcmole/gcmole.lua +378 -0
- data/lib/libv8/v8/tools/generate-ten-powers.scm +286 -0
- data/lib/libv8/v8/tools/grokdump.py +841 -0
- data/lib/libv8/v8/tools/gyp/v8.gyp +995 -0
- data/lib/libv8/v8/tools/js2c.py +364 -0
- data/lib/libv8/v8/tools/jsmin.py +280 -0
- data/lib/libv8/v8/tools/linux-tick-processor +35 -0
- data/lib/libv8/v8/tools/ll_prof.py +942 -0
- data/lib/libv8/v8/tools/logreader.js +185 -0
- data/lib/libv8/v8/tools/mac-nm +18 -0
- data/lib/libv8/v8/tools/mac-tick-processor +6 -0
- data/lib/libv8/v8/tools/oom_dump/README +31 -0
- data/lib/libv8/v8/tools/oom_dump/SConstruct +42 -0
- data/lib/libv8/v8/tools/oom_dump/oom_dump.cc +288 -0
- data/lib/libv8/v8/tools/presubmit.py +305 -0
- data/lib/libv8/v8/tools/process-heap-prof.py +120 -0
- data/lib/libv8/v8/tools/profile.js +751 -0
- data/lib/libv8/v8/tools/profile_view.js +219 -0
- data/lib/libv8/v8/tools/run-valgrind.py +77 -0
- data/lib/libv8/v8/tools/splaytree.js +316 -0
- data/lib/libv8/v8/tools/stats-viewer.py +468 -0
- data/lib/libv8/v8/tools/test.py +1510 -0
- data/lib/libv8/v8/tools/tickprocessor-driver.js +59 -0
- data/lib/libv8/v8/tools/tickprocessor.js +877 -0
- data/lib/libv8/v8/tools/utils.py +96 -0
- data/lib/libv8/v8/tools/visual_studio/README.txt +12 -0
- data/lib/libv8/v8/tools/windows-tick-processor.bat +30 -0
- data/lib/libv8/version.rb +5 -0
- data/libv8.gemspec +36 -0
- metadata +578 -0
@@ -0,0 +1,589 @@
|
|
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_SERIALIZE_H_
|
29
|
+
#define V8_SERIALIZE_H_
|
30
|
+
|
31
|
+
#include "hashmap.h"
|
32
|
+
|
33
|
+
namespace v8 {
|
34
|
+
namespace internal {
|
35
|
+
|
36
|
+
// A TypeCode is used to distinguish different kinds of external reference.
|
37
|
+
// It is a single bit to make testing for types easy.
|
38
|
+
enum TypeCode {
|
39
|
+
UNCLASSIFIED, // One-of-a-kind references.
|
40
|
+
BUILTIN,
|
41
|
+
RUNTIME_FUNCTION,
|
42
|
+
IC_UTILITY,
|
43
|
+
DEBUG_ADDRESS,
|
44
|
+
STATS_COUNTER,
|
45
|
+
TOP_ADDRESS,
|
46
|
+
C_BUILTIN,
|
47
|
+
EXTENSION,
|
48
|
+
ACCESSOR,
|
49
|
+
RUNTIME_ENTRY,
|
50
|
+
STUB_CACHE_TABLE
|
51
|
+
};
|
52
|
+
|
53
|
+
const int kTypeCodeCount = STUB_CACHE_TABLE + 1;
|
54
|
+
const int kFirstTypeCode = UNCLASSIFIED;
|
55
|
+
|
56
|
+
const int kReferenceIdBits = 16;
|
57
|
+
const int kReferenceIdMask = (1 << kReferenceIdBits) - 1;
|
58
|
+
const int kReferenceTypeShift = kReferenceIdBits;
|
59
|
+
const int kDebugRegisterBits = 4;
|
60
|
+
const int kDebugIdShift = kDebugRegisterBits;
|
61
|
+
|
62
|
+
|
63
|
+
class ExternalReferenceEncoder {
|
64
|
+
public:
|
65
|
+
ExternalReferenceEncoder();
|
66
|
+
|
67
|
+
uint32_t Encode(Address key) const;
|
68
|
+
|
69
|
+
const char* NameOfAddress(Address key) const;
|
70
|
+
|
71
|
+
private:
|
72
|
+
HashMap encodings_;
|
73
|
+
static uint32_t Hash(Address key) {
|
74
|
+
return static_cast<uint32_t>(reinterpret_cast<uintptr_t>(key) >> 2);
|
75
|
+
}
|
76
|
+
|
77
|
+
int IndexOf(Address key) const;
|
78
|
+
|
79
|
+
static bool Match(void* key1, void* key2) { return key1 == key2; }
|
80
|
+
|
81
|
+
void Put(Address key, int index);
|
82
|
+
|
83
|
+
Isolate* isolate_;
|
84
|
+
};
|
85
|
+
|
86
|
+
|
87
|
+
class ExternalReferenceDecoder {
|
88
|
+
public:
|
89
|
+
ExternalReferenceDecoder();
|
90
|
+
~ExternalReferenceDecoder();
|
91
|
+
|
92
|
+
Address Decode(uint32_t key) const {
|
93
|
+
if (key == 0) return NULL;
|
94
|
+
return *Lookup(key);
|
95
|
+
}
|
96
|
+
|
97
|
+
private:
|
98
|
+
Address** encodings_;
|
99
|
+
|
100
|
+
Address* Lookup(uint32_t key) const {
|
101
|
+
int type = key >> kReferenceTypeShift;
|
102
|
+
ASSERT(kFirstTypeCode <= type && type < kTypeCodeCount);
|
103
|
+
int id = key & kReferenceIdMask;
|
104
|
+
return &encodings_[type][id];
|
105
|
+
}
|
106
|
+
|
107
|
+
void Put(uint32_t key, Address value) {
|
108
|
+
*Lookup(key) = value;
|
109
|
+
}
|
110
|
+
|
111
|
+
Isolate* isolate_;
|
112
|
+
};
|
113
|
+
|
114
|
+
|
115
|
+
class SnapshotByteSource {
|
116
|
+
public:
|
117
|
+
SnapshotByteSource(const byte* array, int length)
|
118
|
+
: data_(array), length_(length), position_(0) { }
|
119
|
+
|
120
|
+
bool HasMore() { return position_ < length_; }
|
121
|
+
|
122
|
+
int Get() {
|
123
|
+
ASSERT(position_ < length_);
|
124
|
+
return data_[position_++];
|
125
|
+
}
|
126
|
+
|
127
|
+
inline void CopyRaw(byte* to, int number_of_bytes);
|
128
|
+
|
129
|
+
inline int GetInt();
|
130
|
+
|
131
|
+
bool AtEOF() {
|
132
|
+
return position_ == length_;
|
133
|
+
}
|
134
|
+
|
135
|
+
int position() { return position_; }
|
136
|
+
|
137
|
+
private:
|
138
|
+
const byte* data_;
|
139
|
+
int length_;
|
140
|
+
int position_;
|
141
|
+
};
|
142
|
+
|
143
|
+
|
144
|
+
// It is very common to have a reference to objects at certain offsets in the
|
145
|
+
// heap. These offsets have been determined experimentally. We code
|
146
|
+
// references to such objects in a single byte that encodes the way the pointer
|
147
|
+
// is written (only plain pointers allowed), the space number and the offset.
|
148
|
+
// This only works for objects in the first page of a space. Don't use this for
|
149
|
+
// things in newspace since it bypasses the write barrier.
|
150
|
+
|
151
|
+
static const int k64 = (sizeof(uintptr_t) - 4) / 4;
|
152
|
+
|
153
|
+
#define COMMON_REFERENCE_PATTERNS(f) \
|
154
|
+
f(kNumberOfSpaces, 2, (11 - k64)) \
|
155
|
+
f((kNumberOfSpaces + 1), 2, 0) \
|
156
|
+
f((kNumberOfSpaces + 2), 2, (142 - 16 * k64)) \
|
157
|
+
f((kNumberOfSpaces + 3), 2, (74 - 15 * k64)) \
|
158
|
+
f((kNumberOfSpaces + 4), 2, 5) \
|
159
|
+
f((kNumberOfSpaces + 5), 1, 135) \
|
160
|
+
f((kNumberOfSpaces + 6), 2, (228 - 39 * k64))
|
161
|
+
|
162
|
+
#define COMMON_RAW_LENGTHS(f) \
|
163
|
+
f(1, 1) \
|
164
|
+
f(2, 2) \
|
165
|
+
f(3, 3) \
|
166
|
+
f(4, 4) \
|
167
|
+
f(5, 5) \
|
168
|
+
f(6, 6) \
|
169
|
+
f(7, 7) \
|
170
|
+
f(8, 8) \
|
171
|
+
f(9, 12) \
|
172
|
+
f(10, 16) \
|
173
|
+
f(11, 20) \
|
174
|
+
f(12, 24) \
|
175
|
+
f(13, 28) \
|
176
|
+
f(14, 32) \
|
177
|
+
f(15, 36)
|
178
|
+
|
179
|
+
// The Serializer/Deserializer class is a common superclass for Serializer and
|
180
|
+
// Deserializer which is used to store common constants and methods used by
|
181
|
+
// both.
|
182
|
+
class SerializerDeserializer: public ObjectVisitor {
|
183
|
+
public:
|
184
|
+
static void Iterate(ObjectVisitor* visitor);
|
185
|
+
static void SetSnapshotCacheSize(int size);
|
186
|
+
|
187
|
+
protected:
|
188
|
+
// Where the pointed-to object can be found:
|
189
|
+
enum Where {
|
190
|
+
kNewObject = 0, // Object is next in snapshot.
|
191
|
+
// 1-8 One per space.
|
192
|
+
kRootArray = 0x9, // Object is found in root array.
|
193
|
+
kPartialSnapshotCache = 0xa, // Object is in the cache.
|
194
|
+
kExternalReference = 0xb, // Pointer to an external reference.
|
195
|
+
// 0xc-0xf Free.
|
196
|
+
kBackref = 0x10, // Object is described relative to end.
|
197
|
+
// 0x11-0x18 One per space.
|
198
|
+
// 0x19-0x1f Common backref offsets.
|
199
|
+
kFromStart = 0x20, // Object is described relative to start.
|
200
|
+
// 0x21-0x28 One per space.
|
201
|
+
// 0x29-0x2f Free.
|
202
|
+
// 0x30-0x3f Used by misc tags below.
|
203
|
+
kPointedToMask = 0x3f
|
204
|
+
};
|
205
|
+
|
206
|
+
// How to code the pointer to the object.
|
207
|
+
enum HowToCode {
|
208
|
+
kPlain = 0, // Straight pointer.
|
209
|
+
// What this means depends on the architecture:
|
210
|
+
kFromCode = 0x40, // A pointer inlined in code.
|
211
|
+
kHowToCodeMask = 0x40
|
212
|
+
};
|
213
|
+
|
214
|
+
// Where to point within the object.
|
215
|
+
enum WhereToPoint {
|
216
|
+
kStartOfObject = 0,
|
217
|
+
kFirstInstruction = 0x80,
|
218
|
+
kWhereToPointMask = 0x80
|
219
|
+
};
|
220
|
+
|
221
|
+
// Misc.
|
222
|
+
// Raw data to be copied from the snapshot.
|
223
|
+
static const int kRawData = 0x30;
|
224
|
+
// Some common raw lengths: 0x31-0x3f
|
225
|
+
// A tag emitted at strategic points in the snapshot to delineate sections.
|
226
|
+
// If the deserializer does not find these at the expected moments then it
|
227
|
+
// is an indication that the snapshot and the VM do not fit together.
|
228
|
+
// Examine the build process for architecture, version or configuration
|
229
|
+
// mismatches.
|
230
|
+
static const int kSynchronize = 0x70;
|
231
|
+
// Used for the source code of the natives, which is in the executable, but
|
232
|
+
// is referred to from external strings in the snapshot.
|
233
|
+
static const int kNativesStringResource = 0x71;
|
234
|
+
static const int kNewPage = 0x72;
|
235
|
+
// 0x73-0x7f Free.
|
236
|
+
// 0xb0-0xbf Free.
|
237
|
+
// 0xf0-0xff Free.
|
238
|
+
|
239
|
+
|
240
|
+
static const int kLargeData = LAST_SPACE;
|
241
|
+
static const int kLargeCode = kLargeData + 1;
|
242
|
+
static const int kLargeFixedArray = kLargeCode + 1;
|
243
|
+
static const int kNumberOfSpaces = kLargeFixedArray + 1;
|
244
|
+
static const int kAnyOldSpace = -1;
|
245
|
+
|
246
|
+
// A bitmask for getting the space out of an instruction.
|
247
|
+
static const int kSpaceMask = 15;
|
248
|
+
|
249
|
+
static inline bool SpaceIsLarge(int space) { return space >= kLargeData; }
|
250
|
+
static inline bool SpaceIsPaged(int space) {
|
251
|
+
return space >= FIRST_PAGED_SPACE && space <= LAST_PAGED_SPACE;
|
252
|
+
}
|
253
|
+
};
|
254
|
+
|
255
|
+
|
256
|
+
int SnapshotByteSource::GetInt() {
|
257
|
+
// A little unwind to catch the really small ints.
|
258
|
+
int snapshot_byte = Get();
|
259
|
+
if ((snapshot_byte & 0x80) == 0) {
|
260
|
+
return snapshot_byte;
|
261
|
+
}
|
262
|
+
int accumulator = (snapshot_byte & 0x7f) << 7;
|
263
|
+
while (true) {
|
264
|
+
snapshot_byte = Get();
|
265
|
+
if ((snapshot_byte & 0x80) == 0) {
|
266
|
+
return accumulator | snapshot_byte;
|
267
|
+
}
|
268
|
+
accumulator = (accumulator | (snapshot_byte & 0x7f)) << 7;
|
269
|
+
}
|
270
|
+
UNREACHABLE();
|
271
|
+
return accumulator;
|
272
|
+
}
|
273
|
+
|
274
|
+
|
275
|
+
void SnapshotByteSource::CopyRaw(byte* to, int number_of_bytes) {
|
276
|
+
memcpy(to, data_ + position_, number_of_bytes);
|
277
|
+
position_ += number_of_bytes;
|
278
|
+
}
|
279
|
+
|
280
|
+
|
281
|
+
// A Deserializer reads a snapshot and reconstructs the Object graph it defines.
|
282
|
+
class Deserializer: public SerializerDeserializer {
|
283
|
+
public:
|
284
|
+
// Create a deserializer from a snapshot byte source.
|
285
|
+
explicit Deserializer(SnapshotByteSource* source);
|
286
|
+
|
287
|
+
virtual ~Deserializer();
|
288
|
+
|
289
|
+
// Deserialize the snapshot into an empty heap.
|
290
|
+
void Deserialize();
|
291
|
+
|
292
|
+
// Deserialize a single object and the objects reachable from it.
|
293
|
+
void DeserializePartial(Object** root);
|
294
|
+
|
295
|
+
#ifdef DEBUG
|
296
|
+
virtual void Synchronize(const char* tag);
|
297
|
+
#endif
|
298
|
+
|
299
|
+
private:
|
300
|
+
virtual void VisitPointers(Object** start, Object** end);
|
301
|
+
|
302
|
+
virtual void VisitExternalReferences(Address* start, Address* end) {
|
303
|
+
UNREACHABLE();
|
304
|
+
}
|
305
|
+
|
306
|
+
virtual void VisitRuntimeEntry(RelocInfo* rinfo) {
|
307
|
+
UNREACHABLE();
|
308
|
+
}
|
309
|
+
|
310
|
+
void ReadChunk(Object** start, Object** end, int space, Address address);
|
311
|
+
HeapObject* GetAddressFromStart(int space);
|
312
|
+
inline HeapObject* GetAddressFromEnd(int space);
|
313
|
+
Address Allocate(int space_number, Space* space, int size);
|
314
|
+
void ReadObject(int space_number, Space* space, Object** write_back);
|
315
|
+
|
316
|
+
// Cached current isolate.
|
317
|
+
Isolate* isolate_;
|
318
|
+
|
319
|
+
// Keep track of the pages in the paged spaces.
|
320
|
+
// (In large object space we are keeping track of individual objects
|
321
|
+
// rather than pages.) In new space we just need the address of the
|
322
|
+
// first object and the others will flow from that.
|
323
|
+
List<Address> pages_[SerializerDeserializer::kNumberOfSpaces];
|
324
|
+
|
325
|
+
SnapshotByteSource* source_;
|
326
|
+
// This is the address of the next object that will be allocated in each
|
327
|
+
// space. It is used to calculate the addresses of back-references.
|
328
|
+
Address high_water_[LAST_SPACE + 1];
|
329
|
+
// This is the address of the most recent object that was allocated. It
|
330
|
+
// is used to set the location of the new page when we encounter a
|
331
|
+
// START_NEW_PAGE_SERIALIZATION tag.
|
332
|
+
Address last_object_address_;
|
333
|
+
|
334
|
+
ExternalReferenceDecoder* external_reference_decoder_;
|
335
|
+
|
336
|
+
DISALLOW_COPY_AND_ASSIGN(Deserializer);
|
337
|
+
};
|
338
|
+
|
339
|
+
|
340
|
+
class SnapshotByteSink {
|
341
|
+
public:
|
342
|
+
virtual ~SnapshotByteSink() { }
|
343
|
+
virtual void Put(int byte, const char* description) = 0;
|
344
|
+
virtual void PutSection(int byte, const char* description) {
|
345
|
+
Put(byte, description);
|
346
|
+
}
|
347
|
+
void PutInt(uintptr_t integer, const char* description);
|
348
|
+
virtual int Position() = 0;
|
349
|
+
};
|
350
|
+
|
351
|
+
|
352
|
+
// Mapping objects to their location after deserialization.
|
353
|
+
// This is used during building, but not at runtime by V8.
|
354
|
+
class SerializationAddressMapper {
|
355
|
+
public:
|
356
|
+
SerializationAddressMapper()
|
357
|
+
: serialization_map_(new HashMap(&SerializationMatchFun)),
|
358
|
+
no_allocation_(new AssertNoAllocation()) { }
|
359
|
+
|
360
|
+
~SerializationAddressMapper() {
|
361
|
+
delete serialization_map_;
|
362
|
+
delete no_allocation_;
|
363
|
+
}
|
364
|
+
|
365
|
+
bool IsMapped(HeapObject* obj) {
|
366
|
+
return serialization_map_->Lookup(Key(obj), Hash(obj), false) != NULL;
|
367
|
+
}
|
368
|
+
|
369
|
+
int MappedTo(HeapObject* obj) {
|
370
|
+
ASSERT(IsMapped(obj));
|
371
|
+
return static_cast<int>(reinterpret_cast<intptr_t>(
|
372
|
+
serialization_map_->Lookup(Key(obj), Hash(obj), false)->value));
|
373
|
+
}
|
374
|
+
|
375
|
+
void AddMapping(HeapObject* obj, int to) {
|
376
|
+
ASSERT(!IsMapped(obj));
|
377
|
+
HashMap::Entry* entry =
|
378
|
+
serialization_map_->Lookup(Key(obj), Hash(obj), true);
|
379
|
+
entry->value = Value(to);
|
380
|
+
}
|
381
|
+
|
382
|
+
private:
|
383
|
+
static bool SerializationMatchFun(void* key1, void* key2) {
|
384
|
+
return key1 == key2;
|
385
|
+
}
|
386
|
+
|
387
|
+
static uint32_t Hash(HeapObject* obj) {
|
388
|
+
return static_cast<int32_t>(reinterpret_cast<intptr_t>(obj->address()));
|
389
|
+
}
|
390
|
+
|
391
|
+
static void* Key(HeapObject* obj) {
|
392
|
+
return reinterpret_cast<void*>(obj->address());
|
393
|
+
}
|
394
|
+
|
395
|
+
static void* Value(int v) {
|
396
|
+
return reinterpret_cast<void*>(v);
|
397
|
+
}
|
398
|
+
|
399
|
+
HashMap* serialization_map_;
|
400
|
+
AssertNoAllocation* no_allocation_;
|
401
|
+
DISALLOW_COPY_AND_ASSIGN(SerializationAddressMapper);
|
402
|
+
};
|
403
|
+
|
404
|
+
|
405
|
+
// There can be only one serializer per V8 process.
|
406
|
+
class Serializer : public SerializerDeserializer {
|
407
|
+
public:
|
408
|
+
explicit Serializer(SnapshotByteSink* sink);
|
409
|
+
~Serializer();
|
410
|
+
void VisitPointers(Object** start, Object** end);
|
411
|
+
// You can call this after serialization to find out how much space was used
|
412
|
+
// in each space.
|
413
|
+
int CurrentAllocationAddress(int space) {
|
414
|
+
if (SpaceIsLarge(space)) return large_object_total_;
|
415
|
+
return fullness_[space];
|
416
|
+
}
|
417
|
+
|
418
|
+
static void Enable() {
|
419
|
+
if (!serialization_enabled_) {
|
420
|
+
ASSERT(!too_late_to_enable_now_);
|
421
|
+
}
|
422
|
+
serialization_enabled_ = true;
|
423
|
+
}
|
424
|
+
|
425
|
+
static void Disable() { serialization_enabled_ = false; }
|
426
|
+
// Call this when you have made use of the fact that there is no serialization
|
427
|
+
// going on.
|
428
|
+
static void TooLateToEnableNow() { too_late_to_enable_now_ = true; }
|
429
|
+
static bool enabled() { return serialization_enabled_; }
|
430
|
+
SerializationAddressMapper* address_mapper() { return &address_mapper_; }
|
431
|
+
#ifdef DEBUG
|
432
|
+
virtual void Synchronize(const char* tag);
|
433
|
+
#endif
|
434
|
+
|
435
|
+
protected:
|
436
|
+
static const int kInvalidRootIndex = -1;
|
437
|
+
virtual int RootIndex(HeapObject* heap_object) = 0;
|
438
|
+
virtual bool ShouldBeInThePartialSnapshotCache(HeapObject* o) = 0;
|
439
|
+
|
440
|
+
class ObjectSerializer : public ObjectVisitor {
|
441
|
+
public:
|
442
|
+
ObjectSerializer(Serializer* serializer,
|
443
|
+
Object* o,
|
444
|
+
SnapshotByteSink* sink,
|
445
|
+
HowToCode how_to_code,
|
446
|
+
WhereToPoint where_to_point)
|
447
|
+
: serializer_(serializer),
|
448
|
+
object_(HeapObject::cast(o)),
|
449
|
+
sink_(sink),
|
450
|
+
reference_representation_(how_to_code + where_to_point),
|
451
|
+
bytes_processed_so_far_(0) { }
|
452
|
+
void Serialize();
|
453
|
+
void VisitPointers(Object** start, Object** end);
|
454
|
+
void VisitExternalReferences(Address* start, Address* end);
|
455
|
+
void VisitCodeTarget(RelocInfo* target);
|
456
|
+
void VisitCodeEntry(Address entry_address);
|
457
|
+
void VisitGlobalPropertyCell(RelocInfo* rinfo);
|
458
|
+
void VisitRuntimeEntry(RelocInfo* reloc);
|
459
|
+
// Used for seralizing the external strings that hold the natives source.
|
460
|
+
void VisitExternalAsciiString(
|
461
|
+
v8::String::ExternalAsciiStringResource** resource);
|
462
|
+
// We can't serialize a heap with external two byte strings.
|
463
|
+
void VisitExternalTwoByteString(
|
464
|
+
v8::String::ExternalStringResource** resource) {
|
465
|
+
UNREACHABLE();
|
466
|
+
}
|
467
|
+
|
468
|
+
private:
|
469
|
+
void OutputRawData(Address up_to);
|
470
|
+
|
471
|
+
Serializer* serializer_;
|
472
|
+
HeapObject* object_;
|
473
|
+
SnapshotByteSink* sink_;
|
474
|
+
int reference_representation_;
|
475
|
+
int bytes_processed_so_far_;
|
476
|
+
};
|
477
|
+
|
478
|
+
virtual void SerializeObject(Object* o,
|
479
|
+
HowToCode how_to_code,
|
480
|
+
WhereToPoint where_to_point) = 0;
|
481
|
+
void SerializeReferenceToPreviousObject(
|
482
|
+
int space,
|
483
|
+
int address,
|
484
|
+
HowToCode how_to_code,
|
485
|
+
WhereToPoint where_to_point);
|
486
|
+
void InitializeAllocators();
|
487
|
+
// This will return the space for an object. If the object is in large
|
488
|
+
// object space it may return kLargeCode or kLargeFixedArray in order
|
489
|
+
// to indicate to the deserializer what kind of large object allocation
|
490
|
+
// to make.
|
491
|
+
static int SpaceOfObject(HeapObject* object);
|
492
|
+
// This just returns the space of the object. It will return LO_SPACE
|
493
|
+
// for all large objects since you can't check the type of the object
|
494
|
+
// once the map has been used for the serialization address.
|
495
|
+
static int SpaceOfAlreadySerializedObject(HeapObject* object);
|
496
|
+
int Allocate(int space, int size, bool* new_page_started);
|
497
|
+
int EncodeExternalReference(Address addr) {
|
498
|
+
return external_reference_encoder_->Encode(addr);
|
499
|
+
}
|
500
|
+
|
501
|
+
// Keep track of the fullness of each space in order to generate
|
502
|
+
// relative addresses for back references. Large objects are
|
503
|
+
// just numbered sequentially since relative addresses make no
|
504
|
+
// sense in large object space.
|
505
|
+
int fullness_[LAST_SPACE + 1];
|
506
|
+
SnapshotByteSink* sink_;
|
507
|
+
int current_root_index_;
|
508
|
+
ExternalReferenceEncoder* external_reference_encoder_;
|
509
|
+
static bool serialization_enabled_;
|
510
|
+
// Did we already make use of the fact that serialization was not enabled?
|
511
|
+
static bool too_late_to_enable_now_;
|
512
|
+
int large_object_total_;
|
513
|
+
SerializationAddressMapper address_mapper_;
|
514
|
+
|
515
|
+
friend class ObjectSerializer;
|
516
|
+
friend class Deserializer;
|
517
|
+
|
518
|
+
DISALLOW_COPY_AND_ASSIGN(Serializer);
|
519
|
+
};
|
520
|
+
|
521
|
+
|
522
|
+
class PartialSerializer : public Serializer {
|
523
|
+
public:
|
524
|
+
PartialSerializer(Serializer* startup_snapshot_serializer,
|
525
|
+
SnapshotByteSink* sink)
|
526
|
+
: Serializer(sink),
|
527
|
+
startup_serializer_(startup_snapshot_serializer) {
|
528
|
+
}
|
529
|
+
|
530
|
+
// Serialize the objects reachable from a single object pointer.
|
531
|
+
virtual void Serialize(Object** o);
|
532
|
+
virtual void SerializeObject(Object* o,
|
533
|
+
HowToCode how_to_code,
|
534
|
+
WhereToPoint where_to_point);
|
535
|
+
|
536
|
+
protected:
|
537
|
+
virtual int RootIndex(HeapObject* o);
|
538
|
+
virtual int PartialSnapshotCacheIndex(HeapObject* o);
|
539
|
+
virtual bool ShouldBeInThePartialSnapshotCache(HeapObject* o) {
|
540
|
+
// Scripts should be referred only through shared function infos. We can't
|
541
|
+
// allow them to be part of the partial snapshot because they contain a
|
542
|
+
// unique ID, and deserializing several partial snapshots containing script
|
543
|
+
// would cause dupes.
|
544
|
+
ASSERT(!o->IsScript());
|
545
|
+
return o->IsString() || o->IsSharedFunctionInfo() ||
|
546
|
+
o->IsHeapNumber() || o->IsCode() ||
|
547
|
+
o->map() == HEAP->fixed_cow_array_map();
|
548
|
+
}
|
549
|
+
|
550
|
+
private:
|
551
|
+
Serializer* startup_serializer_;
|
552
|
+
DISALLOW_COPY_AND_ASSIGN(PartialSerializer);
|
553
|
+
};
|
554
|
+
|
555
|
+
|
556
|
+
class StartupSerializer : public Serializer {
|
557
|
+
public:
|
558
|
+
explicit StartupSerializer(SnapshotByteSink* sink) : Serializer(sink) {
|
559
|
+
// Clear the cache of objects used by the partial snapshot. After the
|
560
|
+
// strong roots have been serialized we can create a partial snapshot
|
561
|
+
// which will repopulate the cache with objects neede by that partial
|
562
|
+
// snapshot.
|
563
|
+
Isolate::Current()->set_serialize_partial_snapshot_cache_length(0);
|
564
|
+
}
|
565
|
+
// Serialize the current state of the heap. The order is:
|
566
|
+
// 1) Strong references.
|
567
|
+
// 2) Partial snapshot cache.
|
568
|
+
// 3) Weak references (eg the symbol table).
|
569
|
+
virtual void SerializeStrongReferences();
|
570
|
+
virtual void SerializeObject(Object* o,
|
571
|
+
HowToCode how_to_code,
|
572
|
+
WhereToPoint where_to_point);
|
573
|
+
void SerializeWeakReferences();
|
574
|
+
void Serialize() {
|
575
|
+
SerializeStrongReferences();
|
576
|
+
SerializeWeakReferences();
|
577
|
+
}
|
578
|
+
|
579
|
+
private:
|
580
|
+
virtual int RootIndex(HeapObject* o) { return kInvalidRootIndex; }
|
581
|
+
virtual bool ShouldBeInThePartialSnapshotCache(HeapObject* o) {
|
582
|
+
return false;
|
583
|
+
}
|
584
|
+
};
|
585
|
+
|
586
|
+
|
587
|
+
} } // namespace v8::internal
|
588
|
+
|
589
|
+
#endif // V8_SERIALIZE_H_
|