therubyracer 0.4.9-x86-linux
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of therubyracer might be problematic. Click here for more details.
- data/.gitignore +11 -0
- data/.gitmodules +3 -0
- data/Doxyfile +1514 -0
- data/History.txt +43 -0
- data/README.rdoc +157 -0
- data/Rakefile +51 -0
- data/docs/data_conversion.txt +18 -0
- data/ext/v8/callbacks.cpp +160 -0
- data/ext/v8/callbacks.h +14 -0
- data/ext/v8/convert_ruby.cpp +8 -0
- data/ext/v8/convert_ruby.h +99 -0
- data/ext/v8/convert_string.cpp +10 -0
- data/ext/v8/convert_string.h +73 -0
- data/ext/v8/convert_v8.cpp +9 -0
- data/ext/v8/convert_v8.h +121 -0
- data/ext/v8/converters.cpp +83 -0
- data/ext/v8/converters.h +23 -0
- data/ext/v8/extconf.rb +36 -0
- data/ext/v8/upstream/2.0.6/.gitignore +26 -0
- data/ext/v8/upstream/2.0.6/AUTHORS +23 -0
- data/ext/v8/upstream/2.0.6/ChangeLog +1479 -0
- data/ext/v8/upstream/2.0.6/LICENSE +55 -0
- data/ext/v8/upstream/2.0.6/SConstruct +1028 -0
- data/ext/v8/upstream/2.0.6/include/v8-debug.h +275 -0
- data/ext/v8/upstream/2.0.6/include/v8.h +3236 -0
- data/ext/v8/upstream/2.0.6/src/SConscript +283 -0
- data/ext/v8/upstream/2.0.6/src/accessors.cc +695 -0
- data/ext/v8/upstream/2.0.6/src/accessors.h +114 -0
- data/ext/v8/upstream/2.0.6/src/allocation.cc +198 -0
- data/ext/v8/upstream/2.0.6/src/allocation.h +169 -0
- data/ext/v8/upstream/2.0.6/src/api.cc +3831 -0
- data/ext/v8/upstream/2.0.6/src/api.h +479 -0
- data/ext/v8/upstream/2.0.6/src/apinatives.js +110 -0
- data/ext/v8/upstream/2.0.6/src/apiutils.h +69 -0
- data/ext/v8/upstream/2.0.6/src/arguments.h +97 -0
- data/ext/v8/upstream/2.0.6/src/arm/assembler-arm-inl.h +277 -0
- data/ext/v8/upstream/2.0.6/src/arm/assembler-arm.cc +1821 -0
- data/ext/v8/upstream/2.0.6/src/arm/assembler-arm.h +1027 -0
- data/ext/v8/upstream/2.0.6/src/arm/assembler-thumb2-inl.h +267 -0
- data/ext/v8/upstream/2.0.6/src/arm/assembler-thumb2.cc +1821 -0
- data/ext/v8/upstream/2.0.6/src/arm/assembler-thumb2.h +1027 -0
- data/ext/v8/upstream/2.0.6/src/arm/builtins-arm.cc +1271 -0
- data/ext/v8/upstream/2.0.6/src/arm/codegen-arm-inl.h +74 -0
- data/ext/v8/upstream/2.0.6/src/arm/codegen-arm.cc +6682 -0
- data/ext/v8/upstream/2.0.6/src/arm/codegen-arm.h +535 -0
- data/ext/v8/upstream/2.0.6/src/arm/constants-arm.cc +112 -0
- data/ext/v8/upstream/2.0.6/src/arm/constants-arm.h +347 -0
- data/ext/v8/upstream/2.0.6/src/arm/cpu-arm.cc +132 -0
- data/ext/v8/upstream/2.0.6/src/arm/debug-arm.cc +213 -0
- data/ext/v8/upstream/2.0.6/src/arm/disasm-arm.cc +1166 -0
- data/ext/v8/upstream/2.0.6/src/arm/fast-codegen-arm.cc +1698 -0
- data/ext/v8/upstream/2.0.6/src/arm/frames-arm.cc +123 -0
- data/ext/v8/upstream/2.0.6/src/arm/frames-arm.h +162 -0
- data/ext/v8/upstream/2.0.6/src/arm/ic-arm.cc +849 -0
- data/ext/v8/upstream/2.0.6/src/arm/jump-target-arm.cc +238 -0
- data/ext/v8/upstream/2.0.6/src/arm/macro-assembler-arm.cc +1259 -0
- data/ext/v8/upstream/2.0.6/src/arm/macro-assembler-arm.h +423 -0
- data/ext/v8/upstream/2.0.6/src/arm/regexp-macro-assembler-arm.cc +1266 -0
- data/ext/v8/upstream/2.0.6/src/arm/regexp-macro-assembler-arm.h +282 -0
- data/ext/v8/upstream/2.0.6/src/arm/register-allocator-arm-inl.h +103 -0
- data/ext/v8/upstream/2.0.6/src/arm/register-allocator-arm.cc +59 -0
- data/ext/v8/upstream/2.0.6/src/arm/register-allocator-arm.h +43 -0
- data/ext/v8/upstream/2.0.6/src/arm/simulator-arm.cc +2264 -0
- data/ext/v8/upstream/2.0.6/src/arm/simulator-arm.h +306 -0
- data/ext/v8/upstream/2.0.6/src/arm/stub-cache-arm.cc +1516 -0
- data/ext/v8/upstream/2.0.6/src/arm/virtual-frame-arm.cc +412 -0
- data/ext/v8/upstream/2.0.6/src/arm/virtual-frame-arm.h +532 -0
- data/ext/v8/upstream/2.0.6/src/array.js +1154 -0
- data/ext/v8/upstream/2.0.6/src/assembler.cc +772 -0
- data/ext/v8/upstream/2.0.6/src/assembler.h +525 -0
- data/ext/v8/upstream/2.0.6/src/ast.cc +512 -0
- data/ext/v8/upstream/2.0.6/src/ast.h +1820 -0
- data/ext/v8/upstream/2.0.6/src/bootstrapper.cc +1680 -0
- data/ext/v8/upstream/2.0.6/src/bootstrapper.h +103 -0
- data/ext/v8/upstream/2.0.6/src/builtins.cc +851 -0
- data/ext/v8/upstream/2.0.6/src/builtins.h +245 -0
- data/ext/v8/upstream/2.0.6/src/bytecodes-irregexp.h +104 -0
- data/ext/v8/upstream/2.0.6/src/char-predicates-inl.h +86 -0
- data/ext/v8/upstream/2.0.6/src/char-predicates.h +65 -0
- data/ext/v8/upstream/2.0.6/src/checks.cc +100 -0
- data/ext/v8/upstream/2.0.6/src/checks.h +284 -0
- data/ext/v8/upstream/2.0.6/src/code-stubs.cc +164 -0
- data/ext/v8/upstream/2.0.6/src/code-stubs.h +164 -0
- data/ext/v8/upstream/2.0.6/src/code.h +68 -0
- data/ext/v8/upstream/2.0.6/src/codegen-inl.h +88 -0
- data/ext/v8/upstream/2.0.6/src/codegen.cc +504 -0
- data/ext/v8/upstream/2.0.6/src/codegen.h +522 -0
- data/ext/v8/upstream/2.0.6/src/compilation-cache.cc +490 -0
- data/ext/v8/upstream/2.0.6/src/compilation-cache.h +98 -0
- data/ext/v8/upstream/2.0.6/src/compiler.cc +1132 -0
- data/ext/v8/upstream/2.0.6/src/compiler.h +107 -0
- data/ext/v8/upstream/2.0.6/src/contexts.cc +256 -0
- data/ext/v8/upstream/2.0.6/src/contexts.h +345 -0
- data/ext/v8/upstream/2.0.6/src/conversions-inl.h +95 -0
- data/ext/v8/upstream/2.0.6/src/conversions.cc +709 -0
- data/ext/v8/upstream/2.0.6/src/conversions.h +118 -0
- data/ext/v8/upstream/2.0.6/src/counters.cc +78 -0
- data/ext/v8/upstream/2.0.6/src/counters.h +239 -0
- data/ext/v8/upstream/2.0.6/src/cpu.h +65 -0
- data/ext/v8/upstream/2.0.6/src/d8-debug.cc +345 -0
- data/ext/v8/upstream/2.0.6/src/d8-debug.h +155 -0
- data/ext/v8/upstream/2.0.6/src/d8-posix.cc +675 -0
- data/ext/v8/upstream/2.0.6/src/d8-readline.cc +128 -0
- data/ext/v8/upstream/2.0.6/src/d8-windows.cc +42 -0
- data/ext/v8/upstream/2.0.6/src/d8.cc +776 -0
- data/ext/v8/upstream/2.0.6/src/d8.h +225 -0
- data/ext/v8/upstream/2.0.6/src/d8.js +1625 -0
- data/ext/v8/upstream/2.0.6/src/date-delay.js +1138 -0
- data/ext/v8/upstream/2.0.6/src/dateparser-inl.h +114 -0
- data/ext/v8/upstream/2.0.6/src/dateparser.cc +186 -0
- data/ext/v8/upstream/2.0.6/src/dateparser.h +240 -0
- data/ext/v8/upstream/2.0.6/src/debug-agent.cc +425 -0
- data/ext/v8/upstream/2.0.6/src/debug-agent.h +129 -0
- data/ext/v8/upstream/2.0.6/src/debug-delay.js +2073 -0
- data/ext/v8/upstream/2.0.6/src/debug.cc +2751 -0
- data/ext/v8/upstream/2.0.6/src/debug.h +866 -0
- data/ext/v8/upstream/2.0.6/src/disasm.h +77 -0
- data/ext/v8/upstream/2.0.6/src/disassembler.cc +318 -0
- data/ext/v8/upstream/2.0.6/src/disassembler.h +56 -0
- data/ext/v8/upstream/2.0.6/src/dtoa-config.c +91 -0
- data/ext/v8/upstream/2.0.6/src/execution.cc +701 -0
- data/ext/v8/upstream/2.0.6/src/execution.h +312 -0
- data/ext/v8/upstream/2.0.6/src/factory.cc +957 -0
- data/ext/v8/upstream/2.0.6/src/factory.h +393 -0
- data/ext/v8/upstream/2.0.6/src/fast-codegen.cc +725 -0
- data/ext/v8/upstream/2.0.6/src/fast-codegen.h +371 -0
- data/ext/v8/upstream/2.0.6/src/flag-definitions.h +426 -0
- data/ext/v8/upstream/2.0.6/src/flags.cc +555 -0
- data/ext/v8/upstream/2.0.6/src/flags.h +81 -0
- data/ext/v8/upstream/2.0.6/src/frame-element.cc +45 -0
- data/ext/v8/upstream/2.0.6/src/frame-element.h +235 -0
- data/ext/v8/upstream/2.0.6/src/frames-inl.h +215 -0
- data/ext/v8/upstream/2.0.6/src/frames.cc +749 -0
- data/ext/v8/upstream/2.0.6/src/frames.h +659 -0
- data/ext/v8/upstream/2.0.6/src/func-name-inferrer.cc +76 -0
- data/ext/v8/upstream/2.0.6/src/func-name-inferrer.h +135 -0
- data/ext/v8/upstream/2.0.6/src/global-handles.cc +516 -0
- data/ext/v8/upstream/2.0.6/src/global-handles.h +180 -0
- data/ext/v8/upstream/2.0.6/src/globals.h +608 -0
- data/ext/v8/upstream/2.0.6/src/handles-inl.h +76 -0
- data/ext/v8/upstream/2.0.6/src/handles.cc +811 -0
- data/ext/v8/upstream/2.0.6/src/handles.h +367 -0
- data/ext/v8/upstream/2.0.6/src/hashmap.cc +226 -0
- data/ext/v8/upstream/2.0.6/src/hashmap.h +120 -0
- data/ext/v8/upstream/2.0.6/src/heap-inl.h +407 -0
- data/ext/v8/upstream/2.0.6/src/heap-profiler.cc +695 -0
- data/ext/v8/upstream/2.0.6/src/heap-profiler.h +277 -0
- data/ext/v8/upstream/2.0.6/src/heap.cc +4204 -0
- data/ext/v8/upstream/2.0.6/src/heap.h +1704 -0
- data/ext/v8/upstream/2.0.6/src/ia32/assembler-ia32-inl.h +325 -0
- data/ext/v8/upstream/2.0.6/src/ia32/assembler-ia32.cc +2375 -0
- data/ext/v8/upstream/2.0.6/src/ia32/assembler-ia32.h +914 -0
- data/ext/v8/upstream/2.0.6/src/ia32/builtins-ia32.cc +1222 -0
- data/ext/v8/upstream/2.0.6/src/ia32/codegen-ia32-inl.h +46 -0
- data/ext/v8/upstream/2.0.6/src/ia32/codegen-ia32.cc +9770 -0
- data/ext/v8/upstream/2.0.6/src/ia32/codegen-ia32.h +834 -0
- data/ext/v8/upstream/2.0.6/src/ia32/cpu-ia32.cc +79 -0
- data/ext/v8/upstream/2.0.6/src/ia32/debug-ia32.cc +208 -0
- data/ext/v8/upstream/2.0.6/src/ia32/disasm-ia32.cc +1357 -0
- data/ext/v8/upstream/2.0.6/src/ia32/fast-codegen-ia32.cc +1813 -0
- data/ext/v8/upstream/2.0.6/src/ia32/frames-ia32.cc +111 -0
- data/ext/v8/upstream/2.0.6/src/ia32/frames-ia32.h +135 -0
- data/ext/v8/upstream/2.0.6/src/ia32/ic-ia32.cc +1490 -0
- data/ext/v8/upstream/2.0.6/src/ia32/jump-target-ia32.cc +432 -0
- data/ext/v8/upstream/2.0.6/src/ia32/macro-assembler-ia32.cc +1517 -0
- data/ext/v8/upstream/2.0.6/src/ia32/macro-assembler-ia32.h +528 -0
- data/ext/v8/upstream/2.0.6/src/ia32/regexp-macro-assembler-ia32.cc +1219 -0
- data/ext/v8/upstream/2.0.6/src/ia32/regexp-macro-assembler-ia32.h +230 -0
- data/ext/v8/upstream/2.0.6/src/ia32/register-allocator-ia32-inl.h +82 -0
- data/ext/v8/upstream/2.0.6/src/ia32/register-allocator-ia32.cc +99 -0
- data/ext/v8/upstream/2.0.6/src/ia32/register-allocator-ia32.h +43 -0
- data/ext/v8/upstream/2.0.6/src/ia32/simulator-ia32.cc +30 -0
- data/ext/v8/upstream/2.0.6/src/ia32/simulator-ia32.h +62 -0
- data/ext/v8/upstream/2.0.6/src/ia32/stub-cache-ia32.cc +1961 -0
- data/ext/v8/upstream/2.0.6/src/ia32/virtual-frame-ia32.cc +1105 -0
- data/ext/v8/upstream/2.0.6/src/ia32/virtual-frame-ia32.h +580 -0
- data/ext/v8/upstream/2.0.6/src/ic-inl.h +93 -0
- data/ext/v8/upstream/2.0.6/src/ic.cc +1426 -0
- data/ext/v8/upstream/2.0.6/src/ic.h +443 -0
- data/ext/v8/upstream/2.0.6/src/interpreter-irregexp.cc +646 -0
- data/ext/v8/upstream/2.0.6/src/interpreter-irregexp.h +48 -0
- data/ext/v8/upstream/2.0.6/src/json-delay.js +254 -0
- data/ext/v8/upstream/2.0.6/src/jsregexp.cc +5234 -0
- data/ext/v8/upstream/2.0.6/src/jsregexp.h +1439 -0
- data/ext/v8/upstream/2.0.6/src/jump-target-inl.h +49 -0
- data/ext/v8/upstream/2.0.6/src/jump-target.cc +383 -0
- data/ext/v8/upstream/2.0.6/src/jump-target.h +280 -0
- data/ext/v8/upstream/2.0.6/src/list-inl.h +166 -0
- data/ext/v8/upstream/2.0.6/src/list.h +158 -0
- data/ext/v8/upstream/2.0.6/src/log-inl.h +126 -0
- data/ext/v8/upstream/2.0.6/src/log-utils.cc +503 -0
- data/ext/v8/upstream/2.0.6/src/log-utils.h +292 -0
- data/ext/v8/upstream/2.0.6/src/log.cc +1457 -0
- data/ext/v8/upstream/2.0.6/src/log.h +371 -0
- data/ext/v8/upstream/2.0.6/src/macro-assembler.h +93 -0
- data/ext/v8/upstream/2.0.6/src/macros.py +137 -0
- data/ext/v8/upstream/2.0.6/src/mark-compact.cc +2007 -0
- data/ext/v8/upstream/2.0.6/src/mark-compact.h +442 -0
- data/ext/v8/upstream/2.0.6/src/math.js +263 -0
- data/ext/v8/upstream/2.0.6/src/memory.h +74 -0
- data/ext/v8/upstream/2.0.6/src/messages.cc +177 -0
- data/ext/v8/upstream/2.0.6/src/messages.h +112 -0
- data/ext/v8/upstream/2.0.6/src/messages.js +937 -0
- data/ext/v8/upstream/2.0.6/src/mirror-delay.js +2332 -0
- data/ext/v8/upstream/2.0.6/src/mksnapshot.cc +169 -0
- data/ext/v8/upstream/2.0.6/src/natives.h +63 -0
- data/ext/v8/upstream/2.0.6/src/objects-debug.cc +1317 -0
- data/ext/v8/upstream/2.0.6/src/objects-inl.h +3044 -0
- data/ext/v8/upstream/2.0.6/src/objects.cc +8306 -0
- data/ext/v8/upstream/2.0.6/src/objects.h +4960 -0
- data/ext/v8/upstream/2.0.6/src/oprofile-agent.cc +116 -0
- data/ext/v8/upstream/2.0.6/src/oprofile-agent.h +69 -0
- data/ext/v8/upstream/2.0.6/src/parser.cc +4810 -0
- data/ext/v8/upstream/2.0.6/src/parser.h +195 -0
- data/ext/v8/upstream/2.0.6/src/platform-freebsd.cc +645 -0
- data/ext/v8/upstream/2.0.6/src/platform-linux.cc +808 -0
- data/ext/v8/upstream/2.0.6/src/platform-macos.cc +643 -0
- data/ext/v8/upstream/2.0.6/src/platform-nullos.cc +454 -0
- data/ext/v8/upstream/2.0.6/src/platform-openbsd.cc +597 -0
- data/ext/v8/upstream/2.0.6/src/platform-posix.cc +380 -0
- data/ext/v8/upstream/2.0.6/src/platform-win32.cc +1908 -0
- data/ext/v8/upstream/2.0.6/src/platform.h +556 -0
- data/ext/v8/upstream/2.0.6/src/prettyprinter.cc +1511 -0
- data/ext/v8/upstream/2.0.6/src/prettyprinter.h +219 -0
- data/ext/v8/upstream/2.0.6/src/property.cc +96 -0
- data/ext/v8/upstream/2.0.6/src/property.h +327 -0
- data/ext/v8/upstream/2.0.6/src/regexp-delay.js +406 -0
- data/ext/v8/upstream/2.0.6/src/regexp-macro-assembler-irregexp-inl.h +78 -0
- data/ext/v8/upstream/2.0.6/src/regexp-macro-assembler-irregexp.cc +464 -0
- data/ext/v8/upstream/2.0.6/src/regexp-macro-assembler-irregexp.h +141 -0
- data/ext/v8/upstream/2.0.6/src/regexp-macro-assembler-tracer.cc +356 -0
- data/ext/v8/upstream/2.0.6/src/regexp-macro-assembler-tracer.h +103 -0
- data/ext/v8/upstream/2.0.6/src/regexp-macro-assembler.cc +240 -0
- data/ext/v8/upstream/2.0.6/src/regexp-macro-assembler.h +220 -0
- data/ext/v8/upstream/2.0.6/src/regexp-stack.cc +103 -0
- data/ext/v8/upstream/2.0.6/src/regexp-stack.h +123 -0
- data/ext/v8/upstream/2.0.6/src/register-allocator-inl.h +74 -0
- data/ext/v8/upstream/2.0.6/src/register-allocator.cc +100 -0
- data/ext/v8/upstream/2.0.6/src/register-allocator.h +295 -0
- data/ext/v8/upstream/2.0.6/src/rewriter.cc +855 -0
- data/ext/v8/upstream/2.0.6/src/rewriter.h +54 -0
- data/ext/v8/upstream/2.0.6/src/runtime.cc +8163 -0
- data/ext/v8/upstream/2.0.6/src/runtime.h +432 -0
- data/ext/v8/upstream/2.0.6/src/runtime.js +626 -0
- data/ext/v8/upstream/2.0.6/src/scanner.cc +1098 -0
- data/ext/v8/upstream/2.0.6/src/scanner.h +425 -0
- data/ext/v8/upstream/2.0.6/src/scopeinfo.cc +649 -0
- data/ext/v8/upstream/2.0.6/src/scopeinfo.h +236 -0
- data/ext/v8/upstream/2.0.6/src/scopes.cc +963 -0
- data/ext/v8/upstream/2.0.6/src/scopes.h +401 -0
- data/ext/v8/upstream/2.0.6/src/serialize.cc +1260 -0
- data/ext/v8/upstream/2.0.6/src/serialize.h +404 -0
- data/ext/v8/upstream/2.0.6/src/shell.h +55 -0
- data/ext/v8/upstream/2.0.6/src/simulator.h +41 -0
- data/ext/v8/upstream/2.0.6/src/smart-pointer.h +109 -0
- data/ext/v8/upstream/2.0.6/src/snapshot-common.cc +97 -0
- data/ext/v8/upstream/2.0.6/src/snapshot-empty.cc +40 -0
- data/ext/v8/upstream/2.0.6/src/snapshot.h +59 -0
- data/ext/v8/upstream/2.0.6/src/spaces-inl.h +372 -0
- data/ext/v8/upstream/2.0.6/src/spaces.cc +2864 -0
- data/ext/v8/upstream/2.0.6/src/spaces.h +2072 -0
- data/ext/v8/upstream/2.0.6/src/string-stream.cc +584 -0
- data/ext/v8/upstream/2.0.6/src/string-stream.h +189 -0
- data/ext/v8/upstream/2.0.6/src/string.js +901 -0
- data/ext/v8/upstream/2.0.6/src/stub-cache.cc +1108 -0
- data/ext/v8/upstream/2.0.6/src/stub-cache.h +578 -0
- data/ext/v8/upstream/2.0.6/src/third_party/dtoa/COPYING +15 -0
- data/ext/v8/upstream/2.0.6/src/third_party/dtoa/dtoa.c +3330 -0
- data/ext/v8/upstream/2.0.6/src/third_party/valgrind/valgrind.h +3925 -0
- data/ext/v8/upstream/2.0.6/src/token.cc +56 -0
- data/ext/v8/upstream/2.0.6/src/token.h +270 -0
- data/ext/v8/upstream/2.0.6/src/top.cc +991 -0
- data/ext/v8/upstream/2.0.6/src/top.h +459 -0
- data/ext/v8/upstream/2.0.6/src/unicode-inl.h +238 -0
- data/ext/v8/upstream/2.0.6/src/unicode.cc +749 -0
- data/ext/v8/upstream/2.0.6/src/unicode.h +279 -0
- data/ext/v8/upstream/2.0.6/src/uri.js +415 -0
- data/ext/v8/upstream/2.0.6/src/usage-analyzer.cc +426 -0
- data/ext/v8/upstream/2.0.6/src/usage-analyzer.h +40 -0
- data/ext/v8/upstream/2.0.6/src/utils.cc +322 -0
- data/ext/v8/upstream/2.0.6/src/utils.h +592 -0
- data/ext/v8/upstream/2.0.6/src/v8-counters.cc +55 -0
- data/ext/v8/upstream/2.0.6/src/v8-counters.h +198 -0
- data/ext/v8/upstream/2.0.6/src/v8.cc +193 -0
- data/ext/v8/upstream/2.0.6/src/v8.h +119 -0
- data/ext/v8/upstream/2.0.6/src/v8natives.js +846 -0
- data/ext/v8/upstream/2.0.6/src/v8threads.cc +450 -0
- data/ext/v8/upstream/2.0.6/src/v8threads.h +144 -0
- data/ext/v8/upstream/2.0.6/src/variables.cc +163 -0
- data/ext/v8/upstream/2.0.6/src/variables.h +235 -0
- data/ext/v8/upstream/2.0.6/src/version.cc +88 -0
- data/ext/v8/upstream/2.0.6/src/version.h +64 -0
- data/ext/v8/upstream/2.0.6/src/virtual-frame.cc +381 -0
- data/ext/v8/upstream/2.0.6/src/virtual-frame.h +44 -0
- data/ext/v8/upstream/2.0.6/src/x64/assembler-x64-inl.h +352 -0
- data/ext/v8/upstream/2.0.6/src/x64/assembler-x64.cc +2539 -0
- data/ext/v8/upstream/2.0.6/src/x64/assembler-x64.h +1399 -0
- data/ext/v8/upstream/2.0.6/src/x64/builtins-x64.cc +1255 -0
- data/ext/v8/upstream/2.0.6/src/x64/codegen-x64-inl.h +46 -0
- data/ext/v8/upstream/2.0.6/src/x64/codegen-x64.cc +8223 -0
- data/ext/v8/upstream/2.0.6/src/x64/codegen-x64.h +785 -0
- data/ext/v8/upstream/2.0.6/src/x64/cpu-x64.cc +79 -0
- data/ext/v8/upstream/2.0.6/src/x64/debug-x64.cc +202 -0
- data/ext/v8/upstream/2.0.6/src/x64/disasm-x64.cc +1596 -0
- data/ext/v8/upstream/2.0.6/src/x64/fast-codegen-x64.cc +1820 -0
- data/ext/v8/upstream/2.0.6/src/x64/frames-x64.cc +109 -0
- data/ext/v8/upstream/2.0.6/src/x64/frames-x64.h +121 -0
- data/ext/v8/upstream/2.0.6/src/x64/ic-x64.cc +1392 -0
- data/ext/v8/upstream/2.0.6/src/x64/jump-target-x64.cc +432 -0
- data/ext/v8/upstream/2.0.6/src/x64/macro-assembler-x64.cc +2409 -0
- data/ext/v8/upstream/2.0.6/src/x64/macro-assembler-x64.h +765 -0
- data/ext/v8/upstream/2.0.6/src/x64/regexp-macro-assembler-x64.cc +1337 -0
- data/ext/v8/upstream/2.0.6/src/x64/regexp-macro-assembler-x64.h +295 -0
- data/ext/v8/upstream/2.0.6/src/x64/register-allocator-x64-inl.h +86 -0
- data/ext/v8/upstream/2.0.6/src/x64/register-allocator-x64.cc +84 -0
- data/ext/v8/upstream/2.0.6/src/x64/register-allocator-x64.h +43 -0
- data/ext/v8/upstream/2.0.6/src/x64/simulator-x64.cc +27 -0
- data/ext/v8/upstream/2.0.6/src/x64/simulator-x64.h +63 -0
- data/ext/v8/upstream/2.0.6/src/x64/stub-cache-x64.cc +1884 -0
- data/ext/v8/upstream/2.0.6/src/x64/virtual-frame-x64.cc +1089 -0
- data/ext/v8/upstream/2.0.6/src/x64/virtual-frame-x64.h +560 -0
- data/ext/v8/upstream/2.0.6/src/zone-inl.h +297 -0
- data/ext/v8/upstream/2.0.6/src/zone.cc +193 -0
- data/ext/v8/upstream/2.0.6/src/zone.h +305 -0
- data/ext/v8/upstream/2.0.6/tools/codemap.js +258 -0
- data/ext/v8/upstream/2.0.6/tools/consarray.js +93 -0
- data/ext/v8/upstream/2.0.6/tools/csvparser.js +98 -0
- data/ext/v8/upstream/2.0.6/tools/gyp/v8.gyp +620 -0
- data/ext/v8/upstream/2.0.6/tools/js2c.py +376 -0
- data/ext/v8/upstream/2.0.6/tools/jsmin.py +280 -0
- data/ext/v8/upstream/2.0.6/tools/linux-tick-processor +24 -0
- data/ext/v8/upstream/2.0.6/tools/linux-tick-processor.py +78 -0
- data/ext/v8/upstream/2.0.6/tools/logreader.js +320 -0
- data/ext/v8/upstream/2.0.6/tools/mac-nm +18 -0
- data/ext/v8/upstream/2.0.6/tools/mac-tick-processor +6 -0
- data/ext/v8/upstream/2.0.6/tools/oprofile/annotate +7 -0
- data/ext/v8/upstream/2.0.6/tools/oprofile/common +19 -0
- data/ext/v8/upstream/2.0.6/tools/oprofile/dump +7 -0
- data/ext/v8/upstream/2.0.6/tools/oprofile/report +7 -0
- data/ext/v8/upstream/2.0.6/tools/oprofile/reset +7 -0
- data/ext/v8/upstream/2.0.6/tools/oprofile/run +14 -0
- data/ext/v8/upstream/2.0.6/tools/oprofile/shutdown +7 -0
- data/ext/v8/upstream/2.0.6/tools/oprofile/start +7 -0
- data/ext/v8/upstream/2.0.6/tools/presubmit.py +299 -0
- data/ext/v8/upstream/2.0.6/tools/process-heap-prof.py +120 -0
- data/ext/v8/upstream/2.0.6/tools/profile.js +621 -0
- data/ext/v8/upstream/2.0.6/tools/profile_view.js +224 -0
- data/ext/v8/upstream/2.0.6/tools/run-valgrind.py +77 -0
- data/ext/v8/upstream/2.0.6/tools/splaytree.js +322 -0
- data/ext/v8/upstream/2.0.6/tools/splaytree.py +226 -0
- data/ext/v8/upstream/2.0.6/tools/stats-viewer.py +456 -0
- data/ext/v8/upstream/2.0.6/tools/test.py +1370 -0
- data/ext/v8/upstream/2.0.6/tools/tickprocessor-driver.js +53 -0
- data/ext/v8/upstream/2.0.6/tools/tickprocessor.js +731 -0
- data/ext/v8/upstream/2.0.6/tools/tickprocessor.py +535 -0
- data/ext/v8/upstream/2.0.6/tools/utils.py +82 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/README.txt +71 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/arm.vsprops +14 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/common.vsprops +35 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/d8.vcproj +199 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/d8_arm.vcproj +199 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/d8_x64.vcproj +201 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/d8js2c.cmd +6 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/debug.vsprops +17 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/ia32.vsprops +13 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/js2c.cmd +6 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/release.vsprops +24 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8.sln +101 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8.vcproj +223 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_arm.sln +74 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_arm.vcproj +223 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_base.vcproj +971 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_base_arm.vcproj +983 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_base_x64.vcproj +959 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_cctest.vcproj +255 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_cctest_arm.vcproj +243 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_cctest_x64.vcproj +257 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_mksnapshot.vcproj +151 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_mksnapshot_x64.vcproj +151 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_process_sample.vcproj +151 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_process_sample_arm.vcproj +151 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_process_sample_x64.vcproj +151 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_shell_sample.vcproj +151 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_shell_sample_arm.vcproj +151 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_shell_sample_x64.vcproj +153 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_snapshot.vcproj +142 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_snapshot_cc.vcproj +92 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_snapshot_cc_x64.vcproj +92 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_snapshot_x64.vcproj +142 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_x64.sln +101 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_x64.vcproj +223 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/x64.vsprops +13 -0
- data/ext/v8/upstream/2.0.6/tools/windows-tick-processor.bat +5 -0
- data/ext/v8/upstream/2.0.6/tools/windows-tick-processor.py +137 -0
- data/ext/v8/upstream/Makefile +31 -0
- data/ext/v8/upstream/no-strict-aliasing.patch +13 -0
- data/ext/v8/upstream/scons/CHANGES.txt +5183 -0
- data/ext/v8/upstream/scons/LICENSE.txt +20 -0
- data/ext/v8/upstream/scons/MANIFEST +202 -0
- data/ext/v8/upstream/scons/PKG-INFO +13 -0
- data/ext/v8/upstream/scons/README.txt +273 -0
- data/ext/v8/upstream/scons/RELEASE.txt +1040 -0
- data/ext/v8/upstream/scons/engine/SCons/Action.py +1256 -0
- data/ext/v8/upstream/scons/engine/SCons/Builder.py +868 -0
- data/ext/v8/upstream/scons/engine/SCons/CacheDir.py +217 -0
- data/ext/v8/upstream/scons/engine/SCons/Conftest.py +794 -0
- data/ext/v8/upstream/scons/engine/SCons/Debug.py +237 -0
- data/ext/v8/upstream/scons/engine/SCons/Defaults.py +485 -0
- data/ext/v8/upstream/scons/engine/SCons/Environment.py +2327 -0
- data/ext/v8/upstream/scons/engine/SCons/Errors.py +207 -0
- data/ext/v8/upstream/scons/engine/SCons/Executor.py +636 -0
- data/ext/v8/upstream/scons/engine/SCons/Job.py +435 -0
- data/ext/v8/upstream/scons/engine/SCons/Memoize.py +292 -0
- data/ext/v8/upstream/scons/engine/SCons/Node/Alias.py +153 -0
- data/ext/v8/upstream/scons/engine/SCons/Node/FS.py +3220 -0
- data/ext/v8/upstream/scons/engine/SCons/Node/Python.py +128 -0
- data/ext/v8/upstream/scons/engine/SCons/Node/__init__.py +1341 -0
- data/ext/v8/upstream/scons/engine/SCons/Options/BoolOption.py +50 -0
- data/ext/v8/upstream/scons/engine/SCons/Options/EnumOption.py +50 -0
- data/ext/v8/upstream/scons/engine/SCons/Options/ListOption.py +50 -0
- data/ext/v8/upstream/scons/engine/SCons/Options/PackageOption.py +50 -0
- data/ext/v8/upstream/scons/engine/SCons/Options/PathOption.py +76 -0
- data/ext/v8/upstream/scons/engine/SCons/Options/__init__.py +74 -0
- data/ext/v8/upstream/scons/engine/SCons/PathList.py +232 -0
- data/ext/v8/upstream/scons/engine/SCons/Platform/__init__.py +236 -0
- data/ext/v8/upstream/scons/engine/SCons/Platform/aix.py +70 -0
- data/ext/v8/upstream/scons/engine/SCons/Platform/cygwin.py +55 -0
- data/ext/v8/upstream/scons/engine/SCons/Platform/darwin.py +46 -0
- data/ext/v8/upstream/scons/engine/SCons/Platform/hpux.py +46 -0
- data/ext/v8/upstream/scons/engine/SCons/Platform/irix.py +44 -0
- data/ext/v8/upstream/scons/engine/SCons/Platform/os2.py +58 -0
- data/ext/v8/upstream/scons/engine/SCons/Platform/posix.py +264 -0
- data/ext/v8/upstream/scons/engine/SCons/Platform/sunos.py +50 -0
- data/ext/v8/upstream/scons/engine/SCons/Platform/win32.py +386 -0
- data/ext/v8/upstream/scons/engine/SCons/SConf.py +1038 -0
- data/ext/v8/upstream/scons/engine/SCons/SConsign.py +381 -0
- data/ext/v8/upstream/scons/engine/SCons/Scanner/C.py +132 -0
- data/ext/v8/upstream/scons/engine/SCons/Scanner/D.py +74 -0
- data/ext/v8/upstream/scons/engine/SCons/Scanner/Dir.py +111 -0
- data/ext/v8/upstream/scons/engine/SCons/Scanner/Fortran.py +320 -0
- data/ext/v8/upstream/scons/engine/SCons/Scanner/IDL.py +48 -0
- data/ext/v8/upstream/scons/engine/SCons/Scanner/LaTeX.py +378 -0
- data/ext/v8/upstream/scons/engine/SCons/Scanner/Prog.py +103 -0
- data/ext/v8/upstream/scons/engine/SCons/Scanner/RC.py +55 -0
- data/ext/v8/upstream/scons/engine/SCons/Scanner/__init__.py +415 -0
- data/ext/v8/upstream/scons/engine/SCons/Script/Interactive.py +386 -0
- data/ext/v8/upstream/scons/engine/SCons/Script/Main.py +1360 -0
- data/ext/v8/upstream/scons/engine/SCons/Script/SConsOptions.py +944 -0
- data/ext/v8/upstream/scons/engine/SCons/Script/SConscript.py +642 -0
- data/ext/v8/upstream/scons/engine/SCons/Script/__init__.py +414 -0
- data/ext/v8/upstream/scons/engine/SCons/Sig.py +63 -0
- data/ext/v8/upstream/scons/engine/SCons/Subst.py +911 -0
- data/ext/v8/upstream/scons/engine/SCons/Taskmaster.py +1030 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/386asm.py +61 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/BitKeeper.py +65 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/CVS.py +73 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/FortranCommon.py +247 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/JavaCommon.py +324 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/MSCommon/__init__.py +56 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/MSCommon/arch.py +61 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/MSCommon/common.py +210 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/MSCommon/netframework.py +84 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/MSCommon/sdk.py +321 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/MSCommon/vc.py +367 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/MSCommon/vs.py +497 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/Perforce.py +104 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/PharLapCommon.py +138 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/RCS.py +64 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/SCCS.py +64 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/Subversion.py +71 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/__init__.py +675 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/aixc++.py +82 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/aixcc.py +74 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/aixf77.py +80 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/aixlink.py +76 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/applelink.py +71 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/ar.py +63 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/as.py +78 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/bcc32.py +82 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/c++.py +99 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/cc.py +114 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/cvf.py +58 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/default.py +50 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/dmd.py +224 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/dvi.py +64 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/dvipdf.py +125 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/dvips.py +94 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/f77.py +62 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/f90.py +62 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/f95.py +63 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/filesystem.py +98 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/fortran.py +63 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/g++.py +90 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/g77.py +73 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/gas.py +53 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/gcc.py +80 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/gfortran.py +64 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/gnulink.py +63 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/gs.py +81 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/hpc++.py +85 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/hpcc.py +53 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/hplink.py +77 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/icc.py +59 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/icl.py +52 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/ifl.py +72 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/ifort.py +90 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/ilink.py +59 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/ilink32.py +60 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/install.py +229 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/intelc.py +490 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/ipkg.py +71 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/jar.py +110 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/javac.py +234 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/javah.py +138 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/latex.py +79 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/lex.py +99 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/link.py +121 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/linkloc.py +112 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/m4.py +63 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/masm.py +77 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/midl.py +90 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/mingw.py +159 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/mslib.py +64 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/mslink.py +266 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/mssdk.py +50 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/msvc.py +269 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/msvs.py +1439 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/mwcc.py +208 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/mwld.py +107 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/nasm.py +72 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/__init__.py +314 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/ipk.py +185 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/msi.py +526 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/rpm.py +367 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/src_tarbz2.py +43 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/src_targz.py +43 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/src_zip.py +43 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/tarbz2.py +44 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/targz.py +44 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/zip.py +44 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/pdf.py +78 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/pdflatex.py +83 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/pdftex.py +108 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/qt.py +336 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/rmic.py +121 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/rpcgen.py +70 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/rpm.py +132 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/sgiar.py +68 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/sgic++.py +58 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/sgicc.py +53 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/sgilink.py +63 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/sunar.py +67 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/sunc++.py +142 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/suncc.py +58 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/sunf77.py +63 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/sunf90.py +64 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/sunf95.py +64 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/sunlink.py +77 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/swig.py +186 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/tar.py +73 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/tex.py +805 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/textfile.py +175 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/tlib.py +53 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/wix.py +100 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/yacc.py +131 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/zip.py +100 -0
- data/ext/v8/upstream/scons/engine/SCons/Util.py +1645 -0
- data/ext/v8/upstream/scons/engine/SCons/Variables/BoolVariable.py +91 -0
- data/ext/v8/upstream/scons/engine/SCons/Variables/EnumVariable.py +107 -0
- data/ext/v8/upstream/scons/engine/SCons/Variables/ListVariable.py +139 -0
- data/ext/v8/upstream/scons/engine/SCons/Variables/PackageVariable.py +109 -0
- data/ext/v8/upstream/scons/engine/SCons/Variables/PathVariable.py +147 -0
- data/ext/v8/upstream/scons/engine/SCons/Variables/__init__.py +317 -0
- data/ext/v8/upstream/scons/engine/SCons/Warnings.py +228 -0
- data/ext/v8/upstream/scons/engine/SCons/__init__.py +49 -0
- data/ext/v8/upstream/scons/engine/SCons/compat/__init__.py +302 -0
- data/ext/v8/upstream/scons/engine/SCons/compat/_scons_UserString.py +98 -0
- data/ext/v8/upstream/scons/engine/SCons/compat/_scons_hashlib.py +91 -0
- data/ext/v8/upstream/scons/engine/SCons/compat/_scons_itertools.py +124 -0
- data/ext/v8/upstream/scons/engine/SCons/compat/_scons_optparse.py +1725 -0
- data/ext/v8/upstream/scons/engine/SCons/compat/_scons_sets.py +583 -0
- data/ext/v8/upstream/scons/engine/SCons/compat/_scons_sets15.py +176 -0
- data/ext/v8/upstream/scons/engine/SCons/compat/_scons_shlex.py +325 -0
- data/ext/v8/upstream/scons/engine/SCons/compat/_scons_subprocess.py +1296 -0
- data/ext/v8/upstream/scons/engine/SCons/compat/_scons_textwrap.py +382 -0
- data/ext/v8/upstream/scons/engine/SCons/compat/builtins.py +187 -0
- data/ext/v8/upstream/scons/engine/SCons/cpp.py +598 -0
- data/ext/v8/upstream/scons/engine/SCons/dblite.py +248 -0
- data/ext/v8/upstream/scons/engine/SCons/exitfuncs.py +77 -0
- data/ext/v8/upstream/scons/os_spawnv_fix.diff +83 -0
- data/ext/v8/upstream/scons/scons-time.1 +1017 -0
- data/ext/v8/upstream/scons/scons.1 +15179 -0
- data/ext/v8/upstream/scons/sconsign.1 +208 -0
- data/ext/v8/upstream/scons/script/scons +184 -0
- data/ext/v8/upstream/scons/script/scons-time +1529 -0
- data/ext/v8/upstream/scons/script/scons.bat +31 -0
- data/ext/v8/upstream/scons/script/sconsign +508 -0
- data/ext/v8/upstream/scons/setup.cfg +6 -0
- data/ext/v8/upstream/scons/setup.py +427 -0
- data/ext/v8/v8.cpp +89 -0
- data/ext/v8/v8_cxt.cpp +92 -0
- data/ext/v8/v8_cxt.h +20 -0
- data/ext/v8/v8_func.cpp +10 -0
- data/ext/v8/v8_func.h +11 -0
- data/ext/v8/v8_msg.cpp +54 -0
- data/ext/v8/v8_msg.h +18 -0
- data/ext/v8/v8_obj.cpp +52 -0
- data/ext/v8/v8_obj.h +13 -0
- data/ext/v8/v8_ref.cpp +26 -0
- data/ext/v8/v8_ref.h +31 -0
- data/ext/v8/v8_script.cpp +20 -0
- data/ext/v8/v8_script.h +8 -0
- data/ext/v8/v8_standalone.cpp +69 -0
- data/ext/v8/v8_standalone.h +31 -0
- data/ext/v8/v8_str.cpp +17 -0
- data/ext/v8/v8_str.h +9 -0
- data/ext/v8/v8_template.cpp +53 -0
- data/ext/v8/v8_template.h +13 -0
- data/lib/v8.rb +10 -0
- data/lib/v8/context.rb +101 -0
- data/lib/v8/object.rb +38 -0
- data/lib/v8/to.rb +33 -0
- data/lib/v8/v8.so +0 -0
- data/script/console +10 -0
- data/script/destroy +14 -0
- data/script/generate +14 -0
- data/spec/ext/cxt_spec.rb +25 -0
- data/spec/ext/obj_spec.rb +13 -0
- data/spec/redjs/jsapi_spec.rb +405 -0
- data/spec/redjs/tap.rb +8 -0
- data/spec/redjs_helper.rb +3 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_helper.rb +14 -0
- data/spec/v8/to_spec.rb +15 -0
- data/tasks/rspec.rake +21 -0
- data/therubyracer.gemspec +680 -0
- metadata +697 -0
@@ -0,0 +1,98 @@
|
|
1
|
+
// Copyright 2008 the V8 project authors. All rights reserved.
|
2
|
+
// Redistribution and use in source and binary forms, with or without
|
3
|
+
// modification, are permitted provided that the following conditions are
|
4
|
+
// met:
|
5
|
+
//
|
6
|
+
// * Redistributions of source code must retain the above copyright
|
7
|
+
// notice, this list of conditions and the following disclaimer.
|
8
|
+
// * Redistributions in binary form must reproduce the above
|
9
|
+
// copyright notice, this list of conditions and the following
|
10
|
+
// disclaimer in the documentation and/or other materials provided
|
11
|
+
// with the distribution.
|
12
|
+
// * Neither the name of Google Inc. nor the names of its
|
13
|
+
// contributors may be used to endorse or promote products derived
|
14
|
+
// from this software without specific prior written permission.
|
15
|
+
//
|
16
|
+
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
17
|
+
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
18
|
+
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
19
|
+
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
20
|
+
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
21
|
+
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
22
|
+
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
23
|
+
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
24
|
+
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
25
|
+
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
26
|
+
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
27
|
+
|
28
|
+
#ifndef V8_COMPILATION_CACHE_H_
|
29
|
+
#define V8_COMPILATION_CACHE_H_
|
30
|
+
|
31
|
+
namespace v8 {
|
32
|
+
namespace internal {
|
33
|
+
|
34
|
+
|
35
|
+
// The compilation cache keeps function boilerplates for compiled
|
36
|
+
// scripts and evals. The boilerplates are looked up using the source
|
37
|
+
// string as the key. For regular expressions the compilation data is cached.
|
38
|
+
class CompilationCache {
|
39
|
+
public:
|
40
|
+
// Finds the script function boilerplate for a source
|
41
|
+
// string. Returns an empty handle if the cache doesn't contain a
|
42
|
+
// script for the given source string with the right origin.
|
43
|
+
static Handle<JSFunction> LookupScript(Handle<String> source,
|
44
|
+
Handle<Object> name,
|
45
|
+
int line_offset,
|
46
|
+
int column_offset);
|
47
|
+
|
48
|
+
// Finds the function boilerplate for a source string for eval in a
|
49
|
+
// given context. Returns an empty handle if the cache doesn't
|
50
|
+
// contain a script for the given source string.
|
51
|
+
static Handle<JSFunction> LookupEval(Handle<String> source,
|
52
|
+
Handle<Context> context,
|
53
|
+
bool is_global);
|
54
|
+
|
55
|
+
// Returns the regexp data associated with the given regexp if it
|
56
|
+
// is in cache, otherwise an empty handle.
|
57
|
+
static Handle<FixedArray> LookupRegExp(Handle<String> source,
|
58
|
+
JSRegExp::Flags flags);
|
59
|
+
|
60
|
+
// Associate the (source, kind) pair to the boilerplate. This may
|
61
|
+
// overwrite an existing mapping.
|
62
|
+
static void PutScript(Handle<String> source,
|
63
|
+
Handle<JSFunction> boilerplate);
|
64
|
+
|
65
|
+
// Associate the (source, context->closure()->shared(), kind) triple
|
66
|
+
// with the boilerplate. This may overwrite an existing mapping.
|
67
|
+
static void PutEval(Handle<String> source,
|
68
|
+
Handle<Context> context,
|
69
|
+
bool is_global,
|
70
|
+
Handle<JSFunction> boilerplate);
|
71
|
+
|
72
|
+
// Associate the (source, flags) pair to the given regexp data.
|
73
|
+
// This may overwrite an existing mapping.
|
74
|
+
static void PutRegExp(Handle<String> source,
|
75
|
+
JSRegExp::Flags flags,
|
76
|
+
Handle<FixedArray> data);
|
77
|
+
|
78
|
+
// Clear the cache - also used to initialize the cache at startup.
|
79
|
+
static void Clear();
|
80
|
+
|
81
|
+
// GC support.
|
82
|
+
static void Iterate(ObjectVisitor* v);
|
83
|
+
|
84
|
+
// Notify the cache that a mark-sweep garbage collection is about to
|
85
|
+
// take place. This is used to retire entries from the cache to
|
86
|
+
// avoid keeping them alive too long without using them.
|
87
|
+
static void MarkCompactPrologue();
|
88
|
+
|
89
|
+
// Enable/disable compilation cache. Used by debugger to disable compilation
|
90
|
+
// cache during debugging to make sure new scripts are always compiled.
|
91
|
+
static void Enable();
|
92
|
+
static void Disable();
|
93
|
+
};
|
94
|
+
|
95
|
+
|
96
|
+
} } // namespace v8::internal
|
97
|
+
|
98
|
+
#endif // V8_COMPILATION_CACHE_H_
|
@@ -0,0 +1,1132 @@
|
|
1
|
+
// Copyright 2009 the V8 project authors. All rights reserved.
|
2
|
+
// Redistribution and use in source and binary forms, with or without
|
3
|
+
// modification, are permitted provided that the following conditions are
|
4
|
+
// met:
|
5
|
+
//
|
6
|
+
// * Redistributions of source code must retain the above copyright
|
7
|
+
// notice, this list of conditions and the following disclaimer.
|
8
|
+
// * Redistributions in binary form must reproduce the above
|
9
|
+
// copyright notice, this list of conditions and the following
|
10
|
+
// disclaimer in the documentation and/or other materials provided
|
11
|
+
// with the distribution.
|
12
|
+
// * Neither the name of Google Inc. nor the names of its
|
13
|
+
// contributors may be used to endorse or promote products derived
|
14
|
+
// from this software without specific prior written permission.
|
15
|
+
//
|
16
|
+
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
17
|
+
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
18
|
+
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
19
|
+
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
20
|
+
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
21
|
+
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
22
|
+
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
23
|
+
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
24
|
+
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
25
|
+
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
26
|
+
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
27
|
+
|
28
|
+
#include "v8.h"
|
29
|
+
|
30
|
+
#include "bootstrapper.h"
|
31
|
+
#include "codegen-inl.h"
|
32
|
+
#include "compilation-cache.h"
|
33
|
+
#include "compiler.h"
|
34
|
+
#include "debug.h"
|
35
|
+
#include "fast-codegen.h"
|
36
|
+
#include "oprofile-agent.h"
|
37
|
+
#include "rewriter.h"
|
38
|
+
#include "scopes.h"
|
39
|
+
#include "usage-analyzer.h"
|
40
|
+
|
41
|
+
namespace v8 {
|
42
|
+
namespace internal {
|
43
|
+
|
44
|
+
|
45
|
+
class CodeGenSelector: public AstVisitor {
|
46
|
+
public:
|
47
|
+
enum CodeGenTag { NORMAL, FAST };
|
48
|
+
|
49
|
+
CodeGenSelector()
|
50
|
+
: has_supported_syntax_(true),
|
51
|
+
context_(Expression::kUninitialized) {
|
52
|
+
}
|
53
|
+
|
54
|
+
CodeGenTag Select(FunctionLiteral* fun);
|
55
|
+
|
56
|
+
private:
|
57
|
+
// Visit an expression in a given expression context.
|
58
|
+
void ProcessExpression(Expression* expr, Expression::Context context) {
|
59
|
+
ASSERT(expr->context() == Expression::kUninitialized ||
|
60
|
+
expr->context() == context);
|
61
|
+
Expression::Context saved = context_;
|
62
|
+
context_ = context;
|
63
|
+
Visit(expr);
|
64
|
+
expr->set_context(context);
|
65
|
+
context_ = saved;
|
66
|
+
}
|
67
|
+
|
68
|
+
void VisitDeclarations(ZoneList<Declaration*>* decls);
|
69
|
+
void VisitStatements(ZoneList<Statement*>* stmts);
|
70
|
+
|
71
|
+
// AST node visit functions.
|
72
|
+
#define DECLARE_VISIT(type) virtual void Visit##type(type* node);
|
73
|
+
AST_NODE_LIST(DECLARE_VISIT)
|
74
|
+
#undef DECLARE_VISIT
|
75
|
+
|
76
|
+
bool has_supported_syntax_;
|
77
|
+
|
78
|
+
// The desired expression context of the currently visited expression.
|
79
|
+
Expression::Context context_;
|
80
|
+
|
81
|
+
DISALLOW_COPY_AND_ASSIGN(CodeGenSelector);
|
82
|
+
};
|
83
|
+
|
84
|
+
|
85
|
+
static Handle<Code> MakeCode(FunctionLiteral* literal,
|
86
|
+
Handle<Script> script,
|
87
|
+
Handle<Context> context,
|
88
|
+
bool is_eval,
|
89
|
+
Handle<SharedFunctionInfo> shared) {
|
90
|
+
ASSERT(literal != NULL);
|
91
|
+
|
92
|
+
// Rewrite the AST by introducing .result assignments where needed.
|
93
|
+
if (!Rewriter::Process(literal) || !AnalyzeVariableUsage(literal)) {
|
94
|
+
// Signal a stack overflow by returning a null handle. The stack
|
95
|
+
// overflow exception will be thrown by the caller.
|
96
|
+
return Handle<Code>::null();
|
97
|
+
}
|
98
|
+
|
99
|
+
{
|
100
|
+
// Compute top scope and allocate variables. For lazy compilation
|
101
|
+
// the top scope only contains the single lazily compiled function,
|
102
|
+
// so this doesn't re-allocate variables repeatedly.
|
103
|
+
HistogramTimerScope timer(&Counters::variable_allocation);
|
104
|
+
Scope* top = literal->scope();
|
105
|
+
while (top->outer_scope() != NULL) top = top->outer_scope();
|
106
|
+
top->AllocateVariables(context);
|
107
|
+
}
|
108
|
+
|
109
|
+
#ifdef DEBUG
|
110
|
+
if (Bootstrapper::IsActive() ?
|
111
|
+
FLAG_print_builtin_scopes :
|
112
|
+
FLAG_print_scopes) {
|
113
|
+
literal->scope()->Print();
|
114
|
+
}
|
115
|
+
#endif
|
116
|
+
|
117
|
+
// Optimize the AST.
|
118
|
+
if (!Rewriter::Optimize(literal)) {
|
119
|
+
// Signal a stack overflow by returning a null handle. The stack
|
120
|
+
// overflow exception will be thrown by the caller.
|
121
|
+
return Handle<Code>::null();
|
122
|
+
}
|
123
|
+
|
124
|
+
// Generate code and return it.
|
125
|
+
if (FLAG_fast_compiler) {
|
126
|
+
// If there is no shared function info, try the fast code
|
127
|
+
// generator for code in the global scope. Otherwise obey the
|
128
|
+
// explicit hint in the shared function info.
|
129
|
+
// If always_fast_compiler is true, always try the fast compiler.
|
130
|
+
if (shared.is_null() && !literal->scope()->is_global_scope() &&
|
131
|
+
!FLAG_always_fast_compiler) {
|
132
|
+
if (FLAG_trace_bailout) PrintF("Non-global scope\n");
|
133
|
+
} else if (!shared.is_null() && !shared->try_fast_codegen() &&
|
134
|
+
!FLAG_always_fast_compiler) {
|
135
|
+
if (FLAG_trace_bailout) PrintF("No hint to try fast\n");
|
136
|
+
} else {
|
137
|
+
CodeGenSelector selector;
|
138
|
+
CodeGenSelector::CodeGenTag code_gen = selector.Select(literal);
|
139
|
+
if (code_gen == CodeGenSelector::FAST) {
|
140
|
+
return FastCodeGenerator::MakeCode(literal, script, is_eval);
|
141
|
+
}
|
142
|
+
ASSERT(code_gen == CodeGenSelector::NORMAL);
|
143
|
+
}
|
144
|
+
}
|
145
|
+
return CodeGenerator::MakeCode(literal, script, is_eval);
|
146
|
+
}
|
147
|
+
|
148
|
+
|
149
|
+
static bool IsValidJSON(FunctionLiteral* lit) {
|
150
|
+
if (lit->body()->length() != 1)
|
151
|
+
return false;
|
152
|
+
Statement* stmt = lit->body()->at(0);
|
153
|
+
if (stmt->AsExpressionStatement() == NULL)
|
154
|
+
return false;
|
155
|
+
Expression* expr = stmt->AsExpressionStatement()->expression();
|
156
|
+
return expr->IsValidJSON();
|
157
|
+
}
|
158
|
+
|
159
|
+
|
160
|
+
static Handle<JSFunction> MakeFunction(bool is_global,
|
161
|
+
bool is_eval,
|
162
|
+
Compiler::ValidationState validate,
|
163
|
+
Handle<Script> script,
|
164
|
+
Handle<Context> context,
|
165
|
+
v8::Extension* extension,
|
166
|
+
ScriptDataImpl* pre_data) {
|
167
|
+
CompilationZoneScope zone_scope(DELETE_ON_EXIT);
|
168
|
+
|
169
|
+
PostponeInterruptsScope postpone;
|
170
|
+
|
171
|
+
ASSERT(!i::Top::global_context().is_null());
|
172
|
+
script->set_context_data((*i::Top::global_context())->data());
|
173
|
+
|
174
|
+
#ifdef ENABLE_DEBUGGER_SUPPORT
|
175
|
+
bool is_json = (validate == Compiler::VALIDATE_JSON);
|
176
|
+
if (is_eval || is_json) {
|
177
|
+
script->set_compilation_type(
|
178
|
+
is_json ? Smi::FromInt(Script::COMPILATION_TYPE_JSON) :
|
179
|
+
Smi::FromInt(Script::COMPILATION_TYPE_EVAL));
|
180
|
+
// For eval scripts add information on the function from which eval was
|
181
|
+
// called.
|
182
|
+
if (is_eval) {
|
183
|
+
JavaScriptFrameIterator it;
|
184
|
+
script->set_eval_from_shared(
|
185
|
+
JSFunction::cast(it.frame()->function())->shared());
|
186
|
+
int offset = static_cast<int>(
|
187
|
+
it.frame()->pc() - it.frame()->code()->instruction_start());
|
188
|
+
script->set_eval_from_instructions_offset(Smi::FromInt(offset));
|
189
|
+
}
|
190
|
+
}
|
191
|
+
|
192
|
+
// Notify debugger
|
193
|
+
Debugger::OnBeforeCompile(script);
|
194
|
+
#endif
|
195
|
+
|
196
|
+
// Only allow non-global compiles for eval.
|
197
|
+
ASSERT(is_eval || is_global);
|
198
|
+
|
199
|
+
// Build AST.
|
200
|
+
FunctionLiteral* lit = MakeAST(is_global, script, extension, pre_data);
|
201
|
+
|
202
|
+
// Check for parse errors.
|
203
|
+
if (lit == NULL) {
|
204
|
+
ASSERT(Top::has_pending_exception());
|
205
|
+
return Handle<JSFunction>::null();
|
206
|
+
}
|
207
|
+
|
208
|
+
// When parsing JSON we do an ordinary parse and then afterwards
|
209
|
+
// check the AST to ensure it was well-formed. If not we give a
|
210
|
+
// syntax error.
|
211
|
+
if (validate == Compiler::VALIDATE_JSON && !IsValidJSON(lit)) {
|
212
|
+
HandleScope scope;
|
213
|
+
Handle<JSArray> args = Factory::NewJSArray(1);
|
214
|
+
Handle<Object> source(script->source());
|
215
|
+
SetElement(args, 0, source);
|
216
|
+
Handle<Object> result = Factory::NewSyntaxError("invalid_json", args);
|
217
|
+
Top::Throw(*result, NULL);
|
218
|
+
return Handle<JSFunction>::null();
|
219
|
+
}
|
220
|
+
|
221
|
+
// Measure how long it takes to do the compilation; only take the
|
222
|
+
// rest of the function into account to avoid overlap with the
|
223
|
+
// parsing statistics.
|
224
|
+
HistogramTimer* rate = is_eval
|
225
|
+
? &Counters::compile_eval
|
226
|
+
: &Counters::compile;
|
227
|
+
HistogramTimerScope timer(rate);
|
228
|
+
|
229
|
+
// Compile the code.
|
230
|
+
Handle<Code> code = MakeCode(lit, script, context, is_eval,
|
231
|
+
Handle<SharedFunctionInfo>::null());
|
232
|
+
|
233
|
+
// Check for stack-overflow exceptions.
|
234
|
+
if (code.is_null()) {
|
235
|
+
Top::StackOverflow();
|
236
|
+
return Handle<JSFunction>::null();
|
237
|
+
}
|
238
|
+
|
239
|
+
#if defined ENABLE_LOGGING_AND_PROFILING || defined ENABLE_OPROFILE_AGENT
|
240
|
+
// Log the code generation for the script. Check explicit whether logging is
|
241
|
+
// to avoid allocating when not required.
|
242
|
+
if (Logger::is_logging() || OProfileAgent::is_enabled()) {
|
243
|
+
if (script->name()->IsString()) {
|
244
|
+
SmartPointer<char> data =
|
245
|
+
String::cast(script->name())->ToCString(DISALLOW_NULLS);
|
246
|
+
LOG(CodeCreateEvent(is_eval ? Logger::EVAL_TAG : Logger::SCRIPT_TAG,
|
247
|
+
*code, *data));
|
248
|
+
OProfileAgent::CreateNativeCodeRegion(*data,
|
249
|
+
code->instruction_start(),
|
250
|
+
code->instruction_size());
|
251
|
+
} else {
|
252
|
+
LOG(CodeCreateEvent(is_eval ? Logger::EVAL_TAG : Logger::SCRIPT_TAG,
|
253
|
+
*code, ""));
|
254
|
+
OProfileAgent::CreateNativeCodeRegion(is_eval ? "Eval" : "Script",
|
255
|
+
code->instruction_start(),
|
256
|
+
code->instruction_size());
|
257
|
+
}
|
258
|
+
}
|
259
|
+
#endif
|
260
|
+
|
261
|
+
// Allocate function.
|
262
|
+
Handle<JSFunction> fun =
|
263
|
+
Factory::NewFunctionBoilerplate(lit->name(),
|
264
|
+
lit->materialized_literal_count(),
|
265
|
+
code);
|
266
|
+
|
267
|
+
ASSERT_EQ(RelocInfo::kNoPosition, lit->function_token_position());
|
268
|
+
Compiler::SetFunctionInfo(fun, lit, true, script);
|
269
|
+
|
270
|
+
// Hint to the runtime system used when allocating space for initial
|
271
|
+
// property space by setting the expected number of properties for
|
272
|
+
// the instances of the function.
|
273
|
+
SetExpectedNofPropertiesFromEstimate(fun, lit->expected_property_count());
|
274
|
+
|
275
|
+
#ifdef ENABLE_DEBUGGER_SUPPORT
|
276
|
+
// Notify debugger
|
277
|
+
Debugger::OnAfterCompile(script, fun);
|
278
|
+
#endif
|
279
|
+
|
280
|
+
return fun;
|
281
|
+
}
|
282
|
+
|
283
|
+
|
284
|
+
static StaticResource<SafeStringInputBuffer> safe_string_input_buffer;
|
285
|
+
|
286
|
+
|
287
|
+
Handle<JSFunction> Compiler::Compile(Handle<String> source,
|
288
|
+
Handle<Object> script_name,
|
289
|
+
int line_offset, int column_offset,
|
290
|
+
v8::Extension* extension,
|
291
|
+
ScriptDataImpl* input_pre_data) {
|
292
|
+
int source_length = source->length();
|
293
|
+
Counters::total_load_size.Increment(source_length);
|
294
|
+
Counters::total_compile_size.Increment(source_length);
|
295
|
+
|
296
|
+
// The VM is in the COMPILER state until exiting this function.
|
297
|
+
VMState state(COMPILER);
|
298
|
+
|
299
|
+
// Do a lookup in the compilation cache but not for extensions.
|
300
|
+
Handle<JSFunction> result;
|
301
|
+
if (extension == NULL) {
|
302
|
+
result = CompilationCache::LookupScript(source,
|
303
|
+
script_name,
|
304
|
+
line_offset,
|
305
|
+
column_offset);
|
306
|
+
}
|
307
|
+
|
308
|
+
if (result.is_null()) {
|
309
|
+
// No cache entry found. Do pre-parsing and compile the script.
|
310
|
+
ScriptDataImpl* pre_data = input_pre_data;
|
311
|
+
if (pre_data == NULL && source_length >= FLAG_min_preparse_length) {
|
312
|
+
Access<SafeStringInputBuffer> buf(&safe_string_input_buffer);
|
313
|
+
buf->Reset(source.location());
|
314
|
+
pre_data = PreParse(source, buf.value(), extension);
|
315
|
+
}
|
316
|
+
|
317
|
+
// Create a script object describing the script to be compiled.
|
318
|
+
Handle<Script> script = Factory::NewScript(source);
|
319
|
+
if (!script_name.is_null()) {
|
320
|
+
script->set_name(*script_name);
|
321
|
+
script->set_line_offset(Smi::FromInt(line_offset));
|
322
|
+
script->set_column_offset(Smi::FromInt(column_offset));
|
323
|
+
}
|
324
|
+
|
325
|
+
// Compile the function and add it to the cache.
|
326
|
+
result = MakeFunction(true,
|
327
|
+
false,
|
328
|
+
DONT_VALIDATE_JSON,
|
329
|
+
script,
|
330
|
+
Handle<Context>::null(),
|
331
|
+
extension,
|
332
|
+
pre_data);
|
333
|
+
if (extension == NULL && !result.is_null()) {
|
334
|
+
CompilationCache::PutScript(source, result);
|
335
|
+
}
|
336
|
+
|
337
|
+
// Get rid of the pre-parsing data (if necessary).
|
338
|
+
if (input_pre_data == NULL && pre_data != NULL) {
|
339
|
+
delete pre_data;
|
340
|
+
}
|
341
|
+
}
|
342
|
+
|
343
|
+
if (result.is_null()) Top::ReportPendingMessages();
|
344
|
+
return result;
|
345
|
+
}
|
346
|
+
|
347
|
+
|
348
|
+
Handle<JSFunction> Compiler::CompileEval(Handle<String> source,
|
349
|
+
Handle<Context> context,
|
350
|
+
bool is_global,
|
351
|
+
ValidationState validate) {
|
352
|
+
// Note that if validation is required then no path through this
|
353
|
+
// function is allowed to return a value without validating that
|
354
|
+
// the input is legal json.
|
355
|
+
|
356
|
+
int source_length = source->length();
|
357
|
+
Counters::total_eval_size.Increment(source_length);
|
358
|
+
Counters::total_compile_size.Increment(source_length);
|
359
|
+
|
360
|
+
// The VM is in the COMPILER state until exiting this function.
|
361
|
+
VMState state(COMPILER);
|
362
|
+
|
363
|
+
// Do a lookup in the compilation cache; if the entry is not there,
|
364
|
+
// invoke the compiler and add the result to the cache. If we're
|
365
|
+
// evaluating json we bypass the cache since we can't be sure a
|
366
|
+
// potential value in the cache has been validated.
|
367
|
+
Handle<JSFunction> result;
|
368
|
+
if (validate == DONT_VALIDATE_JSON)
|
369
|
+
result = CompilationCache::LookupEval(source, context, is_global);
|
370
|
+
|
371
|
+
if (result.is_null()) {
|
372
|
+
// Create a script object describing the script to be compiled.
|
373
|
+
Handle<Script> script = Factory::NewScript(source);
|
374
|
+
result = MakeFunction(is_global,
|
375
|
+
true,
|
376
|
+
validate,
|
377
|
+
script,
|
378
|
+
context,
|
379
|
+
NULL,
|
380
|
+
NULL);
|
381
|
+
if (!result.is_null() && validate != VALIDATE_JSON) {
|
382
|
+
// For json it's unlikely that we'll ever see exactly the same
|
383
|
+
// string again so we don't use the compilation cache.
|
384
|
+
CompilationCache::PutEval(source, context, is_global, result);
|
385
|
+
}
|
386
|
+
}
|
387
|
+
|
388
|
+
return result;
|
389
|
+
}
|
390
|
+
|
391
|
+
|
392
|
+
bool Compiler::CompileLazy(Handle<SharedFunctionInfo> shared,
|
393
|
+
int loop_nesting) {
|
394
|
+
CompilationZoneScope zone_scope(DELETE_ON_EXIT);
|
395
|
+
|
396
|
+
// The VM is in the COMPILER state until exiting this function.
|
397
|
+
VMState state(COMPILER);
|
398
|
+
|
399
|
+
PostponeInterruptsScope postpone;
|
400
|
+
|
401
|
+
// Compute name, source code and script data.
|
402
|
+
Handle<String> name(String::cast(shared->name()));
|
403
|
+
Handle<Script> script(Script::cast(shared->script()));
|
404
|
+
|
405
|
+
int start_position = shared->start_position();
|
406
|
+
int end_position = shared->end_position();
|
407
|
+
bool is_expression = shared->is_expression();
|
408
|
+
Counters::total_compile_size.Increment(end_position - start_position);
|
409
|
+
|
410
|
+
// Generate the AST for the lazily compiled function. The AST may be
|
411
|
+
// NULL in case of parser stack overflow.
|
412
|
+
FunctionLiteral* lit = MakeLazyAST(script, name,
|
413
|
+
start_position,
|
414
|
+
end_position,
|
415
|
+
is_expression);
|
416
|
+
|
417
|
+
// Check for parse errors.
|
418
|
+
if (lit == NULL) {
|
419
|
+
ASSERT(Top::has_pending_exception());
|
420
|
+
return false;
|
421
|
+
}
|
422
|
+
|
423
|
+
// Update the loop nesting in the function literal.
|
424
|
+
lit->set_loop_nesting(loop_nesting);
|
425
|
+
|
426
|
+
// Measure how long it takes to do the lazy compilation; only take
|
427
|
+
// the rest of the function into account to avoid overlap with the
|
428
|
+
// lazy parsing statistics.
|
429
|
+
HistogramTimerScope timer(&Counters::compile_lazy);
|
430
|
+
|
431
|
+
// Compile the code.
|
432
|
+
Handle<Code> code = MakeCode(lit, script, Handle<Context>::null(), false,
|
433
|
+
shared);
|
434
|
+
|
435
|
+
// Check for stack-overflow exception.
|
436
|
+
if (code.is_null()) {
|
437
|
+
Top::StackOverflow();
|
438
|
+
return false;
|
439
|
+
}
|
440
|
+
|
441
|
+
#if defined ENABLE_LOGGING_AND_PROFILING || defined ENABLE_OPROFILE_AGENT
|
442
|
+
// Log the code generation. If source information is available include script
|
443
|
+
// name and line number. Check explicit whether logging is enabled as finding
|
444
|
+
// the line number is not for free.
|
445
|
+
if (Logger::is_logging() || OProfileAgent::is_enabled()) {
|
446
|
+
Handle<String> func_name(name->length() > 0 ?
|
447
|
+
*name : shared->inferred_name());
|
448
|
+
if (script->name()->IsString()) {
|
449
|
+
int line_num = GetScriptLineNumber(script, start_position) + 1;
|
450
|
+
LOG(CodeCreateEvent(Logger::LAZY_COMPILE_TAG, *code, *func_name,
|
451
|
+
String::cast(script->name()), line_num));
|
452
|
+
OProfileAgent::CreateNativeCodeRegion(*func_name,
|
453
|
+
String::cast(script->name()),
|
454
|
+
line_num,
|
455
|
+
code->instruction_start(),
|
456
|
+
code->instruction_size());
|
457
|
+
} else {
|
458
|
+
LOG(CodeCreateEvent(Logger::LAZY_COMPILE_TAG, *code, *func_name));
|
459
|
+
OProfileAgent::CreateNativeCodeRegion(*func_name,
|
460
|
+
code->instruction_start(),
|
461
|
+
code->instruction_size());
|
462
|
+
}
|
463
|
+
}
|
464
|
+
#endif
|
465
|
+
|
466
|
+
// Update the shared function info with the compiled code.
|
467
|
+
shared->set_code(*code);
|
468
|
+
|
469
|
+
// Set the expected number of properties for instances.
|
470
|
+
SetExpectedNofPropertiesFromEstimate(shared, lit->expected_property_count());
|
471
|
+
|
472
|
+
// Set the optimication hints after performing lazy compilation, as these are
|
473
|
+
// not set when the function is set up as a lazily compiled function.
|
474
|
+
shared->SetThisPropertyAssignmentsInfo(
|
475
|
+
lit->has_only_simple_this_property_assignments(),
|
476
|
+
*lit->this_property_assignments());
|
477
|
+
|
478
|
+
// Check the function has compiled code.
|
479
|
+
ASSERT(shared->is_compiled());
|
480
|
+
return true;
|
481
|
+
}
|
482
|
+
|
483
|
+
|
484
|
+
Handle<JSFunction> Compiler::BuildBoilerplate(FunctionLiteral* literal,
|
485
|
+
Handle<Script> script,
|
486
|
+
AstVisitor* caller) {
|
487
|
+
#ifdef DEBUG
|
488
|
+
// We should not try to compile the same function literal more than
|
489
|
+
// once.
|
490
|
+
literal->mark_as_compiled();
|
491
|
+
#endif
|
492
|
+
|
493
|
+
// Determine if the function can be lazily compiled. This is
|
494
|
+
// necessary to allow some of our builtin JS files to be lazily
|
495
|
+
// compiled. These builtins cannot be handled lazily by the parser,
|
496
|
+
// since we have to know if a function uses the special natives
|
497
|
+
// syntax, which is something the parser records.
|
498
|
+
bool allow_lazy = literal->AllowsLazyCompilation();
|
499
|
+
|
500
|
+
// Generate code
|
501
|
+
Handle<Code> code;
|
502
|
+
if (FLAG_lazy && allow_lazy) {
|
503
|
+
code = ComputeLazyCompile(literal->num_parameters());
|
504
|
+
} else {
|
505
|
+
// The bodies of function literals have not yet been visited by
|
506
|
+
// the AST optimizer/analyzer.
|
507
|
+
if (!Rewriter::Optimize(literal)) {
|
508
|
+
return Handle<JSFunction>::null();
|
509
|
+
}
|
510
|
+
|
511
|
+
// Generate code and return it.
|
512
|
+
bool is_compiled = false;
|
513
|
+
if (FLAG_fast_compiler && literal->try_fast_codegen()) {
|
514
|
+
CodeGenSelector selector;
|
515
|
+
CodeGenSelector::CodeGenTag code_gen = selector.Select(literal);
|
516
|
+
if (code_gen == CodeGenSelector::FAST) {
|
517
|
+
code = FastCodeGenerator::MakeCode(literal,
|
518
|
+
script,
|
519
|
+
false); // Not eval.
|
520
|
+
is_compiled = true;
|
521
|
+
}
|
522
|
+
}
|
523
|
+
|
524
|
+
if (!is_compiled) {
|
525
|
+
// We didn't try the fast compiler, or we failed to select it.
|
526
|
+
code = CodeGenerator::MakeCode(literal,
|
527
|
+
script,
|
528
|
+
false); // Not eval.
|
529
|
+
}
|
530
|
+
|
531
|
+
// Check for stack-overflow exception.
|
532
|
+
if (code.is_null()) {
|
533
|
+
caller->SetStackOverflow();
|
534
|
+
return Handle<JSFunction>::null();
|
535
|
+
}
|
536
|
+
|
537
|
+
// Function compilation complete.
|
538
|
+
LOG(CodeCreateEvent(Logger::FUNCTION_TAG, *code, *literal->name()));
|
539
|
+
|
540
|
+
#ifdef ENABLE_OPROFILE_AGENT
|
541
|
+
OProfileAgent::CreateNativeCodeRegion(*literal->name(),
|
542
|
+
code->instruction_start(),
|
543
|
+
code->instruction_size());
|
544
|
+
#endif
|
545
|
+
}
|
546
|
+
|
547
|
+
// Create a boilerplate function.
|
548
|
+
Handle<JSFunction> function =
|
549
|
+
Factory::NewFunctionBoilerplate(literal->name(),
|
550
|
+
literal->materialized_literal_count(),
|
551
|
+
code);
|
552
|
+
SetFunctionInfo(function, literal, false, script);
|
553
|
+
|
554
|
+
#ifdef ENABLE_DEBUGGER_SUPPORT
|
555
|
+
// Notify debugger that a new function has been added.
|
556
|
+
Debugger::OnNewFunction(function);
|
557
|
+
#endif
|
558
|
+
|
559
|
+
// Set the expected number of properties for instances and return
|
560
|
+
// the resulting function.
|
561
|
+
SetExpectedNofPropertiesFromEstimate(function,
|
562
|
+
literal->expected_property_count());
|
563
|
+
return function;
|
564
|
+
}
|
565
|
+
|
566
|
+
|
567
|
+
// Sets the function info on a function.
|
568
|
+
// The start_position points to the first '(' character after the function name
|
569
|
+
// in the full script source. When counting characters in the script source the
|
570
|
+
// the first character is number 0 (not 1).
|
571
|
+
void Compiler::SetFunctionInfo(Handle<JSFunction> fun,
|
572
|
+
FunctionLiteral* lit,
|
573
|
+
bool is_toplevel,
|
574
|
+
Handle<Script> script) {
|
575
|
+
fun->shared()->set_length(lit->num_parameters());
|
576
|
+
fun->shared()->set_formal_parameter_count(lit->num_parameters());
|
577
|
+
fun->shared()->set_script(*script);
|
578
|
+
fun->shared()->set_function_token_position(lit->function_token_position());
|
579
|
+
fun->shared()->set_start_position(lit->start_position());
|
580
|
+
fun->shared()->set_end_position(lit->end_position());
|
581
|
+
fun->shared()->set_is_expression(lit->is_expression());
|
582
|
+
fun->shared()->set_is_toplevel(is_toplevel);
|
583
|
+
fun->shared()->set_inferred_name(*lit->inferred_name());
|
584
|
+
fun->shared()->SetThisPropertyAssignmentsInfo(
|
585
|
+
lit->has_only_simple_this_property_assignments(),
|
586
|
+
*lit->this_property_assignments());
|
587
|
+
fun->shared()->set_try_fast_codegen(lit->try_fast_codegen());
|
588
|
+
}
|
589
|
+
|
590
|
+
|
591
|
+
CodeGenSelector::CodeGenTag CodeGenSelector::Select(FunctionLiteral* fun) {
|
592
|
+
Scope* scope = fun->scope();
|
593
|
+
|
594
|
+
if (scope->num_heap_slots() > 0) {
|
595
|
+
// We support functions with a local context if they do not have
|
596
|
+
// parameters that need to be copied into the context.
|
597
|
+
for (int i = 0, len = scope->num_parameters(); i < len; i++) {
|
598
|
+
Slot* slot = scope->parameter(i)->slot();
|
599
|
+
if (slot != NULL && slot->type() == Slot::CONTEXT) {
|
600
|
+
if (FLAG_trace_bailout) {
|
601
|
+
PrintF("Function has context-allocated parameters.\n");
|
602
|
+
}
|
603
|
+
return NORMAL;
|
604
|
+
}
|
605
|
+
}
|
606
|
+
}
|
607
|
+
|
608
|
+
has_supported_syntax_ = true;
|
609
|
+
VisitDeclarations(scope->declarations());
|
610
|
+
if (!has_supported_syntax_) return NORMAL;
|
611
|
+
|
612
|
+
VisitStatements(fun->body());
|
613
|
+
return has_supported_syntax_ ? FAST : NORMAL;
|
614
|
+
}
|
615
|
+
|
616
|
+
|
617
|
+
#define BAILOUT(reason) \
|
618
|
+
do { \
|
619
|
+
if (FLAG_trace_bailout) { \
|
620
|
+
PrintF("%s\n", reason); \
|
621
|
+
} \
|
622
|
+
has_supported_syntax_ = false; \
|
623
|
+
return; \
|
624
|
+
} while (false)
|
625
|
+
|
626
|
+
|
627
|
+
#define CHECK_BAILOUT \
|
628
|
+
do { \
|
629
|
+
if (!has_supported_syntax_) return; \
|
630
|
+
} while (false)
|
631
|
+
|
632
|
+
|
633
|
+
void CodeGenSelector::VisitDeclarations(ZoneList<Declaration*>* decls) {
|
634
|
+
for (int i = 0; i < decls->length(); i++) {
|
635
|
+
Visit(decls->at(i));
|
636
|
+
CHECK_BAILOUT;
|
637
|
+
}
|
638
|
+
}
|
639
|
+
|
640
|
+
|
641
|
+
void CodeGenSelector::VisitStatements(ZoneList<Statement*>* stmts) {
|
642
|
+
for (int i = 0, len = stmts->length(); i < len; i++) {
|
643
|
+
Visit(stmts->at(i));
|
644
|
+
CHECK_BAILOUT;
|
645
|
+
}
|
646
|
+
}
|
647
|
+
|
648
|
+
|
649
|
+
void CodeGenSelector::VisitDeclaration(Declaration* decl) {
|
650
|
+
Property* prop = decl->proxy()->AsProperty();
|
651
|
+
if (prop != NULL) {
|
652
|
+
ProcessExpression(prop->obj(), Expression::kValue);
|
653
|
+
ProcessExpression(prop->key(), Expression::kValue);
|
654
|
+
}
|
655
|
+
|
656
|
+
if (decl->fun() != NULL) {
|
657
|
+
ProcessExpression(decl->fun(), Expression::kValue);
|
658
|
+
}
|
659
|
+
}
|
660
|
+
|
661
|
+
|
662
|
+
void CodeGenSelector::VisitBlock(Block* stmt) {
|
663
|
+
VisitStatements(stmt->statements());
|
664
|
+
}
|
665
|
+
|
666
|
+
|
667
|
+
void CodeGenSelector::VisitExpressionStatement(ExpressionStatement* stmt) {
|
668
|
+
ProcessExpression(stmt->expression(), Expression::kEffect);
|
669
|
+
}
|
670
|
+
|
671
|
+
|
672
|
+
void CodeGenSelector::VisitEmptyStatement(EmptyStatement* stmt) {
|
673
|
+
// EmptyStatement is supported.
|
674
|
+
}
|
675
|
+
|
676
|
+
|
677
|
+
void CodeGenSelector::VisitIfStatement(IfStatement* stmt) {
|
678
|
+
ProcessExpression(stmt->condition(), Expression::kTest);
|
679
|
+
CHECK_BAILOUT;
|
680
|
+
Visit(stmt->then_statement());
|
681
|
+
CHECK_BAILOUT;
|
682
|
+
Visit(stmt->else_statement());
|
683
|
+
}
|
684
|
+
|
685
|
+
|
686
|
+
void CodeGenSelector::VisitContinueStatement(ContinueStatement* stmt) {
|
687
|
+
}
|
688
|
+
|
689
|
+
|
690
|
+
void CodeGenSelector::VisitBreakStatement(BreakStatement* stmt) {
|
691
|
+
}
|
692
|
+
|
693
|
+
|
694
|
+
void CodeGenSelector::VisitReturnStatement(ReturnStatement* stmt) {
|
695
|
+
ProcessExpression(stmt->expression(), Expression::kValue);
|
696
|
+
}
|
697
|
+
|
698
|
+
|
699
|
+
void CodeGenSelector::VisitWithEnterStatement(WithEnterStatement* stmt) {
|
700
|
+
ProcessExpression(stmt->expression(), Expression::kValue);
|
701
|
+
}
|
702
|
+
|
703
|
+
|
704
|
+
void CodeGenSelector::VisitWithExitStatement(WithExitStatement* stmt) {
|
705
|
+
// Supported.
|
706
|
+
}
|
707
|
+
|
708
|
+
|
709
|
+
void CodeGenSelector::VisitSwitchStatement(SwitchStatement* stmt) {
|
710
|
+
BAILOUT("SwitchStatement");
|
711
|
+
}
|
712
|
+
|
713
|
+
|
714
|
+
void CodeGenSelector::VisitDoWhileStatement(DoWhileStatement* stmt) {
|
715
|
+
// We do not handle loops with breaks or continue statements in their
|
716
|
+
// body. We will bailout when we hit those statements in the body.
|
717
|
+
ProcessExpression(stmt->cond(), Expression::kTest);
|
718
|
+
CHECK_BAILOUT;
|
719
|
+
Visit(stmt->body());
|
720
|
+
}
|
721
|
+
|
722
|
+
|
723
|
+
void CodeGenSelector::VisitWhileStatement(WhileStatement* stmt) {
|
724
|
+
// We do not handle loops with breaks or continue statements in their
|
725
|
+
// body. We will bailout when we hit those statements in the body.
|
726
|
+
ProcessExpression(stmt->cond(), Expression::kTest);
|
727
|
+
CHECK_BAILOUT;
|
728
|
+
Visit(stmt->body());
|
729
|
+
}
|
730
|
+
|
731
|
+
|
732
|
+
void CodeGenSelector::VisitForStatement(ForStatement* stmt) {
|
733
|
+
BAILOUT("ForStatement");
|
734
|
+
}
|
735
|
+
|
736
|
+
|
737
|
+
void CodeGenSelector::VisitForInStatement(ForInStatement* stmt) {
|
738
|
+
BAILOUT("ForInStatement");
|
739
|
+
}
|
740
|
+
|
741
|
+
|
742
|
+
void CodeGenSelector::VisitTryCatchStatement(TryCatchStatement* stmt) {
|
743
|
+
Visit(stmt->try_block());
|
744
|
+
CHECK_BAILOUT;
|
745
|
+
Visit(stmt->catch_block());
|
746
|
+
}
|
747
|
+
|
748
|
+
|
749
|
+
void CodeGenSelector::VisitTryFinallyStatement(TryFinallyStatement* stmt) {
|
750
|
+
Visit(stmt->try_block());
|
751
|
+
CHECK_BAILOUT;
|
752
|
+
Visit(stmt->finally_block());
|
753
|
+
}
|
754
|
+
|
755
|
+
|
756
|
+
void CodeGenSelector::VisitDebuggerStatement(DebuggerStatement* stmt) {
|
757
|
+
// Debugger statement is supported.
|
758
|
+
}
|
759
|
+
|
760
|
+
|
761
|
+
void CodeGenSelector::VisitFunctionLiteral(FunctionLiteral* expr) {
|
762
|
+
// Function literal is supported.
|
763
|
+
}
|
764
|
+
|
765
|
+
|
766
|
+
void CodeGenSelector::VisitFunctionBoilerplateLiteral(
|
767
|
+
FunctionBoilerplateLiteral* expr) {
|
768
|
+
BAILOUT("FunctionBoilerplateLiteral");
|
769
|
+
}
|
770
|
+
|
771
|
+
|
772
|
+
void CodeGenSelector::VisitConditional(Conditional* expr) {
|
773
|
+
ProcessExpression(expr->condition(), Expression::kTest);
|
774
|
+
CHECK_BAILOUT;
|
775
|
+
ProcessExpression(expr->then_expression(), context_);
|
776
|
+
CHECK_BAILOUT;
|
777
|
+
ProcessExpression(expr->else_expression(), context_);
|
778
|
+
}
|
779
|
+
|
780
|
+
|
781
|
+
void CodeGenSelector::VisitSlot(Slot* expr) {
|
782
|
+
UNREACHABLE();
|
783
|
+
}
|
784
|
+
|
785
|
+
|
786
|
+
void CodeGenSelector::VisitVariableProxy(VariableProxy* expr) {
|
787
|
+
Expression* rewrite = expr->var()->rewrite();
|
788
|
+
// A rewrite of NULL indicates a global variable.
|
789
|
+
if (rewrite != NULL) {
|
790
|
+
// Non-global.
|
791
|
+
Slot* slot = rewrite->AsSlot();
|
792
|
+
if (slot != NULL) {
|
793
|
+
Slot::Type type = slot->type();
|
794
|
+
// When LOOKUP slots are enabled, some currently dead code
|
795
|
+
// implementing unary typeof will become live.
|
796
|
+
if (type == Slot::LOOKUP) {
|
797
|
+
BAILOUT("Lookup slot");
|
798
|
+
}
|
799
|
+
} else {
|
800
|
+
#ifdef DEBUG
|
801
|
+
// Only remaining possibility is a property where the object is
|
802
|
+
// a slotted variable and the key is a smi.
|
803
|
+
Property* property = rewrite->AsProperty();
|
804
|
+
ASSERT_NOT_NULL(property);
|
805
|
+
Variable* object = property->obj()->AsVariableProxy()->AsVariable();
|
806
|
+
ASSERT_NOT_NULL(object);
|
807
|
+
ASSERT_NOT_NULL(object->slot());
|
808
|
+
ASSERT_NOT_NULL(property->key()->AsLiteral());
|
809
|
+
ASSERT(property->key()->AsLiteral()->handle()->IsSmi());
|
810
|
+
#endif
|
811
|
+
}
|
812
|
+
}
|
813
|
+
}
|
814
|
+
|
815
|
+
|
816
|
+
void CodeGenSelector::VisitLiteral(Literal* expr) {
|
817
|
+
/* Nothing to do. */
|
818
|
+
}
|
819
|
+
|
820
|
+
|
821
|
+
void CodeGenSelector::VisitRegExpLiteral(RegExpLiteral* expr) {
|
822
|
+
/* Nothing to do. */
|
823
|
+
}
|
824
|
+
|
825
|
+
|
826
|
+
void CodeGenSelector::VisitObjectLiteral(ObjectLiteral* expr) {
|
827
|
+
ZoneList<ObjectLiteral::Property*>* properties = expr->properties();
|
828
|
+
|
829
|
+
for (int i = 0, len = properties->length(); i < len; i++) {
|
830
|
+
ObjectLiteral::Property* property = properties->at(i);
|
831
|
+
if (property->IsCompileTimeValue()) continue;
|
832
|
+
|
833
|
+
switch (property->kind()) {
|
834
|
+
case ObjectLiteral::Property::CONSTANT:
|
835
|
+
UNREACHABLE();
|
836
|
+
|
837
|
+
// For (non-compile-time) materialized literals and computed
|
838
|
+
// properties with symbolic keys we will use an IC and therefore not
|
839
|
+
// generate code for the key.
|
840
|
+
case ObjectLiteral::Property::COMPUTED: // Fall through.
|
841
|
+
case ObjectLiteral::Property::MATERIALIZED_LITERAL:
|
842
|
+
if (property->key()->handle()->IsSymbol()) {
|
843
|
+
break;
|
844
|
+
}
|
845
|
+
// Fall through.
|
846
|
+
|
847
|
+
// In all other cases we need the key's value on the stack
|
848
|
+
// for a runtime call. (Relies on TEMP meaning STACK.)
|
849
|
+
case ObjectLiteral::Property::GETTER: // Fall through.
|
850
|
+
case ObjectLiteral::Property::SETTER: // Fall through.
|
851
|
+
case ObjectLiteral::Property::PROTOTYPE:
|
852
|
+
ProcessExpression(property->key(), Expression::kValue);
|
853
|
+
CHECK_BAILOUT;
|
854
|
+
break;
|
855
|
+
}
|
856
|
+
ProcessExpression(property->value(), Expression::kValue);
|
857
|
+
CHECK_BAILOUT;
|
858
|
+
}
|
859
|
+
}
|
860
|
+
|
861
|
+
|
862
|
+
void CodeGenSelector::VisitArrayLiteral(ArrayLiteral* expr) {
|
863
|
+
ZoneList<Expression*>* subexprs = expr->values();
|
864
|
+
for (int i = 0, len = subexprs->length(); i < len; i++) {
|
865
|
+
Expression* subexpr = subexprs->at(i);
|
866
|
+
if (subexpr->AsLiteral() != NULL) continue;
|
867
|
+
if (CompileTimeValue::IsCompileTimeValue(subexpr)) continue;
|
868
|
+
ProcessExpression(subexpr, Expression::kValue);
|
869
|
+
CHECK_BAILOUT;
|
870
|
+
}
|
871
|
+
}
|
872
|
+
|
873
|
+
|
874
|
+
void CodeGenSelector::VisitCatchExtensionObject(CatchExtensionObject* expr) {
|
875
|
+
ProcessExpression(expr->key(), Expression::kValue);
|
876
|
+
CHECK_BAILOUT;
|
877
|
+
ProcessExpression(expr->value(), Expression::kValue);
|
878
|
+
}
|
879
|
+
|
880
|
+
|
881
|
+
void CodeGenSelector::VisitAssignment(Assignment* expr) {
|
882
|
+
// We support plain non-compound assignments to properties, parameters and
|
883
|
+
// non-context (stack-allocated) locals, and global variables.
|
884
|
+
Token::Value op = expr->op();
|
885
|
+
if (op == Token::INIT_CONST) BAILOUT("initialize constant");
|
886
|
+
|
887
|
+
Variable* var = expr->target()->AsVariableProxy()->AsVariable();
|
888
|
+
Property* prop = expr->target()->AsProperty();
|
889
|
+
ASSERT(var == NULL || prop == NULL);
|
890
|
+
if (var != NULL) {
|
891
|
+
if (var->mode() == Variable::CONST) {
|
892
|
+
BAILOUT("Assignment to const");
|
893
|
+
}
|
894
|
+
// All global variables are supported.
|
895
|
+
if (!var->is_global()) {
|
896
|
+
ASSERT(var->slot() != NULL);
|
897
|
+
Slot::Type type = var->slot()->type();
|
898
|
+
if (type == Slot::LOOKUP) {
|
899
|
+
BAILOUT("Lookup slot");
|
900
|
+
}
|
901
|
+
}
|
902
|
+
} else if (prop != NULL) {
|
903
|
+
ProcessExpression(prop->obj(), Expression::kValue);
|
904
|
+
CHECK_BAILOUT;
|
905
|
+
// We will only visit the key during code generation for keyed property
|
906
|
+
// stores. Leave its expression context uninitialized for named
|
907
|
+
// property stores.
|
908
|
+
if (!prop->key()->IsPropertyName()) {
|
909
|
+
ProcessExpression(prop->key(), Expression::kValue);
|
910
|
+
CHECK_BAILOUT;
|
911
|
+
}
|
912
|
+
} else {
|
913
|
+
// This is a throw reference error.
|
914
|
+
BAILOUT("non-variable/non-property assignment");
|
915
|
+
}
|
916
|
+
|
917
|
+
ProcessExpression(expr->value(), Expression::kValue);
|
918
|
+
}
|
919
|
+
|
920
|
+
|
921
|
+
void CodeGenSelector::VisitThrow(Throw* expr) {
|
922
|
+
ProcessExpression(expr->exception(), Expression::kValue);
|
923
|
+
}
|
924
|
+
|
925
|
+
|
926
|
+
void CodeGenSelector::VisitProperty(Property* expr) {
|
927
|
+
ProcessExpression(expr->obj(), Expression::kValue);
|
928
|
+
CHECK_BAILOUT;
|
929
|
+
ProcessExpression(expr->key(), Expression::kValue);
|
930
|
+
}
|
931
|
+
|
932
|
+
|
933
|
+
void CodeGenSelector::VisitCall(Call* expr) {
|
934
|
+
Expression* fun = expr->expression();
|
935
|
+
ZoneList<Expression*>* args = expr->arguments();
|
936
|
+
Variable* var = fun->AsVariableProxy()->AsVariable();
|
937
|
+
|
938
|
+
// Check for supported calls
|
939
|
+
if (var != NULL && var->is_possibly_eval()) {
|
940
|
+
BAILOUT("call to the identifier 'eval'");
|
941
|
+
} else if (var != NULL && !var->is_this() && var->is_global()) {
|
942
|
+
// Calls to global variables are supported.
|
943
|
+
} else if (var != NULL && var->slot() != NULL &&
|
944
|
+
var->slot()->type() == Slot::LOOKUP) {
|
945
|
+
BAILOUT("call to a lookup slot");
|
946
|
+
} else if (fun->AsProperty() != NULL) {
|
947
|
+
Property* prop = fun->AsProperty();
|
948
|
+
Literal* literal_key = prop->key()->AsLiteral();
|
949
|
+
if (literal_key != NULL && literal_key->handle()->IsSymbol()) {
|
950
|
+
ProcessExpression(prop->obj(), Expression::kValue);
|
951
|
+
CHECK_BAILOUT;
|
952
|
+
} else {
|
953
|
+
ProcessExpression(prop->obj(), Expression::kValue);
|
954
|
+
CHECK_BAILOUT;
|
955
|
+
ProcessExpression(prop->key(), Expression::kValue);
|
956
|
+
CHECK_BAILOUT;
|
957
|
+
}
|
958
|
+
} else {
|
959
|
+
// Otherwise the call is supported if the function expression is.
|
960
|
+
ProcessExpression(fun, Expression::kValue);
|
961
|
+
}
|
962
|
+
// Check all arguments to the call.
|
963
|
+
for (int i = 0; i < args->length(); i++) {
|
964
|
+
ProcessExpression(args->at(i), Expression::kValue);
|
965
|
+
CHECK_BAILOUT;
|
966
|
+
}
|
967
|
+
}
|
968
|
+
|
969
|
+
|
970
|
+
void CodeGenSelector::VisitCallNew(CallNew* expr) {
|
971
|
+
ProcessExpression(expr->expression(), Expression::kValue);
|
972
|
+
CHECK_BAILOUT;
|
973
|
+
ZoneList<Expression*>* args = expr->arguments();
|
974
|
+
// Check all arguments to the call
|
975
|
+
for (int i = 0; i < args->length(); i++) {
|
976
|
+
ProcessExpression(args->at(i), Expression::kValue);
|
977
|
+
CHECK_BAILOUT;
|
978
|
+
}
|
979
|
+
}
|
980
|
+
|
981
|
+
|
982
|
+
void CodeGenSelector::VisitCallRuntime(CallRuntime* expr) {
|
983
|
+
// Check for inline runtime call
|
984
|
+
if (expr->name()->Get(0) == '_' &&
|
985
|
+
CodeGenerator::FindInlineRuntimeLUT(expr->name()) != NULL) {
|
986
|
+
BAILOUT("inlined runtime call");
|
987
|
+
}
|
988
|
+
// Check all arguments to the call. (Relies on TEMP meaning STACK.)
|
989
|
+
for (int i = 0; i < expr->arguments()->length(); i++) {
|
990
|
+
ProcessExpression(expr->arguments()->at(i), Expression::kValue);
|
991
|
+
CHECK_BAILOUT;
|
992
|
+
}
|
993
|
+
}
|
994
|
+
|
995
|
+
|
996
|
+
void CodeGenSelector::VisitUnaryOperation(UnaryOperation* expr) {
|
997
|
+
switch (expr->op()) {
|
998
|
+
case Token::VOID:
|
999
|
+
ProcessExpression(expr->expression(), Expression::kEffect);
|
1000
|
+
break;
|
1001
|
+
case Token::NOT:
|
1002
|
+
ProcessExpression(expr->expression(), Expression::kTest);
|
1003
|
+
break;
|
1004
|
+
case Token::TYPEOF:
|
1005
|
+
ProcessExpression(expr->expression(), Expression::kValue);
|
1006
|
+
break;
|
1007
|
+
default:
|
1008
|
+
BAILOUT("UnaryOperation");
|
1009
|
+
}
|
1010
|
+
}
|
1011
|
+
|
1012
|
+
|
1013
|
+
void CodeGenSelector::VisitCountOperation(CountOperation* expr) {
|
1014
|
+
Variable* var = expr->expression()->AsVariableProxy()->AsVariable();
|
1015
|
+
Property* prop = expr->expression()->AsProperty();
|
1016
|
+
ASSERT(var == NULL || prop == NULL);
|
1017
|
+
if (var != NULL) {
|
1018
|
+
// All global variables are supported.
|
1019
|
+
if (!var->is_global()) {
|
1020
|
+
ASSERT(var->slot() != NULL);
|
1021
|
+
Slot::Type type = var->slot()->type();
|
1022
|
+
if (type == Slot::LOOKUP) {
|
1023
|
+
BAILOUT("CountOperation with lookup slot");
|
1024
|
+
}
|
1025
|
+
}
|
1026
|
+
} else if (prop != NULL) {
|
1027
|
+
ProcessExpression(prop->obj(), Expression::kValue);
|
1028
|
+
CHECK_BAILOUT;
|
1029
|
+
// We will only visit the key during code generation for keyed property
|
1030
|
+
// stores. Leave its expression context uninitialized for named
|
1031
|
+
// property stores.
|
1032
|
+
if (!prop->key()->IsPropertyName()) {
|
1033
|
+
ProcessExpression(prop->key(), Expression::kValue);
|
1034
|
+
CHECK_BAILOUT;
|
1035
|
+
}
|
1036
|
+
} else {
|
1037
|
+
// This is a throw reference error.
|
1038
|
+
BAILOUT("CountOperation non-variable/non-property expression");
|
1039
|
+
}
|
1040
|
+
}
|
1041
|
+
|
1042
|
+
|
1043
|
+
void CodeGenSelector::VisitBinaryOperation(BinaryOperation* expr) {
|
1044
|
+
switch (expr->op()) {
|
1045
|
+
case Token::COMMA:
|
1046
|
+
ProcessExpression(expr->left(), Expression::kEffect);
|
1047
|
+
CHECK_BAILOUT;
|
1048
|
+
ProcessExpression(expr->right(), context_);
|
1049
|
+
break;
|
1050
|
+
|
1051
|
+
case Token::OR:
|
1052
|
+
switch (context_) {
|
1053
|
+
case Expression::kUninitialized:
|
1054
|
+
UNREACHABLE();
|
1055
|
+
case Expression::kEffect: // Fall through.
|
1056
|
+
case Expression::kTest: // Fall through.
|
1057
|
+
case Expression::kTestValue:
|
1058
|
+
// The left subexpression's value is not needed, it is in a pure
|
1059
|
+
// test context.
|
1060
|
+
ProcessExpression(expr->left(), Expression::kTest);
|
1061
|
+
break;
|
1062
|
+
case Expression::kValue: // Fall through.
|
1063
|
+
case Expression::kValueTest:
|
1064
|
+
// The left subexpression's value is needed, it is in a hybrid
|
1065
|
+
// value/test context.
|
1066
|
+
ProcessExpression(expr->left(), Expression::kValueTest);
|
1067
|
+
break;
|
1068
|
+
}
|
1069
|
+
CHECK_BAILOUT;
|
1070
|
+
ProcessExpression(expr->right(), context_);
|
1071
|
+
break;
|
1072
|
+
|
1073
|
+
case Token::AND:
|
1074
|
+
switch (context_) {
|
1075
|
+
case Expression::kUninitialized:
|
1076
|
+
UNREACHABLE();
|
1077
|
+
case Expression::kEffect: // Fall through.
|
1078
|
+
case Expression::kTest: // Fall through.
|
1079
|
+
case Expression::kValueTest:
|
1080
|
+
// The left subexpression's value is not needed, it is in a pure
|
1081
|
+
// test context.
|
1082
|
+
ProcessExpression(expr->left(), Expression::kTest);
|
1083
|
+
break;
|
1084
|
+
case Expression::kValue: // Fall through.
|
1085
|
+
case Expression::kTestValue:
|
1086
|
+
// The left subexpression's value is needed, it is in a hybrid
|
1087
|
+
// test/value context.
|
1088
|
+
ProcessExpression(expr->left(), Expression::kTestValue);
|
1089
|
+
break;
|
1090
|
+
}
|
1091
|
+
CHECK_BAILOUT;
|
1092
|
+
ProcessExpression(expr->right(), context_);
|
1093
|
+
break;
|
1094
|
+
|
1095
|
+
case Token::ADD:
|
1096
|
+
case Token::SUB:
|
1097
|
+
case Token::DIV:
|
1098
|
+
case Token::MOD:
|
1099
|
+
case Token::MUL:
|
1100
|
+
case Token::BIT_OR:
|
1101
|
+
case Token::BIT_AND:
|
1102
|
+
case Token::BIT_XOR:
|
1103
|
+
case Token::SHL:
|
1104
|
+
case Token::SHR:
|
1105
|
+
case Token::SAR:
|
1106
|
+
ProcessExpression(expr->left(), Expression::kValue);
|
1107
|
+
CHECK_BAILOUT;
|
1108
|
+
ProcessExpression(expr->right(), Expression::kValue);
|
1109
|
+
break;
|
1110
|
+
|
1111
|
+
default:
|
1112
|
+
BAILOUT("Unsupported binary operation");
|
1113
|
+
}
|
1114
|
+
}
|
1115
|
+
|
1116
|
+
|
1117
|
+
void CodeGenSelector::VisitCompareOperation(CompareOperation* expr) {
|
1118
|
+
ProcessExpression(expr->left(), Expression::kValue);
|
1119
|
+
CHECK_BAILOUT;
|
1120
|
+
ProcessExpression(expr->right(), Expression::kValue);
|
1121
|
+
}
|
1122
|
+
|
1123
|
+
|
1124
|
+
void CodeGenSelector::VisitThisFunction(ThisFunction* expr) {
|
1125
|
+
// ThisFunction is supported.
|
1126
|
+
}
|
1127
|
+
|
1128
|
+
#undef BAILOUT
|
1129
|
+
#undef CHECK_BAILOUT
|
1130
|
+
|
1131
|
+
|
1132
|
+
} } // namespace v8::internal
|