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,123 @@
|
|
1
|
+
// Copyright 2006-2008 the V8 project authors. All rights reserved.
|
2
|
+
// Redistribution and use in source and binary forms, with or without
|
3
|
+
// modification, are permitted provided that the following conditions are
|
4
|
+
// met:
|
5
|
+
//
|
6
|
+
// * Redistributions of source code must retain the above copyright
|
7
|
+
// notice, this list of conditions and the following disclaimer.
|
8
|
+
// * Redistributions in binary form must reproduce the above
|
9
|
+
// copyright notice, this list of conditions and the following
|
10
|
+
// disclaimer in the documentation and/or other materials provided
|
11
|
+
// with the distribution.
|
12
|
+
// * Neither the name of Google Inc. nor the names of its
|
13
|
+
// contributors may be used to endorse or promote products derived
|
14
|
+
// from this software without specific prior written permission.
|
15
|
+
//
|
16
|
+
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
17
|
+
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
18
|
+
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
19
|
+
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
20
|
+
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
21
|
+
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
22
|
+
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
23
|
+
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
24
|
+
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
25
|
+
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
26
|
+
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
27
|
+
|
28
|
+
#include "v8.h"
|
29
|
+
|
30
|
+
#include "frames-inl.h"
|
31
|
+
#ifdef V8_ARM_VARIANT_THUMB
|
32
|
+
#include "arm/assembler-thumb2-inl.h"
|
33
|
+
#else
|
34
|
+
#include "arm/assembler-arm-inl.h"
|
35
|
+
#endif
|
36
|
+
|
37
|
+
|
38
|
+
namespace v8 {
|
39
|
+
namespace internal {
|
40
|
+
|
41
|
+
|
42
|
+
StackFrame::Type StackFrame::ComputeType(State* state) {
|
43
|
+
ASSERT(state->fp != NULL);
|
44
|
+
if (StandardFrame::IsArgumentsAdaptorFrame(state->fp)) {
|
45
|
+
return ARGUMENTS_ADAPTOR;
|
46
|
+
}
|
47
|
+
// The marker and function offsets overlap. If the marker isn't a
|
48
|
+
// smi then the frame is a JavaScript frame -- and the marker is
|
49
|
+
// really the function.
|
50
|
+
const int offset = StandardFrameConstants::kMarkerOffset;
|
51
|
+
Object* marker = Memory::Object_at(state->fp + offset);
|
52
|
+
if (!marker->IsSmi()) return JAVA_SCRIPT;
|
53
|
+
return static_cast<StackFrame::Type>(Smi::cast(marker)->value());
|
54
|
+
}
|
55
|
+
|
56
|
+
|
57
|
+
StackFrame::Type ExitFrame::GetStateForFramePointer(Address fp, State* state) {
|
58
|
+
if (fp == 0) return NONE;
|
59
|
+
// Compute frame type and stack pointer.
|
60
|
+
Address sp = fp + ExitFrameConstants::kSPDisplacement;
|
61
|
+
const int offset = ExitFrameConstants::kCodeOffset;
|
62
|
+
Object* code = Memory::Object_at(fp + offset);
|
63
|
+
bool is_debug_exit = code->IsSmi();
|
64
|
+
if (is_debug_exit) {
|
65
|
+
sp -= kNumJSCallerSaved * kPointerSize;
|
66
|
+
}
|
67
|
+
// Fill in the state.
|
68
|
+
state->sp = sp;
|
69
|
+
state->fp = fp;
|
70
|
+
state->pc_address = reinterpret_cast<Address*>(sp - 1 * kPointerSize);
|
71
|
+
return EXIT;
|
72
|
+
}
|
73
|
+
|
74
|
+
|
75
|
+
void ExitFrame::Iterate(ObjectVisitor* v) const {
|
76
|
+
v->VisitPointer(&code_slot());
|
77
|
+
// The arguments are traversed as part of the expression stack of
|
78
|
+
// the calling frame.
|
79
|
+
}
|
80
|
+
|
81
|
+
|
82
|
+
int JavaScriptFrame::GetProvidedParametersCount() const {
|
83
|
+
return ComputeParametersCount();
|
84
|
+
}
|
85
|
+
|
86
|
+
|
87
|
+
Address JavaScriptFrame::GetCallerStackPointer() const {
|
88
|
+
int arguments;
|
89
|
+
if (Heap::gc_state() != Heap::NOT_IN_GC || disable_heap_access_) {
|
90
|
+
// The arguments for cooked frames are traversed as if they were
|
91
|
+
// expression stack elements of the calling frame. The reason for
|
92
|
+
// this rather strange decision is that we cannot access the
|
93
|
+
// function during mark-compact GCs when the stack is cooked.
|
94
|
+
// In fact accessing heap objects (like function->shared() below)
|
95
|
+
// at all during GC is problematic.
|
96
|
+
arguments = 0;
|
97
|
+
} else {
|
98
|
+
// Compute the number of arguments by getting the number of formal
|
99
|
+
// parameters of the function. We must remember to take the
|
100
|
+
// receiver into account (+1).
|
101
|
+
JSFunction* function = JSFunction::cast(this->function());
|
102
|
+
arguments = function->shared()->formal_parameter_count() + 1;
|
103
|
+
}
|
104
|
+
const int offset = StandardFrameConstants::kCallerSPOffset;
|
105
|
+
return fp() + offset + (arguments * kPointerSize);
|
106
|
+
}
|
107
|
+
|
108
|
+
|
109
|
+
Address ArgumentsAdaptorFrame::GetCallerStackPointer() const {
|
110
|
+
const int arguments = Smi::cast(GetExpression(0))->value();
|
111
|
+
const int offset = StandardFrameConstants::kCallerSPOffset;
|
112
|
+
return fp() + offset + (arguments + 1) * kPointerSize;
|
113
|
+
}
|
114
|
+
|
115
|
+
|
116
|
+
Address InternalFrame::GetCallerStackPointer() const {
|
117
|
+
// Internal frames have no arguments. The stack pointer of the
|
118
|
+
// caller is at a fixed offset from the frame pointer.
|
119
|
+
return fp() + StandardFrameConstants::kCallerSPOffset;
|
120
|
+
}
|
121
|
+
|
122
|
+
|
123
|
+
} } // namespace v8::internal
|
@@ -0,0 +1,162 @@
|
|
1
|
+
// Copyright 2006-2008 the V8 project authors. All rights reserved.
|
2
|
+
// Redistribution and use in source and binary forms, with or without
|
3
|
+
// modification, are permitted provided that the following conditions are
|
4
|
+
// met:
|
5
|
+
//
|
6
|
+
// * Redistributions of source code must retain the above copyright
|
7
|
+
// notice, this list of conditions and the following disclaimer.
|
8
|
+
// * Redistributions in binary form must reproduce the above
|
9
|
+
// copyright notice, this list of conditions and the following
|
10
|
+
// disclaimer in the documentation and/or other materials provided
|
11
|
+
// with the distribution.
|
12
|
+
// * Neither the name of Google Inc. nor the names of its
|
13
|
+
// contributors may be used to endorse or promote products derived
|
14
|
+
// from this software without specific prior written permission.
|
15
|
+
//
|
16
|
+
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
17
|
+
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
18
|
+
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
19
|
+
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
20
|
+
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
21
|
+
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
22
|
+
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
23
|
+
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
24
|
+
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
25
|
+
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
26
|
+
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
27
|
+
|
28
|
+
#ifndef V8_ARM_FRAMES_ARM_H_
|
29
|
+
#define V8_ARM_FRAMES_ARM_H_
|
30
|
+
|
31
|
+
namespace v8 {
|
32
|
+
namespace internal {
|
33
|
+
|
34
|
+
|
35
|
+
// The ARM ABI does not specify the usage of register r9, which may be reserved
|
36
|
+
// as the static base or thread register on some platforms, in which case we
|
37
|
+
// leave it alone. Adjust the value of kR9Available accordingly:
|
38
|
+
static const int kR9Available = 1; // 1 if available to us, 0 if reserved
|
39
|
+
|
40
|
+
|
41
|
+
// Register list in load/store instructions
|
42
|
+
// Note that the bit values must match those used in actual instruction encoding
|
43
|
+
static const int kNumRegs = 16;
|
44
|
+
|
45
|
+
|
46
|
+
// Caller-saved/arguments registers
|
47
|
+
static const RegList kJSCallerSaved =
|
48
|
+
1 << 0 | // r0 a1
|
49
|
+
1 << 1 | // r1 a2
|
50
|
+
1 << 2 | // r2 a3
|
51
|
+
1 << 3; // r3 a4
|
52
|
+
|
53
|
+
static const int kNumJSCallerSaved = 4;
|
54
|
+
|
55
|
+
typedef Object* JSCallerSavedBuffer[kNumJSCallerSaved];
|
56
|
+
|
57
|
+
// Return the code of the n-th caller-saved register available to JavaScript
|
58
|
+
// e.g. JSCallerSavedReg(0) returns r0.code() == 0
|
59
|
+
int JSCallerSavedCode(int n);
|
60
|
+
|
61
|
+
|
62
|
+
// Callee-saved registers preserved when switching from C to JavaScript
|
63
|
+
static const RegList kCalleeSaved =
|
64
|
+
1 << 4 | // r4 v1
|
65
|
+
1 << 5 | // r5 v2
|
66
|
+
1 << 6 | // r6 v3
|
67
|
+
1 << 7 | // r7 v4
|
68
|
+
1 << 8 | // r8 v5 (cp in JavaScript code)
|
69
|
+
kR9Available
|
70
|
+
<< 9 | // r9 v6
|
71
|
+
1 << 10 | // r10 v7
|
72
|
+
1 << 11; // r11 v8 (fp in JavaScript code)
|
73
|
+
|
74
|
+
static const int kNumCalleeSaved = 7 + kR9Available;
|
75
|
+
|
76
|
+
|
77
|
+
// ----------------------------------------------------
|
78
|
+
|
79
|
+
|
80
|
+
class StackHandlerConstants : public AllStatic {
|
81
|
+
public:
|
82
|
+
static const int kNextOffset = 0 * kPointerSize;
|
83
|
+
static const int kStateOffset = 1 * kPointerSize;
|
84
|
+
static const int kFPOffset = 2 * kPointerSize;
|
85
|
+
static const int kPCOffset = 3 * kPointerSize;
|
86
|
+
|
87
|
+
static const int kSize = kPCOffset + kPointerSize;
|
88
|
+
};
|
89
|
+
|
90
|
+
|
91
|
+
class EntryFrameConstants : public AllStatic {
|
92
|
+
public:
|
93
|
+
static const int kCallerFPOffset = -3 * kPointerSize;
|
94
|
+
};
|
95
|
+
|
96
|
+
|
97
|
+
class ExitFrameConstants : public AllStatic {
|
98
|
+
public:
|
99
|
+
// Exit frames have a debug marker on the stack.
|
100
|
+
static const int kSPDisplacement = -1 * kPointerSize;
|
101
|
+
|
102
|
+
// The debug marker is just above the frame pointer.
|
103
|
+
static const int kCodeOffset = -1 * kPointerSize;
|
104
|
+
|
105
|
+
static const int kSavedRegistersOffset = 0 * kPointerSize;
|
106
|
+
|
107
|
+
// The caller fields are below the frame pointer on the stack.
|
108
|
+
static const int kCallerFPOffset = +0 * kPointerSize;
|
109
|
+
// The calling JS function is between FP and PC.
|
110
|
+
static const int kCallerPCOffset = +2 * kPointerSize;
|
111
|
+
|
112
|
+
// FP-relative displacement of the caller's SP. It points just
|
113
|
+
// below the saved PC.
|
114
|
+
static const int kCallerSPDisplacement = +3 * kPointerSize;
|
115
|
+
};
|
116
|
+
|
117
|
+
|
118
|
+
class StandardFrameConstants : public AllStatic {
|
119
|
+
public:
|
120
|
+
static const int kExpressionsOffset = -3 * kPointerSize;
|
121
|
+
static const int kMarkerOffset = -2 * kPointerSize;
|
122
|
+
static const int kContextOffset = -1 * kPointerSize;
|
123
|
+
static const int kCallerFPOffset = 0 * kPointerSize;
|
124
|
+
static const int kCallerPCOffset = +1 * kPointerSize;
|
125
|
+
static const int kCallerSPOffset = +2 * kPointerSize;
|
126
|
+
};
|
127
|
+
|
128
|
+
|
129
|
+
class JavaScriptFrameConstants : public AllStatic {
|
130
|
+
public:
|
131
|
+
// FP-relative.
|
132
|
+
static const int kLocal0Offset = StandardFrameConstants::kExpressionsOffset;
|
133
|
+
static const int kSavedRegistersOffset = +2 * kPointerSize;
|
134
|
+
static const int kFunctionOffset = StandardFrameConstants::kMarkerOffset;
|
135
|
+
|
136
|
+
// Caller SP-relative.
|
137
|
+
static const int kParam0Offset = -2 * kPointerSize;
|
138
|
+
static const int kReceiverOffset = -1 * kPointerSize;
|
139
|
+
};
|
140
|
+
|
141
|
+
|
142
|
+
class ArgumentsAdaptorFrameConstants : public AllStatic {
|
143
|
+
public:
|
144
|
+
static const int kLengthOffset = StandardFrameConstants::kExpressionsOffset;
|
145
|
+
};
|
146
|
+
|
147
|
+
|
148
|
+
class InternalFrameConstants : public AllStatic {
|
149
|
+
public:
|
150
|
+
static const int kCodeOffset = StandardFrameConstants::kExpressionsOffset;
|
151
|
+
};
|
152
|
+
|
153
|
+
|
154
|
+
inline Object* JavaScriptFrame::function_slot_object() const {
|
155
|
+
const int offset = JavaScriptFrameConstants::kFunctionOffset;
|
156
|
+
return Memory::Object_at(fp() + offset);
|
157
|
+
}
|
158
|
+
|
159
|
+
|
160
|
+
} } // namespace v8::internal
|
161
|
+
|
162
|
+
#endif // V8_ARM_FRAMES_ARM_H_
|
@@ -0,0 +1,849 @@
|
|
1
|
+
// Copyright 2006-2008 the V8 project authors. All rights reserved.
|
2
|
+
// Redistribution and use in source and binary forms, with or without
|
3
|
+
// modification, are permitted provided that the following conditions are
|
4
|
+
// met:
|
5
|
+
//
|
6
|
+
// * Redistributions of source code must retain the above copyright
|
7
|
+
// notice, this list of conditions and the following disclaimer.
|
8
|
+
// * Redistributions in binary form must reproduce the above
|
9
|
+
// copyright notice, this list of conditions and the following
|
10
|
+
// disclaimer in the documentation and/or other materials provided
|
11
|
+
// with the distribution.
|
12
|
+
// * Neither the name of Google Inc. nor the names of its
|
13
|
+
// contributors may be used to endorse or promote products derived
|
14
|
+
// from this software without specific prior written permission.
|
15
|
+
//
|
16
|
+
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
17
|
+
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
18
|
+
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
19
|
+
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
20
|
+
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
21
|
+
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
22
|
+
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
23
|
+
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
24
|
+
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
25
|
+
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
26
|
+
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
27
|
+
|
28
|
+
#include "v8.h"
|
29
|
+
|
30
|
+
#include "codegen-inl.h"
|
31
|
+
#include "ic-inl.h"
|
32
|
+
#include "runtime.h"
|
33
|
+
#include "stub-cache.h"
|
34
|
+
|
35
|
+
namespace v8 {
|
36
|
+
namespace internal {
|
37
|
+
|
38
|
+
|
39
|
+
// ----------------------------------------------------------------------------
|
40
|
+
// Static IC stub generators.
|
41
|
+
//
|
42
|
+
|
43
|
+
#define __ ACCESS_MASM(masm)
|
44
|
+
|
45
|
+
|
46
|
+
// Helper function used from LoadIC/CallIC GenerateNormal.
|
47
|
+
static void GenerateDictionaryLoad(MacroAssembler* masm,
|
48
|
+
Label* miss,
|
49
|
+
Register t0,
|
50
|
+
Register t1) {
|
51
|
+
// Register use:
|
52
|
+
//
|
53
|
+
// t0 - used to hold the property dictionary.
|
54
|
+
//
|
55
|
+
// t1 - initially the receiver
|
56
|
+
// - used for the index into the property dictionary
|
57
|
+
// - holds the result on exit.
|
58
|
+
//
|
59
|
+
// r3 - used as temporary and to hold the capacity of the property
|
60
|
+
// dictionary.
|
61
|
+
//
|
62
|
+
// r2 - holds the name of the property and is unchanges.
|
63
|
+
|
64
|
+
Label done;
|
65
|
+
|
66
|
+
// Check for the absence of an interceptor.
|
67
|
+
// Load the map into t0.
|
68
|
+
__ ldr(t0, FieldMemOperand(t1, JSObject::kMapOffset));
|
69
|
+
// Test the has_named_interceptor bit in the map.
|
70
|
+
__ ldr(r3, FieldMemOperand(t0, Map::kInstanceAttributesOffset));
|
71
|
+
__ tst(r3, Operand(1 << (Map::kHasNamedInterceptor + (3 * 8))));
|
72
|
+
// Jump to miss if the interceptor bit is set.
|
73
|
+
__ b(ne, miss);
|
74
|
+
|
75
|
+
// Bail out if we have a JS global proxy object.
|
76
|
+
__ ldrb(r3, FieldMemOperand(t0, Map::kInstanceTypeOffset));
|
77
|
+
__ cmp(r3, Operand(JS_GLOBAL_PROXY_TYPE));
|
78
|
+
__ b(eq, miss);
|
79
|
+
|
80
|
+
// Possible work-around for http://crbug.com/16276.
|
81
|
+
// See also: http://codereview.chromium.org/155418.
|
82
|
+
__ cmp(r3, Operand(JS_GLOBAL_OBJECT_TYPE));
|
83
|
+
__ b(eq, miss);
|
84
|
+
__ cmp(r3, Operand(JS_BUILTINS_OBJECT_TYPE));
|
85
|
+
__ b(eq, miss);
|
86
|
+
|
87
|
+
// Check that the properties array is a dictionary.
|
88
|
+
__ ldr(t0, FieldMemOperand(t1, JSObject::kPropertiesOffset));
|
89
|
+
__ ldr(r3, FieldMemOperand(t0, HeapObject::kMapOffset));
|
90
|
+
__ LoadRoot(ip, Heap::kHashTableMapRootIndex);
|
91
|
+
__ cmp(r3, ip);
|
92
|
+
__ b(ne, miss);
|
93
|
+
|
94
|
+
// Compute the capacity mask.
|
95
|
+
const int kCapacityOffset = StringDictionary::kHeaderSize +
|
96
|
+
StringDictionary::kCapacityIndex * kPointerSize;
|
97
|
+
__ ldr(r3, FieldMemOperand(t0, kCapacityOffset));
|
98
|
+
__ mov(r3, Operand(r3, ASR, kSmiTagSize)); // convert smi to int
|
99
|
+
__ sub(r3, r3, Operand(1));
|
100
|
+
|
101
|
+
const int kElementsStartOffset = StringDictionary::kHeaderSize +
|
102
|
+
StringDictionary::kElementsStartIndex * kPointerSize;
|
103
|
+
|
104
|
+
// Generate an unrolled loop that performs a few probes before
|
105
|
+
// giving up. Measurements done on Gmail indicate that 2 probes
|
106
|
+
// cover ~93% of loads from dictionaries.
|
107
|
+
static const int kProbes = 4;
|
108
|
+
for (int i = 0; i < kProbes; i++) {
|
109
|
+
// Compute the masked index: (hash + i + i * i) & mask.
|
110
|
+
__ ldr(t1, FieldMemOperand(r2, String::kHashFieldOffset));
|
111
|
+
if (i > 0) {
|
112
|
+
// Add the probe offset (i + i * i) left shifted to avoid right shifting
|
113
|
+
// the hash in a separate instruction. The value hash + i + i * i is right
|
114
|
+
// shifted in the following and instruction.
|
115
|
+
ASSERT(StringDictionary::GetProbeOffset(i) <
|
116
|
+
1 << (32 - String::kHashFieldOffset));
|
117
|
+
__ add(t1, t1, Operand(
|
118
|
+
StringDictionary::GetProbeOffset(i) << String::kHashShift));
|
119
|
+
}
|
120
|
+
__ and_(t1, r3, Operand(t1, LSR, String::kHashShift));
|
121
|
+
|
122
|
+
// Scale the index by multiplying by the element size.
|
123
|
+
ASSERT(StringDictionary::kEntrySize == 3);
|
124
|
+
__ add(t1, t1, Operand(t1, LSL, 1)); // t1 = t1 * 3
|
125
|
+
|
126
|
+
// Check if the key is identical to the name.
|
127
|
+
__ add(t1, t0, Operand(t1, LSL, 2));
|
128
|
+
__ ldr(ip, FieldMemOperand(t1, kElementsStartOffset));
|
129
|
+
__ cmp(r2, Operand(ip));
|
130
|
+
if (i != kProbes - 1) {
|
131
|
+
__ b(eq, &done);
|
132
|
+
} else {
|
133
|
+
__ b(ne, miss);
|
134
|
+
}
|
135
|
+
}
|
136
|
+
|
137
|
+
// Check that the value is a normal property.
|
138
|
+
__ bind(&done); // t1 == t0 + 4*index
|
139
|
+
__ ldr(r3, FieldMemOperand(t1, kElementsStartOffset + 2 * kPointerSize));
|
140
|
+
__ tst(r3, Operand(PropertyDetails::TypeField::mask() << kSmiTagSize));
|
141
|
+
__ b(ne, miss);
|
142
|
+
|
143
|
+
// Get the value at the masked, scaled index and return.
|
144
|
+
__ ldr(t1, FieldMemOperand(t1, kElementsStartOffset + 1 * kPointerSize));
|
145
|
+
}
|
146
|
+
|
147
|
+
|
148
|
+
// Helper function used to check that a value is either not an object
|
149
|
+
// or is loaded if it is an object.
|
150
|
+
static void GenerateCheckNonObjectOrLoaded(MacroAssembler* masm,
|
151
|
+
Label* miss,
|
152
|
+
Register value,
|
153
|
+
Register scratch) {
|
154
|
+
Label done;
|
155
|
+
// Check if the value is a Smi.
|
156
|
+
__ tst(value, Operand(kSmiTagMask));
|
157
|
+
__ b(eq, &done);
|
158
|
+
// Check if the object has been loaded.
|
159
|
+
__ ldr(scratch, FieldMemOperand(value, JSObject::kMapOffset));
|
160
|
+
__ ldrb(scratch, FieldMemOperand(scratch, Map::kBitField2Offset));
|
161
|
+
__ tst(scratch, Operand(1 << Map::kNeedsLoading));
|
162
|
+
__ b(ne, miss);
|
163
|
+
__ bind(&done);
|
164
|
+
}
|
165
|
+
|
166
|
+
|
167
|
+
void LoadIC::GenerateArrayLength(MacroAssembler* masm) {
|
168
|
+
// ----------- S t a t e -------------
|
169
|
+
// -- r2 : name
|
170
|
+
// -- lr : return address
|
171
|
+
// -- [sp] : receiver
|
172
|
+
// -----------------------------------
|
173
|
+
|
174
|
+
Label miss;
|
175
|
+
|
176
|
+
__ ldr(r0, MemOperand(sp, 0));
|
177
|
+
|
178
|
+
StubCompiler::GenerateLoadArrayLength(masm, r0, r3, &miss);
|
179
|
+
__ bind(&miss);
|
180
|
+
StubCompiler::GenerateLoadMiss(masm, Code::LOAD_IC);
|
181
|
+
}
|
182
|
+
|
183
|
+
|
184
|
+
void LoadIC::GenerateStringLength(MacroAssembler* masm) {
|
185
|
+
// ----------- S t a t e -------------
|
186
|
+
// -- r2 : name
|
187
|
+
// -- lr : return address
|
188
|
+
// -- [sp] : receiver
|
189
|
+
// -----------------------------------
|
190
|
+
Label miss;
|
191
|
+
|
192
|
+
__ ldr(r0, MemOperand(sp, 0));
|
193
|
+
|
194
|
+
StubCompiler::GenerateLoadStringLength2(masm, r0, r1, r3, &miss);
|
195
|
+
// Cache miss: Jump to runtime.
|
196
|
+
__ bind(&miss);
|
197
|
+
StubCompiler::GenerateLoadMiss(masm, Code::LOAD_IC);
|
198
|
+
}
|
199
|
+
|
200
|
+
|
201
|
+
void LoadIC::GenerateFunctionPrototype(MacroAssembler* masm) {
|
202
|
+
// ----------- S t a t e -------------
|
203
|
+
// -- r2 : name
|
204
|
+
// -- lr : return address
|
205
|
+
// -- [sp] : receiver
|
206
|
+
// -----------------------------------
|
207
|
+
|
208
|
+
Label miss;
|
209
|
+
|
210
|
+
// Load receiver.
|
211
|
+
__ ldr(r0, MemOperand(sp, 0));
|
212
|
+
|
213
|
+
StubCompiler::GenerateLoadFunctionPrototype(masm, r0, r1, r3, &miss);
|
214
|
+
__ bind(&miss);
|
215
|
+
StubCompiler::GenerateLoadMiss(masm, Code::LOAD_IC);
|
216
|
+
}
|
217
|
+
|
218
|
+
|
219
|
+
// Defined in ic.cc.
|
220
|
+
Object* CallIC_Miss(Arguments args);
|
221
|
+
|
222
|
+
void CallIC::GenerateMegamorphic(MacroAssembler* masm, int argc) {
|
223
|
+
// ----------- S t a t e -------------
|
224
|
+
// -- lr: return address
|
225
|
+
// -----------------------------------
|
226
|
+
Label number, non_number, non_string, boolean, probe, miss;
|
227
|
+
|
228
|
+
// Get the receiver of the function from the stack into r1.
|
229
|
+
__ ldr(r1, MemOperand(sp, argc * kPointerSize));
|
230
|
+
// Get the name of the function from the stack; 1 ~ receiver.
|
231
|
+
__ ldr(r2, MemOperand(sp, (argc + 1) * kPointerSize));
|
232
|
+
|
233
|
+
// Probe the stub cache.
|
234
|
+
Code::Flags flags =
|
235
|
+
Code::ComputeFlags(Code::CALL_IC, NOT_IN_LOOP, MONOMORPHIC, NORMAL, argc);
|
236
|
+
StubCache::GenerateProbe(masm, flags, r1, r2, r3, no_reg);
|
237
|
+
|
238
|
+
// If the stub cache probing failed, the receiver might be a value.
|
239
|
+
// For value objects, we use the map of the prototype objects for
|
240
|
+
// the corresponding JSValue for the cache and that is what we need
|
241
|
+
// to probe.
|
242
|
+
//
|
243
|
+
// Check for number.
|
244
|
+
__ tst(r1, Operand(kSmiTagMask));
|
245
|
+
__ b(eq, &number);
|
246
|
+
__ CompareObjectType(r1, r3, r3, HEAP_NUMBER_TYPE);
|
247
|
+
__ b(ne, &non_number);
|
248
|
+
__ bind(&number);
|
249
|
+
StubCompiler::GenerateLoadGlobalFunctionPrototype(
|
250
|
+
masm, Context::NUMBER_FUNCTION_INDEX, r1);
|
251
|
+
__ b(&probe);
|
252
|
+
|
253
|
+
// Check for string.
|
254
|
+
__ bind(&non_number);
|
255
|
+
__ cmp(r3, Operand(FIRST_NONSTRING_TYPE));
|
256
|
+
__ b(hs, &non_string);
|
257
|
+
StubCompiler::GenerateLoadGlobalFunctionPrototype(
|
258
|
+
masm, Context::STRING_FUNCTION_INDEX, r1);
|
259
|
+
__ b(&probe);
|
260
|
+
|
261
|
+
// Check for boolean.
|
262
|
+
__ bind(&non_string);
|
263
|
+
__ LoadRoot(ip, Heap::kTrueValueRootIndex);
|
264
|
+
__ cmp(r1, ip);
|
265
|
+
__ b(eq, &boolean);
|
266
|
+
__ LoadRoot(ip, Heap::kFalseValueRootIndex);
|
267
|
+
__ cmp(r1, ip);
|
268
|
+
__ b(ne, &miss);
|
269
|
+
__ bind(&boolean);
|
270
|
+
StubCompiler::GenerateLoadGlobalFunctionPrototype(
|
271
|
+
masm, Context::BOOLEAN_FUNCTION_INDEX, r1);
|
272
|
+
|
273
|
+
// Probe the stub cache for the value object.
|
274
|
+
__ bind(&probe);
|
275
|
+
StubCache::GenerateProbe(masm, flags, r1, r2, r3, no_reg);
|
276
|
+
|
277
|
+
// Cache miss: Jump to runtime.
|
278
|
+
__ bind(&miss);
|
279
|
+
GenerateMiss(masm, argc);
|
280
|
+
}
|
281
|
+
|
282
|
+
|
283
|
+
static void GenerateNormalHelper(MacroAssembler* masm,
|
284
|
+
int argc,
|
285
|
+
bool is_global_object,
|
286
|
+
Label* miss) {
|
287
|
+
// Search dictionary - put result in register r1.
|
288
|
+
GenerateDictionaryLoad(masm, miss, r0, r1);
|
289
|
+
|
290
|
+
// Check that the value isn't a smi.
|
291
|
+
__ tst(r1, Operand(kSmiTagMask));
|
292
|
+
__ b(eq, miss);
|
293
|
+
|
294
|
+
// Check that the value is a JSFunction.
|
295
|
+
__ CompareObjectType(r1, r0, r0, JS_FUNCTION_TYPE);
|
296
|
+
__ b(ne, miss);
|
297
|
+
|
298
|
+
// Check that the function has been loaded.
|
299
|
+
__ ldr(r0, FieldMemOperand(r1, JSObject::kMapOffset));
|
300
|
+
__ ldrb(r0, FieldMemOperand(r0, Map::kBitField2Offset));
|
301
|
+
__ tst(r0, Operand(1 << Map::kNeedsLoading));
|
302
|
+
__ b(ne, miss);
|
303
|
+
|
304
|
+
// Patch the receiver with the global proxy if necessary.
|
305
|
+
if (is_global_object) {
|
306
|
+
__ ldr(r2, MemOperand(sp, argc * kPointerSize));
|
307
|
+
__ ldr(r2, FieldMemOperand(r2, GlobalObject::kGlobalReceiverOffset));
|
308
|
+
__ str(r2, MemOperand(sp, argc * kPointerSize));
|
309
|
+
}
|
310
|
+
|
311
|
+
// Invoke the function.
|
312
|
+
ParameterCount actual(argc);
|
313
|
+
__ InvokeFunction(r1, actual, JUMP_FUNCTION);
|
314
|
+
}
|
315
|
+
|
316
|
+
|
317
|
+
void CallIC::GenerateNormal(MacroAssembler* masm, int argc) {
|
318
|
+
// ----------- S t a t e -------------
|
319
|
+
// -- lr: return address
|
320
|
+
// -----------------------------------
|
321
|
+
|
322
|
+
Label miss, global_object, non_global_object;
|
323
|
+
|
324
|
+
// Get the receiver of the function from the stack into r1.
|
325
|
+
__ ldr(r1, MemOperand(sp, argc * kPointerSize));
|
326
|
+
// Get the name of the function from the stack; 1 ~ receiver.
|
327
|
+
__ ldr(r2, MemOperand(sp, (argc + 1) * kPointerSize));
|
328
|
+
|
329
|
+
// Check that the receiver isn't a smi.
|
330
|
+
__ tst(r1, Operand(kSmiTagMask));
|
331
|
+
__ b(eq, &miss);
|
332
|
+
|
333
|
+
// Check that the receiver is a valid JS object. Put the map in r3.
|
334
|
+
__ CompareObjectType(r1, r3, r0, FIRST_JS_OBJECT_TYPE);
|
335
|
+
__ b(lt, &miss);
|
336
|
+
|
337
|
+
// If this assert fails, we have to check upper bound too.
|
338
|
+
ASSERT(LAST_TYPE == JS_FUNCTION_TYPE);
|
339
|
+
|
340
|
+
// Check for access to global object.
|
341
|
+
__ cmp(r0, Operand(JS_GLOBAL_OBJECT_TYPE));
|
342
|
+
__ b(eq, &global_object);
|
343
|
+
__ cmp(r0, Operand(JS_BUILTINS_OBJECT_TYPE));
|
344
|
+
__ b(ne, &non_global_object);
|
345
|
+
|
346
|
+
// Accessing global object: Load and invoke.
|
347
|
+
__ bind(&global_object);
|
348
|
+
// Check that the global object does not require access checks.
|
349
|
+
__ ldrb(r3, FieldMemOperand(r3, Map::kBitFieldOffset));
|
350
|
+
__ tst(r3, Operand(1 << Map::kIsAccessCheckNeeded));
|
351
|
+
__ b(ne, &miss);
|
352
|
+
GenerateNormalHelper(masm, argc, true, &miss);
|
353
|
+
|
354
|
+
// Accessing non-global object: Check for access to global proxy.
|
355
|
+
Label global_proxy, invoke;
|
356
|
+
__ bind(&non_global_object);
|
357
|
+
__ cmp(r0, Operand(JS_GLOBAL_PROXY_TYPE));
|
358
|
+
__ b(eq, &global_proxy);
|
359
|
+
// Check that the non-global, non-global-proxy object does not
|
360
|
+
// require access checks.
|
361
|
+
__ ldrb(r3, FieldMemOperand(r3, Map::kBitFieldOffset));
|
362
|
+
__ tst(r3, Operand(1 << Map::kIsAccessCheckNeeded));
|
363
|
+
__ b(ne, &miss);
|
364
|
+
__ bind(&invoke);
|
365
|
+
GenerateNormalHelper(masm, argc, false, &miss);
|
366
|
+
|
367
|
+
// Global object access: Check access rights.
|
368
|
+
__ bind(&global_proxy);
|
369
|
+
__ CheckAccessGlobalProxy(r1, r0, &miss);
|
370
|
+
__ b(&invoke);
|
371
|
+
|
372
|
+
// Cache miss: Jump to runtime.
|
373
|
+
__ bind(&miss);
|
374
|
+
GenerateMiss(masm, argc);
|
375
|
+
}
|
376
|
+
|
377
|
+
|
378
|
+
void CallIC::GenerateMiss(MacroAssembler* masm, int argc) {
|
379
|
+
// ----------- S t a t e -------------
|
380
|
+
// -- lr: return address
|
381
|
+
// -----------------------------------
|
382
|
+
|
383
|
+
// Get the receiver of the function from the stack.
|
384
|
+
__ ldr(r2, MemOperand(sp, argc * kPointerSize));
|
385
|
+
// Get the name of the function to call from the stack.
|
386
|
+
__ ldr(r1, MemOperand(sp, (argc + 1) * kPointerSize));
|
387
|
+
|
388
|
+
__ EnterInternalFrame();
|
389
|
+
|
390
|
+
// Push the receiver and the name of the function.
|
391
|
+
__ stm(db_w, sp, r1.bit() | r2.bit());
|
392
|
+
|
393
|
+
// Call the entry.
|
394
|
+
__ mov(r0, Operand(2));
|
395
|
+
__ mov(r1, Operand(ExternalReference(IC_Utility(kCallIC_Miss))));
|
396
|
+
|
397
|
+
CEntryStub stub(1);
|
398
|
+
__ CallStub(&stub);
|
399
|
+
|
400
|
+
// Move result to r1 and leave the internal frame.
|
401
|
+
__ mov(r1, Operand(r0));
|
402
|
+
__ LeaveInternalFrame();
|
403
|
+
|
404
|
+
// Check if the receiver is a global object of some sort.
|
405
|
+
Label invoke, global;
|
406
|
+
__ ldr(r2, MemOperand(sp, argc * kPointerSize)); // receiver
|
407
|
+
__ tst(r2, Operand(kSmiTagMask));
|
408
|
+
__ b(eq, &invoke);
|
409
|
+
__ CompareObjectType(r2, r3, r3, JS_GLOBAL_OBJECT_TYPE);
|
410
|
+
__ b(eq, &global);
|
411
|
+
__ cmp(r3, Operand(JS_BUILTINS_OBJECT_TYPE));
|
412
|
+
__ b(ne, &invoke);
|
413
|
+
|
414
|
+
// Patch the receiver on the stack.
|
415
|
+
__ bind(&global);
|
416
|
+
__ ldr(r2, FieldMemOperand(r2, GlobalObject::kGlobalReceiverOffset));
|
417
|
+
__ str(r2, MemOperand(sp, argc * kPointerSize));
|
418
|
+
|
419
|
+
// Invoke the function.
|
420
|
+
ParameterCount actual(argc);
|
421
|
+
__ bind(&invoke);
|
422
|
+
__ InvokeFunction(r1, actual, JUMP_FUNCTION);
|
423
|
+
}
|
424
|
+
|
425
|
+
|
426
|
+
// Defined in ic.cc.
|
427
|
+
Object* LoadIC_Miss(Arguments args);
|
428
|
+
|
429
|
+
void LoadIC::GenerateMegamorphic(MacroAssembler* masm) {
|
430
|
+
// ----------- S t a t e -------------
|
431
|
+
// -- r2 : name
|
432
|
+
// -- lr : return address
|
433
|
+
// -- [sp] : receiver
|
434
|
+
// -----------------------------------
|
435
|
+
|
436
|
+
__ ldr(r0, MemOperand(sp, 0));
|
437
|
+
// Probe the stub cache.
|
438
|
+
Code::Flags flags = Code::ComputeFlags(Code::LOAD_IC,
|
439
|
+
NOT_IN_LOOP,
|
440
|
+
MONOMORPHIC);
|
441
|
+
StubCache::GenerateProbe(masm, flags, r0, r2, r3, no_reg);
|
442
|
+
|
443
|
+
// Cache miss: Jump to runtime.
|
444
|
+
Generate(masm, ExternalReference(IC_Utility(kLoadIC_Miss)));
|
445
|
+
}
|
446
|
+
|
447
|
+
|
448
|
+
void LoadIC::GenerateNormal(MacroAssembler* masm) {
|
449
|
+
// ----------- S t a t e -------------
|
450
|
+
// -- r2 : name
|
451
|
+
// -- lr : return address
|
452
|
+
// -- [sp] : receiver
|
453
|
+
// -----------------------------------
|
454
|
+
|
455
|
+
Label miss, probe, global;
|
456
|
+
|
457
|
+
__ ldr(r0, MemOperand(sp, 0));
|
458
|
+
// Check that the receiver isn't a smi.
|
459
|
+
__ tst(r0, Operand(kSmiTagMask));
|
460
|
+
__ b(eq, &miss);
|
461
|
+
|
462
|
+
// Check that the receiver is a valid JS object. Put the map in r3.
|
463
|
+
__ CompareObjectType(r0, r3, r1, FIRST_JS_OBJECT_TYPE);
|
464
|
+
__ b(lt, &miss);
|
465
|
+
// If this assert fails, we have to check upper bound too.
|
466
|
+
ASSERT(LAST_TYPE == JS_FUNCTION_TYPE);
|
467
|
+
|
468
|
+
// Check for access to global object (unlikely).
|
469
|
+
__ cmp(r1, Operand(JS_GLOBAL_PROXY_TYPE));
|
470
|
+
__ b(eq, &global);
|
471
|
+
|
472
|
+
// Check for non-global object that requires access check.
|
473
|
+
__ ldrb(r3, FieldMemOperand(r3, Map::kBitFieldOffset));
|
474
|
+
__ tst(r3, Operand(1 << Map::kIsAccessCheckNeeded));
|
475
|
+
__ b(ne, &miss);
|
476
|
+
|
477
|
+
__ bind(&probe);
|
478
|
+
GenerateDictionaryLoad(masm, &miss, r1, r0);
|
479
|
+
GenerateCheckNonObjectOrLoaded(masm, &miss, r0, r1);
|
480
|
+
__ Ret();
|
481
|
+
|
482
|
+
// Global object access: Check access rights.
|
483
|
+
__ bind(&global);
|
484
|
+
__ CheckAccessGlobalProxy(r0, r1, &miss);
|
485
|
+
__ b(&probe);
|
486
|
+
|
487
|
+
// Cache miss: Restore receiver from stack and jump to runtime.
|
488
|
+
__ bind(&miss);
|
489
|
+
Generate(masm, ExternalReference(IC_Utility(kLoadIC_Miss)));
|
490
|
+
}
|
491
|
+
|
492
|
+
|
493
|
+
void LoadIC::GenerateMiss(MacroAssembler* masm) {
|
494
|
+
Generate(masm, ExternalReference(IC_Utility(kLoadIC_Miss)));
|
495
|
+
}
|
496
|
+
|
497
|
+
|
498
|
+
void LoadIC::Generate(MacroAssembler* masm, const ExternalReference& f) {
|
499
|
+
// ----------- S t a t e -------------
|
500
|
+
// -- r2 : name
|
501
|
+
// -- lr : return address
|
502
|
+
// -- [sp] : receiver
|
503
|
+
// -----------------------------------
|
504
|
+
|
505
|
+
__ ldr(r3, MemOperand(sp, 0));
|
506
|
+
__ stm(db_w, sp, r2.bit() | r3.bit());
|
507
|
+
|
508
|
+
// Perform tail call to the entry.
|
509
|
+
__ TailCallRuntime(f, 2, 1);
|
510
|
+
}
|
511
|
+
|
512
|
+
|
513
|
+
// TODO(181): Implement map patching once loop nesting is tracked on the
|
514
|
+
// ARM platform so we can generate inlined fast-case code loads in
|
515
|
+
// loops.
|
516
|
+
void LoadIC::ClearInlinedVersion(Address address) {}
|
517
|
+
bool LoadIC::PatchInlinedLoad(Address address, Object* map, int offset) {
|
518
|
+
return false;
|
519
|
+
}
|
520
|
+
|
521
|
+
void KeyedLoadIC::ClearInlinedVersion(Address address) {}
|
522
|
+
bool KeyedLoadIC::PatchInlinedLoad(Address address, Object* map) {
|
523
|
+
return false;
|
524
|
+
}
|
525
|
+
|
526
|
+
void KeyedStoreIC::ClearInlinedVersion(Address address) {}
|
527
|
+
void KeyedStoreIC::RestoreInlinedVersion(Address address) {}
|
528
|
+
bool KeyedStoreIC::PatchInlinedStore(Address address, Object* map) {
|
529
|
+
return false;
|
530
|
+
}
|
531
|
+
|
532
|
+
|
533
|
+
Object* KeyedLoadIC_Miss(Arguments args);
|
534
|
+
|
535
|
+
|
536
|
+
void KeyedLoadIC::GenerateMiss(MacroAssembler* masm) {
|
537
|
+
Generate(masm, ExternalReference(IC_Utility(kKeyedLoadIC_Miss)));
|
538
|
+
}
|
539
|
+
|
540
|
+
|
541
|
+
void KeyedLoadIC::Generate(MacroAssembler* masm, const ExternalReference& f) {
|
542
|
+
// ---------- S t a t e --------------
|
543
|
+
// -- lr : return address
|
544
|
+
// -- sp[0] : key
|
545
|
+
// -- sp[4] : receiver
|
546
|
+
__ ldm(ia, sp, r2.bit() | r3.bit());
|
547
|
+
__ stm(db_w, sp, r2.bit() | r3.bit());
|
548
|
+
|
549
|
+
__ TailCallRuntime(f, 2, 1);
|
550
|
+
}
|
551
|
+
|
552
|
+
|
553
|
+
void KeyedLoadIC::GenerateGeneric(MacroAssembler* masm) {
|
554
|
+
// ---------- S t a t e --------------
|
555
|
+
// -- lr : return address
|
556
|
+
// -- sp[0] : key
|
557
|
+
// -- sp[4] : receiver
|
558
|
+
Label slow, fast;
|
559
|
+
|
560
|
+
// Get the key and receiver object from the stack.
|
561
|
+
__ ldm(ia, sp, r0.bit() | r1.bit());
|
562
|
+
// Check that the key is a smi.
|
563
|
+
__ tst(r0, Operand(kSmiTagMask));
|
564
|
+
__ b(ne, &slow);
|
565
|
+
__ mov(r0, Operand(r0, ASR, kSmiTagSize));
|
566
|
+
// Check that the object isn't a smi.
|
567
|
+
__ tst(r1, Operand(kSmiTagMask));
|
568
|
+
__ b(eq, &slow);
|
569
|
+
|
570
|
+
// Get the map of the receiver.
|
571
|
+
__ ldr(r2, FieldMemOperand(r1, HeapObject::kMapOffset));
|
572
|
+
|
573
|
+
// Check bit field.
|
574
|
+
__ ldrb(r3, FieldMemOperand(r2, Map::kBitFieldOffset));
|
575
|
+
__ tst(r3, Operand(kSlowCaseBitFieldMask));
|
576
|
+
__ b(ne, &slow);
|
577
|
+
// Check that the object is some kind of JS object EXCEPT JS Value type.
|
578
|
+
// In the case that the object is a value-wrapper object,
|
579
|
+
// we enter the runtime system to make sure that indexing into string
|
580
|
+
// objects work as intended.
|
581
|
+
ASSERT(JS_OBJECT_TYPE > JS_VALUE_TYPE);
|
582
|
+
__ ldrb(r2, FieldMemOperand(r2, Map::kInstanceTypeOffset));
|
583
|
+
__ cmp(r2, Operand(JS_OBJECT_TYPE));
|
584
|
+
__ b(lt, &slow);
|
585
|
+
|
586
|
+
// Get the elements array of the object.
|
587
|
+
__ ldr(r1, FieldMemOperand(r1, JSObject::kElementsOffset));
|
588
|
+
// Check that the object is in fast mode (not dictionary).
|
589
|
+
__ ldr(r3, FieldMemOperand(r1, HeapObject::kMapOffset));
|
590
|
+
__ LoadRoot(ip, Heap::kFixedArrayMapRootIndex);
|
591
|
+
__ cmp(r3, ip);
|
592
|
+
__ b(ne, &slow);
|
593
|
+
// Check that the key (index) is within bounds.
|
594
|
+
__ ldr(r3, FieldMemOperand(r1, Array::kLengthOffset));
|
595
|
+
__ cmp(r0, Operand(r3));
|
596
|
+
__ b(lo, &fast);
|
597
|
+
|
598
|
+
// Slow case: Push extra copies of the arguments (2).
|
599
|
+
__ bind(&slow);
|
600
|
+
__ IncrementCounter(&Counters::keyed_load_generic_slow, 1, r0, r1);
|
601
|
+
__ ldm(ia, sp, r0.bit() | r1.bit());
|
602
|
+
__ stm(db_w, sp, r0.bit() | r1.bit());
|
603
|
+
// Do tail-call to runtime routine.
|
604
|
+
__ TailCallRuntime(ExternalReference(Runtime::kGetProperty), 2, 1);
|
605
|
+
|
606
|
+
// Fast case: Do the load.
|
607
|
+
__ bind(&fast);
|
608
|
+
__ add(r3, r1, Operand(FixedArray::kHeaderSize - kHeapObjectTag));
|
609
|
+
__ ldr(r0, MemOperand(r3, r0, LSL, kPointerSizeLog2));
|
610
|
+
__ LoadRoot(ip, Heap::kTheHoleValueRootIndex);
|
611
|
+
__ cmp(r0, ip);
|
612
|
+
// In case the loaded value is the_hole we have to consult GetProperty
|
613
|
+
// to ensure the prototype chain is searched.
|
614
|
+
__ b(eq, &slow);
|
615
|
+
|
616
|
+
__ Ret();
|
617
|
+
}
|
618
|
+
|
619
|
+
|
620
|
+
void KeyedLoadIC::GenerateString(MacroAssembler* masm) {
|
621
|
+
// ---------- S t a t e --------------
|
622
|
+
// -- lr : return address
|
623
|
+
// -- sp[0] : key
|
624
|
+
// -- sp[4] : receiver
|
625
|
+
GenerateGeneric(masm);
|
626
|
+
}
|
627
|
+
|
628
|
+
|
629
|
+
void KeyedLoadIC::GenerateExternalArray(MacroAssembler* masm,
|
630
|
+
ExternalArrayType array_type) {
|
631
|
+
// TODO(476): port specialized code.
|
632
|
+
GenerateGeneric(masm);
|
633
|
+
}
|
634
|
+
|
635
|
+
|
636
|
+
void KeyedStoreIC::Generate(MacroAssembler* masm,
|
637
|
+
const ExternalReference& f) {
|
638
|
+
// ---------- S t a t e --------------
|
639
|
+
// -- r0 : value
|
640
|
+
// -- lr : return address
|
641
|
+
// -- sp[0] : key
|
642
|
+
// -- sp[1] : receiver
|
643
|
+
|
644
|
+
__ ldm(ia, sp, r2.bit() | r3.bit());
|
645
|
+
__ stm(db_w, sp, r0.bit() | r2.bit() | r3.bit());
|
646
|
+
|
647
|
+
__ TailCallRuntime(f, 3, 1);
|
648
|
+
}
|
649
|
+
|
650
|
+
|
651
|
+
void KeyedStoreIC::GenerateGeneric(MacroAssembler* masm) {
|
652
|
+
// ---------- S t a t e --------------
|
653
|
+
// -- r0 : value
|
654
|
+
// -- lr : return address
|
655
|
+
// -- sp[0] : key
|
656
|
+
// -- sp[1] : receiver
|
657
|
+
Label slow, fast, array, extra, exit;
|
658
|
+
// Get the key and the object from the stack.
|
659
|
+
__ ldm(ia, sp, r1.bit() | r3.bit()); // r1 = key, r3 = receiver
|
660
|
+
// Check that the key is a smi.
|
661
|
+
__ tst(r1, Operand(kSmiTagMask));
|
662
|
+
__ b(ne, &slow);
|
663
|
+
// Check that the object isn't a smi.
|
664
|
+
__ tst(r3, Operand(kSmiTagMask));
|
665
|
+
__ b(eq, &slow);
|
666
|
+
// Get the map of the object.
|
667
|
+
__ ldr(r2, FieldMemOperand(r3, HeapObject::kMapOffset));
|
668
|
+
// Check that the receiver does not require access checks. We need
|
669
|
+
// to do this because this generic stub does not perform map checks.
|
670
|
+
__ ldrb(ip, FieldMemOperand(r2, Map::kBitFieldOffset));
|
671
|
+
__ tst(ip, Operand(1 << Map::kIsAccessCheckNeeded));
|
672
|
+
__ b(ne, &slow);
|
673
|
+
// Check if the object is a JS array or not.
|
674
|
+
__ ldrb(r2, FieldMemOperand(r2, Map::kInstanceTypeOffset));
|
675
|
+
__ cmp(r2, Operand(JS_ARRAY_TYPE));
|
676
|
+
// r1 == key.
|
677
|
+
__ b(eq, &array);
|
678
|
+
// Check that the object is some kind of JS object.
|
679
|
+
__ cmp(r2, Operand(FIRST_JS_OBJECT_TYPE));
|
680
|
+
__ b(lt, &slow);
|
681
|
+
|
682
|
+
|
683
|
+
// Object case: Check key against length in the elements array.
|
684
|
+
__ ldr(r3, FieldMemOperand(r3, JSObject::kElementsOffset));
|
685
|
+
// Check that the object is in fast mode (not dictionary).
|
686
|
+
__ ldr(r2, FieldMemOperand(r3, HeapObject::kMapOffset));
|
687
|
+
__ LoadRoot(ip, Heap::kFixedArrayMapRootIndex);
|
688
|
+
__ cmp(r2, ip);
|
689
|
+
__ b(ne, &slow);
|
690
|
+
// Untag the key (for checking against untagged length in the fixed array).
|
691
|
+
__ mov(r1, Operand(r1, ASR, kSmiTagSize));
|
692
|
+
// Compute address to store into and check array bounds.
|
693
|
+
__ add(r2, r3, Operand(FixedArray::kHeaderSize - kHeapObjectTag));
|
694
|
+
__ add(r2, r2, Operand(r1, LSL, kPointerSizeLog2));
|
695
|
+
__ ldr(ip, FieldMemOperand(r3, FixedArray::kLengthOffset));
|
696
|
+
__ cmp(r1, Operand(ip));
|
697
|
+
__ b(lo, &fast);
|
698
|
+
|
699
|
+
|
700
|
+
// Slow case: Push extra copies of the arguments (3).
|
701
|
+
__ bind(&slow);
|
702
|
+
__ ldm(ia, sp, r1.bit() | r3.bit()); // r0 == value, r1 == key, r3 == object
|
703
|
+
__ stm(db_w, sp, r0.bit() | r1.bit() | r3.bit());
|
704
|
+
// Do tail-call to runtime routine.
|
705
|
+
__ TailCallRuntime(ExternalReference(Runtime::kSetProperty), 3, 1);
|
706
|
+
|
707
|
+
// Extra capacity case: Check if there is extra capacity to
|
708
|
+
// perform the store and update the length. Used for adding one
|
709
|
+
// element to the array by writing to array[array.length].
|
710
|
+
// r0 == value, r1 == key, r2 == elements, r3 == object
|
711
|
+
__ bind(&extra);
|
712
|
+
__ b(ne, &slow); // do not leave holes in the array
|
713
|
+
__ mov(r1, Operand(r1, ASR, kSmiTagSize)); // untag
|
714
|
+
__ ldr(ip, FieldMemOperand(r2, Array::kLengthOffset));
|
715
|
+
__ cmp(r1, Operand(ip));
|
716
|
+
__ b(hs, &slow);
|
717
|
+
__ mov(r1, Operand(r1, LSL, kSmiTagSize)); // restore tag
|
718
|
+
__ add(r1, r1, Operand(1 << kSmiTagSize)); // and increment
|
719
|
+
__ str(r1, FieldMemOperand(r3, JSArray::kLengthOffset));
|
720
|
+
__ mov(r3, Operand(r2));
|
721
|
+
// NOTE: Computing the address to store into must take the fact
|
722
|
+
// that the key has been incremented into account.
|
723
|
+
int displacement = FixedArray::kHeaderSize - kHeapObjectTag -
|
724
|
+
((1 << kSmiTagSize) * 2);
|
725
|
+
__ add(r2, r2, Operand(displacement));
|
726
|
+
__ add(r2, r2, Operand(r1, LSL, kPointerSizeLog2 - kSmiTagSize));
|
727
|
+
__ b(&fast);
|
728
|
+
|
729
|
+
|
730
|
+
// Array case: Get the length and the elements array from the JS
|
731
|
+
// array. Check that the array is in fast mode; if it is the
|
732
|
+
// length is always a smi.
|
733
|
+
// r0 == value, r3 == object
|
734
|
+
__ bind(&array);
|
735
|
+
__ ldr(r2, FieldMemOperand(r3, JSObject::kElementsOffset));
|
736
|
+
__ ldr(r1, FieldMemOperand(r2, HeapObject::kMapOffset));
|
737
|
+
__ LoadRoot(ip, Heap::kFixedArrayMapRootIndex);
|
738
|
+
__ cmp(r1, ip);
|
739
|
+
__ b(ne, &slow);
|
740
|
+
|
741
|
+
// Check the key against the length in the array, compute the
|
742
|
+
// address to store into and fall through to fast case.
|
743
|
+
__ ldr(r1, MemOperand(sp)); // restore key
|
744
|
+
// r0 == value, r1 == key, r2 == elements, r3 == object.
|
745
|
+
__ ldr(ip, FieldMemOperand(r3, JSArray::kLengthOffset));
|
746
|
+
__ cmp(r1, Operand(ip));
|
747
|
+
__ b(hs, &extra);
|
748
|
+
__ mov(r3, Operand(r2));
|
749
|
+
__ add(r2, r2, Operand(FixedArray::kHeaderSize - kHeapObjectTag));
|
750
|
+
__ add(r2, r2, Operand(r1, LSL, kPointerSizeLog2 - kSmiTagSize));
|
751
|
+
|
752
|
+
|
753
|
+
// Fast case: Do the store.
|
754
|
+
// r0 == value, r2 == address to store into, r3 == elements
|
755
|
+
__ bind(&fast);
|
756
|
+
__ str(r0, MemOperand(r2));
|
757
|
+
// Skip write barrier if the written value is a smi.
|
758
|
+
__ tst(r0, Operand(kSmiTagMask));
|
759
|
+
__ b(eq, &exit);
|
760
|
+
// Update write barrier for the elements array address.
|
761
|
+
__ sub(r1, r2, Operand(r3));
|
762
|
+
__ RecordWrite(r3, r1, r2);
|
763
|
+
|
764
|
+
__ bind(&exit);
|
765
|
+
__ Ret();
|
766
|
+
}
|
767
|
+
|
768
|
+
|
769
|
+
void KeyedStoreIC::GenerateExternalArray(MacroAssembler* masm,
|
770
|
+
ExternalArrayType array_type) {
|
771
|
+
// TODO(476): port specialized code.
|
772
|
+
GenerateGeneric(masm);
|
773
|
+
}
|
774
|
+
|
775
|
+
|
776
|
+
void KeyedStoreIC::GenerateExtendStorage(MacroAssembler* masm) {
|
777
|
+
// ---------- S t a t e --------------
|
778
|
+
// -- r0 : value
|
779
|
+
// -- lr : return address
|
780
|
+
// -- sp[0] : key
|
781
|
+
// -- sp[1] : receiver
|
782
|
+
// ----------- S t a t e -------------
|
783
|
+
|
784
|
+
__ ldm(ia, sp, r2.bit() | r3.bit());
|
785
|
+
__ stm(db_w, sp, r0.bit() | r2.bit() | r3.bit());
|
786
|
+
|
787
|
+
// Perform tail call to the entry.
|
788
|
+
__ TailCallRuntime(
|
789
|
+
ExternalReference(IC_Utility(kSharedStoreIC_ExtendStorage)), 3, 1);
|
790
|
+
}
|
791
|
+
|
792
|
+
|
793
|
+
void StoreIC::GenerateMegamorphic(MacroAssembler* masm) {
|
794
|
+
// ----------- S t a t e -------------
|
795
|
+
// -- r0 : value
|
796
|
+
// -- r2 : name
|
797
|
+
// -- lr : return address
|
798
|
+
// -- [sp] : receiver
|
799
|
+
// -----------------------------------
|
800
|
+
|
801
|
+
// Get the receiver from the stack and probe the stub cache.
|
802
|
+
__ ldr(r1, MemOperand(sp));
|
803
|
+
Code::Flags flags = Code::ComputeFlags(Code::STORE_IC,
|
804
|
+
NOT_IN_LOOP,
|
805
|
+
MONOMORPHIC);
|
806
|
+
StubCache::GenerateProbe(masm, flags, r1, r2, r3, no_reg);
|
807
|
+
|
808
|
+
// Cache miss: Jump to runtime.
|
809
|
+
Generate(masm, ExternalReference(IC_Utility(kStoreIC_Miss)));
|
810
|
+
}
|
811
|
+
|
812
|
+
|
813
|
+
void StoreIC::GenerateExtendStorage(MacroAssembler* masm) {
|
814
|
+
// ----------- S t a t e -------------
|
815
|
+
// -- r0 : value
|
816
|
+
// -- r2 : name
|
817
|
+
// -- lr : return address
|
818
|
+
// -- [sp] : receiver
|
819
|
+
// -----------------------------------
|
820
|
+
|
821
|
+
__ ldr(r3, MemOperand(sp)); // copy receiver
|
822
|
+
__ stm(db_w, sp, r0.bit() | r2.bit() | r3.bit());
|
823
|
+
|
824
|
+
// Perform tail call to the entry.
|
825
|
+
__ TailCallRuntime(
|
826
|
+
ExternalReference(IC_Utility(kSharedStoreIC_ExtendStorage)), 3, 1);
|
827
|
+
}
|
828
|
+
|
829
|
+
|
830
|
+
void StoreIC::Generate(MacroAssembler* masm, const ExternalReference& f) {
|
831
|
+
// ----------- S t a t e -------------
|
832
|
+
// -- r0 : value
|
833
|
+
// -- r2 : name
|
834
|
+
// -- lr : return address
|
835
|
+
// -- [sp] : receiver
|
836
|
+
// -----------------------------------
|
837
|
+
|
838
|
+
__ ldr(r3, MemOperand(sp)); // copy receiver
|
839
|
+
__ stm(db_w, sp, r0.bit() | r2.bit() | r3.bit());
|
840
|
+
|
841
|
+
// Perform tail call to the entry.
|
842
|
+
__ TailCallRuntime(f, 3, 1);
|
843
|
+
}
|
844
|
+
|
845
|
+
|
846
|
+
#undef __
|
847
|
+
|
848
|
+
|
849
|
+
} } // namespace v8::internal
|