libv8 3.11.8.17 → 3.16.14.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +1 -2
- data/Gemfile +1 -1
- data/Rakefile +6 -7
- data/lib/libv8/version.rb +1 -1
- data/vendor/v8/.gitignore +24 -3
- data/vendor/v8/AUTHORS +7 -0
- data/vendor/v8/ChangeLog +839 -0
- data/vendor/v8/DEPS +1 -1
- data/vendor/v8/Makefile.android +92 -0
- data/vendor/v8/OWNERS +11 -0
- data/vendor/v8/PRESUBMIT.py +71 -0
- data/vendor/v8/SConstruct +34 -39
- data/vendor/v8/build/android.gypi +56 -37
- data/vendor/v8/build/common.gypi +112 -30
- data/vendor/v8/build/gyp_v8 +1 -1
- data/vendor/v8/build/standalone.gypi +15 -11
- data/vendor/v8/include/v8-debug.h +9 -1
- data/vendor/v8/include/v8-preparser.h +4 -3
- data/vendor/v8/include/v8-profiler.h +25 -25
- data/vendor/v8/include/v8-testing.h +4 -3
- data/vendor/v8/include/v8.h +994 -540
- data/vendor/v8/preparser/preparser-process.cc +3 -3
- data/vendor/v8/samples/lineprocessor.cc +20 -27
- data/vendor/v8/samples/process.cc +18 -14
- data/vendor/v8/samples/shell.cc +16 -15
- data/vendor/v8/src/SConscript +15 -14
- data/vendor/v8/src/accessors.cc +169 -77
- data/vendor/v8/src/accessors.h +4 -0
- data/vendor/v8/src/allocation-inl.h +2 -2
- data/vendor/v8/src/allocation.h +7 -7
- data/vendor/v8/src/api.cc +810 -497
- data/vendor/v8/src/api.h +85 -60
- data/vendor/v8/src/arm/assembler-arm-inl.h +179 -22
- data/vendor/v8/src/arm/assembler-arm.cc +633 -264
- data/vendor/v8/src/arm/assembler-arm.h +264 -197
- data/vendor/v8/src/arm/builtins-arm.cc +117 -27
- data/vendor/v8/src/arm/code-stubs-arm.cc +1241 -700
- data/vendor/v8/src/arm/code-stubs-arm.h +35 -138
- data/vendor/v8/src/arm/codegen-arm.cc +285 -16
- data/vendor/v8/src/arm/codegen-arm.h +22 -0
- data/vendor/v8/src/arm/constants-arm.cc +5 -3
- data/vendor/v8/src/arm/constants-arm.h +24 -11
- data/vendor/v8/src/arm/debug-arm.cc +3 -3
- data/vendor/v8/src/arm/deoptimizer-arm.cc +382 -92
- data/vendor/v8/src/arm/disasm-arm.cc +61 -12
- data/vendor/v8/src/arm/frames-arm.h +0 -14
- data/vendor/v8/src/arm/full-codegen-arm.cc +332 -304
- data/vendor/v8/src/arm/ic-arm.cc +180 -259
- data/vendor/v8/src/arm/lithium-arm.cc +364 -316
- data/vendor/v8/src/arm/lithium-arm.h +512 -275
- data/vendor/v8/src/arm/lithium-codegen-arm.cc +1768 -809
- data/vendor/v8/src/arm/lithium-codegen-arm.h +97 -35
- data/vendor/v8/src/arm/lithium-gap-resolver-arm.cc +12 -5
- data/vendor/v8/src/arm/macro-assembler-arm.cc +439 -228
- data/vendor/v8/src/arm/macro-assembler-arm.h +116 -70
- data/vendor/v8/src/arm/regexp-macro-assembler-arm.cc +54 -44
- data/vendor/v8/src/arm/regexp-macro-assembler-arm.h +3 -10
- data/vendor/v8/src/arm/simulator-arm.cc +272 -238
- data/vendor/v8/src/arm/simulator-arm.h +38 -8
- data/vendor/v8/src/arm/stub-cache-arm.cc +522 -895
- data/vendor/v8/src/array.js +101 -70
- data/vendor/v8/src/assembler.cc +270 -19
- data/vendor/v8/src/assembler.h +110 -15
- data/vendor/v8/src/ast.cc +79 -69
- data/vendor/v8/src/ast.h +255 -301
- data/vendor/v8/src/atomicops.h +7 -1
- data/vendor/v8/src/atomicops_internals_tsan.h +335 -0
- data/vendor/v8/src/bootstrapper.cc +481 -418
- data/vendor/v8/src/bootstrapper.h +4 -4
- data/vendor/v8/src/builtins.cc +498 -311
- data/vendor/v8/src/builtins.h +75 -47
- data/vendor/v8/src/checks.cc +2 -1
- data/vendor/v8/src/checks.h +8 -0
- data/vendor/v8/src/code-stubs-hydrogen.cc +253 -0
- data/vendor/v8/src/code-stubs.cc +249 -84
- data/vendor/v8/src/code-stubs.h +501 -169
- data/vendor/v8/src/codegen.cc +36 -18
- data/vendor/v8/src/codegen.h +25 -3
- data/vendor/v8/src/collection.js +54 -17
- data/vendor/v8/src/compilation-cache.cc +24 -16
- data/vendor/v8/src/compilation-cache.h +15 -6
- data/vendor/v8/src/compiler.cc +497 -195
- data/vendor/v8/src/compiler.h +246 -38
- data/vendor/v8/src/contexts.cc +64 -24
- data/vendor/v8/src/contexts.h +60 -29
- data/vendor/v8/src/conversions-inl.h +24 -14
- data/vendor/v8/src/conversions.h +7 -4
- data/vendor/v8/src/counters.cc +21 -12
- data/vendor/v8/src/counters.h +44 -16
- data/vendor/v8/src/cpu-profiler.h +1 -1
- data/vendor/v8/src/d8-debug.cc +2 -2
- data/vendor/v8/src/d8-readline.cc +13 -2
- data/vendor/v8/src/d8.cc +681 -273
- data/vendor/v8/src/d8.gyp +4 -4
- data/vendor/v8/src/d8.h +38 -18
- data/vendor/v8/src/d8.js +0 -617
- data/vendor/v8/src/data-flow.h +55 -0
- data/vendor/v8/src/date.js +1 -42
- data/vendor/v8/src/dateparser-inl.h +5 -1
- data/vendor/v8/src/debug-agent.cc +10 -15
- data/vendor/v8/src/debug-debugger.js +147 -149
- data/vendor/v8/src/debug.cc +323 -164
- data/vendor/v8/src/debug.h +26 -14
- data/vendor/v8/src/deoptimizer.cc +765 -290
- data/vendor/v8/src/deoptimizer.h +130 -28
- data/vendor/v8/src/disassembler.cc +10 -4
- data/vendor/v8/src/elements-kind.cc +7 -2
- data/vendor/v8/src/elements-kind.h +19 -0
- data/vendor/v8/src/elements.cc +607 -285
- data/vendor/v8/src/elements.h +36 -13
- data/vendor/v8/src/execution.cc +52 -31
- data/vendor/v8/src/execution.h +4 -4
- data/vendor/v8/src/extensions/externalize-string-extension.cc +5 -4
- data/vendor/v8/src/extensions/gc-extension.cc +5 -1
- data/vendor/v8/src/extensions/statistics-extension.cc +153 -0
- data/vendor/v8/src/{inspector.h → extensions/statistics-extension.h} +12 -23
- data/vendor/v8/src/factory.cc +101 -134
- data/vendor/v8/src/factory.h +36 -31
- data/vendor/v8/src/flag-definitions.h +102 -25
- data/vendor/v8/src/flags.cc +9 -5
- data/vendor/v8/src/frames-inl.h +10 -0
- data/vendor/v8/src/frames.cc +116 -26
- data/vendor/v8/src/frames.h +96 -12
- data/vendor/v8/src/full-codegen.cc +219 -74
- data/vendor/v8/src/full-codegen.h +63 -21
- data/vendor/v8/src/func-name-inferrer.cc +8 -7
- data/vendor/v8/src/func-name-inferrer.h +5 -3
- data/vendor/v8/src/gdb-jit.cc +71 -57
- data/vendor/v8/src/global-handles.cc +230 -101
- data/vendor/v8/src/global-handles.h +26 -27
- data/vendor/v8/src/globals.h +17 -19
- data/vendor/v8/src/handles-inl.h +59 -12
- data/vendor/v8/src/handles.cc +180 -200
- data/vendor/v8/src/handles.h +80 -11
- data/vendor/v8/src/hashmap.h +60 -40
- data/vendor/v8/src/heap-inl.h +107 -45
- data/vendor/v8/src/heap-profiler.cc +38 -19
- data/vendor/v8/src/heap-profiler.h +24 -14
- data/vendor/v8/src/heap.cc +1123 -738
- data/vendor/v8/src/heap.h +385 -146
- data/vendor/v8/src/hydrogen-instructions.cc +700 -217
- data/vendor/v8/src/hydrogen-instructions.h +1158 -472
- data/vendor/v8/src/hydrogen.cc +3319 -1662
- data/vendor/v8/src/hydrogen.h +411 -170
- data/vendor/v8/src/ia32/assembler-ia32-inl.h +46 -16
- data/vendor/v8/src/ia32/assembler-ia32.cc +131 -61
- data/vendor/v8/src/ia32/assembler-ia32.h +115 -57
- data/vendor/v8/src/ia32/builtins-ia32.cc +99 -5
- data/vendor/v8/src/ia32/code-stubs-ia32.cc +787 -495
- data/vendor/v8/src/ia32/code-stubs-ia32.h +10 -100
- data/vendor/v8/src/ia32/codegen-ia32.cc +227 -23
- data/vendor/v8/src/ia32/codegen-ia32.h +14 -0
- data/vendor/v8/src/ia32/deoptimizer-ia32.cc +428 -87
- data/vendor/v8/src/ia32/disasm-ia32.cc +28 -1
- data/vendor/v8/src/ia32/frames-ia32.h +6 -16
- data/vendor/v8/src/ia32/full-codegen-ia32.cc +280 -272
- data/vendor/v8/src/ia32/ic-ia32.cc +150 -250
- data/vendor/v8/src/ia32/lithium-codegen-ia32.cc +1600 -517
- data/vendor/v8/src/ia32/lithium-codegen-ia32.h +90 -24
- data/vendor/v8/src/ia32/lithium-gap-resolver-ia32.cc +10 -6
- data/vendor/v8/src/ia32/lithium-gap-resolver-ia32.h +2 -2
- data/vendor/v8/src/ia32/lithium-ia32.cc +405 -302
- data/vendor/v8/src/ia32/lithium-ia32.h +526 -271
- data/vendor/v8/src/ia32/macro-assembler-ia32.cc +378 -119
- data/vendor/v8/src/ia32/macro-assembler-ia32.h +62 -28
- data/vendor/v8/src/ia32/regexp-macro-assembler-ia32.cc +43 -30
- data/vendor/v8/src/ia32/regexp-macro-assembler-ia32.h +2 -10
- data/vendor/v8/src/ia32/stub-cache-ia32.cc +492 -678
- data/vendor/v8/src/ic-inl.h +9 -4
- data/vendor/v8/src/ic.cc +836 -923
- data/vendor/v8/src/ic.h +228 -247
- data/vendor/v8/src/incremental-marking-inl.h +26 -30
- data/vendor/v8/src/incremental-marking.cc +276 -248
- data/vendor/v8/src/incremental-marking.h +29 -37
- data/vendor/v8/src/interface.cc +34 -25
- data/vendor/v8/src/interface.h +69 -25
- data/vendor/v8/src/interpreter-irregexp.cc +2 -2
- data/vendor/v8/src/isolate.cc +382 -76
- data/vendor/v8/src/isolate.h +109 -56
- data/vendor/v8/src/json-parser.h +217 -104
- data/vendor/v8/src/json-stringifier.h +745 -0
- data/vendor/v8/src/json.js +10 -132
- data/vendor/v8/src/jsregexp-inl.h +106 -0
- data/vendor/v8/src/jsregexp.cc +517 -285
- data/vendor/v8/src/jsregexp.h +145 -117
- data/vendor/v8/src/list-inl.h +35 -22
- data/vendor/v8/src/list.h +46 -19
- data/vendor/v8/src/lithium-allocator-inl.h +22 -2
- data/vendor/v8/src/lithium-allocator.cc +85 -70
- data/vendor/v8/src/lithium-allocator.h +21 -39
- data/vendor/v8/src/lithium.cc +259 -5
- data/vendor/v8/src/lithium.h +131 -32
- data/vendor/v8/src/liveedit-debugger.js +52 -3
- data/vendor/v8/src/liveedit.cc +393 -113
- data/vendor/v8/src/liveedit.h +7 -3
- data/vendor/v8/src/log-utils.cc +4 -2
- data/vendor/v8/src/log.cc +170 -140
- data/vendor/v8/src/log.h +62 -11
- data/vendor/v8/src/macro-assembler.h +17 -0
- data/vendor/v8/src/macros.py +2 -0
- data/vendor/v8/src/mark-compact-inl.h +3 -23
- data/vendor/v8/src/mark-compact.cc +801 -830
- data/vendor/v8/src/mark-compact.h +154 -47
- data/vendor/v8/src/marking-thread.cc +85 -0
- data/vendor/v8/src/{inspector.cc → marking-thread.h} +32 -24
- data/vendor/v8/src/math.js +12 -18
- data/vendor/v8/src/messages.cc +18 -8
- data/vendor/v8/src/messages.js +314 -261
- data/vendor/v8/src/mips/assembler-mips-inl.h +58 -6
- data/vendor/v8/src/mips/assembler-mips.cc +92 -75
- data/vendor/v8/src/mips/assembler-mips.h +54 -60
- data/vendor/v8/src/mips/builtins-mips.cc +116 -17
- data/vendor/v8/src/mips/code-stubs-mips.cc +919 -556
- data/vendor/v8/src/mips/code-stubs-mips.h +22 -131
- data/vendor/v8/src/mips/codegen-mips.cc +281 -6
- data/vendor/v8/src/mips/codegen-mips.h +22 -0
- data/vendor/v8/src/mips/constants-mips.cc +2 -0
- data/vendor/v8/src/mips/constants-mips.h +12 -2
- data/vendor/v8/src/mips/deoptimizer-mips.cc +286 -50
- data/vendor/v8/src/mips/disasm-mips.cc +13 -0
- data/vendor/v8/src/mips/full-codegen-mips.cc +297 -284
- data/vendor/v8/src/mips/ic-mips.cc +182 -263
- data/vendor/v8/src/mips/lithium-codegen-mips.cc +1208 -556
- data/vendor/v8/src/mips/lithium-codegen-mips.h +72 -19
- data/vendor/v8/src/mips/lithium-gap-resolver-mips.cc +9 -2
- data/vendor/v8/src/mips/lithium-mips.cc +290 -302
- data/vendor/v8/src/mips/lithium-mips.h +463 -266
- data/vendor/v8/src/mips/macro-assembler-mips.cc +208 -115
- data/vendor/v8/src/mips/macro-assembler-mips.h +67 -24
- data/vendor/v8/src/mips/regexp-macro-assembler-mips.cc +40 -25
- data/vendor/v8/src/mips/regexp-macro-assembler-mips.h +3 -9
- data/vendor/v8/src/mips/simulator-mips.cc +112 -40
- data/vendor/v8/src/mips/simulator-mips.h +5 -0
- data/vendor/v8/src/mips/stub-cache-mips.cc +502 -884
- data/vendor/v8/src/mirror-debugger.js +157 -30
- data/vendor/v8/src/mksnapshot.cc +88 -14
- data/vendor/v8/src/object-observe.js +235 -0
- data/vendor/v8/src/objects-debug.cc +178 -176
- data/vendor/v8/src/objects-inl.h +1333 -486
- data/vendor/v8/src/objects-printer.cc +125 -43
- data/vendor/v8/src/objects-visiting-inl.h +578 -6
- data/vendor/v8/src/objects-visiting.cc +2 -2
- data/vendor/v8/src/objects-visiting.h +172 -79
- data/vendor/v8/src/objects.cc +3533 -2885
- data/vendor/v8/src/objects.h +1352 -1131
- data/vendor/v8/src/optimizing-compiler-thread.cc +152 -0
- data/vendor/v8/src/optimizing-compiler-thread.h +111 -0
- data/vendor/v8/src/parser.cc +390 -500
- data/vendor/v8/src/parser.h +45 -33
- data/vendor/v8/src/platform-cygwin.cc +10 -21
- data/vendor/v8/src/platform-freebsd.cc +36 -41
- data/vendor/v8/src/platform-linux.cc +160 -124
- data/vendor/v8/src/platform-macos.cc +30 -27
- data/vendor/v8/src/platform-nullos.cc +17 -1
- data/vendor/v8/src/platform-openbsd.cc +19 -50
- data/vendor/v8/src/platform-posix.cc +14 -0
- data/vendor/v8/src/platform-solaris.cc +20 -53
- data/vendor/v8/src/platform-win32.cc +49 -26
- data/vendor/v8/src/platform.h +40 -1
- data/vendor/v8/src/preparser.cc +8 -5
- data/vendor/v8/src/preparser.h +2 -2
- data/vendor/v8/src/prettyprinter.cc +16 -0
- data/vendor/v8/src/prettyprinter.h +2 -0
- data/vendor/v8/src/profile-generator-inl.h +1 -0
- data/vendor/v8/src/profile-generator.cc +209 -147
- data/vendor/v8/src/profile-generator.h +15 -12
- data/vendor/v8/src/property-details.h +46 -31
- data/vendor/v8/src/property.cc +27 -46
- data/vendor/v8/src/property.h +163 -83
- data/vendor/v8/src/proxy.js +7 -2
- data/vendor/v8/src/regexp-macro-assembler-irregexp.cc +4 -13
- data/vendor/v8/src/regexp-macro-assembler-irregexp.h +1 -2
- data/vendor/v8/src/regexp-macro-assembler-tracer.cc +1 -11
- data/vendor/v8/src/regexp-macro-assembler-tracer.h +0 -1
- data/vendor/v8/src/regexp-macro-assembler.cc +31 -14
- data/vendor/v8/src/regexp-macro-assembler.h +14 -11
- data/vendor/v8/src/regexp-stack.cc +1 -0
- data/vendor/v8/src/regexp.js +9 -8
- data/vendor/v8/src/rewriter.cc +18 -7
- data/vendor/v8/src/runtime-profiler.cc +52 -43
- data/vendor/v8/src/runtime-profiler.h +0 -25
- data/vendor/v8/src/runtime.cc +2006 -2023
- data/vendor/v8/src/runtime.h +56 -49
- data/vendor/v8/src/safepoint-table.cc +12 -18
- data/vendor/v8/src/safepoint-table.h +11 -8
- data/vendor/v8/src/scanner.cc +1 -0
- data/vendor/v8/src/scanner.h +4 -10
- data/vendor/v8/src/scopeinfo.cc +35 -9
- data/vendor/v8/src/scopeinfo.h +64 -3
- data/vendor/v8/src/scopes.cc +251 -156
- data/vendor/v8/src/scopes.h +61 -27
- data/vendor/v8/src/serialize.cc +348 -396
- data/vendor/v8/src/serialize.h +125 -114
- data/vendor/v8/src/small-pointer-list.h +11 -11
- data/vendor/v8/src/{smart-array-pointer.h → smart-pointers.h} +64 -15
- data/vendor/v8/src/snapshot-common.cc +64 -15
- data/vendor/v8/src/snapshot-empty.cc +7 -1
- data/vendor/v8/src/snapshot.h +9 -2
- data/vendor/v8/src/spaces-inl.h +17 -0
- data/vendor/v8/src/spaces.cc +477 -183
- data/vendor/v8/src/spaces.h +238 -58
- data/vendor/v8/src/splay-tree-inl.h +8 -7
- data/vendor/v8/src/splay-tree.h +24 -10
- data/vendor/v8/src/store-buffer.cc +12 -5
- data/vendor/v8/src/store-buffer.h +2 -4
- data/vendor/v8/src/string-search.h +22 -6
- data/vendor/v8/src/string-stream.cc +11 -8
- data/vendor/v8/src/string.js +47 -15
- data/vendor/v8/src/stub-cache.cc +461 -224
- data/vendor/v8/src/stub-cache.h +164 -102
- data/vendor/v8/src/sweeper-thread.cc +105 -0
- data/vendor/v8/src/sweeper-thread.h +81 -0
- data/vendor/v8/src/token.h +1 -0
- data/vendor/v8/src/transitions-inl.h +220 -0
- data/vendor/v8/src/transitions.cc +160 -0
- data/vendor/v8/src/transitions.h +207 -0
- data/vendor/v8/src/type-info.cc +182 -181
- data/vendor/v8/src/type-info.h +31 -19
- data/vendor/v8/src/unicode-inl.h +62 -106
- data/vendor/v8/src/unicode.cc +57 -67
- data/vendor/v8/src/unicode.h +45 -91
- data/vendor/v8/src/uri.js +57 -29
- data/vendor/v8/src/utils.h +105 -5
- data/vendor/v8/src/v8-counters.cc +54 -11
- data/vendor/v8/src/v8-counters.h +134 -19
- data/vendor/v8/src/v8.cc +29 -29
- data/vendor/v8/src/v8.h +1 -0
- data/vendor/v8/src/v8conversions.cc +26 -22
- data/vendor/v8/src/v8globals.h +56 -43
- data/vendor/v8/src/v8natives.js +83 -30
- data/vendor/v8/src/v8threads.cc +42 -21
- data/vendor/v8/src/v8threads.h +4 -1
- data/vendor/v8/src/v8utils.cc +9 -93
- data/vendor/v8/src/v8utils.h +37 -33
- data/vendor/v8/src/variables.cc +6 -3
- data/vendor/v8/src/variables.h +6 -13
- data/vendor/v8/src/version.cc +2 -2
- data/vendor/v8/src/vm-state-inl.h +11 -0
- data/vendor/v8/src/x64/assembler-x64-inl.h +39 -8
- data/vendor/v8/src/x64/assembler-x64.cc +78 -64
- data/vendor/v8/src/x64/assembler-x64.h +38 -33
- data/vendor/v8/src/x64/builtins-x64.cc +105 -7
- data/vendor/v8/src/x64/code-stubs-x64.cc +790 -413
- data/vendor/v8/src/x64/code-stubs-x64.h +10 -106
- data/vendor/v8/src/x64/codegen-x64.cc +210 -8
- data/vendor/v8/src/x64/codegen-x64.h +20 -1
- data/vendor/v8/src/x64/deoptimizer-x64.cc +336 -75
- data/vendor/v8/src/x64/disasm-x64.cc +15 -0
- data/vendor/v8/src/x64/frames-x64.h +0 -14
- data/vendor/v8/src/x64/full-codegen-x64.cc +293 -270
- data/vendor/v8/src/x64/ic-x64.cc +153 -251
- data/vendor/v8/src/x64/lithium-codegen-x64.cc +1379 -531
- data/vendor/v8/src/x64/lithium-codegen-x64.h +67 -23
- data/vendor/v8/src/x64/lithium-gap-resolver-x64.cc +2 -2
- data/vendor/v8/src/x64/lithium-x64.cc +349 -289
- data/vendor/v8/src/x64/lithium-x64.h +460 -250
- data/vendor/v8/src/x64/macro-assembler-x64.cc +350 -177
- data/vendor/v8/src/x64/macro-assembler-x64.h +67 -49
- data/vendor/v8/src/x64/regexp-macro-assembler-x64.cc +46 -33
- data/vendor/v8/src/x64/regexp-macro-assembler-x64.h +2 -3
- data/vendor/v8/src/x64/stub-cache-x64.cc +484 -653
- data/vendor/v8/src/zone-inl.h +9 -27
- data/vendor/v8/src/zone.cc +5 -5
- data/vendor/v8/src/zone.h +53 -27
- data/vendor/v8/test/benchmarks/testcfg.py +5 -0
- data/vendor/v8/test/cctest/cctest.cc +4 -0
- data/vendor/v8/test/cctest/cctest.gyp +3 -1
- data/vendor/v8/test/cctest/cctest.h +57 -9
- data/vendor/v8/test/cctest/cctest.status +15 -15
- data/vendor/v8/test/cctest/test-accessors.cc +26 -0
- data/vendor/v8/test/cctest/test-alloc.cc +22 -30
- data/vendor/v8/test/cctest/test-api.cc +1943 -314
- data/vendor/v8/test/cctest/test-assembler-arm.cc +133 -13
- data/vendor/v8/test/cctest/test-assembler-ia32.cc +1 -1
- data/vendor/v8/test/cctest/test-assembler-mips.cc +12 -0
- data/vendor/v8/test/cctest/test-ast.cc +4 -2
- data/vendor/v8/test/cctest/test-compiler.cc +61 -29
- data/vendor/v8/test/cctest/test-dataflow.cc +2 -2
- data/vendor/v8/test/cctest/test-debug.cc +212 -33
- data/vendor/v8/test/cctest/test-decls.cc +257 -11
- data/vendor/v8/test/cctest/test-dictionary.cc +24 -10
- data/vendor/v8/test/cctest/test-disasm-arm.cc +118 -1
- data/vendor/v8/test/cctest/test-disasm-ia32.cc +3 -2
- data/vendor/v8/test/cctest/test-flags.cc +14 -1
- data/vendor/v8/test/cctest/test-func-name-inference.cc +7 -4
- data/vendor/v8/test/cctest/test-global-object.cc +51 -0
- data/vendor/v8/test/cctest/test-hashing.cc +32 -23
- data/vendor/v8/test/cctest/test-heap-profiler.cc +131 -77
- data/vendor/v8/test/cctest/test-heap.cc +1084 -143
- data/vendor/v8/test/cctest/test-list.cc +1 -1
- data/vendor/v8/test/cctest/test-liveedit.cc +3 -2
- data/vendor/v8/test/cctest/test-lockers.cc +12 -13
- data/vendor/v8/test/cctest/test-log.cc +10 -8
- data/vendor/v8/test/cctest/test-macro-assembler-x64.cc +2 -2
- data/vendor/v8/test/cctest/test-mark-compact.cc +44 -22
- data/vendor/v8/test/cctest/test-object-observe.cc +434 -0
- data/vendor/v8/test/cctest/test-parsing.cc +86 -39
- data/vendor/v8/test/cctest/test-platform-linux.cc +6 -0
- data/vendor/v8/test/cctest/test-platform-win32.cc +7 -0
- data/vendor/v8/test/cctest/test-random.cc +5 -4
- data/vendor/v8/test/cctest/test-regexp.cc +137 -101
- data/vendor/v8/test/cctest/test-serialize.cc +150 -230
- data/vendor/v8/test/cctest/test-sockets.cc +1 -1
- data/vendor/v8/test/cctest/test-spaces.cc +139 -0
- data/vendor/v8/test/cctest/test-strings.cc +736 -74
- data/vendor/v8/test/cctest/test-thread-termination.cc +10 -11
- data/vendor/v8/test/cctest/test-threads.cc +4 -4
- data/vendor/v8/test/cctest/test-utils.cc +16 -0
- data/vendor/v8/test/cctest/test-weakmaps.cc +7 -3
- data/vendor/v8/test/cctest/testcfg.py +64 -5
- data/vendor/v8/test/es5conform/testcfg.py +5 -0
- data/vendor/v8/test/message/message.status +1 -1
- data/vendor/v8/test/message/overwritten-builtins.out +3 -0
- data/vendor/v8/test/message/testcfg.py +89 -8
- data/vendor/v8/test/message/try-catch-finally-no-message.out +26 -26
- data/vendor/v8/test/mjsunit/accessor-map-sharing.js +18 -2
- data/vendor/v8/test/mjsunit/allocation-site-info.js +126 -0
- data/vendor/v8/test/mjsunit/array-bounds-check-removal.js +62 -1
- data/vendor/v8/test/mjsunit/array-iteration.js +1 -1
- data/vendor/v8/test/mjsunit/array-literal-transitions.js +2 -0
- data/vendor/v8/test/mjsunit/array-natives-elements.js +317 -0
- data/vendor/v8/test/mjsunit/array-reduce.js +8 -8
- data/vendor/v8/test/mjsunit/array-slice.js +12 -0
- data/vendor/v8/test/mjsunit/array-store-and-grow.js +4 -1
- data/vendor/v8/test/mjsunit/assert-opt-and-deopt.js +1 -1
- data/vendor/v8/test/mjsunit/bugs/bug-2337.js +53 -0
- data/vendor/v8/test/mjsunit/compare-known-objects-slow.js +69 -0
- data/vendor/v8/test/mjsunit/compiler/alloc-object-huge.js +3 -1
- data/vendor/v8/test/mjsunit/compiler/inline-accessors.js +368 -0
- data/vendor/v8/test/mjsunit/compiler/inline-arguments.js +87 -1
- data/vendor/v8/test/mjsunit/compiler/inline-closures.js +49 -0
- data/vendor/v8/test/mjsunit/compiler/inline-construct.js +55 -43
- data/vendor/v8/test/mjsunit/compiler/inline-literals.js +39 -0
- data/vendor/v8/test/mjsunit/compiler/multiply-add.js +69 -0
- data/vendor/v8/test/mjsunit/compiler/optimized-closures.js +57 -0
- data/vendor/v8/test/mjsunit/compiler/parallel-proto-change.js +44 -0
- data/vendor/v8/test/mjsunit/compiler/property-static.js +69 -0
- data/vendor/v8/test/mjsunit/compiler/proto-chain-constant.js +55 -0
- data/vendor/v8/test/mjsunit/compiler/proto-chain-load.js +44 -0
- data/vendor/v8/test/mjsunit/compiler/regress-gvn.js +3 -2
- data/vendor/v8/test/mjsunit/compiler/regress-or.js +6 -2
- data/vendor/v8/test/mjsunit/compiler/rotate.js +224 -0
- data/vendor/v8/test/mjsunit/compiler/uint32.js +173 -0
- data/vendor/v8/test/mjsunit/count-based-osr.js +2 -1
- data/vendor/v8/test/mjsunit/d8-os.js +3 -3
- data/vendor/v8/test/mjsunit/date-parse.js +3 -0
- data/vendor/v8/test/mjsunit/date.js +22 -0
- data/vendor/v8/test/mjsunit/debug-break-inline.js +1 -0
- data/vendor/v8/test/mjsunit/debug-evaluate-locals-optimized-double.js +22 -12
- data/vendor/v8/test/mjsunit/debug-evaluate-locals-optimized.js +21 -10
- data/vendor/v8/test/mjsunit/debug-liveedit-compile-error.js +60 -0
- data/vendor/v8/test/mjsunit/debug-liveedit-double-call.js +142 -0
- data/vendor/v8/test/mjsunit/debug-liveedit-literals.js +94 -0
- data/vendor/v8/test/mjsunit/debug-liveedit-restart-frame.js +153 -0
- data/vendor/v8/test/mjsunit/debug-multiple-breakpoints.js +1 -1
- data/vendor/v8/test/mjsunit/debug-script-breakpoints-closure.js +67 -0
- data/vendor/v8/test/mjsunit/debug-script-breakpoints-nested.js +82 -0
- data/vendor/v8/test/mjsunit/debug-script.js +4 -2
- data/vendor/v8/test/mjsunit/debug-set-variable-value.js +308 -0
- data/vendor/v8/test/mjsunit/debug-stepout-scope-part1.js +190 -0
- data/vendor/v8/test/mjsunit/debug-stepout-scope-part2.js +83 -0
- data/vendor/v8/test/mjsunit/debug-stepout-scope-part3.js +80 -0
- data/vendor/v8/test/mjsunit/debug-stepout-scope-part4.js +80 -0
- data/vendor/v8/test/mjsunit/debug-stepout-scope-part5.js +77 -0
- data/vendor/v8/test/mjsunit/debug-stepout-scope-part6.js +79 -0
- data/vendor/v8/test/mjsunit/debug-stepout-scope-part7.js +79 -0
- data/vendor/v8/test/mjsunit/{debug-stepout-scope.js → debug-stepout-scope-part8.js} +0 -189
- data/vendor/v8/test/mjsunit/delete-non-configurable.js +74 -0
- data/vendor/v8/test/mjsunit/deopt-minus-zero.js +56 -0
- data/vendor/v8/test/mjsunit/elements-kind.js +6 -4
- data/vendor/v8/test/mjsunit/elements-length-no-holey.js +33 -0
- data/vendor/v8/test/mjsunit/elements-transition-hoisting.js +46 -19
- data/vendor/v8/test/mjsunit/error-accessors.js +54 -0
- data/vendor/v8/test/mjsunit/error-constructors.js +1 -14
- data/vendor/v8/test/mjsunit/error-tostring.js +8 -0
- data/vendor/v8/test/mjsunit/eval-stack-trace.js +204 -0
- data/vendor/v8/test/mjsunit/external-array.js +364 -1
- data/vendor/v8/test/mjsunit/fast-array-length.js +37 -0
- data/vendor/v8/test/mjsunit/fast-non-keyed.js +113 -0
- data/vendor/v8/test/mjsunit/fast-prototype.js +117 -0
- data/vendor/v8/test/mjsunit/function-call.js +14 -18
- data/vendor/v8/test/mjsunit/fuzz-natives-part1.js +230 -0
- data/vendor/v8/test/mjsunit/fuzz-natives-part2.js +229 -0
- data/vendor/v8/test/mjsunit/fuzz-natives-part3.js +229 -0
- data/vendor/v8/test/mjsunit/{fuzz-natives.js → fuzz-natives-part4.js} +12 -2
- data/vendor/v8/test/mjsunit/generated-transition-stub.js +218 -0
- data/vendor/v8/test/mjsunit/greedy.js +1 -1
- data/vendor/v8/test/mjsunit/harmony/block-conflicts.js +2 -1
- data/vendor/v8/test/mjsunit/harmony/block-let-crankshaft.js +1 -1
- data/vendor/v8/test/mjsunit/harmony/collections.js +69 -11
- data/vendor/v8/test/mjsunit/harmony/debug-blockscopes.js +2 -2
- data/vendor/v8/test/mjsunit/harmony/module-linking.js +180 -3
- data/vendor/v8/test/mjsunit/harmony/module-parsing.js +31 -0
- data/vendor/v8/test/mjsunit/harmony/module-recompile.js +87 -0
- data/vendor/v8/test/mjsunit/harmony/module-resolution.js +15 -2
- data/vendor/v8/test/mjsunit/harmony/object-observe.js +1056 -0
- data/vendor/v8/test/mjsunit/harmony/proxies-json.js +178 -0
- data/vendor/v8/test/mjsunit/harmony/proxies.js +25 -10
- data/vendor/v8/test/mjsunit/json-parser-recursive.js +33 -0
- data/vendor/v8/test/mjsunit/json-stringify-recursive.js +52 -0
- data/vendor/v8/test/mjsunit/json.js +38 -2
- data/vendor/v8/test/mjsunit/json2.js +153 -0
- data/vendor/v8/test/mjsunit/limit-locals.js +5 -4
- data/vendor/v8/test/mjsunit/manual-parallel-recompile.js +79 -0
- data/vendor/v8/test/mjsunit/math-exp-precision.js +64 -0
- data/vendor/v8/test/mjsunit/math-floor-negative.js +59 -0
- data/vendor/v8/test/mjsunit/math-floor-of-div-minus-zero.js +41 -0
- data/vendor/v8/test/mjsunit/math-floor-of-div-nosudiv.js +288 -0
- data/vendor/v8/test/mjsunit/math-floor-of-div.js +81 -9
- data/vendor/v8/test/mjsunit/{math-floor.js → math-floor-part1.js} +1 -72
- data/vendor/v8/test/mjsunit/math-floor-part2.js +76 -0
- data/vendor/v8/test/mjsunit/math-floor-part3.js +78 -0
- data/vendor/v8/test/mjsunit/math-floor-part4.js +76 -0
- data/vendor/v8/test/mjsunit/mirror-object.js +43 -9
- data/vendor/v8/test/mjsunit/mjsunit.js +1 -1
- data/vendor/v8/test/mjsunit/mjsunit.status +52 -27
- data/vendor/v8/test/mjsunit/mul-exhaustive-part1.js +491 -0
- data/vendor/v8/test/mjsunit/mul-exhaustive-part10.js +470 -0
- data/vendor/v8/test/mjsunit/mul-exhaustive-part2.js +525 -0
- data/vendor/v8/test/mjsunit/mul-exhaustive-part3.js +532 -0
- data/vendor/v8/test/mjsunit/mul-exhaustive-part4.js +509 -0
- data/vendor/v8/test/mjsunit/mul-exhaustive-part5.js +505 -0
- data/vendor/v8/test/mjsunit/mul-exhaustive-part6.js +554 -0
- data/vendor/v8/test/mjsunit/mul-exhaustive-part7.js +497 -0
- data/vendor/v8/test/mjsunit/mul-exhaustive-part8.js +526 -0
- data/vendor/v8/test/mjsunit/mul-exhaustive-part9.js +533 -0
- data/vendor/v8/test/mjsunit/new-function.js +34 -0
- data/vendor/v8/test/mjsunit/numops-fuzz-part1.js +1172 -0
- data/vendor/v8/test/mjsunit/numops-fuzz-part2.js +1178 -0
- data/vendor/v8/test/mjsunit/numops-fuzz-part3.js +1178 -0
- data/vendor/v8/test/mjsunit/numops-fuzz-part4.js +1177 -0
- data/vendor/v8/test/mjsunit/object-define-property.js +107 -2
- data/vendor/v8/test/mjsunit/override-read-only-property.js +6 -4
- data/vendor/v8/test/mjsunit/packed-elements.js +2 -2
- data/vendor/v8/test/mjsunit/parse-int-float.js +4 -4
- data/vendor/v8/test/mjsunit/pixel-array-rounding.js +1 -1
- data/vendor/v8/test/mjsunit/readonly.js +228 -0
- data/vendor/v8/test/mjsunit/regexp-capture-3.js +16 -18
- data/vendor/v8/test/mjsunit/regexp-capture.js +2 -0
- data/vendor/v8/test/mjsunit/regexp-global.js +122 -0
- data/vendor/v8/test/mjsunit/regexp-results-cache.js +78 -0
- data/vendor/v8/test/mjsunit/regress/regress-1117.js +12 -3
- data/vendor/v8/test/mjsunit/regress/regress-1118.js +1 -1
- data/vendor/v8/test/mjsunit/regress/regress-115100.js +36 -0
- data/vendor/v8/test/mjsunit/regress/regress-1199637.js +1 -3
- data/vendor/v8/test/mjsunit/regress/regress-121407.js +1 -1
- data/vendor/v8/test/mjsunit/regress/regress-131923.js +30 -0
- data/vendor/v8/test/mjsunit/regress/regress-131994.js +70 -0
- data/vendor/v8/test/mjsunit/regress/regress-133211.js +35 -0
- data/vendor/v8/test/mjsunit/regress/regress-133211b.js +39 -0
- data/vendor/v8/test/mjsunit/regress/regress-136048.js +34 -0
- data/vendor/v8/test/mjsunit/regress/regress-137768.js +73 -0
- data/vendor/v8/test/mjsunit/regress/regress-143967.js +34 -0
- data/vendor/v8/test/mjsunit/regress/regress-145201.js +107 -0
- data/vendor/v8/test/mjsunit/regress/regress-147497.js +45 -0
- data/vendor/v8/test/mjsunit/regress/regress-148378.js +38 -0
- data/vendor/v8/test/mjsunit/regress/regress-1563.js +1 -1
- data/vendor/v8/test/mjsunit/regress/regress-1591.js +48 -0
- data/vendor/v8/test/mjsunit/regress/regress-164442.js +45 -0
- data/vendor/v8/test/mjsunit/regress/regress-165637.js +61 -0
- data/vendor/v8/test/mjsunit/regress/regress-166379.js +39 -0
- data/vendor/v8/test/mjsunit/regress/regress-166553.js +33 -0
- data/vendor/v8/test/mjsunit/regress/regress-1692.js +1 -1
- data/vendor/v8/test/mjsunit/regress/regress-171641.js +40 -0
- data/vendor/v8/test/mjsunit/regress/regress-1980.js +1 -1
- data/vendor/v8/test/mjsunit/regress/regress-2073.js +99 -0
- data/vendor/v8/test/mjsunit/regress/regress-2119.js +36 -0
- data/vendor/v8/test/mjsunit/regress/regress-2156.js +39 -0
- data/vendor/v8/test/mjsunit/regress/regress-2163.js +70 -0
- data/vendor/v8/test/mjsunit/regress/regress-2170.js +58 -0
- data/vendor/v8/test/mjsunit/regress/regress-2172.js +35 -0
- data/vendor/v8/test/mjsunit/regress/regress-2185-2.js +145 -0
- data/vendor/v8/test/mjsunit/regress/regress-2185.js +38 -0
- data/vendor/v8/test/mjsunit/regress/regress-2186.js +49 -0
- data/vendor/v8/test/mjsunit/regress/regress-2193.js +58 -0
- data/vendor/v8/test/mjsunit/regress/regress-2219.js +32 -0
- data/vendor/v8/test/mjsunit/regress/regress-2225.js +65 -0
- data/vendor/v8/test/mjsunit/regress/regress-2226.js +36 -0
- data/vendor/v8/test/mjsunit/regress/regress-2234.js +41 -0
- data/vendor/v8/test/mjsunit/regress/regress-2243.js +31 -0
- data/vendor/v8/test/mjsunit/regress/regress-2249.js +33 -0
- data/vendor/v8/test/mjsunit/regress/regress-2250.js +68 -0
- data/vendor/v8/test/mjsunit/regress/regress-2261.js +113 -0
- data/vendor/v8/test/mjsunit/regress/regress-2263.js +30 -0
- data/vendor/v8/test/mjsunit/regress/regress-2284.js +32 -0
- data/vendor/v8/test/mjsunit/regress/regress-2285.js +32 -0
- data/vendor/v8/test/mjsunit/regress/regress-2286.js +32 -0
- data/vendor/v8/test/mjsunit/regress/regress-2289.js +34 -0
- data/vendor/v8/test/mjsunit/regress/regress-2291.js +36 -0
- data/vendor/v8/test/mjsunit/regress/regress-2294.js +70 -0
- data/vendor/v8/test/mjsunit/regress/regress-2296.js +40 -0
- data/vendor/v8/test/mjsunit/regress/regress-2315.js +40 -0
- data/vendor/v8/test/mjsunit/regress/regress-2318.js +66 -0
- data/vendor/v8/test/mjsunit/regress/regress-2322.js +36 -0
- data/vendor/v8/test/mjsunit/regress/regress-2326.js +54 -0
- data/vendor/v8/test/mjsunit/regress/regress-2336.js +53 -0
- data/vendor/v8/test/mjsunit/regress/regress-2339.js +59 -0
- data/vendor/v8/test/mjsunit/regress/regress-2346.js +123 -0
- data/vendor/v8/test/mjsunit/regress/regress-2373.js +29 -0
- data/vendor/v8/test/mjsunit/regress/regress-2374.js +33 -0
- data/vendor/v8/test/mjsunit/regress/regress-2398.js +41 -0
- data/vendor/v8/test/mjsunit/regress/regress-2410.js +36 -0
- data/vendor/v8/test/mjsunit/regress/regress-2416.js +75 -0
- data/vendor/v8/test/mjsunit/regress/regress-2419.js +37 -0
- data/vendor/v8/test/mjsunit/regress/regress-2433.js +36 -0
- data/vendor/v8/test/mjsunit/regress/regress-2437.js +156 -0
- data/vendor/v8/test/mjsunit/regress/regress-2438.js +52 -0
- data/vendor/v8/test/mjsunit/regress/regress-2443.js +129 -0
- data/vendor/v8/test/mjsunit/regress/regress-2444.js +120 -0
- data/vendor/v8/test/mjsunit/regress/regress-2489.js +50 -0
- data/vendor/v8/test/mjsunit/regress/regress-2499.js +40 -0
- data/vendor/v8/test/mjsunit/regress/regress-334.js +1 -1
- data/vendor/v8/test/mjsunit/regress/regress-492.js +39 -1
- data/vendor/v8/test/mjsunit/regress/regress-builtin-array-op.js +38 -0
- data/vendor/v8/test/mjsunit/regress/regress-cnlt-elements.js +43 -0
- data/vendor/v8/test/mjsunit/regress/regress-cnlt-enum-indices.js +45 -0
- data/vendor/v8/test/mjsunit/regress/regress-cntl-descriptors-enum.js +46 -0
- data/vendor/v8/test/mjsunit/regress/regress-convert-enum.js +60 -0
- data/vendor/v8/test/mjsunit/regress/regress-convert-enum2.js +46 -0
- data/vendor/v8/test/mjsunit/regress/regress-convert-transition.js +40 -0
- data/vendor/v8/test/mjsunit/regress/regress-crbug-119926.js +3 -1
- data/vendor/v8/test/mjsunit/regress/regress-crbug-125148.js +90 -0
- data/vendor/v8/test/mjsunit/regress/regress-crbug-134055.js +63 -0
- data/vendor/v8/test/mjsunit/regress/regress-crbug-134609.js +59 -0
- data/vendor/v8/test/mjsunit/regress/regress-crbug-135008.js +45 -0
- data/vendor/v8/test/mjsunit/regress/regress-crbug-135066.js +55 -0
- data/vendor/v8/test/mjsunit/regress/regress-crbug-137689.js +47 -0
- data/vendor/v8/test/mjsunit/regress/regress-crbug-138887.js +48 -0
- data/vendor/v8/test/mjsunit/regress/regress-crbug-140083.js +44 -0
- data/vendor/v8/test/mjsunit/regress/regress-crbug-142087.js +38 -0
- data/vendor/v8/test/mjsunit/regress/regress-crbug-142218.js +44 -0
- data/vendor/v8/test/mjsunit/regress/regress-crbug-145961.js +39 -0
- data/vendor/v8/test/mjsunit/regress/regress-crbug-146910.js +33 -0
- data/vendor/v8/test/mjsunit/regress/regress-crbug-147475.js +48 -0
- data/vendor/v8/test/mjsunit/regress/regress-crbug-148376.js +35 -0
- data/vendor/v8/test/mjsunit/regress/regress-crbug-150545.js +53 -0
- data/vendor/v8/test/mjsunit/regress/regress-crbug-150729.js +39 -0
- data/vendor/v8/test/mjsunit/regress/regress-crbug-157019.js +54 -0
- data/vendor/v8/test/mjsunit/regress/regress-crbug-157520.js +38 -0
- data/vendor/v8/test/mjsunit/regress/regress-crbug-158185.js +39 -0
- data/vendor/v8/test/mjsunit/regress/regress-crbug-160010.js +35 -0
- data/vendor/v8/test/mjsunit/regress/regress-crbug-162085.js +71 -0
- data/vendor/v8/test/mjsunit/regress/regress-crbug-168545.js +34 -0
- data/vendor/v8/test/mjsunit/regress/regress-crbug-170856.js +33 -0
- data/vendor/v8/test/mjsunit/regress/regress-crbug-172345.js +34 -0
- data/vendor/v8/test/mjsunit/regress/regress-crbug-173974.js +36 -0
- data/vendor/v8/test/mjsunit/regress/regress-crbug-18639.js +9 -5
- data/vendor/v8/test/mjsunit/regress/regress-debug-code-recompilation.js +2 -1
- data/vendor/v8/test/mjsunit/regress/regress-deep-proto.js +45 -0
- data/vendor/v8/test/mjsunit/regress/regress-delete-empty-double.js +40 -0
- data/vendor/v8/test/mjsunit/regress/regress-iteration-order.js +42 -0
- data/vendor/v8/test/mjsunit/regress/regress-json-stringify-gc.js +41 -0
- data/vendor/v8/test/mjsunit/regress/regress-latin-1.js +78 -0
- data/vendor/v8/test/mjsunit/regress/regress-load-elements.js +49 -0
- data/vendor/v8/test/mjsunit/regress/regress-observe-empty-double-array.js +38 -0
- data/vendor/v8/test/mjsunit/regress/regress-undefined-store-keyed-fast-element.js +37 -0
- data/vendor/v8/test/mjsunit/shift-for-integer-div.js +59 -0
- data/vendor/v8/test/mjsunit/stack-traces-gc.js +119 -0
- data/vendor/v8/test/mjsunit/stack-traces-overflow.js +122 -0
- data/vendor/v8/test/mjsunit/stack-traces.js +39 -1
- data/vendor/v8/test/mjsunit/str-to-num.js +7 -2
- data/vendor/v8/test/mjsunit/strict-mode.js +36 -11
- data/vendor/v8/test/mjsunit/string-charcodeat.js +3 -0
- data/vendor/v8/test/mjsunit/string-natives.js +72 -0
- data/vendor/v8/test/mjsunit/string-split.js +17 -0
- data/vendor/v8/test/mjsunit/testcfg.py +76 -6
- data/vendor/v8/test/mjsunit/tools/tickprocessor.js +4 -1
- data/vendor/v8/test/mjsunit/try-finally-continue.js +72 -0
- data/vendor/v8/test/mjsunit/typed-array-slice.js +61 -0
- data/vendor/v8/test/mjsunit/unbox-double-arrays.js +2 -0
- data/vendor/v8/test/mjsunit/uri.js +12 -0
- data/vendor/v8/test/mjsunit/with-readonly.js +4 -2
- data/vendor/v8/test/mozilla/mozilla.status +19 -113
- data/vendor/v8/test/mozilla/testcfg.py +122 -3
- data/vendor/v8/test/preparser/preparser.status +5 -0
- data/vendor/v8/test/preparser/strict-identifiers.pyt +1 -1
- data/vendor/v8/test/preparser/testcfg.py +101 -5
- data/vendor/v8/test/sputnik/sputnik.status +1 -1
- data/vendor/v8/test/sputnik/testcfg.py +5 -0
- data/vendor/v8/test/test262/README +2 -2
- data/vendor/v8/test/test262/test262.status +13 -36
- data/vendor/v8/test/test262/testcfg.py +102 -8
- data/vendor/v8/tools/android-build.sh +0 -0
- data/vendor/v8/tools/android-ll-prof.sh +69 -0
- data/vendor/v8/tools/android-run.py +109 -0
- data/vendor/v8/tools/android-sync.sh +105 -0
- data/vendor/v8/tools/bash-completion.sh +0 -0
- data/vendor/v8/tools/check-static-initializers.sh +0 -0
- data/vendor/v8/tools/common-includes.sh +15 -22
- data/vendor/v8/tools/disasm.py +4 -4
- data/vendor/v8/tools/fuzz-harness.sh +0 -0
- data/vendor/v8/tools/gen-postmortem-metadata.py +6 -8
- data/vendor/v8/tools/grokdump.py +404 -129
- data/vendor/v8/tools/gyp/v8.gyp +105 -43
- data/vendor/v8/tools/linux-tick-processor +5 -5
- data/vendor/v8/tools/ll_prof.py +75 -15
- data/vendor/v8/tools/merge-to-branch.sh +2 -2
- data/vendor/v8/tools/plot-timer-events +70 -0
- data/vendor/v8/tools/plot-timer-events.js +510 -0
- data/vendor/v8/tools/presubmit.py +1 -0
- data/vendor/v8/tools/push-to-trunk.sh +14 -4
- data/vendor/v8/tools/run-llprof.sh +69 -0
- data/vendor/v8/tools/run-tests.py +372 -0
- data/vendor/v8/tools/run-valgrind.py +1 -1
- data/vendor/v8/tools/status-file-converter.py +39 -0
- data/vendor/v8/tools/test-server.py +224 -0
- data/vendor/v8/tools/test-wrapper-gypbuild.py +13 -16
- data/vendor/v8/tools/test.py +10 -19
- data/vendor/v8/tools/testrunner/README +174 -0
- data/vendor/v8/tools/testrunner/__init__.py +26 -0
- data/vendor/v8/tools/testrunner/local/__init__.py +26 -0
- data/vendor/v8/tools/testrunner/local/commands.py +153 -0
- data/vendor/v8/tools/testrunner/local/execution.py +182 -0
- data/vendor/v8/tools/testrunner/local/old_statusfile.py +460 -0
- data/vendor/v8/tools/testrunner/local/progress.py +238 -0
- data/vendor/v8/tools/testrunner/local/statusfile.py +145 -0
- data/vendor/v8/tools/testrunner/local/testsuite.py +187 -0
- data/vendor/v8/tools/testrunner/local/utils.py +108 -0
- data/vendor/v8/tools/testrunner/local/verbose.py +99 -0
- data/vendor/v8/tools/testrunner/network/__init__.py +26 -0
- data/vendor/v8/tools/testrunner/network/distro.py +90 -0
- data/vendor/v8/tools/testrunner/network/endpoint.py +124 -0
- data/vendor/v8/tools/testrunner/network/network_execution.py +253 -0
- data/vendor/v8/tools/testrunner/network/perfdata.py +120 -0
- data/vendor/v8/tools/testrunner/objects/__init__.py +26 -0
- data/vendor/v8/tools/testrunner/objects/context.py +50 -0
- data/vendor/v8/tools/testrunner/objects/output.py +60 -0
- data/vendor/v8/tools/testrunner/objects/peer.py +80 -0
- data/vendor/v8/tools/testrunner/objects/testcase.py +83 -0
- data/vendor/v8/tools/testrunner/objects/workpacket.py +90 -0
- data/vendor/v8/tools/testrunner/server/__init__.py +26 -0
- data/vendor/v8/tools/testrunner/server/compression.py +111 -0
- data/vendor/v8/tools/testrunner/server/constants.py +51 -0
- data/vendor/v8/tools/testrunner/server/daemon.py +147 -0
- data/vendor/v8/tools/testrunner/server/local_handler.py +119 -0
- data/vendor/v8/tools/testrunner/server/main.py +245 -0
- data/vendor/v8/tools/testrunner/server/presence_handler.py +120 -0
- data/vendor/v8/tools/testrunner/server/signatures.py +63 -0
- data/vendor/v8/tools/testrunner/server/status_handler.py +112 -0
- data/vendor/v8/tools/testrunner/server/work_handler.py +150 -0
- data/vendor/v8/tools/tick-processor.html +168 -0
- data/vendor/v8/tools/tickprocessor-driver.js +5 -3
- data/vendor/v8/tools/tickprocessor.js +58 -15
- metadata +534 -30
- data/patches/add-freebsd9-and-freebsd10-to-gyp-GetFlavor.patch +0 -11
- data/patches/do-not-imply-vfp3-and-armv7.patch +0 -44
- data/patches/fPIC-on-x64.patch +0 -14
- data/vendor/v8/src/liveobjectlist-inl.h +0 -126
- data/vendor/v8/src/liveobjectlist.cc +0 -2631
- data/vendor/v8/src/liveobjectlist.h +0 -319
- data/vendor/v8/test/mjsunit/mul-exhaustive.js +0 -4629
- data/vendor/v8/test/mjsunit/numops-fuzz.js +0 -4609
- data/vendor/v8/test/mjsunit/regress/regress-1969.js +0 -5045
@@ -350,6 +350,10 @@ int Decoder::FormatFPURegister(Instruction* instr, const char* format) {
|
|
350
350
|
int reg = instr->FdValue();
|
351
351
|
PrintFPURegister(reg);
|
352
352
|
return 2;
|
353
|
+
} else if (format[1] == 'r') { // 'fr: fr register.
|
354
|
+
int reg = instr->FrValue();
|
355
|
+
PrintFPURegister(reg);
|
356
|
+
return 2;
|
353
357
|
}
|
354
358
|
UNREACHABLE();
|
355
359
|
return -1;
|
@@ -618,6 +622,15 @@ void Decoder::DecodeTypeRegister(Instruction* instr) {
|
|
618
622
|
UNREACHABLE();
|
619
623
|
}
|
620
624
|
break;
|
625
|
+
case COP1X:
|
626
|
+
switch (instr->FunctionFieldRaw()) {
|
627
|
+
case MADD_D:
|
628
|
+
Format(instr, "madd.d 'fd, 'fr, 'fs, 'ft");
|
629
|
+
break;
|
630
|
+
default:
|
631
|
+
UNREACHABLE();
|
632
|
+
};
|
633
|
+
break;
|
621
634
|
case SPECIAL:
|
622
635
|
switch (instr->FunctionFieldRaw()) {
|
623
636
|
case JR:
|
@@ -139,13 +139,15 @@ void FullCodeGenerator::Generate() {
|
|
139
139
|
handler_table_ =
|
140
140
|
isolate()->factory()->NewFixedArray(function()->handler_count(), TENURED);
|
141
141
|
profiling_counter_ = isolate()->factory()->NewJSGlobalPropertyCell(
|
142
|
-
Handle<Smi>(Smi::FromInt(FLAG_interrupt_budget)));
|
142
|
+
Handle<Smi>(Smi::FromInt(FLAG_interrupt_budget), isolate()));
|
143
143
|
SetFunctionPosition(function());
|
144
144
|
Comment cmnt(masm_, "[ function compiled by full code generator");
|
145
145
|
|
146
|
+
ProfileEntryHookStub::MaybeCallEntryHook(masm_);
|
147
|
+
|
146
148
|
#ifdef DEBUG
|
147
149
|
if (strlen(FLAG_stop_at) > 0 &&
|
148
|
-
info->function()->name()->
|
150
|
+
info->function()->name()->IsUtf8EqualTo(CStrVector(FLAG_stop_at))) {
|
149
151
|
__ stop("stop-at");
|
150
152
|
}
|
151
153
|
#endif
|
@@ -170,12 +172,13 @@ void FullCodeGenerator::Generate() {
|
|
170
172
|
|
171
173
|
int locals_count = info->scope()->num_stack_slots();
|
172
174
|
|
175
|
+
info->set_prologue_offset(masm_->pc_offset());
|
176
|
+
// The following three instructions must remain together and unmodified for
|
177
|
+
// code aging to work properly.
|
173
178
|
__ Push(ra, fp, cp, a1);
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
__ LoadRoot(at, Heap::kUndefinedValueRootIndex);
|
178
|
-
}
|
179
|
+
// Load undefined value here, so the value is ready for the loop
|
180
|
+
// below.
|
181
|
+
__ LoadRoot(at, Heap::kUndefinedValueRootIndex);
|
179
182
|
// Adjust fp to point to caller's fp.
|
180
183
|
__ Addu(fp, sp, Operand(2 * kPointerSize));
|
181
184
|
|
@@ -190,10 +193,13 @@ void FullCodeGenerator::Generate() {
|
|
190
193
|
// Possibly allocate a local context.
|
191
194
|
int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
|
192
195
|
if (heap_slots > 0) {
|
193
|
-
Comment cmnt(masm_, "[ Allocate
|
194
|
-
// Argument to NewContext is the function, which is in a1.
|
196
|
+
Comment cmnt(masm_, "[ Allocate context");
|
197
|
+
// Argument to NewContext is the function, which is still in a1.
|
195
198
|
__ push(a1);
|
196
|
-
if (
|
199
|
+
if (FLAG_harmony_scoping && info->scope()->is_global_scope()) {
|
200
|
+
__ Push(info->scope()->GetScopeInfo());
|
201
|
+
__ CallRuntime(Runtime::kNewGlobalContext, 2);
|
202
|
+
} else if (heap_slots <= FastNewContextStub::kMaximumSlots) {
|
197
203
|
FastNewContextStub stub(heap_slots);
|
198
204
|
__ CallStub(&stub);
|
199
205
|
} else {
|
@@ -270,7 +276,7 @@ void FullCodeGenerator::Generate() {
|
|
270
276
|
scope()->VisitIllegalRedeclaration(this);
|
271
277
|
|
272
278
|
} else {
|
273
|
-
PrepareForBailoutForId(
|
279
|
+
PrepareForBailoutForId(BailoutId::FunctionEntry(), NO_REGISTERS);
|
274
280
|
{ Comment cmnt(masm_, "[ Declarations");
|
275
281
|
// For named function expressions, declare the function name as a
|
276
282
|
// constant.
|
@@ -285,7 +291,7 @@ void FullCodeGenerator::Generate() {
|
|
285
291
|
}
|
286
292
|
|
287
293
|
{ Comment cmnt(masm_, "[ Stack check");
|
288
|
-
PrepareForBailoutForId(
|
294
|
+
PrepareForBailoutForId(BailoutId::Declarations(), NO_REGISTERS);
|
289
295
|
Label ok;
|
290
296
|
__ LoadRoot(t0, Heap::kStackLimitRootIndex);
|
291
297
|
__ Branch(&ok, hs, sp, Operand(t0));
|
@@ -332,7 +338,7 @@ void FullCodeGenerator::EmitProfilingCounterReset() {
|
|
332
338
|
}
|
333
339
|
if (isolate()->IsDebuggerActive()) {
|
334
340
|
// Detect debug break requests as soon as possible.
|
335
|
-
reset_value =
|
341
|
+
reset_value = FLAG_interrupt_budget >> 4;
|
336
342
|
}
|
337
343
|
__ li(a2, Operand(profiling_counter_));
|
338
344
|
__ li(a3, Operand(Smi::FromInt(reset_value)));
|
@@ -340,49 +346,34 @@ void FullCodeGenerator::EmitProfilingCounterReset() {
|
|
340
346
|
}
|
341
347
|
|
342
348
|
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
void FullCodeGenerator::EmitStackCheck(IterationStatement* stmt,
|
348
|
-
Label* back_edge_target) {
|
349
|
+
void FullCodeGenerator::EmitBackEdgeBookkeeping(IterationStatement* stmt,
|
350
|
+
Label* back_edge_target) {
|
349
351
|
// The generated code is used in Deoptimizer::PatchStackCheckCodeAt so we need
|
350
352
|
// to make sure it is constant. Branch may emit a skip-or-jump sequence
|
351
353
|
// instead of the normal Branch. It seems that the "skip" part of that
|
352
354
|
// sequence is about as long as this Branch would be so it is safe to ignore
|
353
355
|
// that.
|
354
356
|
Assembler::BlockTrampolinePoolScope block_trampoline_pool(masm_);
|
355
|
-
Comment cmnt(masm_, "[
|
357
|
+
Comment cmnt(masm_, "[ Back edge bookkeeping");
|
356
358
|
Label ok;
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
Max(1, distance / kBackEdgeDistanceDivisor));
|
364
|
-
}
|
365
|
-
EmitProfilingCounterDecrement(weight);
|
366
|
-
__ slt(at, a3, zero_reg);
|
367
|
-
__ beq(at, zero_reg, &ok);
|
368
|
-
// CallStub will emit a li t9 first, so it is safe to use the delay slot.
|
369
|
-
InterruptStub stub;
|
370
|
-
__ CallStub(&stub);
|
371
|
-
} else {
|
372
|
-
__ LoadRoot(t0, Heap::kStackLimitRootIndex);
|
373
|
-
__ sltu(at, sp, t0);
|
374
|
-
__ beq(at, zero_reg, &ok);
|
375
|
-
// CallStub will emit a li t9 first, so it is safe to use the delay slot.
|
376
|
-
StackCheckStub stub;
|
377
|
-
__ CallStub(&stub);
|
359
|
+
int weight = 1;
|
360
|
+
if (FLAG_weighted_back_edges) {
|
361
|
+
ASSERT(back_edge_target->is_bound());
|
362
|
+
int distance = masm_->SizeOfCodeGeneratedSince(back_edge_target);
|
363
|
+
weight = Min(kMaxBackEdgeWeight,
|
364
|
+
Max(1, distance / kBackEdgeDistanceUnit));
|
378
365
|
}
|
366
|
+
EmitProfilingCounterDecrement(weight);
|
367
|
+
__ slt(at, a3, zero_reg);
|
368
|
+
__ beq(at, zero_reg, &ok);
|
369
|
+
// CallStub will emit a li t9 first, so it is safe to use the delay slot.
|
370
|
+
InterruptStub stub;
|
371
|
+
__ CallStub(&stub);
|
379
372
|
// Record a mapping of this PC offset to the OSR id. This is used to find
|
380
373
|
// the AST id from the unoptimized code in order to use it as a key into
|
381
374
|
// the deoptimization input data found in the optimized code.
|
382
|
-
|
383
|
-
|
384
|
-
EmitProfilingCounterReset();
|
385
|
-
}
|
375
|
+
RecordBackEdge(stmt->OsrEntryId());
|
376
|
+
EmitProfilingCounterReset();
|
386
377
|
|
387
378
|
__ bind(&ok);
|
388
379
|
PrepareForBailoutForId(stmt->EntryId(), NO_REGISTERS);
|
@@ -413,7 +404,7 @@ void FullCodeGenerator::EmitReturnSequence() {
|
|
413
404
|
} else if (FLAG_weighted_back_edges) {
|
414
405
|
int distance = masm_->pc_offset();
|
415
406
|
weight = Min(kMaxBackEdgeWeight,
|
416
|
-
Max(1, distance /
|
407
|
+
Max(1, distance / kBackEdgeDistanceUnit));
|
417
408
|
}
|
418
409
|
EmitProfilingCounterDecrement(weight);
|
419
410
|
Label ok;
|
@@ -684,7 +675,7 @@ void FullCodeGenerator::DoTest(Expression* condition,
|
|
684
675
|
Label* fall_through) {
|
685
676
|
if (CpuFeatures::IsSupported(FPU)) {
|
686
677
|
ToBooleanStub stub(result_register());
|
687
|
-
__ CallStub(&stub);
|
678
|
+
__ CallStub(&stub, condition->test_id());
|
688
679
|
__ mov(at, zero_reg);
|
689
680
|
} else {
|
690
681
|
// Call the runtime to find the boolean value of the source and then
|
@@ -793,7 +784,7 @@ void FullCodeGenerator::EmitDebugCheckDeclarationContext(Variable* variable) {
|
|
793
784
|
// The variable in the declaration always resides in the current function
|
794
785
|
// context.
|
795
786
|
ASSERT_EQ(0, scope()->ContextChainLength(variable->scope()));
|
796
|
-
if (
|
787
|
+
if (generate_debug_code_) {
|
797
788
|
// Check that we're not inside a with or catch context.
|
798
789
|
__ lw(a1, FieldMemOperand(cp, HeapObject::kMapOffset));
|
799
790
|
__ LoadRoot(t0, Heap::kWithContextMapRootIndex);
|
@@ -817,10 +808,11 @@ void FullCodeGenerator::VisitVariableDeclaration(
|
|
817
808
|
bool hole_init = mode == CONST || mode == CONST_HARMONY || mode == LET;
|
818
809
|
switch (variable->location()) {
|
819
810
|
case Variable::UNALLOCATED:
|
820
|
-
globals_->Add(variable->name());
|
811
|
+
globals_->Add(variable->name(), zone());
|
821
812
|
globals_->Add(variable->binding_needs_init()
|
822
813
|
? isolate()->factory()->the_hole_value()
|
823
|
-
: isolate()->factory()->undefined_value()
|
814
|
+
: isolate()->factory()->undefined_value(),
|
815
|
+
zone());
|
824
816
|
break;
|
825
817
|
|
826
818
|
case Variable::PARAMETER:
|
@@ -847,10 +839,9 @@ void FullCodeGenerator::VisitVariableDeclaration(
|
|
847
839
|
Comment cmnt(masm_, "[ VariableDeclaration");
|
848
840
|
__ li(a2, Operand(variable->name()));
|
849
841
|
// Declaration nodes are always introduced in one of four modes.
|
850
|
-
ASSERT(mode
|
851
|
-
|
852
|
-
|
853
|
-
? READ_ONLY : NONE;
|
842
|
+
ASSERT(IsDeclaredVariableMode(mode));
|
843
|
+
PropertyAttributes attr =
|
844
|
+
IsImmutableVariableMode(mode) ? READ_ONLY : NONE;
|
854
845
|
__ li(a1, Operand(Smi::FromInt(attr)));
|
855
846
|
// Push initial value, if any.
|
856
847
|
// Note: For variables we must not push an initial value (such as
|
@@ -877,12 +868,12 @@ void FullCodeGenerator::VisitFunctionDeclaration(
|
|
877
868
|
Variable* variable = proxy->var();
|
878
869
|
switch (variable->location()) {
|
879
870
|
case Variable::UNALLOCATED: {
|
880
|
-
globals_->Add(variable->name());
|
871
|
+
globals_->Add(variable->name(), zone());
|
881
872
|
Handle<SharedFunctionInfo> function =
|
882
873
|
Compiler::BuildFunctionInfo(declaration->fun(), script());
|
883
874
|
// Check for stack-overflow exception.
|
884
875
|
if (function.is_null()) return SetStackOverflow();
|
885
|
-
globals_->Add(function);
|
876
|
+
globals_->Add(function, zone());
|
886
877
|
break;
|
887
878
|
}
|
888
879
|
|
@@ -928,34 +919,33 @@ void FullCodeGenerator::VisitFunctionDeclaration(
|
|
928
919
|
|
929
920
|
|
930
921
|
void FullCodeGenerator::VisitModuleDeclaration(ModuleDeclaration* declaration) {
|
931
|
-
|
932
|
-
|
933
|
-
|
934
|
-
ASSERT(!instance.is_null());
|
922
|
+
Variable* variable = declaration->proxy()->var();
|
923
|
+
ASSERT(variable->location() == Variable::CONTEXT);
|
924
|
+
ASSERT(variable->interface()->IsFrozen());
|
935
925
|
|
936
|
-
|
937
|
-
|
938
|
-
Comment cmnt(masm_, "[ ModuleDeclaration");
|
939
|
-
globals_->Add(variable->name());
|
940
|
-
globals_->Add(instance);
|
941
|
-
Visit(declaration->module());
|
942
|
-
break;
|
943
|
-
}
|
926
|
+
Comment cmnt(masm_, "[ ModuleDeclaration");
|
927
|
+
EmitDebugCheckDeclarationContext(variable);
|
944
928
|
|
945
|
-
|
946
|
-
|
947
|
-
|
948
|
-
|
949
|
-
__ sw(a1, ContextOperand(cp, variable->index()));
|
950
|
-
Visit(declaration->module());
|
951
|
-
break;
|
952
|
-
}
|
929
|
+
// Load instance object.
|
930
|
+
__ LoadContext(a1, scope_->ContextChainLength(scope_->GlobalScope()));
|
931
|
+
__ lw(a1, ContextOperand(a1, variable->interface()->Index()));
|
932
|
+
__ lw(a1, ContextOperand(a1, Context::EXTENSION_INDEX));
|
953
933
|
|
954
|
-
|
955
|
-
|
956
|
-
|
957
|
-
|
958
|
-
|
934
|
+
// Assign it.
|
935
|
+
__ sw(a1, ContextOperand(cp, variable->index()));
|
936
|
+
// We know that we have written a module, which is not a smi.
|
937
|
+
__ RecordWriteContextSlot(cp,
|
938
|
+
Context::SlotOffset(variable->index()),
|
939
|
+
a1,
|
940
|
+
a3,
|
941
|
+
kRAHasBeenSaved,
|
942
|
+
kDontSaveFPRegs,
|
943
|
+
EMIT_REMEMBERED_SET,
|
944
|
+
OMIT_SMI_CHECK);
|
945
|
+
PrepareForBailoutForId(declaration->proxy()->id(), NO_REGISTERS);
|
946
|
+
|
947
|
+
// Traverse into body.
|
948
|
+
Visit(declaration->module());
|
959
949
|
}
|
960
950
|
|
961
951
|
|
@@ -998,6 +988,14 @@ void FullCodeGenerator::DeclareGlobals(Handle<FixedArray> pairs) {
|
|
998
988
|
}
|
999
989
|
|
1000
990
|
|
991
|
+
void FullCodeGenerator::DeclareModules(Handle<FixedArray> descriptions) {
|
992
|
+
// Call the runtime to declare the modules.
|
993
|
+
__ Push(descriptions);
|
994
|
+
__ CallRuntime(Runtime::kDeclareModules, 1);
|
995
|
+
// Return value is ignored.
|
996
|
+
}
|
997
|
+
|
998
|
+
|
1001
999
|
void FullCodeGenerator::VisitSwitchStatement(SwitchStatement* stmt) {
|
1002
1000
|
Comment cmnt(masm_, "[ SwitchStatement");
|
1003
1001
|
Breakable nested_statement(this, stmt);
|
@@ -1140,25 +1138,32 @@ void FullCodeGenerator::VisitForInStatement(ForInStatement* stmt) {
|
|
1140
1138
|
// modification check. Otherwise, we got a fixed array, and we have
|
1141
1139
|
// to do a slow check.
|
1142
1140
|
Label fixed_array;
|
1143
|
-
__
|
1144
|
-
__ lw(a1, FieldMemOperand(a2, HeapObject::kMapOffset));
|
1141
|
+
__ lw(a2, FieldMemOperand(v0, HeapObject::kMapOffset));
|
1145
1142
|
__ LoadRoot(at, Heap::kMetaMapRootIndex);
|
1146
|
-
__ Branch(&fixed_array, ne,
|
1143
|
+
__ Branch(&fixed_array, ne, a2, Operand(at));
|
1147
1144
|
|
1148
1145
|
// We got a map in register v0. Get the enumeration cache from it.
|
1146
|
+
Label no_descriptors;
|
1149
1147
|
__ bind(&use_cache);
|
1150
|
-
|
1151
|
-
__
|
1152
|
-
__
|
1148
|
+
|
1149
|
+
__ EnumLength(a1, v0);
|
1150
|
+
__ Branch(&no_descriptors, eq, a1, Operand(Smi::FromInt(0)));
|
1151
|
+
|
1152
|
+
__ LoadInstanceDescriptors(v0, a2);
|
1153
|
+
__ lw(a2, FieldMemOperand(a2, DescriptorArray::kEnumCacheOffset));
|
1154
|
+
__ lw(a2, FieldMemOperand(a2, DescriptorArray::kEnumCacheBridgeCacheOffset));
|
1153
1155
|
|
1154
1156
|
// Set up the four remaining stack slots.
|
1155
1157
|
__ push(v0); // Map.
|
1156
|
-
__ lw(a1, FieldMemOperand(a2, FixedArray::kLengthOffset));
|
1157
1158
|
__ li(a0, Operand(Smi::FromInt(0)));
|
1158
1159
|
// Push enumeration cache, enumeration cache length (as smi) and zero.
|
1159
1160
|
__ Push(a2, a1, a0);
|
1160
1161
|
__ jmp(&loop);
|
1161
1162
|
|
1163
|
+
__ bind(&no_descriptors);
|
1164
|
+
__ Drop(1);
|
1165
|
+
__ jmp(&exit);
|
1166
|
+
|
1162
1167
|
// We got a fixed array in register v0. Iterate through that.
|
1163
1168
|
Label non_proxy;
|
1164
1169
|
__ bind(&fixed_array);
|
@@ -1167,7 +1172,7 @@ void FullCodeGenerator::VisitForInStatement(ForInStatement* stmt) {
|
|
1167
1172
|
isolate()->factory()->NewJSGlobalPropertyCell(
|
1168
1173
|
Handle<Object>(
|
1169
1174
|
Smi::FromInt(TypeFeedbackCells::kForInFastCaseMarker)));
|
1170
|
-
RecordTypeFeedbackCell(stmt->
|
1175
|
+
RecordTypeFeedbackCell(stmt->ForInFeedbackId(), cell);
|
1171
1176
|
__ LoadHeapObject(a1, cell);
|
1172
1177
|
__ li(a2, Operand(Smi::FromInt(TypeFeedbackCells::kForInSlowCaseMarker)));
|
1173
1178
|
__ sw(a2, FieldMemOperand(a1, JSGlobalPropertyCell::kValueOffset));
|
@@ -1243,7 +1248,7 @@ void FullCodeGenerator::VisitForInStatement(ForInStatement* stmt) {
|
|
1243
1248
|
__ Addu(a0, a0, Operand(Smi::FromInt(1)));
|
1244
1249
|
__ push(a0);
|
1245
1250
|
|
1246
|
-
|
1251
|
+
EmitBackEdgeBookkeeping(stmt, &loop);
|
1247
1252
|
__ Branch(&loop);
|
1248
1253
|
|
1249
1254
|
// Remove the pointers stored on the stack.
|
@@ -1323,9 +1328,9 @@ void FullCodeGenerator::EmitLoadGlobalCheckExtensions(Variable* var,
|
|
1323
1328
|
__ Move(next, current);
|
1324
1329
|
}
|
1325
1330
|
__ bind(&loop);
|
1326
|
-
// Terminate at
|
1331
|
+
// Terminate at native context.
|
1327
1332
|
__ lw(temp, FieldMemOperand(next, HeapObject::kMapOffset));
|
1328
|
-
__ LoadRoot(t0, Heap::
|
1333
|
+
__ LoadRoot(t0, Heap::kNativeContextMapRootIndex);
|
1329
1334
|
__ Branch(&fast, eq, temp, Operand(t0));
|
1330
1335
|
// Check that extension is NULL.
|
1331
1336
|
__ lw(temp, ContextOperand(next, Context::EXTENSION_INDEX));
|
@@ -1391,9 +1396,9 @@ void FullCodeGenerator::EmitDynamicLookupFastCase(Variable* var,
|
|
1391
1396
|
} else if (var->mode() == DYNAMIC_LOCAL) {
|
1392
1397
|
Variable* local = var->local_if_not_shadowed();
|
1393
1398
|
__ lw(v0, ContextSlotOperandCheckExtensions(local, slow));
|
1394
|
-
if (local->mode() ==
|
1395
|
-
local->mode() ==
|
1396
|
-
local->mode() ==
|
1399
|
+
if (local->mode() == LET ||
|
1400
|
+
local->mode() == CONST ||
|
1401
|
+
local->mode() == CONST_HARMONY) {
|
1397
1402
|
__ LoadRoot(at, Heap::kTheHoleValueRootIndex);
|
1398
1403
|
__ subu(at, v0, at); // Sub as compare: at == 0 on eq.
|
1399
1404
|
if (local->mode() == CONST) {
|
@@ -1611,9 +1616,9 @@ void FullCodeGenerator::VisitObjectLiteral(ObjectLiteral* expr) {
|
|
1611
1616
|
// Mark all computed expressions that are bound to a key that
|
1612
1617
|
// is shadowed by a later occurrence of the same key. For the
|
1613
1618
|
// marked expressions, no store code is emitted.
|
1614
|
-
expr->CalculateEmitStore();
|
1619
|
+
expr->CalculateEmitStore(zone());
|
1615
1620
|
|
1616
|
-
AccessorTable accessor_table(
|
1621
|
+
AccessorTable accessor_table(zone());
|
1617
1622
|
for (int i = 0; i < expr->properties()->length(); i++) {
|
1618
1623
|
ObjectLiteral::Property* property = expr->properties()->at(i);
|
1619
1624
|
if (property->IsCompileTimeValue()) continue;
|
@@ -1640,7 +1645,7 @@ void FullCodeGenerator::VisitObjectLiteral(ObjectLiteral* expr) {
|
|
1640
1645
|
Handle<Code> ic = is_classic_mode()
|
1641
1646
|
? isolate()->builtins()->StoreIC_Initialize()
|
1642
1647
|
: isolate()->builtins()->StoreIC_Initialize_Strict();
|
1643
|
-
CallIC(ic, RelocInfo::CODE_TARGET, key->
|
1648
|
+
CallIC(ic, RelocInfo::CODE_TARGET, key->LiteralFeedbackId());
|
1644
1649
|
PrepareForBailoutForId(key->id(), NO_REGISTERS);
|
1645
1650
|
} else {
|
1646
1651
|
VisitForEffect(value);
|
@@ -1725,7 +1730,9 @@ void FullCodeGenerator::VisitArrayLiteral(ArrayLiteral* expr) {
|
|
1725
1730
|
if (has_fast_elements && constant_elements_values->map() ==
|
1726
1731
|
isolate()->heap()->fixed_cow_array_map()) {
|
1727
1732
|
FastCloneShallowArrayStub stub(
|
1728
|
-
FastCloneShallowArrayStub::COPY_ON_WRITE_ELEMENTS,
|
1733
|
+
FastCloneShallowArrayStub::COPY_ON_WRITE_ELEMENTS,
|
1734
|
+
DONT_TRACK_ALLOCATION_SITE,
|
1735
|
+
length);
|
1729
1736
|
__ CallStub(&stub);
|
1730
1737
|
__ IncrementCounter(isolate()->counters()->cow_arrays_created_stub(),
|
1731
1738
|
1, a1, a2);
|
@@ -1736,10 +1743,17 @@ void FullCodeGenerator::VisitArrayLiteral(ArrayLiteral* expr) {
|
|
1736
1743
|
} else {
|
1737
1744
|
ASSERT(IsFastSmiOrObjectElementsKind(constant_elements_kind) ||
|
1738
1745
|
FLAG_smi_only_arrays);
|
1739
|
-
FastCloneShallowArrayStub::Mode mode =
|
1740
|
-
|
1741
|
-
|
1742
|
-
|
1746
|
+
FastCloneShallowArrayStub::Mode mode =
|
1747
|
+
FastCloneShallowArrayStub::CLONE_ANY_ELEMENTS;
|
1748
|
+
AllocationSiteMode allocation_site_mode = FLAG_track_allocation_sites
|
1749
|
+
? TRACK_ALLOCATION_SITE : DONT_TRACK_ALLOCATION_SITE;
|
1750
|
+
|
1751
|
+
if (has_fast_elements) {
|
1752
|
+
mode = FastCloneShallowArrayStub::CLONE_ELEMENTS;
|
1753
|
+
allocation_site_mode = DONT_TRACK_ALLOCATION_SITE;
|
1754
|
+
}
|
1755
|
+
|
1756
|
+
FastCloneShallowArrayStub stub(mode, allocation_site_mode, length);
|
1743
1757
|
__ CallStub(&stub);
|
1744
1758
|
}
|
1745
1759
|
|
@@ -1851,11 +1865,11 @@ void FullCodeGenerator::VisitAssignment(Assignment* expr) {
|
|
1851
1865
|
break;
|
1852
1866
|
case NAMED_PROPERTY:
|
1853
1867
|
EmitNamedPropertyLoad(property);
|
1854
|
-
PrepareForBailoutForId(
|
1868
|
+
PrepareForBailoutForId(property->LoadId(), TOS_REG);
|
1855
1869
|
break;
|
1856
1870
|
case KEYED_PROPERTY:
|
1857
1871
|
EmitKeyedPropertyLoad(property);
|
1858
|
-
PrepareForBailoutForId(
|
1872
|
+
PrepareForBailoutForId(property->LoadId(), TOS_REG);
|
1859
1873
|
break;
|
1860
1874
|
}
|
1861
1875
|
}
|
@@ -1913,7 +1927,7 @@ void FullCodeGenerator::EmitNamedPropertyLoad(Property* prop) {
|
|
1913
1927
|
__ li(a2, Operand(key->handle()));
|
1914
1928
|
// Call load IC. It has arguments receiver and property name a0 and a2.
|
1915
1929
|
Handle<Code> ic = isolate()->builtins()->LoadIC_Initialize();
|
1916
|
-
CallIC(ic, RelocInfo::CODE_TARGET, prop->
|
1930
|
+
CallIC(ic, RelocInfo::CODE_TARGET, prop->PropertyFeedbackId());
|
1917
1931
|
}
|
1918
1932
|
|
1919
1933
|
|
@@ -1922,7 +1936,7 @@ void FullCodeGenerator::EmitKeyedPropertyLoad(Property* prop) {
|
|
1922
1936
|
__ mov(a0, result_register());
|
1923
1937
|
// Call keyed load IC. It has arguments key and receiver in a0 and a1.
|
1924
1938
|
Handle<Code> ic = isolate()->builtins()->KeyedLoadIC_Initialize();
|
1925
|
-
CallIC(ic, RelocInfo::CODE_TARGET, prop->
|
1939
|
+
CallIC(ic, RelocInfo::CODE_TARGET, prop->PropertyFeedbackId());
|
1926
1940
|
}
|
1927
1941
|
|
1928
1942
|
|
@@ -1950,7 +1964,8 @@ void FullCodeGenerator::EmitInlineSmiBinaryOp(BinaryOperation* expr,
|
|
1950
1964
|
|
1951
1965
|
__ bind(&stub_call);
|
1952
1966
|
BinaryOpStub stub(op, mode);
|
1953
|
-
CallIC(stub.GetCode(), RelocInfo::CODE_TARGET,
|
1967
|
+
CallIC(stub.GetCode(), RelocInfo::CODE_TARGET,
|
1968
|
+
expr->BinaryOperationFeedbackId());
|
1954
1969
|
patch_site.EmitPatchInfo();
|
1955
1970
|
__ jmp(&done);
|
1956
1971
|
|
@@ -2033,14 +2048,15 @@ void FullCodeGenerator::EmitBinaryOp(BinaryOperation* expr,
|
|
2033
2048
|
__ pop(a1);
|
2034
2049
|
BinaryOpStub stub(op, mode);
|
2035
2050
|
JumpPatchSite patch_site(masm_); // unbound, signals no inlined smi code.
|
2036
|
-
CallIC(stub.GetCode(), RelocInfo::CODE_TARGET,
|
2051
|
+
CallIC(stub.GetCode(), RelocInfo::CODE_TARGET,
|
2052
|
+
expr->BinaryOperationFeedbackId());
|
2037
2053
|
patch_site.EmitPatchInfo();
|
2038
2054
|
context()->Plug(v0);
|
2039
2055
|
}
|
2040
2056
|
|
2041
2057
|
|
2042
2058
|
void FullCodeGenerator::EmitAssignment(Expression* expr) {
|
2043
|
-
// Invalid left-hand sides are rewritten to have a 'throw
|
2059
|
+
// Invalid left-hand sides are rewritten by the parser to have a 'throw
|
2044
2060
|
// ReferenceError' on the left-hand side.
|
2045
2061
|
if (!expr->IsValidLeftHandSide()) {
|
2046
2062
|
VisitForEffect(expr);
|
@@ -2165,7 +2181,7 @@ void FullCodeGenerator::EmitVariableAssignment(Variable* var,
|
|
2165
2181
|
// in harmony mode.
|
2166
2182
|
if (var->IsStackAllocated() || var->IsContextSlot()) {
|
2167
2183
|
MemOperand location = VarOperand(var, a1);
|
2168
|
-
if (
|
2184
|
+
if (generate_debug_code_ && op == Token::INIT_LET) {
|
2169
2185
|
// Check for an uninitialized let binding.
|
2170
2186
|
__ lw(a2, location);
|
2171
2187
|
__ LoadRoot(t0, Heap::kTheHoleValueRootIndex);
|
@@ -2198,44 +2214,17 @@ void FullCodeGenerator::EmitNamedPropertyAssignment(Assignment* expr) {
|
|
2198
2214
|
ASSERT(prop != NULL);
|
2199
2215
|
ASSERT(prop->key()->AsLiteral() != NULL);
|
2200
2216
|
|
2201
|
-
// If the assignment starts a block of assignments to the same object,
|
2202
|
-
// change to slow case to avoid the quadratic behavior of repeatedly
|
2203
|
-
// adding fast properties.
|
2204
|
-
if (expr->starts_initialization_block()) {
|
2205
|
-
__ push(result_register());
|
2206
|
-
__ lw(t0, MemOperand(sp, kPointerSize)); // Receiver is now under value.
|
2207
|
-
__ push(t0);
|
2208
|
-
__ CallRuntime(Runtime::kToSlowProperties, 1);
|
2209
|
-
__ pop(result_register());
|
2210
|
-
}
|
2211
|
-
|
2212
2217
|
// Record source code position before IC call.
|
2213
2218
|
SetSourcePosition(expr->position());
|
2214
2219
|
__ mov(a0, result_register()); // Load the value.
|
2215
2220
|
__ li(a2, Operand(prop->key()->AsLiteral()->handle()));
|
2216
|
-
|
2217
|
-
// receiver into fast case.
|
2218
|
-
if (expr->ends_initialization_block()) {
|
2219
|
-
__ lw(a1, MemOperand(sp));
|
2220
|
-
} else {
|
2221
|
-
__ pop(a1);
|
2222
|
-
}
|
2221
|
+
__ pop(a1);
|
2223
2222
|
|
2224
2223
|
Handle<Code> ic = is_classic_mode()
|
2225
2224
|
? isolate()->builtins()->StoreIC_Initialize()
|
2226
2225
|
: isolate()->builtins()->StoreIC_Initialize_Strict();
|
2227
|
-
CallIC(ic, RelocInfo::CODE_TARGET, expr->
|
2228
|
-
|
2229
|
-
// If the assignment ends an initialization block, revert to fast case.
|
2230
|
-
if (expr->ends_initialization_block()) {
|
2231
|
-
__ push(v0); // Result of assignment, saved even if not needed.
|
2232
|
-
// Receiver is under the result value.
|
2233
|
-
__ lw(t0, MemOperand(sp, kPointerSize));
|
2234
|
-
__ push(t0);
|
2235
|
-
__ CallRuntime(Runtime::kToFastProperties, 1);
|
2236
|
-
__ pop(v0);
|
2237
|
-
__ Drop(1);
|
2238
|
-
}
|
2226
|
+
CallIC(ic, RelocInfo::CODE_TARGET, expr->AssignmentFeedbackId());
|
2227
|
+
|
2239
2228
|
PrepareForBailoutForId(expr->AssignmentId(), TOS_REG);
|
2240
2229
|
context()->Plug(v0);
|
2241
2230
|
}
|
@@ -2244,18 +2233,6 @@ void FullCodeGenerator::EmitNamedPropertyAssignment(Assignment* expr) {
|
|
2244
2233
|
void FullCodeGenerator::EmitKeyedPropertyAssignment(Assignment* expr) {
|
2245
2234
|
// Assignment to a property, using a keyed store IC.
|
2246
2235
|
|
2247
|
-
// If the assignment starts a block of assignments to the same object,
|
2248
|
-
// change to slow case to avoid the quadratic behavior of repeatedly
|
2249
|
-
// adding fast properties.
|
2250
|
-
if (expr->starts_initialization_block()) {
|
2251
|
-
__ push(result_register());
|
2252
|
-
// Receiver is now under the key and value.
|
2253
|
-
__ lw(t0, MemOperand(sp, 2 * kPointerSize));
|
2254
|
-
__ push(t0);
|
2255
|
-
__ CallRuntime(Runtime::kToSlowProperties, 1);
|
2256
|
-
__ pop(result_register());
|
2257
|
-
}
|
2258
|
-
|
2259
2236
|
// Record source code position before IC call.
|
2260
2237
|
SetSourcePosition(expr->position());
|
2261
2238
|
// Call keyed store IC.
|
@@ -2265,29 +2242,13 @@ void FullCodeGenerator::EmitKeyedPropertyAssignment(Assignment* expr) {
|
|
2265
2242
|
// - a2 is the receiver.
|
2266
2243
|
__ mov(a0, result_register());
|
2267
2244
|
__ pop(a1); // Key.
|
2268
|
-
|
2269
|
-
// receiver into fast case.
|
2270
|
-
if (expr->ends_initialization_block()) {
|
2271
|
-
__ lw(a2, MemOperand(sp));
|
2272
|
-
} else {
|
2273
|
-
__ pop(a2);
|
2274
|
-
}
|
2245
|
+
__ pop(a2);
|
2275
2246
|
|
2276
2247
|
Handle<Code> ic = is_classic_mode()
|
2277
2248
|
? isolate()->builtins()->KeyedStoreIC_Initialize()
|
2278
2249
|
: isolate()->builtins()->KeyedStoreIC_Initialize_Strict();
|
2279
|
-
CallIC(ic, RelocInfo::CODE_TARGET, expr->
|
2280
|
-
|
2281
|
-
// If the assignment ends an initialization block, revert to fast case.
|
2282
|
-
if (expr->ends_initialization_block()) {
|
2283
|
-
__ push(v0); // Result of assignment, saved even if not needed.
|
2284
|
-
// Receiver is under the result value.
|
2285
|
-
__ lw(t0, MemOperand(sp, kPointerSize));
|
2286
|
-
__ push(t0);
|
2287
|
-
__ CallRuntime(Runtime::kToFastProperties, 1);
|
2288
|
-
__ pop(v0);
|
2289
|
-
__ Drop(1);
|
2290
|
-
}
|
2250
|
+
CallIC(ic, RelocInfo::CODE_TARGET, expr->AssignmentFeedbackId());
|
2251
|
+
|
2291
2252
|
PrepareForBailoutForId(expr->AssignmentId(), TOS_REG);
|
2292
2253
|
context()->Plug(v0);
|
2293
2254
|
}
|
@@ -2300,6 +2261,7 @@ void FullCodeGenerator::VisitProperty(Property* expr) {
|
|
2300
2261
|
if (key->IsPropertyName()) {
|
2301
2262
|
VisitForAccumulatorValue(expr->obj());
|
2302
2263
|
EmitNamedPropertyLoad(expr);
|
2264
|
+
PrepareForBailoutForId(expr->LoadId(), TOS_REG);
|
2303
2265
|
context()->Plug(v0);
|
2304
2266
|
} else {
|
2305
2267
|
VisitForStackValue(expr->obj());
|
@@ -2313,9 +2275,9 @@ void FullCodeGenerator::VisitProperty(Property* expr) {
|
|
2313
2275
|
|
2314
2276
|
void FullCodeGenerator::CallIC(Handle<Code> code,
|
2315
2277
|
RelocInfo::Mode rmode,
|
2316
|
-
|
2278
|
+
TypeFeedbackId id) {
|
2317
2279
|
ic_total_count_++;
|
2318
|
-
__ Call(code, rmode,
|
2280
|
+
__ Call(code, rmode, id);
|
2319
2281
|
}
|
2320
2282
|
|
2321
2283
|
|
@@ -2336,7 +2298,7 @@ void FullCodeGenerator::EmitCallWithIC(Call* expr,
|
|
2336
2298
|
// Call the IC initialization code.
|
2337
2299
|
Handle<Code> ic =
|
2338
2300
|
isolate()->stub_cache()->ComputeCallInitialize(arg_count, mode);
|
2339
|
-
CallIC(ic, mode, expr->
|
2301
|
+
CallIC(ic, mode, expr->CallFeedbackId());
|
2340
2302
|
RecordJSReturnSite(expr);
|
2341
2303
|
// Restore context register.
|
2342
2304
|
__ lw(cp, MemOperand(fp, StandardFrameConstants::kContextOffset));
|
@@ -2369,7 +2331,7 @@ void FullCodeGenerator::EmitKeyedCallWithIC(Call* expr,
|
|
2369
2331
|
Handle<Code> ic =
|
2370
2332
|
isolate()->stub_cache()->ComputeKeyedCallInitialize(arg_count);
|
2371
2333
|
__ lw(a2, MemOperand(sp, (arg_count + 1) * kPointerSize)); // Key.
|
2372
|
-
CallIC(ic, RelocInfo::CODE_TARGET, expr->
|
2334
|
+
CallIC(ic, RelocInfo::CODE_TARGET, expr->CallFeedbackId());
|
2373
2335
|
RecordJSReturnSite(expr);
|
2374
2336
|
// Restore context register.
|
2375
2337
|
__ lw(cp, MemOperand(fp, StandardFrameConstants::kContextOffset));
|
@@ -2389,20 +2351,18 @@ void FullCodeGenerator::EmitCallWithStub(Call* expr, CallFunctionFlags flags) {
|
|
2389
2351
|
// Record source position for debugger.
|
2390
2352
|
SetSourcePosition(expr->position());
|
2391
2353
|
|
2392
|
-
// Record call targets
|
2393
|
-
|
2394
|
-
|
2395
|
-
|
2396
|
-
|
2397
|
-
|
2398
|
-
|
2399
|
-
|
2400
|
-
__ li(a2, Operand(cell));
|
2401
|
-
}
|
2354
|
+
// Record call targets.
|
2355
|
+
flags = static_cast<CallFunctionFlags>(flags | RECORD_CALL_TARGET);
|
2356
|
+
Handle<Object> uninitialized =
|
2357
|
+
TypeFeedbackCells::UninitializedSentinel(isolate());
|
2358
|
+
Handle<JSGlobalPropertyCell> cell =
|
2359
|
+
isolate()->factory()->NewJSGlobalPropertyCell(uninitialized);
|
2360
|
+
RecordTypeFeedbackCell(expr->CallFeedbackId(), cell);
|
2361
|
+
__ li(a2, Operand(cell));
|
2402
2362
|
|
2403
2363
|
CallFunctionStub stub(arg_count, flags);
|
2404
2364
|
__ lw(a1, MemOperand(sp, (arg_count + 1) * kPointerSize));
|
2405
|
-
__ CallStub(&stub);
|
2365
|
+
__ CallStub(&stub, expr->CallFeedbackId());
|
2406
2366
|
RecordJSReturnSite(expr);
|
2407
2367
|
// Restore context register.
|
2408
2368
|
__ lw(cp, MemOperand(fp, StandardFrameConstants::kContextOffset));
|
@@ -2448,7 +2408,7 @@ void FullCodeGenerator::VisitCall(Call* expr) {
|
|
2448
2408
|
VariableProxy* proxy = callee->AsVariableProxy();
|
2449
2409
|
Property* property = callee->AsProperty();
|
2450
2410
|
|
2451
|
-
if (proxy != NULL && proxy->var()->is_possibly_eval()) {
|
2411
|
+
if (proxy != NULL && proxy->var()->is_possibly_eval(isolate())) {
|
2452
2412
|
// In a call to eval, we first call %ResolvePossiblyDirectEval to
|
2453
2413
|
// resolve the function we need to call and the receiver of the
|
2454
2414
|
// call. Then we call the resolved function using the given
|
@@ -2587,21 +2547,15 @@ void FullCodeGenerator::VisitCallNew(CallNew* expr) {
|
|
2587
2547
|
__ li(a0, Operand(arg_count));
|
2588
2548
|
__ lw(a1, MemOperand(sp, arg_count * kPointerSize));
|
2589
2549
|
|
2590
|
-
// Record call targets in unoptimized code
|
2591
|
-
|
2592
|
-
|
2593
|
-
|
2594
|
-
|
2595
|
-
|
2596
|
-
|
2597
|
-
isolate()->factory()->NewJSGlobalPropertyCell(uninitialized);
|
2598
|
-
RecordTypeFeedbackCell(expr->id(), cell);
|
2599
|
-
__ li(a2, Operand(cell));
|
2600
|
-
} else {
|
2601
|
-
flags = NO_CALL_FUNCTION_FLAGS;
|
2602
|
-
}
|
2550
|
+
// Record call targets in unoptimized code.
|
2551
|
+
Handle<Object> uninitialized =
|
2552
|
+
TypeFeedbackCells::UninitializedSentinel(isolate());
|
2553
|
+
Handle<JSGlobalPropertyCell> cell =
|
2554
|
+
isolate()->factory()->NewJSGlobalPropertyCell(uninitialized);
|
2555
|
+
RecordTypeFeedbackCell(expr->CallNewFeedbackId(), cell);
|
2556
|
+
__ li(a2, Operand(cell));
|
2603
2557
|
|
2604
|
-
CallConstructStub stub(
|
2558
|
+
CallConstructStub stub(RECORD_CALL_TARGET);
|
2605
2559
|
__ Call(stub.GetCode(), RelocInfo::CONSTRUCT_CALL);
|
2606
2560
|
PrepareForBailoutForId(expr->ReturnId(), TOS_REG);
|
2607
2561
|
context()->Plug(v0);
|
@@ -2742,7 +2696,7 @@ void FullCodeGenerator::EmitIsStringWrapperSafeForDefaultValueOf(
|
|
2742
2696
|
context()->PrepareTest(&materialize_true, &materialize_false,
|
2743
2697
|
&if_true, &if_false, &fall_through);
|
2744
2698
|
|
2745
|
-
|
2699
|
+
__ AssertNotSmi(v0);
|
2746
2700
|
|
2747
2701
|
__ lw(a1, FieldMemOperand(v0, HeapObject::kMapOffset));
|
2748
2702
|
__ lbu(t0, FieldMemOperand(a1, Map::kBitField2Offset));
|
@@ -2756,28 +2710,31 @@ void FullCodeGenerator::EmitIsStringWrapperSafeForDefaultValueOf(
|
|
2756
2710
|
__ Branch(if_false, eq, a2, Operand(t0));
|
2757
2711
|
|
2758
2712
|
// Look for valueOf symbol in the descriptor array, and indicate false if
|
2759
|
-
// found.
|
2760
|
-
//
|
2713
|
+
// found. Since we omit an enumeration index check, if it is added via a
|
2714
|
+
// transition that shares its descriptor array, this is a false positive.
|
2715
|
+
Label entry, loop, done;
|
2716
|
+
|
2717
|
+
// Skip loop if no descriptors are valid.
|
2718
|
+
__ NumberOfOwnDescriptors(a3, a1);
|
2719
|
+
__ Branch(&done, eq, a3, Operand(zero_reg));
|
2720
|
+
|
2761
2721
|
__ LoadInstanceDescriptors(a1, t0);
|
2762
|
-
|
2763
|
-
//
|
2764
|
-
// a3: length of descriptor array
|
2765
|
-
// Calculate the end of the descriptor array.
|
2722
|
+
// t0: descriptor array.
|
2723
|
+
// a3: valid entries in the descriptor array.
|
2766
2724
|
STATIC_ASSERT(kSmiTag == 0);
|
2767
2725
|
STATIC_ASSERT(kSmiTagSize == 1);
|
2768
2726
|
STATIC_ASSERT(kPointerSize == 4);
|
2769
|
-
__
|
2727
|
+
__ li(at, Operand(DescriptorArray::kDescriptorSize));
|
2728
|
+
__ Mul(a3, a3, at);
|
2729
|
+
// Calculate location of the first key name.
|
2730
|
+
__ Addu(t0, t0, Operand(DescriptorArray::kFirstOffset - kHeapObjectTag));
|
2731
|
+
// Calculate the end of the descriptor array.
|
2732
|
+
__ mov(a2, t0);
|
2770
2733
|
__ sll(t1, a3, kPointerSizeLog2 - kSmiTagSize);
|
2771
2734
|
__ Addu(a2, a2, t1);
|
2772
2735
|
|
2773
|
-
// Calculate location of the first key name.
|
2774
|
-
__ Addu(t0,
|
2775
|
-
t0,
|
2776
|
-
Operand(FixedArray::kHeaderSize - kHeapObjectTag +
|
2777
|
-
DescriptorArray::kFirstIndex * kPointerSize));
|
2778
2736
|
// Loop through all the keys in the descriptor array. If one of these is the
|
2779
2737
|
// symbol valueOf the result is false.
|
2780
|
-
Label entry, loop;
|
2781
2738
|
// The use of t2 to store the valueOf symbol asumes that it is not otherwise
|
2782
2739
|
// used in the loop below.
|
2783
2740
|
__ LoadRoot(t2, Heap::kvalue_of_symbolRootIndex);
|
@@ -2785,17 +2742,18 @@ void FullCodeGenerator::EmitIsStringWrapperSafeForDefaultValueOf(
|
|
2785
2742
|
__ bind(&loop);
|
2786
2743
|
__ lw(a3, MemOperand(t0, 0));
|
2787
2744
|
__ Branch(if_false, eq, a3, Operand(t2));
|
2788
|
-
__ Addu(t0, t0, Operand(kPointerSize));
|
2745
|
+
__ Addu(t0, t0, Operand(DescriptorArray::kDescriptorSize * kPointerSize));
|
2789
2746
|
__ bind(&entry);
|
2790
2747
|
__ Branch(&loop, ne, t0, Operand(a2));
|
2791
2748
|
|
2792
|
-
|
2749
|
+
__ bind(&done);
|
2750
|
+
// If a valueOf property is not found on the object check that its
|
2793
2751
|
// prototype is the un-modified String prototype. If not result is false.
|
2794
2752
|
__ lw(a2, FieldMemOperand(a1, Map::kPrototypeOffset));
|
2795
2753
|
__ JumpIfSmi(a2, if_false);
|
2796
2754
|
__ lw(a2, FieldMemOperand(a2, HeapObject::kMapOffset));
|
2797
|
-
__ lw(a3, ContextOperand(cp, Context::
|
2798
|
-
__ lw(a3, FieldMemOperand(a3, GlobalObject::
|
2755
|
+
__ lw(a3, ContextOperand(cp, Context::GLOBAL_OBJECT_INDEX));
|
2756
|
+
__ lw(a3, FieldMemOperand(a3, GlobalObject::kNativeContextOffset));
|
2799
2757
|
__ lw(a3, ContextOperand(a3, Context::STRING_FUNCTION_PROTOTYPE_MAP_INDEX));
|
2800
2758
|
__ Branch(if_false, ne, a2, Operand(a3));
|
2801
2759
|
|
@@ -3075,8 +3033,8 @@ void FullCodeGenerator::EmitRandomHeapNumber(CallRuntime* expr) {
|
|
3075
3033
|
// ( 1.(20 0s)(32 random bits) x 2^20 ) - (1.0 x 2^20)).
|
3076
3034
|
if (CpuFeatures::IsSupported(FPU)) {
|
3077
3035
|
__ PrepareCallCFunction(1, a0);
|
3078
|
-
__ lw(a0, ContextOperand(cp, Context::
|
3079
|
-
__ lw(a0, FieldMemOperand(a0, GlobalObject::
|
3036
|
+
__ lw(a0, ContextOperand(cp, Context::GLOBAL_OBJECT_INDEX));
|
3037
|
+
__ lw(a0, FieldMemOperand(a0, GlobalObject::kNativeContextOffset));
|
3080
3038
|
__ CallCFunction(ExternalReference::random_uint32_function(isolate()), 1);
|
3081
3039
|
|
3082
3040
|
CpuFeatures::Scope scope(FPU);
|
@@ -3093,8 +3051,8 @@ void FullCodeGenerator::EmitRandomHeapNumber(CallRuntime* expr) {
|
|
3093
3051
|
} else {
|
3094
3052
|
__ PrepareCallCFunction(2, a0);
|
3095
3053
|
__ mov(a0, s0);
|
3096
|
-
__ lw(a1, ContextOperand(cp, Context::
|
3097
|
-
__ lw(a1, FieldMemOperand(a1, GlobalObject::
|
3054
|
+
__ lw(a1, ContextOperand(cp, Context::GLOBAL_OBJECT_INDEX));
|
3055
|
+
__ lw(a1, FieldMemOperand(a1, GlobalObject::kNativeContextOffset));
|
3098
3056
|
__ CallCFunction(
|
3099
3057
|
ExternalReference::fill_heap_number_with_random_function(isolate()), 2);
|
3100
3058
|
}
|
@@ -3158,21 +3116,19 @@ void FullCodeGenerator::EmitDateField(CallRuntime* expr) {
|
|
3158
3116
|
|
3159
3117
|
VisitForAccumulatorValue(args->at(0)); // Load the object.
|
3160
3118
|
|
3161
|
-
Label runtime, done;
|
3119
|
+
Label runtime, done, not_date_object;
|
3162
3120
|
Register object = v0;
|
3163
3121
|
Register result = v0;
|
3164
3122
|
Register scratch0 = t5;
|
3165
3123
|
Register scratch1 = a1;
|
3166
3124
|
|
3167
|
-
|
3168
|
-
__ AbortIfSmi(object);
|
3125
|
+
__ JumpIfSmi(object, ¬_date_object);
|
3169
3126
|
__ GetObjectType(object, scratch1, scratch1);
|
3170
|
-
__
|
3171
|
-
scratch1, Operand(JS_DATE_TYPE));
|
3172
|
-
#endif
|
3127
|
+
__ Branch(¬_date_object, ne, scratch1, Operand(JS_DATE_TYPE));
|
3173
3128
|
|
3174
3129
|
if (index->value() == 0) {
|
3175
3130
|
__ lw(result, FieldMemOperand(object, JSDate::kValueOffset));
|
3131
|
+
__ jmp(&done);
|
3176
3132
|
} else {
|
3177
3133
|
if (index->value() < JSDate::kFirstUncachedField) {
|
3178
3134
|
ExternalReference stamp = ExternalReference::date_cache_stamp(isolate());
|
@@ -3189,9 +3145,44 @@ void FullCodeGenerator::EmitDateField(CallRuntime* expr) {
|
|
3189
3145
|
__ li(a1, Operand(index));
|
3190
3146
|
__ Move(a0, object);
|
3191
3147
|
__ CallCFunction(ExternalReference::get_date_field_function(isolate()), 2);
|
3192
|
-
__
|
3148
|
+
__ jmp(&done);
|
3193
3149
|
}
|
3194
3150
|
|
3151
|
+
__ bind(¬_date_object);
|
3152
|
+
__ CallRuntime(Runtime::kThrowNotDateError, 0);
|
3153
|
+
__ bind(&done);
|
3154
|
+
context()->Plug(v0);
|
3155
|
+
}
|
3156
|
+
|
3157
|
+
|
3158
|
+
void FullCodeGenerator::EmitOneByteSeqStringSetChar(CallRuntime* expr) {
|
3159
|
+
ZoneList<Expression*>* args = expr->arguments();
|
3160
|
+
ASSERT_EQ(3, args->length());
|
3161
|
+
|
3162
|
+
VisitForStackValue(args->at(1)); // index
|
3163
|
+
VisitForStackValue(args->at(2)); // value
|
3164
|
+
__ pop(a2);
|
3165
|
+
__ pop(a1);
|
3166
|
+
VisitForAccumulatorValue(args->at(0)); // string
|
3167
|
+
|
3168
|
+
static const String::Encoding encoding = String::ONE_BYTE_ENCODING;
|
3169
|
+
SeqStringSetCharGenerator::Generate(masm_, encoding, v0, a1, a2);
|
3170
|
+
context()->Plug(v0);
|
3171
|
+
}
|
3172
|
+
|
3173
|
+
|
3174
|
+
void FullCodeGenerator::EmitTwoByteSeqStringSetChar(CallRuntime* expr) {
|
3175
|
+
ZoneList<Expression*>* args = expr->arguments();
|
3176
|
+
ASSERT_EQ(3, args->length());
|
3177
|
+
|
3178
|
+
VisitForStackValue(args->at(1)); // index
|
3179
|
+
VisitForStackValue(args->at(2)); // value
|
3180
|
+
__ pop(a2);
|
3181
|
+
__ pop(a1);
|
3182
|
+
VisitForAccumulatorValue(args->at(0)); // string
|
3183
|
+
|
3184
|
+
static const String::Encoding encoding = String::TWO_BYTE_ENCODING;
|
3185
|
+
SeqStringSetCharGenerator::Generate(masm_, encoding, v0, a1, a2);
|
3195
3186
|
context()->Plug(v0);
|
3196
3187
|
}
|
3197
3188
|
|
@@ -3466,10 +3457,11 @@ void FullCodeGenerator::EmitCallFunction(CallRuntime* expr) {
|
|
3466
3457
|
}
|
3467
3458
|
VisitForAccumulatorValue(args->last()); // Function.
|
3468
3459
|
|
3469
|
-
|
3470
|
-
|
3460
|
+
Label runtime, done;
|
3461
|
+
// Check for non-function argument (including proxy).
|
3462
|
+
__ JumpIfSmi(v0, &runtime);
|
3471
3463
|
__ GetObjectType(v0, a1, a1);
|
3472
|
-
__ Branch(&
|
3464
|
+
__ Branch(&runtime, ne, a1, Operand(JS_FUNCTION_TYPE));
|
3473
3465
|
|
3474
3466
|
// InvokeFunction requires the function in a1. Move it in there.
|
3475
3467
|
__ mov(a1, result_register());
|
@@ -3479,7 +3471,7 @@ void FullCodeGenerator::EmitCallFunction(CallRuntime* expr) {
|
|
3479
3471
|
__ lw(cp, MemOperand(fp, StandardFrameConstants::kContextOffset));
|
3480
3472
|
__ jmp(&done);
|
3481
3473
|
|
3482
|
-
__ bind(&
|
3474
|
+
__ bind(&runtime);
|
3483
3475
|
__ push(v0);
|
3484
3476
|
__ CallRuntime(Runtime::kCall, args->length());
|
3485
3477
|
__ bind(&done);
|
@@ -3508,7 +3500,7 @@ void FullCodeGenerator::EmitGetFromCache(CallRuntime* expr) {
|
|
3508
3500
|
int cache_id = Smi::cast(*(args->at(0)->AsLiteral()->handle()))->value();
|
3509
3501
|
|
3510
3502
|
Handle<FixedArray> jsfunction_result_caches(
|
3511
|
-
isolate()->
|
3503
|
+
isolate()->native_context()->jsfunction_result_caches());
|
3512
3504
|
if (jsfunction_result_caches->length() <= cache_id) {
|
3513
3505
|
__ Abort("Attempt to use undefined cache.");
|
3514
3506
|
__ LoadRoot(v0, Heap::kUndefinedValueRootIndex);
|
@@ -3520,8 +3512,8 @@ void FullCodeGenerator::EmitGetFromCache(CallRuntime* expr) {
|
|
3520
3512
|
|
3521
3513
|
Register key = v0;
|
3522
3514
|
Register cache = a1;
|
3523
|
-
__ lw(cache, ContextOperand(cp, Context::
|
3524
|
-
__ lw(cache, FieldMemOperand(cache, GlobalObject::
|
3515
|
+
__ lw(cache, ContextOperand(cp, Context::GLOBAL_OBJECT_INDEX));
|
3516
|
+
__ lw(cache, FieldMemOperand(cache, GlobalObject::kNativeContextOffset));
|
3525
3517
|
__ lw(cache,
|
3526
3518
|
ContextOperand(
|
3527
3519
|
cache, Context::JSFUNCTION_RESULT_CACHES_INDEX));
|
@@ -3617,9 +3609,7 @@ void FullCodeGenerator::EmitGetCachedArrayIndex(CallRuntime* expr) {
|
|
3617
3609
|
ASSERT(args->length() == 1);
|
3618
3610
|
VisitForAccumulatorValue(args->at(0));
|
3619
3611
|
|
3620
|
-
|
3621
|
-
__ AbortIfNotString(v0);
|
3622
|
-
}
|
3612
|
+
__ AssertString(v0);
|
3623
3613
|
|
3624
3614
|
__ lw(v0, FieldMemOperand(v0, String::kHashFieldOffset));
|
3625
3615
|
__ IndexFromHash(v0, v0);
|
@@ -3693,7 +3683,7 @@ void FullCodeGenerator::EmitFastAsciiArrayJoin(CallRuntime* expr) {
|
|
3693
3683
|
// string_length: Accumulated sum of string lengths (smi).
|
3694
3684
|
// element: Current array element.
|
3695
3685
|
// elements_end: Array end.
|
3696
|
-
if (
|
3686
|
+
if (generate_debug_code_) {
|
3697
3687
|
__ Assert(gt, "No empty arrays here in EmitFastAsciiArrayJoin",
|
3698
3688
|
array_length, Operand(zero_reg));
|
3699
3689
|
}
|
@@ -3704,7 +3694,7 @@ void FullCodeGenerator::EmitFastAsciiArrayJoin(CallRuntime* expr) {
|
|
3704
3694
|
__ lw(scratch1, FieldMemOperand(string, HeapObject::kMapOffset));
|
3705
3695
|
__ lbu(scratch1, FieldMemOperand(scratch1, Map::kInstanceTypeOffset));
|
3706
3696
|
__ JumpIfInstanceTypeIsNotSequentialAscii(scratch1, scratch2, &bailout);
|
3707
|
-
__ lw(scratch1, FieldMemOperand(string,
|
3697
|
+
__ lw(scratch1, FieldMemOperand(string, SeqOneByteString::kLengthOffset));
|
3708
3698
|
__ AdduAndCheckForOverflow(string_length, string_length, scratch1, scratch3);
|
3709
3699
|
__ BranchOnOverflow(&bailout, scratch3);
|
3710
3700
|
__ Branch(&loop, lt, element, Operand(elements_end));
|
@@ -3731,7 +3721,7 @@ void FullCodeGenerator::EmitFastAsciiArrayJoin(CallRuntime* expr) {
|
|
3731
3721
|
// Add (separator length times array_length) - separator length to the
|
3732
3722
|
// string_length to get the length of the result string. array_length is not
|
3733
3723
|
// smi but the other values are, so the result is a smi.
|
3734
|
-
__ lw(scratch1, FieldMemOperand(separator,
|
3724
|
+
__ lw(scratch1, FieldMemOperand(separator, SeqOneByteString::kLengthOffset));
|
3735
3725
|
__ Subu(string_length, string_length, Operand(scratch1));
|
3736
3726
|
__ Mult(array_length, scratch1);
|
3737
3727
|
// Check for smi overflow. No overflow if higher 33 bits of 64-bit result are
|
@@ -3771,10 +3761,10 @@ void FullCodeGenerator::EmitFastAsciiArrayJoin(CallRuntime* expr) {
|
|
3771
3761
|
array_length = no_reg;
|
3772
3762
|
__ Addu(result_pos,
|
3773
3763
|
result,
|
3774
|
-
Operand(
|
3764
|
+
Operand(SeqOneByteString::kHeaderSize - kHeapObjectTag));
|
3775
3765
|
|
3776
3766
|
// Check the length of the separator.
|
3777
|
-
__ lw(scratch1, FieldMemOperand(separator,
|
3767
|
+
__ lw(scratch1, FieldMemOperand(separator, SeqOneByteString::kLengthOffset));
|
3778
3768
|
__ li(at, Operand(Smi::FromInt(1)));
|
3779
3769
|
__ Branch(&one_char_separator, eq, scratch1, Operand(at));
|
3780
3770
|
__ Branch(&long_separator, gt, scratch1, Operand(at));
|
@@ -3791,7 +3781,7 @@ void FullCodeGenerator::EmitFastAsciiArrayJoin(CallRuntime* expr) {
|
|
3791
3781
|
__ Addu(element, element, kPointerSize);
|
3792
3782
|
__ lw(string_length, FieldMemOperand(string, String::kLengthOffset));
|
3793
3783
|
__ SmiUntag(string_length);
|
3794
|
-
__ Addu(string, string,
|
3784
|
+
__ Addu(string, string, SeqOneByteString::kHeaderSize - kHeapObjectTag);
|
3795
3785
|
__ CopyBytes(string, result_pos, string_length, scratch1);
|
3796
3786
|
// End while (element < elements_end).
|
3797
3787
|
__ Branch(&empty_separator_loop, lt, element, Operand(elements_end));
|
@@ -3801,7 +3791,7 @@ void FullCodeGenerator::EmitFastAsciiArrayJoin(CallRuntime* expr) {
|
|
3801
3791
|
// One-character separator case.
|
3802
3792
|
__ bind(&one_char_separator);
|
3803
3793
|
// Replace separator with its ASCII character value.
|
3804
|
-
__ lbu(separator, FieldMemOperand(separator,
|
3794
|
+
__ lbu(separator, FieldMemOperand(separator, SeqOneByteString::kHeaderSize));
|
3805
3795
|
// Jump into the loop after the code that copies the separator, so the first
|
3806
3796
|
// element is not preceded by a separator.
|
3807
3797
|
__ jmp(&one_char_separator_loop_entry);
|
@@ -3823,7 +3813,7 @@ void FullCodeGenerator::EmitFastAsciiArrayJoin(CallRuntime* expr) {
|
|
3823
3813
|
__ Addu(element, element, kPointerSize);
|
3824
3814
|
__ lw(string_length, FieldMemOperand(string, String::kLengthOffset));
|
3825
3815
|
__ SmiUntag(string_length);
|
3826
|
-
__ Addu(string, string,
|
3816
|
+
__ Addu(string, string, SeqOneByteString::kHeaderSize - kHeapObjectTag);
|
3827
3817
|
__ CopyBytes(string, result_pos, string_length, scratch1);
|
3828
3818
|
// End while (element < elements_end).
|
3829
3819
|
__ Branch(&one_char_separator_loop, lt, element, Operand(elements_end));
|
@@ -3844,7 +3834,7 @@ void FullCodeGenerator::EmitFastAsciiArrayJoin(CallRuntime* expr) {
|
|
3844
3834
|
__ SmiUntag(string_length);
|
3845
3835
|
__ Addu(string,
|
3846
3836
|
separator,
|
3847
|
-
Operand(
|
3837
|
+
Operand(SeqOneByteString::kHeaderSize - kHeapObjectTag));
|
3848
3838
|
__ CopyBytes(string, result_pos, string_length, scratch1);
|
3849
3839
|
|
3850
3840
|
__ bind(&long_separator);
|
@@ -3852,7 +3842,7 @@ void FullCodeGenerator::EmitFastAsciiArrayJoin(CallRuntime* expr) {
|
|
3852
3842
|
__ Addu(element, element, kPointerSize);
|
3853
3843
|
__ lw(string_length, FieldMemOperand(string, String::kLengthOffset));
|
3854
3844
|
__ SmiUntag(string_length);
|
3855
|
-
__ Addu(string, string,
|
3845
|
+
__ Addu(string, string, SeqOneByteString::kHeaderSize - kHeapObjectTag);
|
3856
3846
|
__ CopyBytes(string, result_pos, string_length, scratch1);
|
3857
3847
|
// End while (element < elements_end).
|
3858
3848
|
__ Branch(&long_separator_loop, lt, element, Operand(elements_end));
|
@@ -3896,7 +3886,7 @@ void FullCodeGenerator::VisitCallRuntime(CallRuntime* expr) {
|
|
3896
3886
|
RelocInfo::Mode mode = RelocInfo::CODE_TARGET;
|
3897
3887
|
Handle<Code> ic =
|
3898
3888
|
isolate()->stub_cache()->ComputeCallInitialize(arg_count, mode);
|
3899
|
-
CallIC(ic, mode, expr->
|
3889
|
+
CallIC(ic, mode, expr->CallRuntimeFeedbackId());
|
3900
3890
|
// Restore context register.
|
3901
3891
|
__ lw(cp, MemOperand(fp, StandardFrameConstants::kContextOffset));
|
3902
3892
|
} else {
|
@@ -4052,7 +4042,8 @@ void FullCodeGenerator::EmitUnaryOperation(UnaryOperation* expr,
|
|
4052
4042
|
VisitForAccumulatorValue(expr->expression());
|
4053
4043
|
SetSourcePosition(expr->position());
|
4054
4044
|
__ mov(a0, result_register());
|
4055
|
-
CallIC(stub.GetCode(), RelocInfo::CODE_TARGET,
|
4045
|
+
CallIC(stub.GetCode(), RelocInfo::CODE_TARGET,
|
4046
|
+
expr->UnaryOperationFeedbackId());
|
4056
4047
|
context()->Plug(v0);
|
4057
4048
|
}
|
4058
4049
|
|
@@ -4110,7 +4101,7 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) {
|
|
4110
4101
|
if (assign_type == VARIABLE) {
|
4111
4102
|
PrepareForBailout(expr->expression(), TOS_REG);
|
4112
4103
|
} else {
|
4113
|
-
PrepareForBailoutForId(
|
4104
|
+
PrepareForBailoutForId(prop->LoadId(), TOS_REG);
|
4114
4105
|
}
|
4115
4106
|
|
4116
4107
|
// Call ToNumber only if operand is not a smi.
|
@@ -4147,9 +4138,8 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) {
|
|
4147
4138
|
JumpPatchSite patch_site(masm_);
|
4148
4139
|
|
4149
4140
|
int count_value = expr->op() == Token::INC ? 1 : -1;
|
4150
|
-
__ li(a1, Operand(Smi::FromInt(count_value)));
|
4151
|
-
|
4152
4141
|
if (ShouldInlineSmiCase(expr->op())) {
|
4142
|
+
__ li(a1, Operand(Smi::FromInt(count_value)));
|
4153
4143
|
__ AdduAndCheckForOverflow(v0, a0, a1, t0);
|
4154
4144
|
__ BranchOnOverflow(&stub_call, t0); // Do stub on overflow.
|
4155
4145
|
|
@@ -4158,12 +4148,14 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) {
|
|
4158
4148
|
patch_site.EmitJumpIfSmi(v0, &done);
|
4159
4149
|
__ bind(&stub_call);
|
4160
4150
|
}
|
4151
|
+
__ mov(a1, a0);
|
4152
|
+
__ li(a0, Operand(Smi::FromInt(count_value)));
|
4161
4153
|
|
4162
4154
|
// Record position before stub call.
|
4163
4155
|
SetSourcePosition(expr->position());
|
4164
4156
|
|
4165
4157
|
BinaryOpStub stub(Token::ADD, NO_OVERWRITE);
|
4166
|
-
CallIC(stub.GetCode(), RelocInfo::CODE_TARGET, expr->
|
4158
|
+
CallIC(stub.GetCode(), RelocInfo::CODE_TARGET, expr->CountBinOpFeedbackId());
|
4167
4159
|
patch_site.EmitPatchInfo();
|
4168
4160
|
__ bind(&done);
|
4169
4161
|
|
@@ -4196,7 +4188,7 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) {
|
|
4196
4188
|
Handle<Code> ic = is_classic_mode()
|
4197
4189
|
? isolate()->builtins()->StoreIC_Initialize()
|
4198
4190
|
: isolate()->builtins()->StoreIC_Initialize_Strict();
|
4199
|
-
CallIC(ic, RelocInfo::CODE_TARGET, expr->
|
4191
|
+
CallIC(ic, RelocInfo::CODE_TARGET, expr->CountStoreFeedbackId());
|
4200
4192
|
PrepareForBailoutForId(expr->AssignmentId(), TOS_REG);
|
4201
4193
|
if (expr->is_postfix()) {
|
4202
4194
|
if (!context()->IsEffect()) {
|
@@ -4214,7 +4206,7 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) {
|
|
4214
4206
|
Handle<Code> ic = is_classic_mode()
|
4215
4207
|
? isolate()->builtins()->KeyedStoreIC_Initialize()
|
4216
4208
|
: isolate()->builtins()->KeyedStoreIC_Initialize_Strict();
|
4217
|
-
CallIC(ic, RelocInfo::CODE_TARGET, expr->
|
4209
|
+
CallIC(ic, RelocInfo::CODE_TARGET, expr->CountStoreFeedbackId());
|
4218
4210
|
PrepareForBailoutForId(expr->AssignmentId(), TOS_REG);
|
4219
4211
|
if (expr->is_postfix()) {
|
4220
4212
|
if (!context()->IsEffect()) {
|
@@ -4380,29 +4372,7 @@ void FullCodeGenerator::VisitCompareOperation(CompareOperation* expr) {
|
|
4380
4372
|
|
4381
4373
|
default: {
|
4382
4374
|
VisitForAccumulatorValue(expr->right());
|
4383
|
-
Condition cc =
|
4384
|
-
switch (op) {
|
4385
|
-
case Token::EQ_STRICT:
|
4386
|
-
case Token::EQ:
|
4387
|
-
cc = eq;
|
4388
|
-
break;
|
4389
|
-
case Token::LT:
|
4390
|
-
cc = lt;
|
4391
|
-
break;
|
4392
|
-
case Token::GT:
|
4393
|
-
cc = gt;
|
4394
|
-
break;
|
4395
|
-
case Token::LTE:
|
4396
|
-
cc = le;
|
4397
|
-
break;
|
4398
|
-
case Token::GTE:
|
4399
|
-
cc = ge;
|
4400
|
-
break;
|
4401
|
-
case Token::IN:
|
4402
|
-
case Token::INSTANCEOF:
|
4403
|
-
default:
|
4404
|
-
UNREACHABLE();
|
4405
|
-
}
|
4375
|
+
Condition cc = CompareIC::ComputeCondition(op);
|
4406
4376
|
__ mov(a0, result_register());
|
4407
4377
|
__ pop(a1);
|
4408
4378
|
|
@@ -4418,7 +4388,7 @@ void FullCodeGenerator::VisitCompareOperation(CompareOperation* expr) {
|
|
4418
4388
|
// Record position and call the compare IC.
|
4419
4389
|
SetSourcePosition(expr->position());
|
4420
4390
|
Handle<Code> ic = CompareIC::GetUninitialized(op);
|
4421
|
-
CallIC(ic, RelocInfo::CODE_TARGET, expr->
|
4391
|
+
CallIC(ic, RelocInfo::CODE_TARGET, expr->CompareOperationFeedbackId());
|
4422
4392
|
patch_site.EmitPatchInfo();
|
4423
4393
|
PrepareForBailoutBeforeSplit(expr, true, if_true, if_false);
|
4424
4394
|
Split(cc, v0, Operand(zero_reg), if_true, if_false, fall_through);
|
@@ -4499,7 +4469,7 @@ void FullCodeGenerator::PushFunctionArgumentForContextAllocation() {
|
|
4499
4469
|
Scope* declaration_scope = scope()->DeclarationScope();
|
4500
4470
|
if (declaration_scope->is_global_scope() ||
|
4501
4471
|
declaration_scope->is_module_scope()) {
|
4502
|
-
// Contexts nested in the
|
4472
|
+
// Contexts nested in the native context have a canonical empty function
|
4503
4473
|
// as their closure, not the anonymous closure containing the global
|
4504
4474
|
// code. Pass a smi sentinel and let the runtime look up the empty
|
4505
4475
|
// function.
|
@@ -4529,14 +4499,57 @@ void FullCodeGenerator::EnterFinallyBlock() {
|
|
4529
4499
|
ASSERT_EQ(1, kSmiTagSize + kSmiShiftSize);
|
4530
4500
|
STATIC_ASSERT(0 == kSmiTag);
|
4531
4501
|
__ Addu(a1, a1, Operand(a1)); // Convert to smi.
|
4502
|
+
|
4503
|
+
// Store result register while executing finally block.
|
4504
|
+
__ push(a1);
|
4505
|
+
|
4506
|
+
// Store pending message while executing finally block.
|
4507
|
+
ExternalReference pending_message_obj =
|
4508
|
+
ExternalReference::address_of_pending_message_obj(isolate());
|
4509
|
+
__ li(at, Operand(pending_message_obj));
|
4510
|
+
__ lw(a1, MemOperand(at));
|
4511
|
+
__ push(a1);
|
4512
|
+
|
4513
|
+
ExternalReference has_pending_message =
|
4514
|
+
ExternalReference::address_of_has_pending_message(isolate());
|
4515
|
+
__ li(at, Operand(has_pending_message));
|
4516
|
+
__ lw(a1, MemOperand(at));
|
4517
|
+
__ SmiTag(a1);
|
4518
|
+
__ push(a1);
|
4519
|
+
|
4520
|
+
ExternalReference pending_message_script =
|
4521
|
+
ExternalReference::address_of_pending_message_script(isolate());
|
4522
|
+
__ li(at, Operand(pending_message_script));
|
4523
|
+
__ lw(a1, MemOperand(at));
|
4532
4524
|
__ push(a1);
|
4533
4525
|
}
|
4534
4526
|
|
4535
4527
|
|
4536
4528
|
void FullCodeGenerator::ExitFinallyBlock() {
|
4537
4529
|
ASSERT(!result_register().is(a1));
|
4530
|
+
// Restore pending message from stack.
|
4531
|
+
__ pop(a1);
|
4532
|
+
ExternalReference pending_message_script =
|
4533
|
+
ExternalReference::address_of_pending_message_script(isolate());
|
4534
|
+
__ li(at, Operand(pending_message_script));
|
4535
|
+
__ sw(a1, MemOperand(at));
|
4536
|
+
|
4537
|
+
__ pop(a1);
|
4538
|
+
__ SmiUntag(a1);
|
4539
|
+
ExternalReference has_pending_message =
|
4540
|
+
ExternalReference::address_of_has_pending_message(isolate());
|
4541
|
+
__ li(at, Operand(has_pending_message));
|
4542
|
+
__ sw(a1, MemOperand(at));
|
4543
|
+
|
4544
|
+
__ pop(a1);
|
4545
|
+
ExternalReference pending_message_obj =
|
4546
|
+
ExternalReference::address_of_pending_message_obj(isolate());
|
4547
|
+
__ li(at, Operand(pending_message_obj));
|
4548
|
+
__ sw(a1, MemOperand(at));
|
4549
|
+
|
4538
4550
|
// Restore result register from stack.
|
4539
4551
|
__ pop(a1);
|
4552
|
+
|
4540
4553
|
// Uncook return address and return.
|
4541
4554
|
__ pop(result_register());
|
4542
4555
|
ASSERT_EQ(1, kSmiTagSize + kSmiShiftSize);
|