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
@@ -703,6 +703,9 @@ int DisassemblerX64::F6F7Instruction(byte* data) {
|
|
703
703
|
case 4:
|
704
704
|
mnem = "mul";
|
705
705
|
break;
|
706
|
+
case 5:
|
707
|
+
mnem = "imul";
|
708
|
+
break;
|
706
709
|
case 7:
|
707
710
|
mnem = "idiv";
|
708
711
|
break;
|
@@ -1241,6 +1244,13 @@ int DisassemblerX64::TwoByteOpcodeInstruction(byte* data) {
|
|
1241
1244
|
AppendToBuffer("xorps %s, ", NameOfXMMRegister(regop));
|
1242
1245
|
current += PrintRightXMMOperand(current);
|
1243
1246
|
|
1247
|
+
} else if (opcode == 0x50) {
|
1248
|
+
// movmskps reg, xmm
|
1249
|
+
int mod, regop, rm;
|
1250
|
+
get_modrm(*current, &mod, ®op, &rm);
|
1251
|
+
AppendToBuffer("movmskps %s, ", NameOfCPURegister(regop));
|
1252
|
+
current += PrintRightXMMOperand(current);
|
1253
|
+
|
1244
1254
|
} else if ((opcode & 0xF0) == 0x80) {
|
1245
1255
|
// Jcc: Conditional jump (branch).
|
1246
1256
|
current = data + JumpConditional(data);
|
@@ -1721,6 +1731,11 @@ int DisassemblerX64::InstructionDecode(v8::internal::Vector<char> out_buffer,
|
|
1721
1731
|
data += F6F7Instruction(data);
|
1722
1732
|
break;
|
1723
1733
|
|
1734
|
+
case 0x3C:
|
1735
|
+
AppendToBuffer("cmp al, 0x%x", *reinterpret_cast<int8_t*>(data + 1));
|
1736
|
+
data +=2;
|
1737
|
+
break;
|
1738
|
+
|
1724
1739
|
default:
|
1725
1740
|
UnimplementedInstruction();
|
1726
1741
|
data += 1;
|
@@ -85,20 +85,6 @@ class ExitFrameConstants : public AllStatic {
|
|
85
85
|
};
|
86
86
|
|
87
87
|
|
88
|
-
class StandardFrameConstants : public AllStatic {
|
89
|
-
public:
|
90
|
-
// Fixed part of the frame consists of return address, caller fp,
|
91
|
-
// context and function.
|
92
|
-
static const int kFixedFrameSize = 4 * kPointerSize;
|
93
|
-
static const int kExpressionsOffset = -3 * kPointerSize;
|
94
|
-
static const int kMarkerOffset = -2 * kPointerSize;
|
95
|
-
static const int kContextOffset = -1 * kPointerSize;
|
96
|
-
static const int kCallerFPOffset = 0 * kPointerSize;
|
97
|
-
static const int kCallerPCOffset = +1 * kPointerSize;
|
98
|
-
static const int kCallerSPOffset = +2 * kPointerSize;
|
99
|
-
};
|
100
|
-
|
101
|
-
|
102
88
|
class JavaScriptFrameConstants : public AllStatic {
|
103
89
|
public:
|
104
90
|
// FP-relative.
|
@@ -119,13 +119,15 @@ void FullCodeGenerator::Generate() {
|
|
119
119
|
handler_table_ =
|
120
120
|
isolate()->factory()->NewFixedArray(function()->handler_count(), TENURED);
|
121
121
|
profiling_counter_ = isolate()->factory()->NewJSGlobalPropertyCell(
|
122
|
-
Handle<Smi>(Smi::FromInt(FLAG_interrupt_budget)));
|
122
|
+
Handle<Smi>(Smi::FromInt(FLAG_interrupt_budget), isolate()));
|
123
123
|
SetFunctionPosition(function());
|
124
124
|
Comment cmnt(masm_, "[ function compiled by full code generator");
|
125
125
|
|
126
|
+
ProfileEntryHookStub::MaybeCallEntryHook(masm_);
|
127
|
+
|
126
128
|
#ifdef DEBUG
|
127
129
|
if (strlen(FLAG_stop_at) > 0 &&
|
128
|
-
info->function()->name()->
|
130
|
+
info->function()->name()->IsUtf8EqualTo(CStrVector(FLAG_stop_at))) {
|
129
131
|
__ int3();
|
130
132
|
}
|
131
133
|
#endif
|
@@ -150,6 +152,7 @@ void FullCodeGenerator::Generate() {
|
|
150
152
|
// the frame (that is done below).
|
151
153
|
FrameScope frame_scope(masm_, StackFrame::MANUAL);
|
152
154
|
|
155
|
+
info->set_prologue_offset(masm_->pc_offset());
|
153
156
|
__ push(rbp); // Caller's frame pointer.
|
154
157
|
__ movq(rbp, rsp);
|
155
158
|
__ push(rsi); // Callee's context.
|
@@ -172,10 +175,13 @@ void FullCodeGenerator::Generate() {
|
|
172
175
|
// Possibly allocate a local context.
|
173
176
|
int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
|
174
177
|
if (heap_slots > 0) {
|
175
|
-
Comment cmnt(masm_, "[ Allocate
|
178
|
+
Comment cmnt(masm_, "[ Allocate context");
|
176
179
|
// Argument to NewContext is the function, which is still in rdi.
|
177
180
|
__ push(rdi);
|
178
|
-
if (
|
181
|
+
if (FLAG_harmony_scoping && info->scope()->is_global_scope()) {
|
182
|
+
__ Push(info->scope()->GetScopeInfo());
|
183
|
+
__ CallRuntime(Runtime::kNewGlobalContext, 2);
|
184
|
+
} else if (heap_slots <= FastNewContextStub::kMaximumSlots) {
|
179
185
|
FastNewContextStub stub(heap_slots);
|
180
186
|
__ CallStub(&stub);
|
181
187
|
} else {
|
@@ -252,7 +258,7 @@ void FullCodeGenerator::Generate() {
|
|
252
258
|
scope()->VisitIllegalRedeclaration(this);
|
253
259
|
|
254
260
|
} else {
|
255
|
-
PrepareForBailoutForId(
|
261
|
+
PrepareForBailoutForId(BailoutId::FunctionEntry(), NO_REGISTERS);
|
256
262
|
{ Comment cmnt(masm_, "[ Declarations");
|
257
263
|
// For named function expressions, declare the function name as a
|
258
264
|
// constant.
|
@@ -267,7 +273,7 @@ void FullCodeGenerator::Generate() {
|
|
267
273
|
}
|
268
274
|
|
269
275
|
{ Comment cmnt(masm_, "[ Stack check");
|
270
|
-
PrepareForBailoutForId(
|
276
|
+
PrepareForBailoutForId(BailoutId::Declarations(), NO_REGISTERS);
|
271
277
|
Label ok;
|
272
278
|
__ CompareRoot(rsp, Heap::kStackLimitRootIndex);
|
273
279
|
__ j(above_equal, &ok, Label::kNear);
|
@@ -310,51 +316,36 @@ void FullCodeGenerator::EmitProfilingCounterReset() {
|
|
310
316
|
// Self-optimization is a one-off thing; if it fails, don't try again.
|
311
317
|
reset_value = Smi::kMaxValue;
|
312
318
|
}
|
313
|
-
if (isolate()->IsDebuggerActive()) {
|
314
|
-
// Detect debug break requests as soon as possible.
|
315
|
-
reset_value = 10;
|
316
|
-
}
|
317
319
|
__ movq(rbx, profiling_counter_, RelocInfo::EMBEDDED_OBJECT);
|
318
320
|
__ movq(kScratchRegister,
|
319
321
|
reinterpret_cast<uint64_t>(Smi::FromInt(reset_value)),
|
320
|
-
RelocInfo::
|
322
|
+
RelocInfo::NONE64);
|
321
323
|
__ movq(FieldOperand(rbx, JSGlobalPropertyCell::kValueOffset),
|
322
324
|
kScratchRegister);
|
323
325
|
}
|
324
326
|
|
325
327
|
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
void FullCodeGenerator::EmitStackCheck(IterationStatement* stmt,
|
331
|
-
Label* back_edge_target) {
|
332
|
-
Comment cmnt(masm_, "[ Stack check");
|
328
|
+
void FullCodeGenerator::EmitBackEdgeBookkeeping(IterationStatement* stmt,
|
329
|
+
Label* back_edge_target) {
|
330
|
+
Comment cmnt(masm_, "[ Back edge bookkeeping");
|
333
331
|
Label ok;
|
334
332
|
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
Max(1, distance / kBackEdgeDistanceDivisor));
|
342
|
-
}
|
343
|
-
EmitProfilingCounterDecrement(weight);
|
344
|
-
__ j(positive, &ok, Label::kNear);
|
345
|
-
InterruptStub stub;
|
346
|
-
__ CallStub(&stub);
|
347
|
-
} else {
|
348
|
-
__ CompareRoot(rsp, Heap::kStackLimitRootIndex);
|
349
|
-
__ j(above_equal, &ok, Label::kNear);
|
350
|
-
StackCheckStub stub;
|
351
|
-
__ CallStub(&stub);
|
333
|
+
int weight = 1;
|
334
|
+
if (FLAG_weighted_back_edges) {
|
335
|
+
ASSERT(back_edge_target->is_bound());
|
336
|
+
int distance = masm_->SizeOfCodeGeneratedSince(back_edge_target);
|
337
|
+
weight = Min(kMaxBackEdgeWeight,
|
338
|
+
Max(1, distance / kBackEdgeDistanceUnit));
|
352
339
|
}
|
340
|
+
EmitProfilingCounterDecrement(weight);
|
341
|
+
__ j(positive, &ok, Label::kNear);
|
342
|
+
InterruptStub stub;
|
343
|
+
__ CallStub(&stub);
|
353
344
|
|
354
345
|
// Record a mapping of this PC offset to the OSR id. This is used to find
|
355
346
|
// the AST id from the unoptimized code in order to use it as a key into
|
356
347
|
// the deoptimization input data found in the optimized code.
|
357
|
-
|
348
|
+
RecordBackEdge(stmt->OsrEntryId());
|
358
349
|
|
359
350
|
// Loop stack checks can be patched to perform on-stack replacement. In
|
360
351
|
// order to decide whether or not to perform OSR we embed the loop depth
|
@@ -363,9 +354,7 @@ void FullCodeGenerator::EmitStackCheck(IterationStatement* stmt,
|
|
363
354
|
ASSERT(loop_depth() > 0);
|
364
355
|
__ testl(rax, Immediate(Min(loop_depth(), Code::kMaxLoopNestingMarker)));
|
365
356
|
|
366
|
-
|
367
|
-
EmitProfilingCounterReset();
|
368
|
-
}
|
357
|
+
EmitProfilingCounterReset();
|
369
358
|
|
370
359
|
__ bind(&ok);
|
371
360
|
PrepareForBailoutForId(stmt->EntryId(), NO_REGISTERS);
|
@@ -394,7 +383,7 @@ void FullCodeGenerator::EmitReturnSequence() {
|
|
394
383
|
} else if (FLAG_weighted_back_edges) {
|
395
384
|
int distance = masm_->pc_offset();
|
396
385
|
weight = Min(kMaxBackEdgeWeight,
|
397
|
-
Max(1, distance
|
386
|
+
Max(1, distance / kBackEdgeDistanceUnit));
|
398
387
|
}
|
399
388
|
EmitProfilingCounterDecrement(weight);
|
400
389
|
Label ok;
|
@@ -508,12 +497,20 @@ void FullCodeGenerator::EffectContext::Plug(Handle<Object> lit) const {
|
|
508
497
|
|
509
498
|
void FullCodeGenerator::AccumulatorValueContext::Plug(
|
510
499
|
Handle<Object> lit) const {
|
511
|
-
|
500
|
+
if (lit->IsSmi()) {
|
501
|
+
__ SafeMove(result_register(), Smi::cast(*lit));
|
502
|
+
} else {
|
503
|
+
__ Move(result_register(), lit);
|
504
|
+
}
|
512
505
|
}
|
513
506
|
|
514
507
|
|
515
508
|
void FullCodeGenerator::StackValueContext::Plug(Handle<Object> lit) const {
|
516
|
-
|
509
|
+
if (lit->IsSmi()) {
|
510
|
+
__ SafePush(Smi::cast(*lit));
|
511
|
+
} else {
|
512
|
+
__ Push(lit);
|
513
|
+
}
|
517
514
|
}
|
518
515
|
|
519
516
|
|
@@ -754,10 +751,9 @@ void FullCodeGenerator::PrepareForBailoutBeforeSplit(Expression* expr,
|
|
754
751
|
|
755
752
|
|
756
753
|
void FullCodeGenerator::EmitDebugCheckDeclarationContext(Variable* variable) {
|
757
|
-
// The variable in the declaration always resides in the current
|
758
|
-
// context.
|
754
|
+
// The variable in the declaration always resides in the current context.
|
759
755
|
ASSERT_EQ(0, scope()->ContextChainLength(variable->scope()));
|
760
|
-
if (
|
756
|
+
if (generate_debug_code_) {
|
761
757
|
// Check that we're not inside a with or catch context.
|
762
758
|
__ movq(rbx, FieldOperand(rsi, HeapObject::kMapOffset));
|
763
759
|
__ CompareRoot(rbx, Heap::kWithContextMapRootIndex);
|
@@ -779,10 +775,11 @@ void FullCodeGenerator::VisitVariableDeclaration(
|
|
779
775
|
bool hole_init = mode == CONST || mode == CONST_HARMONY || mode == LET;
|
780
776
|
switch (variable->location()) {
|
781
777
|
case Variable::UNALLOCATED:
|
782
|
-
globals_->Add(variable->name());
|
778
|
+
globals_->Add(variable->name(), zone());
|
783
779
|
globals_->Add(variable->binding_needs_init()
|
784
780
|
? isolate()->factory()->the_hole_value()
|
785
|
-
|
781
|
+
: isolate()->factory()->undefined_value(),
|
782
|
+
zone());
|
786
783
|
break;
|
787
784
|
|
788
785
|
case Variable::PARAMETER:
|
@@ -810,10 +807,9 @@ void FullCodeGenerator::VisitVariableDeclaration(
|
|
810
807
|
__ push(rsi);
|
811
808
|
__ Push(variable->name());
|
812
809
|
// Declaration nodes are always introduced in one of four modes.
|
813
|
-
ASSERT(mode
|
814
|
-
mode == CONST || mode == CONST_HARMONY);
|
810
|
+
ASSERT(IsDeclaredVariableMode(mode));
|
815
811
|
PropertyAttributes attr =
|
816
|
-
(mode
|
812
|
+
IsImmutableVariableMode(mode) ? READ_ONLY : NONE;
|
817
813
|
__ Push(Smi::FromInt(attr));
|
818
814
|
// Push initial value, if any.
|
819
815
|
// Note: For variables we must not push an initial value (such as
|
@@ -837,12 +833,12 @@ void FullCodeGenerator::VisitFunctionDeclaration(
|
|
837
833
|
Variable* variable = proxy->var();
|
838
834
|
switch (variable->location()) {
|
839
835
|
case Variable::UNALLOCATED: {
|
840
|
-
globals_->Add(variable->name());
|
836
|
+
globals_->Add(variable->name(), zone());
|
841
837
|
Handle<SharedFunctionInfo> function =
|
842
838
|
Compiler::BuildFunctionInfo(declaration->fun(), script());
|
843
839
|
// Check for stack-overflow exception.
|
844
840
|
if (function.is_null()) return SetStackOverflow();
|
845
|
-
globals_->Add(function);
|
841
|
+
globals_->Add(function, zone());
|
846
842
|
break;
|
847
843
|
}
|
848
844
|
|
@@ -886,33 +882,32 @@ void FullCodeGenerator::VisitFunctionDeclaration(
|
|
886
882
|
|
887
883
|
|
888
884
|
void FullCodeGenerator::VisitModuleDeclaration(ModuleDeclaration* declaration) {
|
889
|
-
|
890
|
-
|
891
|
-
|
892
|
-
ASSERT(!instance.is_null());
|
885
|
+
Variable* variable = declaration->proxy()->var();
|
886
|
+
ASSERT(variable->location() == Variable::CONTEXT);
|
887
|
+
ASSERT(variable->interface()->IsFrozen());
|
893
888
|
|
894
|
-
|
895
|
-
|
896
|
-
Comment cmnt(masm_, "[ ModuleDeclaration");
|
897
|
-
globals_->Add(variable->name());
|
898
|
-
globals_->Add(instance);
|
899
|
-
Visit(declaration->module());
|
900
|
-
break;
|
901
|
-
}
|
889
|
+
Comment cmnt(masm_, "[ ModuleDeclaration");
|
890
|
+
EmitDebugCheckDeclarationContext(variable);
|
902
891
|
|
903
|
-
|
904
|
-
|
905
|
-
|
906
|
-
|
907
|
-
Visit(declaration->module());
|
908
|
-
break;
|
909
|
-
}
|
892
|
+
// Load instance object.
|
893
|
+
__ LoadContext(rax, scope_->ContextChainLength(scope_->GlobalScope()));
|
894
|
+
__ movq(rax, ContextOperand(rax, variable->interface()->Index()));
|
895
|
+
__ movq(rax, ContextOperand(rax, Context::EXTENSION_INDEX));
|
910
896
|
|
911
|
-
|
912
|
-
|
913
|
-
|
914
|
-
|
915
|
-
|
897
|
+
// Assign it.
|
898
|
+
__ movq(ContextOperand(rsi, variable->index()), rax);
|
899
|
+
// We know that we have written a module, which is not a smi.
|
900
|
+
__ RecordWriteContextSlot(rsi,
|
901
|
+
Context::SlotOffset(variable->index()),
|
902
|
+
rax,
|
903
|
+
rcx,
|
904
|
+
kDontSaveFPRegs,
|
905
|
+
EMIT_REMEMBERED_SET,
|
906
|
+
OMIT_SMI_CHECK);
|
907
|
+
PrepareForBailoutForId(declaration->proxy()->id(), NO_REGISTERS);
|
908
|
+
|
909
|
+
// Traverse into body.
|
910
|
+
Visit(declaration->module());
|
916
911
|
}
|
917
912
|
|
918
913
|
|
@@ -954,6 +949,14 @@ void FullCodeGenerator::DeclareGlobals(Handle<FixedArray> pairs) {
|
|
954
949
|
}
|
955
950
|
|
956
951
|
|
952
|
+
void FullCodeGenerator::DeclareModules(Handle<FixedArray> descriptions) {
|
953
|
+
// Call the runtime to declare the modules.
|
954
|
+
__ Push(descriptions);
|
955
|
+
__ CallRuntime(Runtime::kDeclareModules, 1);
|
956
|
+
// Return value is ignored.
|
957
|
+
}
|
958
|
+
|
959
|
+
|
957
960
|
void FullCodeGenerator::VisitSwitchStatement(SwitchStatement* stmt) {
|
958
961
|
Comment cmnt(masm_, "[ SwitchStatement");
|
959
962
|
Breakable nested_statement(this, stmt);
|
@@ -1099,22 +1102,32 @@ void FullCodeGenerator::VisitForInStatement(ForInStatement* stmt) {
|
|
1099
1102
|
Label fixed_array;
|
1100
1103
|
__ CompareRoot(FieldOperand(rax, HeapObject::kMapOffset),
|
1101
1104
|
Heap::kMetaMapRootIndex);
|
1102
|
-
__ j(not_equal, &fixed_array
|
1105
|
+
__ j(not_equal, &fixed_array);
|
1103
1106
|
|
1104
1107
|
// We got a map in register rax. Get the enumeration cache from it.
|
1105
1108
|
__ bind(&use_cache);
|
1109
|
+
|
1110
|
+
Label no_descriptors;
|
1111
|
+
|
1112
|
+
__ EnumLength(rdx, rax);
|
1113
|
+
__ Cmp(rdx, Smi::FromInt(0));
|
1114
|
+
__ j(equal, &no_descriptors);
|
1115
|
+
|
1106
1116
|
__ LoadInstanceDescriptors(rax, rcx);
|
1107
|
-
__ movq(rcx, FieldOperand(rcx, DescriptorArray::
|
1108
|
-
__ movq(
|
1117
|
+
__ movq(rcx, FieldOperand(rcx, DescriptorArray::kEnumCacheOffset));
|
1118
|
+
__ movq(rcx, FieldOperand(rcx, DescriptorArray::kEnumCacheBridgeCacheOffset));
|
1109
1119
|
|
1110
1120
|
// Set up the four remaining stack slots.
|
1111
1121
|
__ push(rax); // Map.
|
1112
|
-
__ push(
|
1113
|
-
__
|
1114
|
-
__ push(rax); // Enumeration cache length (as smi).
|
1122
|
+
__ push(rcx); // Enumeration cache.
|
1123
|
+
__ push(rdx); // Number of valid entries for the map in the enum cache.
|
1115
1124
|
__ Push(Smi::FromInt(0)); // Initial index.
|
1116
1125
|
__ jmp(&loop);
|
1117
1126
|
|
1127
|
+
__ bind(&no_descriptors);
|
1128
|
+
__ addq(rsp, Immediate(kPointerSize));
|
1129
|
+
__ jmp(&exit);
|
1130
|
+
|
1118
1131
|
// We got a fixed array in register rax. Iterate through that.
|
1119
1132
|
Label non_proxy;
|
1120
1133
|
__ bind(&fixed_array);
|
@@ -1123,7 +1136,7 @@ void FullCodeGenerator::VisitForInStatement(ForInStatement* stmt) {
|
|
1123
1136
|
isolate()->factory()->NewJSGlobalPropertyCell(
|
1124
1137
|
Handle<Object>(
|
1125
1138
|
Smi::FromInt(TypeFeedbackCells::kForInFastCaseMarker)));
|
1126
|
-
RecordTypeFeedbackCell(stmt->
|
1139
|
+
RecordTypeFeedbackCell(stmt->ForInFeedbackId(), cell);
|
1127
1140
|
__ LoadHeapObject(rbx, cell);
|
1128
1141
|
__ Move(FieldOperand(rbx, JSGlobalPropertyCell::kValueOffset),
|
1129
1142
|
Smi::FromInt(TypeFeedbackCells::kForInSlowCaseMarker));
|
@@ -1199,7 +1212,7 @@ void FullCodeGenerator::VisitForInStatement(ForInStatement* stmt) {
|
|
1199
1212
|
__ bind(loop_statement.continue_label());
|
1200
1213
|
__ SmiAddConstant(Operand(rsp, 0 * kPointerSize), Smi::FromInt(1));
|
1201
1214
|
|
1202
|
-
|
1215
|
+
EmitBackEdgeBookkeeping(stmt, &loop);
|
1203
1216
|
__ jmp(&loop);
|
1204
1217
|
|
1205
1218
|
// Remove the pointers stored on the stack.
|
@@ -1282,9 +1295,9 @@ void FullCodeGenerator::EmitLoadGlobalCheckExtensions(Variable* var,
|
|
1282
1295
|
__ movq(temp, context);
|
1283
1296
|
}
|
1284
1297
|
// Load map for comparison into register, outside loop.
|
1285
|
-
__ LoadRoot(kScratchRegister, Heap::
|
1298
|
+
__ LoadRoot(kScratchRegister, Heap::kNativeContextMapRootIndex);
|
1286
1299
|
__ bind(&next);
|
1287
|
-
// Terminate at
|
1300
|
+
// Terminate at native context.
|
1288
1301
|
__ cmpq(kScratchRegister, FieldOperand(temp, HeapObject::kMapOffset));
|
1289
1302
|
__ j(equal, &fast, Label::kNear);
|
1290
1303
|
// Check that extension is NULL.
|
@@ -1353,9 +1366,9 @@ void FullCodeGenerator::EmitDynamicLookupFastCase(Variable* var,
|
|
1353
1366
|
} else if (var->mode() == DYNAMIC_LOCAL) {
|
1354
1367
|
Variable* local = var->local_if_not_shadowed();
|
1355
1368
|
__ movq(rax, ContextSlotOperandCheckExtensions(local, slow));
|
1356
|
-
if (local->mode() ==
|
1357
|
-
local->mode() ==
|
1358
|
-
local->mode() ==
|
1369
|
+
if (local->mode() == LET ||
|
1370
|
+
local->mode() == CONST ||
|
1371
|
+
local->mode() == CONST_HARMONY) {
|
1359
1372
|
__ CompareRoot(rax, Heap::kTheHoleValueRootIndex);
|
1360
1373
|
__ j(not_equal, done);
|
1361
1374
|
if (local->mode() == CONST) {
|
@@ -1567,9 +1580,9 @@ void FullCodeGenerator::VisitObjectLiteral(ObjectLiteral* expr) {
|
|
1567
1580
|
// Mark all computed expressions that are bound to a key that
|
1568
1581
|
// is shadowed by a later occurrence of the same key. For the
|
1569
1582
|
// marked expressions, no store code is emitted.
|
1570
|
-
expr->CalculateEmitStore();
|
1583
|
+
expr->CalculateEmitStore(zone());
|
1571
1584
|
|
1572
|
-
AccessorTable accessor_table(
|
1585
|
+
AccessorTable accessor_table(zone());
|
1573
1586
|
for (int i = 0; i < expr->properties()->length(); i++) {
|
1574
1587
|
ObjectLiteral::Property* property = expr->properties()->at(i);
|
1575
1588
|
if (property->IsCompileTimeValue()) continue;
|
@@ -1595,7 +1608,7 @@ void FullCodeGenerator::VisitObjectLiteral(ObjectLiteral* expr) {
|
|
1595
1608
|
Handle<Code> ic = is_classic_mode()
|
1596
1609
|
? isolate()->builtins()->StoreIC_Initialize()
|
1597
1610
|
: isolate()->builtins()->StoreIC_Initialize_Strict();
|
1598
|
-
CallIC(ic, RelocInfo::CODE_TARGET, key->
|
1611
|
+
CallIC(ic, RelocInfo::CODE_TARGET, key->LiteralFeedbackId());
|
1599
1612
|
PrepareForBailoutForId(key->id(), NO_REGISTERS);
|
1600
1613
|
} else {
|
1601
1614
|
VisitForEffect(value);
|
@@ -1676,6 +1689,7 @@ void FullCodeGenerator::VisitArrayLiteral(ArrayLiteral* expr) {
|
|
1676
1689
|
__ IncrementCounter(isolate()->counters()->cow_arrays_created_stub(), 1);
|
1677
1690
|
FastCloneShallowArrayStub stub(
|
1678
1691
|
FastCloneShallowArrayStub::COPY_ON_WRITE_ELEMENTS,
|
1692
|
+
DONT_TRACK_ALLOCATION_SITE,
|
1679
1693
|
length);
|
1680
1694
|
__ CallStub(&stub);
|
1681
1695
|
} else if (expr->depth() > 1) {
|
@@ -1685,12 +1699,19 @@ void FullCodeGenerator::VisitArrayLiteral(ArrayLiteral* expr) {
|
|
1685
1699
|
} else {
|
1686
1700
|
ASSERT(IsFastSmiOrObjectElementsKind(constant_elements_kind) ||
|
1687
1701
|
FLAG_smi_only_arrays);
|
1702
|
+
FastCloneShallowArrayStub::Mode mode =
|
1703
|
+
FastCloneShallowArrayStub::CLONE_ANY_ELEMENTS;
|
1704
|
+
AllocationSiteMode allocation_site_mode = FLAG_track_allocation_sites
|
1705
|
+
? TRACK_ALLOCATION_SITE : DONT_TRACK_ALLOCATION_SITE;
|
1706
|
+
|
1688
1707
|
// If the elements are already FAST_*_ELEMENTS, the boilerplate cannot
|
1689
1708
|
// change, so it's possible to specialize the stub in advance.
|
1690
|
-
|
1691
|
-
|
1692
|
-
|
1693
|
-
|
1709
|
+
if (has_constant_fast_elements) {
|
1710
|
+
mode = FastCloneShallowArrayStub::CLONE_ELEMENTS;
|
1711
|
+
allocation_site_mode = DONT_TRACK_ALLOCATION_SITE;
|
1712
|
+
}
|
1713
|
+
|
1714
|
+
FastCloneShallowArrayStub stub(mode, allocation_site_mode, length);
|
1694
1715
|
__ CallStub(&stub);
|
1695
1716
|
}
|
1696
1717
|
|
@@ -1806,11 +1827,11 @@ void FullCodeGenerator::VisitAssignment(Assignment* expr) {
|
|
1806
1827
|
break;
|
1807
1828
|
case NAMED_PROPERTY:
|
1808
1829
|
EmitNamedPropertyLoad(property);
|
1809
|
-
PrepareForBailoutForId(
|
1830
|
+
PrepareForBailoutForId(property->LoadId(), TOS_REG);
|
1810
1831
|
break;
|
1811
1832
|
case KEYED_PROPERTY:
|
1812
1833
|
EmitKeyedPropertyLoad(property);
|
1813
|
-
PrepareForBailoutForId(
|
1834
|
+
PrepareForBailoutForId(property->LoadId(), TOS_REG);
|
1814
1835
|
break;
|
1815
1836
|
}
|
1816
1837
|
}
|
@@ -1865,14 +1886,14 @@ void FullCodeGenerator::EmitNamedPropertyLoad(Property* prop) {
|
|
1865
1886
|
Literal* key = prop->key()->AsLiteral();
|
1866
1887
|
__ Move(rcx, key->handle());
|
1867
1888
|
Handle<Code> ic = isolate()->builtins()->LoadIC_Initialize();
|
1868
|
-
CallIC(ic, RelocInfo::CODE_TARGET, prop->
|
1889
|
+
CallIC(ic, RelocInfo::CODE_TARGET, prop->PropertyFeedbackId());
|
1869
1890
|
}
|
1870
1891
|
|
1871
1892
|
|
1872
1893
|
void FullCodeGenerator::EmitKeyedPropertyLoad(Property* prop) {
|
1873
1894
|
SetSourcePosition(prop->position());
|
1874
1895
|
Handle<Code> ic = isolate()->builtins()->KeyedLoadIC_Initialize();
|
1875
|
-
CallIC(ic, RelocInfo::CODE_TARGET, prop->
|
1896
|
+
CallIC(ic, RelocInfo::CODE_TARGET, prop->PropertyFeedbackId());
|
1876
1897
|
}
|
1877
1898
|
|
1878
1899
|
|
@@ -1894,7 +1915,8 @@ void FullCodeGenerator::EmitInlineSmiBinaryOp(BinaryOperation* expr,
|
|
1894
1915
|
__ bind(&stub_call);
|
1895
1916
|
__ movq(rax, rcx);
|
1896
1917
|
BinaryOpStub stub(op, mode);
|
1897
|
-
CallIC(stub.GetCode(), RelocInfo::CODE_TARGET,
|
1918
|
+
CallIC(stub.GetCode(), RelocInfo::CODE_TARGET,
|
1919
|
+
expr->BinaryOperationFeedbackId());
|
1898
1920
|
patch_site.EmitPatchInfo();
|
1899
1921
|
__ jmp(&done, Label::kNear);
|
1900
1922
|
|
@@ -1943,14 +1965,15 @@ void FullCodeGenerator::EmitBinaryOp(BinaryOperation* expr,
|
|
1943
1965
|
__ pop(rdx);
|
1944
1966
|
BinaryOpStub stub(op, mode);
|
1945
1967
|
JumpPatchSite patch_site(masm_); // unbound, signals no inlined smi code.
|
1946
|
-
CallIC(stub.GetCode(), RelocInfo::CODE_TARGET,
|
1968
|
+
CallIC(stub.GetCode(), RelocInfo::CODE_TARGET,
|
1969
|
+
expr->BinaryOperationFeedbackId());
|
1947
1970
|
patch_site.EmitPatchInfo();
|
1948
1971
|
context()->Plug(rax);
|
1949
1972
|
}
|
1950
1973
|
|
1951
1974
|
|
1952
1975
|
void FullCodeGenerator::EmitAssignment(Expression* expr) {
|
1953
|
-
// Invalid left-hand sides are rewritten to have a 'throw
|
1976
|
+
// Invalid left-hand sides are rewritten by the parser to have a 'throw
|
1954
1977
|
// ReferenceError' on the left-hand side.
|
1955
1978
|
if (!expr->IsValidLeftHandSide()) {
|
1956
1979
|
VisitForEffect(expr);
|
@@ -2069,7 +2092,7 @@ void FullCodeGenerator::EmitVariableAssignment(Variable* var,
|
|
2069
2092
|
// in harmony mode.
|
2070
2093
|
if (var->IsStackAllocated() || var->IsContextSlot()) {
|
2071
2094
|
MemOperand location = VarOperand(var, rcx);
|
2072
|
-
if (
|
2095
|
+
if (generate_debug_code_ && op == Token::INIT_LET) {
|
2073
2096
|
// Check for an uninitialized let binding.
|
2074
2097
|
__ movq(rdx, location);
|
2075
2098
|
__ CompareRoot(rdx, Heap::kTheHoleValueRootIndex);
|
@@ -2101,37 +2124,15 @@ void FullCodeGenerator::EmitNamedPropertyAssignment(Assignment* expr) {
|
|
2101
2124
|
ASSERT(prop != NULL);
|
2102
2125
|
ASSERT(prop->key()->AsLiteral() != NULL);
|
2103
2126
|
|
2104
|
-
// If the assignment starts a block of assignments to the same object,
|
2105
|
-
// change to slow case to avoid the quadratic behavior of repeatedly
|
2106
|
-
// adding fast properties.
|
2107
|
-
if (expr->starts_initialization_block()) {
|
2108
|
-
__ push(result_register());
|
2109
|
-
__ push(Operand(rsp, kPointerSize)); // Receiver is now under value.
|
2110
|
-
__ CallRuntime(Runtime::kToSlowProperties, 1);
|
2111
|
-
__ pop(result_register());
|
2112
|
-
}
|
2113
|
-
|
2114
2127
|
// Record source code position before IC call.
|
2115
2128
|
SetSourcePosition(expr->position());
|
2116
2129
|
__ Move(rcx, prop->key()->AsLiteral()->handle());
|
2117
|
-
|
2118
|
-
__ movq(rdx, Operand(rsp, 0));
|
2119
|
-
} else {
|
2120
|
-
__ pop(rdx);
|
2121
|
-
}
|
2130
|
+
__ pop(rdx);
|
2122
2131
|
Handle<Code> ic = is_classic_mode()
|
2123
2132
|
? isolate()->builtins()->StoreIC_Initialize()
|
2124
2133
|
: isolate()->builtins()->StoreIC_Initialize_Strict();
|
2125
|
-
CallIC(ic, RelocInfo::CODE_TARGET, expr->
|
2134
|
+
CallIC(ic, RelocInfo::CODE_TARGET, expr->AssignmentFeedbackId());
|
2126
2135
|
|
2127
|
-
// If the assignment ends an initialization block, revert to fast case.
|
2128
|
-
if (expr->ends_initialization_block()) {
|
2129
|
-
__ push(rax); // Result of assignment, saved even if not needed.
|
2130
|
-
__ push(Operand(rsp, kPointerSize)); // Receiver is under value.
|
2131
|
-
__ CallRuntime(Runtime::kToFastProperties, 1);
|
2132
|
-
__ pop(rax);
|
2133
|
-
__ Drop(1);
|
2134
|
-
}
|
2135
2136
|
PrepareForBailoutForId(expr->AssignmentId(), TOS_REG);
|
2136
2137
|
context()->Plug(rax);
|
2137
2138
|
}
|
@@ -2140,38 +2141,14 @@ void FullCodeGenerator::EmitNamedPropertyAssignment(Assignment* expr) {
|
|
2140
2141
|
void FullCodeGenerator::EmitKeyedPropertyAssignment(Assignment* expr) {
|
2141
2142
|
// Assignment to a property, using a keyed store IC.
|
2142
2143
|
|
2143
|
-
// If the assignment starts a block of assignments to the same object,
|
2144
|
-
// change to slow case to avoid the quadratic behavior of repeatedly
|
2145
|
-
// adding fast properties.
|
2146
|
-
if (expr->starts_initialization_block()) {
|
2147
|
-
__ push(result_register());
|
2148
|
-
// Receiver is now under the key and value.
|
2149
|
-
__ push(Operand(rsp, 2 * kPointerSize));
|
2150
|
-
__ CallRuntime(Runtime::kToSlowProperties, 1);
|
2151
|
-
__ pop(result_register());
|
2152
|
-
}
|
2153
|
-
|
2154
2144
|
__ pop(rcx);
|
2155
|
-
|
2156
|
-
__ movq(rdx, Operand(rsp, 0)); // Leave receiver on the stack for later.
|
2157
|
-
} else {
|
2158
|
-
__ pop(rdx);
|
2159
|
-
}
|
2145
|
+
__ pop(rdx);
|
2160
2146
|
// Record source code position before IC call.
|
2161
2147
|
SetSourcePosition(expr->position());
|
2162
2148
|
Handle<Code> ic = is_classic_mode()
|
2163
2149
|
? isolate()->builtins()->KeyedStoreIC_Initialize()
|
2164
2150
|
: isolate()->builtins()->KeyedStoreIC_Initialize_Strict();
|
2165
|
-
CallIC(ic, RelocInfo::CODE_TARGET, expr->
|
2166
|
-
|
2167
|
-
// If the assignment ends an initialization block, revert to fast case.
|
2168
|
-
if (expr->ends_initialization_block()) {
|
2169
|
-
__ pop(rdx);
|
2170
|
-
__ push(rax); // Result of assignment, saved even if not needed.
|
2171
|
-
__ push(rdx);
|
2172
|
-
__ CallRuntime(Runtime::kToFastProperties, 1);
|
2173
|
-
__ pop(rax);
|
2174
|
-
}
|
2151
|
+
CallIC(ic, RelocInfo::CODE_TARGET, expr->AssignmentFeedbackId());
|
2175
2152
|
|
2176
2153
|
PrepareForBailoutForId(expr->AssignmentId(), TOS_REG);
|
2177
2154
|
context()->Plug(rax);
|
@@ -2185,6 +2162,7 @@ void FullCodeGenerator::VisitProperty(Property* expr) {
|
|
2185
2162
|
if (key->IsPropertyName()) {
|
2186
2163
|
VisitForAccumulatorValue(expr->obj());
|
2187
2164
|
EmitNamedPropertyLoad(expr);
|
2165
|
+
PrepareForBailoutForId(expr->LoadId(), TOS_REG);
|
2188
2166
|
context()->Plug(rax);
|
2189
2167
|
} else {
|
2190
2168
|
VisitForStackValue(expr->obj());
|
@@ -2198,7 +2176,7 @@ void FullCodeGenerator::VisitProperty(Property* expr) {
|
|
2198
2176
|
|
2199
2177
|
void FullCodeGenerator::CallIC(Handle<Code> code,
|
2200
2178
|
RelocInfo::Mode rmode,
|
2201
|
-
|
2179
|
+
TypeFeedbackId ast_id) {
|
2202
2180
|
ic_total_count_++;
|
2203
2181
|
__ call(code, rmode, ast_id);
|
2204
2182
|
}
|
@@ -2221,7 +2199,7 @@ void FullCodeGenerator::EmitCallWithIC(Call* expr,
|
|
2221
2199
|
// Call the IC initialization code.
|
2222
2200
|
Handle<Code> ic =
|
2223
2201
|
isolate()->stub_cache()->ComputeCallInitialize(arg_count, mode);
|
2224
|
-
CallIC(ic, mode, expr->
|
2202
|
+
CallIC(ic, mode, expr->CallFeedbackId());
|
2225
2203
|
RecordJSReturnSite(expr);
|
2226
2204
|
// Restore context register.
|
2227
2205
|
__ movq(rsi, Operand(rbp, StandardFrameConstants::kContextOffset));
|
@@ -2254,7 +2232,7 @@ void FullCodeGenerator::EmitKeyedCallWithIC(Call* expr,
|
|
2254
2232
|
Handle<Code> ic =
|
2255
2233
|
isolate()->stub_cache()->ComputeKeyedCallInitialize(arg_count);
|
2256
2234
|
__ movq(rcx, Operand(rsp, (arg_count + 1) * kPointerSize)); // Key.
|
2257
|
-
CallIC(ic, RelocInfo::CODE_TARGET, expr->
|
2235
|
+
CallIC(ic, RelocInfo::CODE_TARGET, expr->CallFeedbackId());
|
2258
2236
|
RecordJSReturnSite(expr);
|
2259
2237
|
// Restore context register.
|
2260
2238
|
__ movq(rsi, Operand(rbp, StandardFrameConstants::kContextOffset));
|
@@ -2274,20 +2252,18 @@ void FullCodeGenerator::EmitCallWithStub(Call* expr, CallFunctionFlags flags) {
|
|
2274
2252
|
// Record source position for debugger.
|
2275
2253
|
SetSourcePosition(expr->position());
|
2276
2254
|
|
2277
|
-
// Record call targets in unoptimized code
|
2278
|
-
|
2279
|
-
|
2280
|
-
|
2281
|
-
|
2282
|
-
|
2283
|
-
|
2284
|
-
|
2285
|
-
__ Move(rbx, cell);
|
2286
|
-
}
|
2255
|
+
// Record call targets in unoptimized code.
|
2256
|
+
flags = static_cast<CallFunctionFlags>(flags | RECORD_CALL_TARGET);
|
2257
|
+
Handle<Object> uninitialized =
|
2258
|
+
TypeFeedbackCells::UninitializedSentinel(isolate());
|
2259
|
+
Handle<JSGlobalPropertyCell> cell =
|
2260
|
+
isolate()->factory()->NewJSGlobalPropertyCell(uninitialized);
|
2261
|
+
RecordTypeFeedbackCell(expr->CallFeedbackId(), cell);
|
2262
|
+
__ Move(rbx, cell);
|
2287
2263
|
|
2288
2264
|
CallFunctionStub stub(arg_count, flags);
|
2289
2265
|
__ movq(rdi, Operand(rsp, (arg_count + 1) * kPointerSize));
|
2290
|
-
__ CallStub(&stub, expr->
|
2266
|
+
__ CallStub(&stub, expr->CallFeedbackId());
|
2291
2267
|
RecordJSReturnSite(expr);
|
2292
2268
|
// Restore context register.
|
2293
2269
|
__ movq(rsi, Operand(rbp, StandardFrameConstants::kContextOffset));
|
@@ -2330,7 +2306,7 @@ void FullCodeGenerator::VisitCall(Call* expr) {
|
|
2330
2306
|
VariableProxy* proxy = callee->AsVariableProxy();
|
2331
2307
|
Property* property = callee->AsProperty();
|
2332
2308
|
|
2333
|
-
if (proxy != NULL && proxy->var()->is_possibly_eval()) {
|
2309
|
+
if (proxy != NULL && proxy->var()->is_possibly_eval(isolate())) {
|
2334
2310
|
// In a call to eval, we first call %ResolvePossiblyDirectEval to
|
2335
2311
|
// resolve the function we need to call and the receiver of the call.
|
2336
2312
|
// Then we call the resolved function using the given arguments.
|
@@ -2462,20 +2438,14 @@ void FullCodeGenerator::VisitCallNew(CallNew* expr) {
|
|
2462
2438
|
__ movq(rdi, Operand(rsp, arg_count * kPointerSize));
|
2463
2439
|
|
2464
2440
|
// Record call targets in unoptimized code, but not in the snapshot.
|
2465
|
-
|
2466
|
-
|
2467
|
-
|
2468
|
-
|
2469
|
-
|
2470
|
-
|
2471
|
-
isolate()->factory()->NewJSGlobalPropertyCell(uninitialized);
|
2472
|
-
RecordTypeFeedbackCell(expr->id(), cell);
|
2473
|
-
__ Move(rbx, cell);
|
2474
|
-
} else {
|
2475
|
-
flags = NO_CALL_FUNCTION_FLAGS;
|
2476
|
-
}
|
2441
|
+
Handle<Object> uninitialized =
|
2442
|
+
TypeFeedbackCells::UninitializedSentinel(isolate());
|
2443
|
+
Handle<JSGlobalPropertyCell> cell =
|
2444
|
+
isolate()->factory()->NewJSGlobalPropertyCell(uninitialized);
|
2445
|
+
RecordTypeFeedbackCell(expr->CallNewFeedbackId(), cell);
|
2446
|
+
__ Move(rbx, cell);
|
2477
2447
|
|
2478
|
-
CallConstructStub stub(
|
2448
|
+
CallConstructStub stub(RECORD_CALL_TARGET);
|
2479
2449
|
__ Call(stub.GetCode(), RelocInfo::CONSTRUCT_CALL);
|
2480
2450
|
PrepareForBailoutForId(expr->ReturnId(), TOS_REG);
|
2481
2451
|
context()->Plug(rax);
|
@@ -2616,7 +2586,7 @@ void FullCodeGenerator::EmitIsStringWrapperSafeForDefaultValueOf(
|
|
2616
2586
|
context()->PrepareTest(&materialize_true, &materialize_false,
|
2617
2587
|
&if_true, &if_false, &fall_through);
|
2618
2588
|
|
2619
|
-
|
2589
|
+
__ AssertNotSmi(rax);
|
2620
2590
|
|
2621
2591
|
// Check whether this map has already been checked to be safe for default
|
2622
2592
|
// valueOf.
|
@@ -2632,45 +2602,50 @@ void FullCodeGenerator::EmitIsStringWrapperSafeForDefaultValueOf(
|
|
2632
2602
|
__ j(equal, if_false);
|
2633
2603
|
|
2634
2604
|
// Look for valueOf symbol in the descriptor array, and indicate false if
|
2635
|
-
// found.
|
2636
|
-
//
|
2605
|
+
// found. Since we omit an enumeration index check, if it is added via a
|
2606
|
+
// transition that shares its descriptor array, this is a false positive.
|
2607
|
+
Label entry, loop, done;
|
2608
|
+
|
2609
|
+
// Skip loop if no descriptors are valid.
|
2610
|
+
__ NumberOfOwnDescriptors(rcx, rbx);
|
2611
|
+
__ cmpq(rcx, Immediate(0));
|
2612
|
+
__ j(equal, &done);
|
2613
|
+
|
2637
2614
|
__ LoadInstanceDescriptors(rbx, rbx);
|
2638
|
-
|
2639
|
-
//
|
2640
|
-
// rcx: length of descriptor array
|
2615
|
+
// rbx: descriptor array.
|
2616
|
+
// rcx: valid entries in the descriptor array.
|
2641
2617
|
// Calculate the end of the descriptor array.
|
2618
|
+
__ imul(rcx, rcx, Immediate(DescriptorArray::kDescriptorSize));
|
2642
2619
|
SmiIndex index = masm_->SmiToIndex(rdx, rcx, kPointerSizeLog2);
|
2643
2620
|
__ lea(rcx,
|
2644
2621
|
Operand(
|
2645
|
-
rbx, index.reg, index.scale,
|
2622
|
+
rbx, index.reg, index.scale, DescriptorArray::kFirstOffset));
|
2646
2623
|
// Calculate location of the first key name.
|
2647
|
-
__ addq(rbx,
|
2648
|
-
Immediate(FixedArray::kHeaderSize +
|
2649
|
-
DescriptorArray::kFirstIndex * kPointerSize));
|
2624
|
+
__ addq(rbx, Immediate(DescriptorArray::kFirstOffset));
|
2650
2625
|
// Loop through all the keys in the descriptor array. If one of these is the
|
2651
2626
|
// symbol valueOf the result is false.
|
2652
|
-
Label entry, loop;
|
2653
2627
|
__ jmp(&entry);
|
2654
2628
|
__ bind(&loop);
|
2655
2629
|
__ movq(rdx, FieldOperand(rbx, 0));
|
2656
2630
|
__ Cmp(rdx, FACTORY->value_of_symbol());
|
2657
2631
|
__ j(equal, if_false);
|
2658
|
-
__ addq(rbx, Immediate(kPointerSize));
|
2632
|
+
__ addq(rbx, Immediate(DescriptorArray::kDescriptorSize * kPointerSize));
|
2659
2633
|
__ bind(&entry);
|
2660
2634
|
__ cmpq(rbx, rcx);
|
2661
2635
|
__ j(not_equal, &loop);
|
2662
2636
|
|
2637
|
+
__ bind(&done);
|
2663
2638
|
// Reload map as register rbx was used as temporary above.
|
2664
2639
|
__ movq(rbx, FieldOperand(rax, HeapObject::kMapOffset));
|
2665
2640
|
|
2666
|
-
// If a valueOf property is not found on the object check that
|
2641
|
+
// If a valueOf property is not found on the object check that its
|
2667
2642
|
// prototype is the un-modified String prototype. If not result is false.
|
2668
2643
|
__ movq(rcx, FieldOperand(rbx, Map::kPrototypeOffset));
|
2669
2644
|
__ testq(rcx, Immediate(kSmiTagMask));
|
2670
2645
|
__ j(zero, if_false);
|
2671
2646
|
__ movq(rcx, FieldOperand(rcx, HeapObject::kMapOffset));
|
2672
|
-
__ movq(rdx, Operand(rsi, Context::SlotOffset(Context::
|
2673
|
-
__ movq(rdx, FieldOperand(rdx, GlobalObject::
|
2647
|
+
__ movq(rdx, Operand(rsi, Context::SlotOffset(Context::GLOBAL_OBJECT_INDEX)));
|
2648
|
+
__ movq(rdx, FieldOperand(rdx, GlobalObject::kNativeContextOffset));
|
2674
2649
|
__ cmpq(rcx,
|
2675
2650
|
ContextOperand(rdx, Context::STRING_FUNCTION_PROTOTYPE_MAP_INDEX));
|
2676
2651
|
__ j(not_equal, if_false);
|
@@ -2840,7 +2815,7 @@ void FullCodeGenerator::EmitArgumentsLength(CallRuntime* expr) {
|
|
2840
2815
|
__ movq(rax, Operand(rbx, ArgumentsAdaptorFrameConstants::kLengthOffset));
|
2841
2816
|
|
2842
2817
|
__ bind(&exit);
|
2843
|
-
|
2818
|
+
__ AssertSmi(rax);
|
2844
2819
|
context()->Plug(rax);
|
2845
2820
|
}
|
2846
2821
|
|
@@ -2947,12 +2922,14 @@ void FullCodeGenerator::EmitRandomHeapNumber(CallRuntime* expr) {
|
|
2947
2922
|
// The fresh HeapNumber is in rbx, which is callee-save on both x64 ABIs.
|
2948
2923
|
__ PrepareCallCFunction(1);
|
2949
2924
|
#ifdef _WIN64
|
2950
|
-
__ movq(rcx,
|
2951
|
-
|
2925
|
+
__ movq(rcx,
|
2926
|
+
ContextOperand(context_register(), Context::GLOBAL_OBJECT_INDEX));
|
2927
|
+
__ movq(rcx, FieldOperand(rcx, GlobalObject::kNativeContextOffset));
|
2952
2928
|
|
2953
2929
|
#else
|
2954
|
-
__ movq(rdi,
|
2955
|
-
|
2930
|
+
__ movq(rdi,
|
2931
|
+
ContextOperand(context_register(), Context::GLOBAL_OBJECT_INDEX));
|
2932
|
+
__ movq(rdi, FieldOperand(rdi, GlobalObject::kNativeContextOffset));
|
2956
2933
|
#endif
|
2957
2934
|
__ CallCFunction(ExternalReference::random_uint32_function(isolate()), 1);
|
2958
2935
|
|
@@ -3026,19 +3003,18 @@ void FullCodeGenerator::EmitDateField(CallRuntime* expr) {
|
|
3026
3003
|
|
3027
3004
|
VisitForAccumulatorValue(args->at(0)); // Load the object.
|
3028
3005
|
|
3029
|
-
Label runtime, done;
|
3006
|
+
Label runtime, done, not_date_object;
|
3030
3007
|
Register object = rax;
|
3031
3008
|
Register result = rax;
|
3032
3009
|
Register scratch = rcx;
|
3033
3010
|
|
3034
|
-
|
3035
|
-
__ AbortIfSmi(object);
|
3011
|
+
__ JumpIfSmi(object, ¬_date_object);
|
3036
3012
|
__ CmpObjectType(object, JS_DATE_TYPE, scratch);
|
3037
|
-
__
|
3038
|
-
#endif
|
3013
|
+
__ j(not_equal, ¬_date_object);
|
3039
3014
|
|
3040
3015
|
if (index->value() == 0) {
|
3041
3016
|
__ movq(result, FieldOperand(object, JSDate::kValueOffset));
|
3017
|
+
__ jmp(&done);
|
3042
3018
|
} else {
|
3043
3019
|
if (index->value() < JSDate::kFirstUncachedField) {
|
3044
3020
|
ExternalReference stamp = ExternalReference::date_cache_stamp(isolate());
|
@@ -3053,15 +3029,51 @@ void FullCodeGenerator::EmitDateField(CallRuntime* expr) {
|
|
3053
3029
|
__ PrepareCallCFunction(2);
|
3054
3030
|
#ifdef _WIN64
|
3055
3031
|
__ movq(rcx, object);
|
3056
|
-
__ movq(rdx, index, RelocInfo::
|
3032
|
+
__ movq(rdx, index, RelocInfo::NONE64);
|
3057
3033
|
#else
|
3058
3034
|
__ movq(rdi, object);
|
3059
|
-
__ movq(rsi, index, RelocInfo::
|
3035
|
+
__ movq(rsi, index, RelocInfo::NONE64);
|
3060
3036
|
#endif
|
3061
3037
|
__ CallCFunction(ExternalReference::get_date_field_function(isolate()), 2);
|
3062
3038
|
__ movq(rsi, Operand(rbp, StandardFrameConstants::kContextOffset));
|
3063
|
-
__
|
3039
|
+
__ jmp(&done);
|
3064
3040
|
}
|
3041
|
+
|
3042
|
+
__ bind(¬_date_object);
|
3043
|
+
__ CallRuntime(Runtime::kThrowNotDateError, 0);
|
3044
|
+
__ bind(&done);
|
3045
|
+
context()->Plug(rax);
|
3046
|
+
}
|
3047
|
+
|
3048
|
+
|
3049
|
+
void FullCodeGenerator::EmitOneByteSeqStringSetChar(CallRuntime* expr) {
|
3050
|
+
ZoneList<Expression*>* args = expr->arguments();
|
3051
|
+
ASSERT_EQ(3, args->length());
|
3052
|
+
|
3053
|
+
VisitForStackValue(args->at(1)); // index
|
3054
|
+
VisitForStackValue(args->at(2)); // value
|
3055
|
+
__ pop(rcx);
|
3056
|
+
__ pop(rbx);
|
3057
|
+
VisitForAccumulatorValue(args->at(0)); // string
|
3058
|
+
|
3059
|
+
static const String::Encoding encoding = String::ONE_BYTE_ENCODING;
|
3060
|
+
SeqStringSetCharGenerator::Generate(masm_, encoding, rax, rbx, rcx);
|
3061
|
+
context()->Plug(rax);
|
3062
|
+
}
|
3063
|
+
|
3064
|
+
|
3065
|
+
void FullCodeGenerator::EmitTwoByteSeqStringSetChar(CallRuntime* expr) {
|
3066
|
+
ZoneList<Expression*>* args = expr->arguments();
|
3067
|
+
ASSERT_EQ(3, args->length());
|
3068
|
+
|
3069
|
+
VisitForStackValue(args->at(1)); // index
|
3070
|
+
VisitForStackValue(args->at(2)); // value
|
3071
|
+
__ pop(rcx);
|
3072
|
+
__ pop(rbx);
|
3073
|
+
VisitForAccumulatorValue(args->at(0)); // string
|
3074
|
+
|
3075
|
+
static const String::Encoding encoding = String::TWO_BYTE_ENCODING;
|
3076
|
+
SeqStringSetCharGenerator::Generate(masm_, encoding, rax, rbx, rcx);
|
3065
3077
|
context()->Plug(rax);
|
3066
3078
|
}
|
3067
3079
|
|
@@ -3326,10 +3338,11 @@ void FullCodeGenerator::EmitCallFunction(CallRuntime* expr) {
|
|
3326
3338
|
}
|
3327
3339
|
VisitForAccumulatorValue(args->last()); // Function.
|
3328
3340
|
|
3329
|
-
|
3330
|
-
|
3331
|
-
__
|
3332
|
-
__
|
3341
|
+
Label runtime, done;
|
3342
|
+
// Check for non-function argument (including proxy).
|
3343
|
+
__ JumpIfSmi(rax, &runtime);
|
3344
|
+
__ CmpObjectType(rax, JS_FUNCTION_TYPE, rbx);
|
3345
|
+
__ j(not_equal, &runtime);
|
3333
3346
|
|
3334
3347
|
// InvokeFunction requires the function in rdi. Move it in there.
|
3335
3348
|
__ movq(rdi, result_register());
|
@@ -3339,7 +3352,7 @@ void FullCodeGenerator::EmitCallFunction(CallRuntime* expr) {
|
|
3339
3352
|
__ movq(rsi, Operand(rbp, StandardFrameConstants::kContextOffset));
|
3340
3353
|
__ jmp(&done);
|
3341
3354
|
|
3342
|
-
__ bind(&
|
3355
|
+
__ bind(&runtime);
|
3343
3356
|
__ push(rax);
|
3344
3357
|
__ CallRuntime(Runtime::kCall, args->length());
|
3345
3358
|
__ bind(&done);
|
@@ -3368,7 +3381,7 @@ void FullCodeGenerator::EmitGetFromCache(CallRuntime* expr) {
|
|
3368
3381
|
int cache_id = Smi::cast(*(args->at(0)->AsLiteral()->handle()))->value();
|
3369
3382
|
|
3370
3383
|
Handle<FixedArray> jsfunction_result_caches(
|
3371
|
-
isolate()->
|
3384
|
+
isolate()->native_context()->jsfunction_result_caches());
|
3372
3385
|
if (jsfunction_result_caches->length() <= cache_id) {
|
3373
3386
|
__ Abort("Attempt to use undefined cache.");
|
3374
3387
|
__ LoadRoot(rax, Heap::kUndefinedValueRootIndex);
|
@@ -3381,9 +3394,9 @@ void FullCodeGenerator::EmitGetFromCache(CallRuntime* expr) {
|
|
3381
3394
|
Register key = rax;
|
3382
3395
|
Register cache = rbx;
|
3383
3396
|
Register tmp = rcx;
|
3384
|
-
__ movq(cache, ContextOperand(rsi, Context::
|
3397
|
+
__ movq(cache, ContextOperand(rsi, Context::GLOBAL_OBJECT_INDEX));
|
3385
3398
|
__ movq(cache,
|
3386
|
-
FieldOperand(cache, GlobalObject::
|
3399
|
+
FieldOperand(cache, GlobalObject::kNativeContextOffset));
|
3387
3400
|
__ movq(cache,
|
3388
3401
|
ContextOperand(cache, Context::JSFUNCTION_RESULT_CACHES_INDEX));
|
3389
3402
|
__ movq(cache,
|
@@ -3484,9 +3497,7 @@ void FullCodeGenerator::EmitGetCachedArrayIndex(CallRuntime* expr) {
|
|
3484
3497
|
ASSERT(args->length() == 1);
|
3485
3498
|
VisitForAccumulatorValue(args->at(0));
|
3486
3499
|
|
3487
|
-
|
3488
|
-
__ AbortIfNotString(rax);
|
3489
|
-
}
|
3500
|
+
__ AssertString(rax);
|
3490
3501
|
|
3491
3502
|
__ movl(rax, FieldOperand(rax, String::kHashFieldOffset));
|
3492
3503
|
ASSERT(String::kHashShift >= kSmiTagSize);
|
@@ -3564,7 +3575,7 @@ void FullCodeGenerator::EmitFastAsciiArrayJoin(CallRuntime* expr) {
|
|
3564
3575
|
// Loop condition: while (index < array_length).
|
3565
3576
|
// Live loop registers: index(int32), array_length(int32), string(String*),
|
3566
3577
|
// scratch, string_length(int32), elements(FixedArray*).
|
3567
|
-
if (
|
3578
|
+
if (generate_debug_code_) {
|
3568
3579
|
__ cmpq(index, array_length);
|
3569
3580
|
__ Assert(below, "No empty arrays here in EmitFastAsciiArrayJoin");
|
3570
3581
|
}
|
@@ -3578,10 +3589,10 @@ void FullCodeGenerator::EmitFastAsciiArrayJoin(CallRuntime* expr) {
|
|
3578
3589
|
__ movzxbl(scratch, FieldOperand(scratch, Map::kInstanceTypeOffset));
|
3579
3590
|
__ andb(scratch, Immediate(
|
3580
3591
|
kIsNotStringMask | kStringEncodingMask | kStringRepresentationMask));
|
3581
|
-
__ cmpb(scratch, Immediate(kStringTag |
|
3592
|
+
__ cmpb(scratch, Immediate(kStringTag | kOneByteStringTag | kSeqStringTag));
|
3582
3593
|
__ j(not_equal, &bailout);
|
3583
3594
|
__ AddSmiField(string_length,
|
3584
|
-
FieldOperand(string,
|
3595
|
+
FieldOperand(string, SeqOneByteString::kLengthOffset));
|
3585
3596
|
__ j(overflow, &bailout);
|
3586
3597
|
__ incl(index);
|
3587
3598
|
__ cmpl(index, array_length);
|
@@ -3617,7 +3628,7 @@ void FullCodeGenerator::EmitFastAsciiArrayJoin(CallRuntime* expr) {
|
|
3617
3628
|
__ movzxbl(scratch, FieldOperand(scratch, Map::kInstanceTypeOffset));
|
3618
3629
|
__ andb(scratch, Immediate(
|
3619
3630
|
kIsNotStringMask | kStringEncodingMask | kStringRepresentationMask));
|
3620
|
-
__ cmpb(scratch, Immediate(kStringTag |
|
3631
|
+
__ cmpb(scratch, Immediate(kStringTag | kOneByteStringTag | kSeqStringTag));
|
3621
3632
|
__ j(not_equal, &bailout);
|
3622
3633
|
|
3623
3634
|
// Live registers:
|
@@ -3628,7 +3639,7 @@ void FullCodeGenerator::EmitFastAsciiArrayJoin(CallRuntime* expr) {
|
|
3628
3639
|
|
3629
3640
|
// Add (separator length times (array_length - 1)) to string_length.
|
3630
3641
|
__ SmiToInteger32(scratch,
|
3631
|
-
FieldOperand(string,
|
3642
|
+
FieldOperand(string, SeqOneByteString::kLengthOffset));
|
3632
3643
|
__ decl(index);
|
3633
3644
|
__ imull(scratch, index);
|
3634
3645
|
__ j(overflow, &bailout);
|
@@ -3641,10 +3652,10 @@ void FullCodeGenerator::EmitFastAsciiArrayJoin(CallRuntime* expr) {
|
|
3641
3652
|
__ AllocateAsciiString(result_pos, string_length, scratch,
|
3642
3653
|
index, string, &bailout);
|
3643
3654
|
__ movq(result_operand, result_pos);
|
3644
|
-
__ lea(result_pos, FieldOperand(result_pos,
|
3655
|
+
__ lea(result_pos, FieldOperand(result_pos, SeqOneByteString::kHeaderSize));
|
3645
3656
|
|
3646
3657
|
__ movq(string, separator_operand);
|
3647
|
-
__ SmiCompare(FieldOperand(string,
|
3658
|
+
__ SmiCompare(FieldOperand(string, SeqOneByteString::kLengthOffset),
|
3648
3659
|
Smi::FromInt(1));
|
3649
3660
|
__ j(equal, &one_char_separator);
|
3650
3661
|
__ j(greater, &long_separator);
|
@@ -3670,7 +3681,7 @@ void FullCodeGenerator::EmitFastAsciiArrayJoin(CallRuntime* expr) {
|
|
3670
3681
|
__ SmiToInteger32(string_length,
|
3671
3682
|
FieldOperand(string, String::kLengthOffset));
|
3672
3683
|
__ lea(string,
|
3673
|
-
FieldOperand(string,
|
3684
|
+
FieldOperand(string, SeqOneByteString::kHeaderSize));
|
3674
3685
|
__ CopyBytes(result_pos, string, string_length);
|
3675
3686
|
__ incl(index);
|
3676
3687
|
__ bind(&loop_1_condition);
|
@@ -3688,7 +3699,7 @@ void FullCodeGenerator::EmitFastAsciiArrayJoin(CallRuntime* expr) {
|
|
3688
3699
|
__ bind(&one_char_separator);
|
3689
3700
|
// Get the separator ASCII character value.
|
3690
3701
|
// Register "string" holds the separator.
|
3691
|
-
__ movzxbl(scratch, FieldOperand(string,
|
3702
|
+
__ movzxbl(scratch, FieldOperand(string, SeqOneByteString::kHeaderSize));
|
3692
3703
|
__ Set(index, 0);
|
3693
3704
|
// Jump into the loop after the code that copies the separator, so the first
|
3694
3705
|
// element is not preceded by a separator
|
@@ -3714,7 +3725,7 @@ void FullCodeGenerator::EmitFastAsciiArrayJoin(CallRuntime* expr) {
|
|
3714
3725
|
__ SmiToInteger32(string_length,
|
3715
3726
|
FieldOperand(string, String::kLengthOffset));
|
3716
3727
|
__ lea(string,
|
3717
|
-
FieldOperand(string,
|
3728
|
+
FieldOperand(string, SeqOneByteString::kHeaderSize));
|
3718
3729
|
__ CopyBytes(result_pos, string, string_length);
|
3719
3730
|
__ incl(index);
|
3720
3731
|
__ cmpl(index, array_length_operand);
|
@@ -3739,7 +3750,7 @@ void FullCodeGenerator::EmitFastAsciiArrayJoin(CallRuntime* expr) {
|
|
3739
3750
|
__ SmiToInteger32(scratch,
|
3740
3751
|
FieldOperand(string, String::kLengthOffset));
|
3741
3752
|
__ lea(string,
|
3742
|
-
FieldOperand(string,
|
3753
|
+
FieldOperand(string, SeqOneByteString::kHeaderSize));
|
3743
3754
|
__ movq(separator_operand, string);
|
3744
3755
|
|
3745
3756
|
// Jump into the loop after the code that copies the separator, so the first
|
@@ -3765,7 +3776,7 @@ void FullCodeGenerator::EmitFastAsciiArrayJoin(CallRuntime* expr) {
|
|
3765
3776
|
__ SmiToInteger32(string_length,
|
3766
3777
|
FieldOperand(string, String::kLengthOffset));
|
3767
3778
|
__ lea(string,
|
3768
|
-
FieldOperand(string,
|
3779
|
+
FieldOperand(string, SeqOneByteString::kHeaderSize));
|
3769
3780
|
__ CopyBytes(result_pos, string, string_length);
|
3770
3781
|
__ incq(index);
|
3771
3782
|
__ j(not_equal, &loop_3); // Loop while (index < 0).
|
@@ -3810,7 +3821,7 @@ void FullCodeGenerator::VisitCallRuntime(CallRuntime* expr) {
|
|
3810
3821
|
RelocInfo::Mode mode = RelocInfo::CODE_TARGET;
|
3811
3822
|
Handle<Code> ic =
|
3812
3823
|
isolate()->stub_cache()->ComputeCallInitialize(arg_count, mode);
|
3813
|
-
CallIC(ic, mode, expr->
|
3824
|
+
CallIC(ic, mode, expr->CallRuntimeFeedbackId());
|
3814
3825
|
// Restore context register.
|
3815
3826
|
__ movq(rsi, Operand(rbp, StandardFrameConstants::kContextOffset));
|
3816
3827
|
} else {
|
@@ -3968,7 +3979,8 @@ void FullCodeGenerator::EmitUnaryOperation(UnaryOperation* expr,
|
|
3968
3979
|
// accumulator register rax.
|
3969
3980
|
VisitForAccumulatorValue(expr->expression());
|
3970
3981
|
SetSourcePosition(expr->position());
|
3971
|
-
CallIC(stub.GetCode(), RelocInfo::CODE_TARGET,
|
3982
|
+
CallIC(stub.GetCode(), RelocInfo::CODE_TARGET,
|
3983
|
+
expr->UnaryOperationFeedbackId());
|
3972
3984
|
context()->Plug(rax);
|
3973
3985
|
}
|
3974
3986
|
|
@@ -4024,7 +4036,7 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) {
|
|
4024
4036
|
if (assign_type == VARIABLE) {
|
4025
4037
|
PrepareForBailout(expr->expression(), TOS_REG);
|
4026
4038
|
} else {
|
4027
|
-
PrepareForBailoutForId(
|
4039
|
+
PrepareForBailoutForId(prop->LoadId(), TOS_REG);
|
4028
4040
|
}
|
4029
4041
|
|
4030
4042
|
// Call ToNumber only if operand is not a smi.
|
@@ -4082,14 +4094,10 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) {
|
|
4082
4094
|
SetSourcePosition(expr->position());
|
4083
4095
|
|
4084
4096
|
// Call stub for +1/-1.
|
4097
|
+
__ movq(rdx, rax);
|
4098
|
+
__ Move(rax, Smi::FromInt(1));
|
4085
4099
|
BinaryOpStub stub(expr->binary_op(), NO_OVERWRITE);
|
4086
|
-
|
4087
|
-
__ Move(rdx, Smi::FromInt(1));
|
4088
|
-
} else {
|
4089
|
-
__ movq(rdx, rax);
|
4090
|
-
__ Move(rax, Smi::FromInt(1));
|
4091
|
-
}
|
4092
|
-
CallIC(stub.GetCode(), RelocInfo::CODE_TARGET, expr->CountId());
|
4100
|
+
CallIC(stub.GetCode(), RelocInfo::CODE_TARGET, expr->CountBinOpFeedbackId());
|
4093
4101
|
patch_site.EmitPatchInfo();
|
4094
4102
|
__ bind(&done);
|
4095
4103
|
|
@@ -4123,7 +4131,7 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) {
|
|
4123
4131
|
Handle<Code> ic = is_classic_mode()
|
4124
4132
|
? isolate()->builtins()->StoreIC_Initialize()
|
4125
4133
|
: isolate()->builtins()->StoreIC_Initialize_Strict();
|
4126
|
-
CallIC(ic, RelocInfo::CODE_TARGET, expr->
|
4134
|
+
CallIC(ic, RelocInfo::CODE_TARGET, expr->CountStoreFeedbackId());
|
4127
4135
|
PrepareForBailoutForId(expr->AssignmentId(), TOS_REG);
|
4128
4136
|
if (expr->is_postfix()) {
|
4129
4137
|
if (!context()->IsEffect()) {
|
@@ -4140,7 +4148,7 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) {
|
|
4140
4148
|
Handle<Code> ic = is_classic_mode()
|
4141
4149
|
? isolate()->builtins()->KeyedStoreIC_Initialize()
|
4142
4150
|
: isolate()->builtins()->KeyedStoreIC_Initialize_Strict();
|
4143
|
-
CallIC(ic, RelocInfo::CODE_TARGET, expr->
|
4151
|
+
CallIC(ic, RelocInfo::CODE_TARGET, expr->CountStoreFeedbackId());
|
4144
4152
|
PrepareForBailoutForId(expr->AssignmentId(), TOS_REG);
|
4145
4153
|
if (expr->is_postfix()) {
|
4146
4154
|
if (!context()->IsEffect()) {
|
@@ -4307,29 +4315,7 @@ void FullCodeGenerator::VisitCompareOperation(CompareOperation* expr) {
|
|
4307
4315
|
|
4308
4316
|
default: {
|
4309
4317
|
VisitForAccumulatorValue(expr->right());
|
4310
|
-
Condition cc =
|
4311
|
-
switch (op) {
|
4312
|
-
case Token::EQ_STRICT:
|
4313
|
-
case Token::EQ:
|
4314
|
-
cc = equal;
|
4315
|
-
break;
|
4316
|
-
case Token::LT:
|
4317
|
-
cc = less;
|
4318
|
-
break;
|
4319
|
-
case Token::GT:
|
4320
|
-
cc = greater;
|
4321
|
-
break;
|
4322
|
-
case Token::LTE:
|
4323
|
-
cc = less_equal;
|
4324
|
-
break;
|
4325
|
-
case Token::GTE:
|
4326
|
-
cc = greater_equal;
|
4327
|
-
break;
|
4328
|
-
case Token::IN:
|
4329
|
-
case Token::INSTANCEOF:
|
4330
|
-
default:
|
4331
|
-
UNREACHABLE();
|
4332
|
-
}
|
4318
|
+
Condition cc = CompareIC::ComputeCondition(op);
|
4333
4319
|
__ pop(rdx);
|
4334
4320
|
|
4335
4321
|
bool inline_smi_code = ShouldInlineSmiCase(op);
|
@@ -4347,7 +4333,7 @@ void FullCodeGenerator::VisitCompareOperation(CompareOperation* expr) {
|
|
4347
4333
|
// Record position and call the compare IC.
|
4348
4334
|
SetSourcePosition(expr->position());
|
4349
4335
|
Handle<Code> ic = CompareIC::GetUninitialized(op);
|
4350
|
-
CallIC(ic, RelocInfo::CODE_TARGET, expr->
|
4336
|
+
CallIC(ic, RelocInfo::CODE_TARGET, expr->CompareOperationFeedbackId());
|
4351
4337
|
patch_site.EmitPatchInfo();
|
4352
4338
|
|
4353
4339
|
PrepareForBailoutBeforeSplit(expr, true, if_true, if_false);
|
@@ -4429,7 +4415,7 @@ void FullCodeGenerator::PushFunctionArgumentForContextAllocation() {
|
|
4429
4415
|
Scope* declaration_scope = scope()->DeclarationScope();
|
4430
4416
|
if (declaration_scope->is_global_scope() ||
|
4431
4417
|
declaration_scope->is_module_scope()) {
|
4432
|
-
// Contexts nested in the
|
4418
|
+
// Contexts nested in the native context have a canonical empty function
|
4433
4419
|
// as their closure, not the anonymous closure containing the global
|
4434
4420
|
// code. Pass a smi sentinel and let the runtime look up the empty
|
4435
4421
|
// function.
|
@@ -4459,15 +4445,52 @@ void FullCodeGenerator::EnterFinallyBlock() {
|
|
4459
4445
|
__ subq(rdx, rcx);
|
4460
4446
|
__ Integer32ToSmi(rdx, rdx);
|
4461
4447
|
__ push(rdx);
|
4448
|
+
|
4462
4449
|
// Store result register while executing finally block.
|
4463
4450
|
__ push(result_register());
|
4451
|
+
|
4452
|
+
// Store pending message while executing finally block.
|
4453
|
+
ExternalReference pending_message_obj =
|
4454
|
+
ExternalReference::address_of_pending_message_obj(isolate());
|
4455
|
+
__ Load(rdx, pending_message_obj);
|
4456
|
+
__ push(rdx);
|
4457
|
+
|
4458
|
+
ExternalReference has_pending_message =
|
4459
|
+
ExternalReference::address_of_has_pending_message(isolate());
|
4460
|
+
__ Load(rdx, has_pending_message);
|
4461
|
+
__ Integer32ToSmi(rdx, rdx);
|
4462
|
+
__ push(rdx);
|
4463
|
+
|
4464
|
+
ExternalReference pending_message_script =
|
4465
|
+
ExternalReference::address_of_pending_message_script(isolate());
|
4466
|
+
__ Load(rdx, pending_message_script);
|
4467
|
+
__ push(rdx);
|
4464
4468
|
}
|
4465
4469
|
|
4466
4470
|
|
4467
4471
|
void FullCodeGenerator::ExitFinallyBlock() {
|
4468
4472
|
ASSERT(!result_register().is(rdx));
|
4469
4473
|
ASSERT(!result_register().is(rcx));
|
4474
|
+
// Restore pending message from stack.
|
4475
|
+
__ pop(rdx);
|
4476
|
+
ExternalReference pending_message_script =
|
4477
|
+
ExternalReference::address_of_pending_message_script(isolate());
|
4478
|
+
__ Store(pending_message_script, rdx);
|
4479
|
+
|
4480
|
+
__ pop(rdx);
|
4481
|
+
__ SmiToInteger32(rdx, rdx);
|
4482
|
+
ExternalReference has_pending_message =
|
4483
|
+
ExternalReference::address_of_has_pending_message(isolate());
|
4484
|
+
__ Store(has_pending_message, rdx);
|
4485
|
+
|
4486
|
+
__ pop(rdx);
|
4487
|
+
ExternalReference pending_message_obj =
|
4488
|
+
ExternalReference::address_of_pending_message_obj(isolate());
|
4489
|
+
__ Store(pending_message_obj, rdx);
|
4490
|
+
|
4491
|
+
// Restore result register from stack.
|
4470
4492
|
__ pop(result_register());
|
4493
|
+
|
4471
4494
|
// Uncook return address.
|
4472
4495
|
__ pop(rdx);
|
4473
4496
|
__ SmiToInteger32(rdx, rdx);
|