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,765 @@
|
|
1
|
+
// Copyright 2011 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_PARSER_H_
|
29
|
+
#define V8_PARSER_H_
|
30
|
+
|
31
|
+
#include "allocation.h"
|
32
|
+
#include "ast.h"
|
33
|
+
#include "scanner.h"
|
34
|
+
#include "scopes.h"
|
35
|
+
#include "preparse-data-format.h"
|
36
|
+
#include "preparse-data.h"
|
37
|
+
|
38
|
+
namespace v8 {
|
39
|
+
namespace internal {
|
40
|
+
|
41
|
+
class CompilationInfo;
|
42
|
+
class FuncNameInferrer;
|
43
|
+
class ParserLog;
|
44
|
+
class PositionStack;
|
45
|
+
class Target;
|
46
|
+
class LexicalScope;
|
47
|
+
|
48
|
+
template <typename T> class ZoneListWrapper;
|
49
|
+
|
50
|
+
|
51
|
+
class ParserMessage : public Malloced {
|
52
|
+
public:
|
53
|
+
ParserMessage(Scanner::Location loc, const char* message,
|
54
|
+
Vector<const char*> args)
|
55
|
+
: loc_(loc),
|
56
|
+
message_(message),
|
57
|
+
args_(args) { }
|
58
|
+
~ParserMessage();
|
59
|
+
Scanner::Location location() { return loc_; }
|
60
|
+
const char* message() { return message_; }
|
61
|
+
Vector<const char*> args() { return args_; }
|
62
|
+
private:
|
63
|
+
Scanner::Location loc_;
|
64
|
+
const char* message_;
|
65
|
+
Vector<const char*> args_;
|
66
|
+
};
|
67
|
+
|
68
|
+
|
69
|
+
class FunctionEntry BASE_EMBEDDED {
|
70
|
+
public:
|
71
|
+
explicit FunctionEntry(Vector<unsigned> backing) : backing_(backing) { }
|
72
|
+
FunctionEntry() : backing_(Vector<unsigned>::empty()) { }
|
73
|
+
|
74
|
+
int start_pos() { return backing_[kStartPosOffset]; }
|
75
|
+
void set_start_pos(int value) { backing_[kStartPosOffset] = value; }
|
76
|
+
|
77
|
+
int end_pos() { return backing_[kEndPosOffset]; }
|
78
|
+
void set_end_pos(int value) { backing_[kEndPosOffset] = value; }
|
79
|
+
|
80
|
+
int literal_count() { return backing_[kLiteralCountOffset]; }
|
81
|
+
void set_literal_count(int value) { backing_[kLiteralCountOffset] = value; }
|
82
|
+
|
83
|
+
int property_count() { return backing_[kPropertyCountOffset]; }
|
84
|
+
void set_property_count(int value) {
|
85
|
+
backing_[kPropertyCountOffset] = value;
|
86
|
+
}
|
87
|
+
|
88
|
+
bool is_valid() { return backing_.length() > 0; }
|
89
|
+
|
90
|
+
static const int kSize = 4;
|
91
|
+
|
92
|
+
private:
|
93
|
+
Vector<unsigned> backing_;
|
94
|
+
static const int kStartPosOffset = 0;
|
95
|
+
static const int kEndPosOffset = 1;
|
96
|
+
static const int kLiteralCountOffset = 2;
|
97
|
+
static const int kPropertyCountOffset = 3;
|
98
|
+
};
|
99
|
+
|
100
|
+
|
101
|
+
class ScriptDataImpl : public ScriptData {
|
102
|
+
public:
|
103
|
+
explicit ScriptDataImpl(Vector<unsigned> store)
|
104
|
+
: store_(store),
|
105
|
+
owns_store_(true) { }
|
106
|
+
|
107
|
+
// Create an empty ScriptDataImpl that is guaranteed to not satisfy
|
108
|
+
// a SanityCheck.
|
109
|
+
ScriptDataImpl() : store_(Vector<unsigned>()), owns_store_(false) { }
|
110
|
+
|
111
|
+
virtual ~ScriptDataImpl();
|
112
|
+
virtual int Length();
|
113
|
+
virtual const char* Data();
|
114
|
+
virtual bool HasError();
|
115
|
+
|
116
|
+
void Initialize();
|
117
|
+
void ReadNextSymbolPosition();
|
118
|
+
|
119
|
+
FunctionEntry GetFunctionEntry(int start);
|
120
|
+
int GetSymbolIdentifier();
|
121
|
+
bool SanityCheck();
|
122
|
+
|
123
|
+
Scanner::Location MessageLocation();
|
124
|
+
const char* BuildMessage();
|
125
|
+
Vector<const char*> BuildArgs();
|
126
|
+
|
127
|
+
int symbol_count() {
|
128
|
+
return (store_.length() > PreparseDataConstants::kHeaderSize)
|
129
|
+
? store_[PreparseDataConstants::kSymbolCountOffset]
|
130
|
+
: 0;
|
131
|
+
}
|
132
|
+
// The following functions should only be called if SanityCheck has
|
133
|
+
// returned true.
|
134
|
+
bool has_error() { return store_[PreparseDataConstants::kHasErrorOffset]; }
|
135
|
+
unsigned magic() { return store_[PreparseDataConstants::kMagicOffset]; }
|
136
|
+
unsigned version() { return store_[PreparseDataConstants::kVersionOffset]; }
|
137
|
+
|
138
|
+
private:
|
139
|
+
Vector<unsigned> store_;
|
140
|
+
unsigned char* symbol_data_;
|
141
|
+
unsigned char* symbol_data_end_;
|
142
|
+
int function_index_;
|
143
|
+
bool owns_store_;
|
144
|
+
|
145
|
+
unsigned Read(int position);
|
146
|
+
unsigned* ReadAddress(int position);
|
147
|
+
// Reads a number from the current symbols
|
148
|
+
int ReadNumber(byte** source);
|
149
|
+
|
150
|
+
ScriptDataImpl(const char* backing_store, int length)
|
151
|
+
: store_(reinterpret_cast<unsigned*>(const_cast<char*>(backing_store)),
|
152
|
+
length / static_cast<int>(sizeof(unsigned))),
|
153
|
+
owns_store_(false) {
|
154
|
+
ASSERT_EQ(0, static_cast<int>(
|
155
|
+
reinterpret_cast<intptr_t>(backing_store) % sizeof(unsigned)));
|
156
|
+
}
|
157
|
+
|
158
|
+
// Read strings written by ParserRecorder::WriteString.
|
159
|
+
static const char* ReadString(unsigned* start, int* chars);
|
160
|
+
|
161
|
+
friend class ScriptData;
|
162
|
+
};
|
163
|
+
|
164
|
+
|
165
|
+
class ParserApi {
|
166
|
+
public:
|
167
|
+
// Parses the source code represented by the compilation info and sets its
|
168
|
+
// function literal. Returns false (and deallocates any allocated AST
|
169
|
+
// nodes) if parsing failed.
|
170
|
+
static bool Parse(CompilationInfo* info);
|
171
|
+
|
172
|
+
// Generic preparser generating full preparse data.
|
173
|
+
static ScriptDataImpl* PreParse(UC16CharacterStream* source,
|
174
|
+
v8::Extension* extension);
|
175
|
+
|
176
|
+
// Preparser that only does preprocessing that makes sense if only used
|
177
|
+
// immediately after.
|
178
|
+
static ScriptDataImpl* PartialPreParse(UC16CharacterStream* source,
|
179
|
+
v8::Extension* extension);
|
180
|
+
};
|
181
|
+
|
182
|
+
// ----------------------------------------------------------------------------
|
183
|
+
// REGEXP PARSING
|
184
|
+
|
185
|
+
// A BuffferedZoneList is an automatically growing list, just like (and backed
|
186
|
+
// by) a ZoneList, that is optimized for the case of adding and removing
|
187
|
+
// a single element. The last element added is stored outside the backing list,
|
188
|
+
// and if no more than one element is ever added, the ZoneList isn't even
|
189
|
+
// allocated.
|
190
|
+
// Elements must not be NULL pointers.
|
191
|
+
template <typename T, int initial_size>
|
192
|
+
class BufferedZoneList {
|
193
|
+
public:
|
194
|
+
BufferedZoneList() : list_(NULL), last_(NULL) {}
|
195
|
+
|
196
|
+
// Adds element at end of list. This element is buffered and can
|
197
|
+
// be read using last() or removed using RemoveLast until a new Add or until
|
198
|
+
// RemoveLast or GetList has been called.
|
199
|
+
void Add(T* value) {
|
200
|
+
if (last_ != NULL) {
|
201
|
+
if (list_ == NULL) {
|
202
|
+
list_ = new ZoneList<T*>(initial_size);
|
203
|
+
}
|
204
|
+
list_->Add(last_);
|
205
|
+
}
|
206
|
+
last_ = value;
|
207
|
+
}
|
208
|
+
|
209
|
+
T* last() {
|
210
|
+
ASSERT(last_ != NULL);
|
211
|
+
return last_;
|
212
|
+
}
|
213
|
+
|
214
|
+
T* RemoveLast() {
|
215
|
+
ASSERT(last_ != NULL);
|
216
|
+
T* result = last_;
|
217
|
+
if ((list_ != NULL) && (list_->length() > 0))
|
218
|
+
last_ = list_->RemoveLast();
|
219
|
+
else
|
220
|
+
last_ = NULL;
|
221
|
+
return result;
|
222
|
+
}
|
223
|
+
|
224
|
+
T* Get(int i) {
|
225
|
+
ASSERT((0 <= i) && (i < length()));
|
226
|
+
if (list_ == NULL) {
|
227
|
+
ASSERT_EQ(0, i);
|
228
|
+
return last_;
|
229
|
+
} else {
|
230
|
+
if (i == list_->length()) {
|
231
|
+
ASSERT(last_ != NULL);
|
232
|
+
return last_;
|
233
|
+
} else {
|
234
|
+
return list_->at(i);
|
235
|
+
}
|
236
|
+
}
|
237
|
+
}
|
238
|
+
|
239
|
+
void Clear() {
|
240
|
+
list_ = NULL;
|
241
|
+
last_ = NULL;
|
242
|
+
}
|
243
|
+
|
244
|
+
int length() {
|
245
|
+
int length = (list_ == NULL) ? 0 : list_->length();
|
246
|
+
return length + ((last_ == NULL) ? 0 : 1);
|
247
|
+
}
|
248
|
+
|
249
|
+
ZoneList<T*>* GetList() {
|
250
|
+
if (list_ == NULL) {
|
251
|
+
list_ = new ZoneList<T*>(initial_size);
|
252
|
+
}
|
253
|
+
if (last_ != NULL) {
|
254
|
+
list_->Add(last_);
|
255
|
+
last_ = NULL;
|
256
|
+
}
|
257
|
+
return list_;
|
258
|
+
}
|
259
|
+
|
260
|
+
private:
|
261
|
+
ZoneList<T*>* list_;
|
262
|
+
T* last_;
|
263
|
+
};
|
264
|
+
|
265
|
+
|
266
|
+
// Accumulates RegExp atoms and assertions into lists of terms and alternatives.
|
267
|
+
class RegExpBuilder: public ZoneObject {
|
268
|
+
public:
|
269
|
+
RegExpBuilder();
|
270
|
+
void AddCharacter(uc16 character);
|
271
|
+
// "Adds" an empty expression. Does nothing except consume a
|
272
|
+
// following quantifier
|
273
|
+
void AddEmpty();
|
274
|
+
void AddAtom(RegExpTree* tree);
|
275
|
+
void AddAssertion(RegExpTree* tree);
|
276
|
+
void NewAlternative(); // '|'
|
277
|
+
void AddQuantifierToAtom(int min, int max, RegExpQuantifier::Type type);
|
278
|
+
RegExpTree* ToRegExp();
|
279
|
+
|
280
|
+
private:
|
281
|
+
void FlushCharacters();
|
282
|
+
void FlushText();
|
283
|
+
void FlushTerms();
|
284
|
+
Zone* zone() { return zone_; }
|
285
|
+
|
286
|
+
Zone* zone_;
|
287
|
+
bool pending_empty_;
|
288
|
+
ZoneList<uc16>* characters_;
|
289
|
+
BufferedZoneList<RegExpTree, 2> terms_;
|
290
|
+
BufferedZoneList<RegExpTree, 2> text_;
|
291
|
+
BufferedZoneList<RegExpTree, 2> alternatives_;
|
292
|
+
#ifdef DEBUG
|
293
|
+
enum {ADD_NONE, ADD_CHAR, ADD_TERM, ADD_ASSERT, ADD_ATOM} last_added_;
|
294
|
+
#define LAST(x) last_added_ = x;
|
295
|
+
#else
|
296
|
+
#define LAST(x)
|
297
|
+
#endif
|
298
|
+
};
|
299
|
+
|
300
|
+
|
301
|
+
class RegExpParser {
|
302
|
+
public:
|
303
|
+
RegExpParser(FlatStringReader* in,
|
304
|
+
Handle<String>* error,
|
305
|
+
bool multiline_mode);
|
306
|
+
|
307
|
+
static bool ParseRegExp(FlatStringReader* input,
|
308
|
+
bool multiline,
|
309
|
+
RegExpCompileData* result);
|
310
|
+
|
311
|
+
RegExpTree* ParsePattern();
|
312
|
+
RegExpTree* ParseDisjunction();
|
313
|
+
RegExpTree* ParseGroup();
|
314
|
+
RegExpTree* ParseCharacterClass();
|
315
|
+
|
316
|
+
// Parses a {...,...} quantifier and stores the range in the given
|
317
|
+
// out parameters.
|
318
|
+
bool ParseIntervalQuantifier(int* min_out, int* max_out);
|
319
|
+
|
320
|
+
// Parses and returns a single escaped character. The character
|
321
|
+
// must not be 'b' or 'B' since they are usually handle specially.
|
322
|
+
uc32 ParseClassCharacterEscape();
|
323
|
+
|
324
|
+
// Checks whether the following is a length-digit hexadecimal number,
|
325
|
+
// and sets the value if it is.
|
326
|
+
bool ParseHexEscape(int length, uc32* value);
|
327
|
+
|
328
|
+
uc32 ParseOctalLiteral();
|
329
|
+
|
330
|
+
// Tries to parse the input as a back reference. If successful it
|
331
|
+
// stores the result in the output parameter and returns true. If
|
332
|
+
// it fails it will push back the characters read so the same characters
|
333
|
+
// can be reparsed.
|
334
|
+
bool ParseBackReferenceIndex(int* index_out);
|
335
|
+
|
336
|
+
CharacterRange ParseClassAtom(uc16* char_class);
|
337
|
+
RegExpTree* ReportError(Vector<const char> message);
|
338
|
+
void Advance();
|
339
|
+
void Advance(int dist);
|
340
|
+
void Reset(int pos);
|
341
|
+
|
342
|
+
// Reports whether the pattern might be used as a literal search string.
|
343
|
+
// Only use if the result of the parse is a single atom node.
|
344
|
+
bool simple();
|
345
|
+
bool contains_anchor() { return contains_anchor_; }
|
346
|
+
void set_contains_anchor() { contains_anchor_ = true; }
|
347
|
+
int captures_started() { return captures_ == NULL ? 0 : captures_->length(); }
|
348
|
+
int position() { return next_pos_ - 1; }
|
349
|
+
bool failed() { return failed_; }
|
350
|
+
|
351
|
+
static const int kMaxCaptures = 1 << 16;
|
352
|
+
static const uc32 kEndMarker = (1 << 21);
|
353
|
+
|
354
|
+
private:
|
355
|
+
enum SubexpressionType {
|
356
|
+
INITIAL,
|
357
|
+
CAPTURE, // All positive values represent captures.
|
358
|
+
POSITIVE_LOOKAHEAD,
|
359
|
+
NEGATIVE_LOOKAHEAD,
|
360
|
+
GROUPING
|
361
|
+
};
|
362
|
+
|
363
|
+
class RegExpParserState : public ZoneObject {
|
364
|
+
public:
|
365
|
+
RegExpParserState(RegExpParserState* previous_state,
|
366
|
+
SubexpressionType group_type,
|
367
|
+
int disjunction_capture_index)
|
368
|
+
: previous_state_(previous_state),
|
369
|
+
builder_(new RegExpBuilder()),
|
370
|
+
group_type_(group_type),
|
371
|
+
disjunction_capture_index_(disjunction_capture_index) {}
|
372
|
+
// Parser state of containing expression, if any.
|
373
|
+
RegExpParserState* previous_state() { return previous_state_; }
|
374
|
+
bool IsSubexpression() { return previous_state_ != NULL; }
|
375
|
+
// RegExpBuilder building this regexp's AST.
|
376
|
+
RegExpBuilder* builder() { return builder_; }
|
377
|
+
// Type of regexp being parsed (parenthesized group or entire regexp).
|
378
|
+
SubexpressionType group_type() { return group_type_; }
|
379
|
+
// Index in captures array of first capture in this sub-expression, if any.
|
380
|
+
// Also the capture index of this sub-expression itself, if group_type
|
381
|
+
// is CAPTURE.
|
382
|
+
int capture_index() { return disjunction_capture_index_; }
|
383
|
+
|
384
|
+
private:
|
385
|
+
// Linked list implementation of stack of states.
|
386
|
+
RegExpParserState* previous_state_;
|
387
|
+
// Builder for the stored disjunction.
|
388
|
+
RegExpBuilder* builder_;
|
389
|
+
// Stored disjunction type (capture, look-ahead or grouping), if any.
|
390
|
+
SubexpressionType group_type_;
|
391
|
+
// Stored disjunction's capture index (if any).
|
392
|
+
int disjunction_capture_index_;
|
393
|
+
};
|
394
|
+
|
395
|
+
Isolate* isolate() { return isolate_; }
|
396
|
+
Zone* zone() { return isolate_->zone(); }
|
397
|
+
|
398
|
+
uc32 current() { return current_; }
|
399
|
+
bool has_more() { return has_more_; }
|
400
|
+
bool has_next() { return next_pos_ < in()->length(); }
|
401
|
+
uc32 Next();
|
402
|
+
FlatStringReader* in() { return in_; }
|
403
|
+
void ScanForCaptures();
|
404
|
+
|
405
|
+
Isolate* isolate_;
|
406
|
+
Handle<String>* error_;
|
407
|
+
ZoneList<RegExpCapture*>* captures_;
|
408
|
+
FlatStringReader* in_;
|
409
|
+
uc32 current_;
|
410
|
+
int next_pos_;
|
411
|
+
// The capture count is only valid after we have scanned for captures.
|
412
|
+
int capture_count_;
|
413
|
+
bool has_more_;
|
414
|
+
bool multiline_;
|
415
|
+
bool simple_;
|
416
|
+
bool contains_anchor_;
|
417
|
+
bool is_scanned_for_captures_;
|
418
|
+
bool failed_;
|
419
|
+
};
|
420
|
+
|
421
|
+
// ----------------------------------------------------------------------------
|
422
|
+
// JAVASCRIPT PARSING
|
423
|
+
|
424
|
+
class Parser {
|
425
|
+
public:
|
426
|
+
Parser(Handle<Script> script,
|
427
|
+
bool allow_natives_syntax,
|
428
|
+
v8::Extension* extension,
|
429
|
+
ScriptDataImpl* pre_data);
|
430
|
+
virtual ~Parser() { }
|
431
|
+
|
432
|
+
// Returns NULL if parsing failed.
|
433
|
+
FunctionLiteral* ParseProgram(Handle<String> source,
|
434
|
+
bool in_global_context,
|
435
|
+
StrictModeFlag strict_mode);
|
436
|
+
|
437
|
+
FunctionLiteral* ParseLazy(CompilationInfo* info);
|
438
|
+
|
439
|
+
void ReportMessageAt(Scanner::Location loc,
|
440
|
+
const char* message,
|
441
|
+
Vector<const char*> args);
|
442
|
+
void ReportMessageAt(Scanner::Location loc,
|
443
|
+
const char* message,
|
444
|
+
Vector<Handle<String> > args);
|
445
|
+
|
446
|
+
protected:
|
447
|
+
// Limit on number of function parameters is chosen arbitrarily.
|
448
|
+
// Code::Flags uses only the low 17 bits of num-parameters to
|
449
|
+
// construct a hashable id, so if more than 2^17 are allowed, this
|
450
|
+
// should be checked.
|
451
|
+
static const int kMaxNumFunctionParameters = 32766;
|
452
|
+
static const int kMaxNumFunctionLocals = 32767;
|
453
|
+
FunctionLiteral* ParseLazy(CompilationInfo* info,
|
454
|
+
UC16CharacterStream* source,
|
455
|
+
ZoneScope* zone_scope);
|
456
|
+
enum Mode {
|
457
|
+
PARSE_LAZILY,
|
458
|
+
PARSE_EAGERLY
|
459
|
+
};
|
460
|
+
|
461
|
+
Isolate* isolate() { return isolate_; }
|
462
|
+
Zone* zone() { return isolate_->zone(); }
|
463
|
+
|
464
|
+
// Called by ParseProgram after setting up the scanner.
|
465
|
+
FunctionLiteral* DoParseProgram(Handle<String> source,
|
466
|
+
bool in_global_context,
|
467
|
+
StrictModeFlag strict_mode,
|
468
|
+
ZoneScope* zone_scope);
|
469
|
+
|
470
|
+
// Report syntax error
|
471
|
+
void ReportUnexpectedToken(Token::Value token);
|
472
|
+
void ReportInvalidPreparseData(Handle<String> name, bool* ok);
|
473
|
+
void ReportMessage(const char* message, Vector<const char*> args);
|
474
|
+
|
475
|
+
bool inside_with() const { return with_nesting_level_ > 0; }
|
476
|
+
V8JavaScriptScanner& scanner() { return scanner_; }
|
477
|
+
Mode mode() const { return mode_; }
|
478
|
+
ScriptDataImpl* pre_data() const { return pre_data_; }
|
479
|
+
|
480
|
+
// Check if the given string is 'eval' or 'arguments'.
|
481
|
+
bool IsEvalOrArguments(Handle<String> string);
|
482
|
+
|
483
|
+
// All ParseXXX functions take as the last argument an *ok parameter
|
484
|
+
// which is set to false if parsing failed; it is unchanged otherwise.
|
485
|
+
// By making the 'exception handling' explicit, we are forced to check
|
486
|
+
// for failure at the call sites.
|
487
|
+
void* ParseSourceElements(ZoneList<Statement*>* processor,
|
488
|
+
int end_token, bool* ok);
|
489
|
+
Statement* ParseStatement(ZoneStringList* labels, bool* ok);
|
490
|
+
Statement* ParseFunctionDeclaration(bool* ok);
|
491
|
+
Statement* ParseNativeDeclaration(bool* ok);
|
492
|
+
Block* ParseBlock(ZoneStringList* labels, bool* ok);
|
493
|
+
Block* ParseVariableStatement(bool* ok);
|
494
|
+
Block* ParseVariableDeclarations(bool accept_IN, Expression** var, bool* ok);
|
495
|
+
Statement* ParseExpressionOrLabelledStatement(ZoneStringList* labels,
|
496
|
+
bool* ok);
|
497
|
+
IfStatement* ParseIfStatement(ZoneStringList* labels, bool* ok);
|
498
|
+
Statement* ParseContinueStatement(bool* ok);
|
499
|
+
Statement* ParseBreakStatement(ZoneStringList* labels, bool* ok);
|
500
|
+
Statement* ParseReturnStatement(bool* ok);
|
501
|
+
Block* WithHelper(Expression* obj,
|
502
|
+
ZoneStringList* labels,
|
503
|
+
bool is_catch_block,
|
504
|
+
bool* ok);
|
505
|
+
Statement* ParseWithStatement(ZoneStringList* labels, bool* ok);
|
506
|
+
CaseClause* ParseCaseClause(bool* default_seen_ptr, bool* ok);
|
507
|
+
SwitchStatement* ParseSwitchStatement(ZoneStringList* labels, bool* ok);
|
508
|
+
DoWhileStatement* ParseDoWhileStatement(ZoneStringList* labels, bool* ok);
|
509
|
+
WhileStatement* ParseWhileStatement(ZoneStringList* labels, bool* ok);
|
510
|
+
Statement* ParseForStatement(ZoneStringList* labels, bool* ok);
|
511
|
+
Statement* ParseThrowStatement(bool* ok);
|
512
|
+
Expression* MakeCatchContext(Handle<String> id, VariableProxy* value);
|
513
|
+
TryStatement* ParseTryStatement(bool* ok);
|
514
|
+
DebuggerStatement* ParseDebuggerStatement(bool* ok);
|
515
|
+
|
516
|
+
Expression* ParseExpression(bool accept_IN, bool* ok);
|
517
|
+
Expression* ParseAssignmentExpression(bool accept_IN, bool* ok);
|
518
|
+
Expression* ParseConditionalExpression(bool accept_IN, bool* ok);
|
519
|
+
Expression* ParseBinaryExpression(int prec, bool accept_IN, bool* ok);
|
520
|
+
Expression* ParseUnaryExpression(bool* ok);
|
521
|
+
Expression* ParsePostfixExpression(bool* ok);
|
522
|
+
Expression* ParseLeftHandSideExpression(bool* ok);
|
523
|
+
Expression* ParseNewExpression(bool* ok);
|
524
|
+
Expression* ParseMemberExpression(bool* ok);
|
525
|
+
Expression* ParseNewPrefix(PositionStack* stack, bool* ok);
|
526
|
+
Expression* ParseMemberWithNewPrefixesExpression(PositionStack* stack,
|
527
|
+
bool* ok);
|
528
|
+
Expression* ParsePrimaryExpression(bool* ok);
|
529
|
+
Expression* ParseArrayLiteral(bool* ok);
|
530
|
+
Expression* ParseObjectLiteral(bool* ok);
|
531
|
+
ObjectLiteral::Property* ParseObjectLiteralGetSet(bool is_getter, bool* ok);
|
532
|
+
Expression* ParseRegExpLiteral(bool seen_equal, bool* ok);
|
533
|
+
|
534
|
+
Expression* NewCompareNode(Token::Value op,
|
535
|
+
Expression* x,
|
536
|
+
Expression* y,
|
537
|
+
int position);
|
538
|
+
|
539
|
+
// Populate the constant properties fixed array for a materialized object
|
540
|
+
// literal.
|
541
|
+
void BuildObjectLiteralConstantProperties(
|
542
|
+
ZoneList<ObjectLiteral::Property*>* properties,
|
543
|
+
Handle<FixedArray> constants,
|
544
|
+
bool* is_simple,
|
545
|
+
bool* fast_elements,
|
546
|
+
int* depth);
|
547
|
+
|
548
|
+
// Populate the literals fixed array for a materialized array literal.
|
549
|
+
void BuildArrayLiteralBoilerplateLiterals(ZoneList<Expression*>* properties,
|
550
|
+
Handle<FixedArray> constants,
|
551
|
+
bool* is_simple,
|
552
|
+
int* depth);
|
553
|
+
|
554
|
+
// Decide if a property should be in the object boilerplate.
|
555
|
+
bool IsBoilerplateProperty(ObjectLiteral::Property* property);
|
556
|
+
// If the expression is a literal, return the literal value;
|
557
|
+
// if the expression is a materialized literal and is simple return a
|
558
|
+
// compile time value as encoded by CompileTimeValue::GetValue().
|
559
|
+
// Otherwise, return undefined literal as the placeholder
|
560
|
+
// in the object literal boilerplate.
|
561
|
+
Handle<Object> GetBoilerplateValue(Expression* expression);
|
562
|
+
|
563
|
+
enum FunctionLiteralType {
|
564
|
+
EXPRESSION,
|
565
|
+
DECLARATION,
|
566
|
+
NESTED
|
567
|
+
};
|
568
|
+
|
569
|
+
ZoneList<Expression*>* ParseArguments(bool* ok);
|
570
|
+
FunctionLiteral* ParseFunctionLiteral(Handle<String> var_name,
|
571
|
+
bool name_is_reserved,
|
572
|
+
int function_token_position,
|
573
|
+
FunctionLiteralType type,
|
574
|
+
bool* ok);
|
575
|
+
|
576
|
+
|
577
|
+
// Magical syntax support.
|
578
|
+
Expression* ParseV8Intrinsic(bool* ok);
|
579
|
+
|
580
|
+
INLINE(Token::Value peek()) {
|
581
|
+
if (stack_overflow_) return Token::ILLEGAL;
|
582
|
+
return scanner().peek();
|
583
|
+
}
|
584
|
+
|
585
|
+
INLINE(Token::Value Next()) {
|
586
|
+
// BUG 1215673: Find a thread safe way to set a stack limit in
|
587
|
+
// pre-parse mode. Otherwise, we cannot safely pre-parse from other
|
588
|
+
// threads.
|
589
|
+
if (stack_overflow_) {
|
590
|
+
return Token::ILLEGAL;
|
591
|
+
}
|
592
|
+
if (StackLimitCheck(isolate()).HasOverflowed()) {
|
593
|
+
// Any further calls to Next or peek will return the illegal token.
|
594
|
+
// The current call must return the next token, which might already
|
595
|
+
// have been peek'ed.
|
596
|
+
stack_overflow_ = true;
|
597
|
+
}
|
598
|
+
return scanner().Next();
|
599
|
+
}
|
600
|
+
|
601
|
+
bool peek_any_identifier();
|
602
|
+
|
603
|
+
INLINE(void Consume(Token::Value token));
|
604
|
+
void Expect(Token::Value token, bool* ok);
|
605
|
+
bool Check(Token::Value token);
|
606
|
+
void ExpectSemicolon(bool* ok);
|
607
|
+
|
608
|
+
Handle<String> LiteralString(PretenureFlag tenured) {
|
609
|
+
if (scanner().is_literal_ascii()) {
|
610
|
+
return isolate_->factory()->NewStringFromAscii(
|
611
|
+
scanner().literal_ascii_string(), tenured);
|
612
|
+
} else {
|
613
|
+
return isolate_->factory()->NewStringFromTwoByte(
|
614
|
+
scanner().literal_uc16_string(), tenured);
|
615
|
+
}
|
616
|
+
}
|
617
|
+
|
618
|
+
Handle<String> NextLiteralString(PretenureFlag tenured) {
|
619
|
+
if (scanner().is_next_literal_ascii()) {
|
620
|
+
return isolate_->factory()->NewStringFromAscii(
|
621
|
+
scanner().next_literal_ascii_string(), tenured);
|
622
|
+
} else {
|
623
|
+
return isolate_->factory()->NewStringFromTwoByte(
|
624
|
+
scanner().next_literal_uc16_string(), tenured);
|
625
|
+
}
|
626
|
+
}
|
627
|
+
|
628
|
+
Handle<String> GetSymbol(bool* ok);
|
629
|
+
|
630
|
+
// Get odd-ball literals.
|
631
|
+
Literal* GetLiteralUndefined();
|
632
|
+
Literal* GetLiteralTheHole();
|
633
|
+
Literal* GetLiteralNumber(double value);
|
634
|
+
|
635
|
+
Handle<String> ParseIdentifier(bool* ok);
|
636
|
+
Handle<String> ParseIdentifierOrReservedWord(bool* is_reserved, bool* ok);
|
637
|
+
Handle<String> ParseIdentifierName(bool* ok);
|
638
|
+
Handle<String> ParseIdentifierOrGetOrSet(bool* is_get,
|
639
|
+
bool* is_set,
|
640
|
+
bool* ok);
|
641
|
+
|
642
|
+
// Strict mode validation of LValue expressions
|
643
|
+
void CheckStrictModeLValue(Expression* expression,
|
644
|
+
const char* error,
|
645
|
+
bool* ok);
|
646
|
+
|
647
|
+
// Strict mode octal literal validation.
|
648
|
+
void CheckOctalLiteral(int beg_pos, int end_pos, bool* ok);
|
649
|
+
|
650
|
+
// Parser support
|
651
|
+
VariableProxy* Declare(Handle<String> name, Variable::Mode mode,
|
652
|
+
FunctionLiteral* fun,
|
653
|
+
bool resolve,
|
654
|
+
bool* ok);
|
655
|
+
|
656
|
+
bool TargetStackContainsLabel(Handle<String> label);
|
657
|
+
BreakableStatement* LookupBreakTarget(Handle<String> label, bool* ok);
|
658
|
+
IterationStatement* LookupContinueTarget(Handle<String> label, bool* ok);
|
659
|
+
|
660
|
+
void RegisterTargetUse(Label* target, Target* stop);
|
661
|
+
|
662
|
+
// Factory methods.
|
663
|
+
|
664
|
+
Statement* EmptyStatement() {
|
665
|
+
static v8::internal::EmptyStatement empty;
|
666
|
+
return ∅
|
667
|
+
}
|
668
|
+
|
669
|
+
Scope* NewScope(Scope* parent, Scope::Type type, bool inside_with);
|
670
|
+
|
671
|
+
Handle<String> LookupSymbol(int symbol_id);
|
672
|
+
|
673
|
+
Handle<String> LookupCachedSymbol(int symbol_id);
|
674
|
+
|
675
|
+
Expression* NewCall(Expression* expression,
|
676
|
+
ZoneList<Expression*>* arguments,
|
677
|
+
int pos) {
|
678
|
+
return new Call(expression, arguments, pos);
|
679
|
+
}
|
680
|
+
|
681
|
+
|
682
|
+
// Create a number literal.
|
683
|
+
Literal* NewNumberLiteral(double value);
|
684
|
+
|
685
|
+
// Generate AST node that throw a ReferenceError with the given type.
|
686
|
+
Expression* NewThrowReferenceError(Handle<String> type);
|
687
|
+
|
688
|
+
// Generate AST node that throw a SyntaxError with the given
|
689
|
+
// type. The first argument may be null (in the handle sense) in
|
690
|
+
// which case no arguments are passed to the constructor.
|
691
|
+
Expression* NewThrowSyntaxError(Handle<String> type, Handle<Object> first);
|
692
|
+
|
693
|
+
// Generate AST node that throw a TypeError with the given
|
694
|
+
// type. Both arguments must be non-null (in the handle sense).
|
695
|
+
Expression* NewThrowTypeError(Handle<String> type,
|
696
|
+
Handle<Object> first,
|
697
|
+
Handle<Object> second);
|
698
|
+
|
699
|
+
// Generic AST generator for throwing errors from compiled code.
|
700
|
+
Expression* NewThrowError(Handle<String> constructor,
|
701
|
+
Handle<String> type,
|
702
|
+
Vector< Handle<Object> > arguments);
|
703
|
+
|
704
|
+
Isolate* isolate_;
|
705
|
+
ZoneList<Handle<String> > symbol_cache_;
|
706
|
+
|
707
|
+
Handle<Script> script_;
|
708
|
+
V8JavaScriptScanner scanner_;
|
709
|
+
|
710
|
+
Scope* top_scope_;
|
711
|
+
int with_nesting_level_;
|
712
|
+
|
713
|
+
LexicalScope* lexical_scope_;
|
714
|
+
Mode mode_;
|
715
|
+
|
716
|
+
Target* target_stack_; // for break, continue statements
|
717
|
+
bool allow_natives_syntax_;
|
718
|
+
v8::Extension* extension_;
|
719
|
+
bool is_pre_parsing_;
|
720
|
+
ScriptDataImpl* pre_data_;
|
721
|
+
FuncNameInferrer* fni_;
|
722
|
+
bool stack_overflow_;
|
723
|
+
// If true, the next (and immediately following) function literal is
|
724
|
+
// preceded by a parenthesis.
|
725
|
+
// Heuristically that means that the function will be called immediately,
|
726
|
+
// so never lazily compile it.
|
727
|
+
bool parenthesized_function_;
|
728
|
+
|
729
|
+
friend class LexicalScope;
|
730
|
+
};
|
731
|
+
|
732
|
+
|
733
|
+
// Support for handling complex values (array and object literals) that
|
734
|
+
// can be fully handled at compile time.
|
735
|
+
class CompileTimeValue: public AllStatic {
|
736
|
+
public:
|
737
|
+
enum Type {
|
738
|
+
OBJECT_LITERAL_FAST_ELEMENTS,
|
739
|
+
OBJECT_LITERAL_SLOW_ELEMENTS,
|
740
|
+
ARRAY_LITERAL
|
741
|
+
};
|
742
|
+
|
743
|
+
static bool IsCompileTimeValue(Expression* expression);
|
744
|
+
|
745
|
+
static bool ArrayLiteralElementNeedsInitialization(Expression* value);
|
746
|
+
|
747
|
+
// Get the value as a compile time value.
|
748
|
+
static Handle<FixedArray> GetValue(Expression* expression);
|
749
|
+
|
750
|
+
// Get the type of a compile time value returned by GetValue().
|
751
|
+
static Type GetType(Handle<FixedArray> value);
|
752
|
+
|
753
|
+
// Get the elements array of a compile time value returned by GetValue().
|
754
|
+
static Handle<FixedArray> GetElements(Handle<FixedArray> value);
|
755
|
+
|
756
|
+
private:
|
757
|
+
static const int kTypeSlot = 0;
|
758
|
+
static const int kElementsSlot = 1;
|
759
|
+
|
760
|
+
DISALLOW_IMPLICIT_CONSTRUCTORS(CompileTimeValue);
|
761
|
+
};
|
762
|
+
|
763
|
+
} } // namespace v8::internal
|
764
|
+
|
765
|
+
#endif // V8_PARSER_H_
|