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
@@ -553,6 +553,7 @@ int DisassemblerIA32::F7Instruction(byte* data) {
|
|
553
553
|
case 2: mnem = "not"; break;
|
554
554
|
case 3: mnem = "neg"; break;
|
555
555
|
case 4: mnem = "mul"; break;
|
556
|
+
case 5: mnem = "imul"; break;
|
556
557
|
case 7: mnem = "idiv"; break;
|
557
558
|
default: UnimplementedInstruction();
|
558
559
|
}
|
@@ -868,6 +869,7 @@ static const char* F0Mnem(byte f0byte) {
|
|
868
869
|
case 0xAF: return "imul";
|
869
870
|
case 0xA5: return "shld";
|
870
871
|
case 0xAD: return "shrd";
|
872
|
+
case 0xAC: return "shrd"; // 3-operand version.
|
871
873
|
case 0xAB: return "bts";
|
872
874
|
default: return NULL;
|
873
875
|
}
|
@@ -1038,6 +1040,14 @@ int DisassemblerIA32::InstructionDecode(v8::internal::Vector<char> out_buffer,
|
|
1038
1040
|
NameOfXMMRegister(regop),
|
1039
1041
|
NameOfXMMRegister(rm));
|
1040
1042
|
data++;
|
1043
|
+
} else if (f0byte == 0x50) {
|
1044
|
+
data += 2;
|
1045
|
+
int mod, regop, rm;
|
1046
|
+
get_modrm(*data, &mod, ®op, &rm);
|
1047
|
+
AppendToBuffer("movmskps %s,%s",
|
1048
|
+
NameOfCPURegister(regop),
|
1049
|
+
NameOfXMMRegister(rm));
|
1050
|
+
data++;
|
1041
1051
|
} else if ((f0byte & 0xF0) == 0x80) {
|
1042
1052
|
data += JumpConditional(data, branch_hint);
|
1043
1053
|
} else if (f0byte == 0xBE || f0byte == 0xBF || f0byte == 0xB6 ||
|
@@ -1266,6 +1276,14 @@ int DisassemblerIA32::InstructionDecode(v8::internal::Vector<char> out_buffer,
|
|
1266
1276
|
NameOfXMMRegister(regop),
|
1267
1277
|
NameOfXMMRegister(rm));
|
1268
1278
|
data++;
|
1279
|
+
} else if (*data == 0x56) {
|
1280
|
+
data++;
|
1281
|
+
int mod, regop, rm;
|
1282
|
+
get_modrm(*data, &mod, ®op, &rm);
|
1283
|
+
AppendToBuffer("orpd %s,%s",
|
1284
|
+
NameOfXMMRegister(regop),
|
1285
|
+
NameOfXMMRegister(rm));
|
1286
|
+
data++;
|
1269
1287
|
} else if (*data == 0x57) {
|
1270
1288
|
data++;
|
1271
1289
|
int mod, regop, rm;
|
@@ -1296,6 +1314,14 @@ int DisassemblerIA32::InstructionDecode(v8::internal::Vector<char> out_buffer,
|
|
1296
1314
|
NameOfXMMRegister(rm),
|
1297
1315
|
static_cast<int>(imm8));
|
1298
1316
|
data += 2;
|
1317
|
+
} else if (*data == 0x76) {
|
1318
|
+
data++;
|
1319
|
+
int mod, regop, rm;
|
1320
|
+
get_modrm(*data, &mod, ®op, &rm);
|
1321
|
+
AppendToBuffer("pcmpeqd %s,%s",
|
1322
|
+
NameOfXMMRegister(regop),
|
1323
|
+
NameOfXMMRegister(rm));
|
1324
|
+
data++;
|
1299
1325
|
} else if (*data == 0x90) {
|
1300
1326
|
data++;
|
1301
1327
|
AppendToBuffer("nop"); // 2 byte nop.
|
@@ -1463,6 +1489,7 @@ int DisassemblerIA32::InstructionDecode(v8::internal::Vector<char> out_buffer,
|
|
1463
1489
|
switch (b2) {
|
1464
1490
|
case 0x2A: mnem = "cvtsi2sd"; break;
|
1465
1491
|
case 0x2C: mnem = "cvttsd2si"; break;
|
1492
|
+
case 0x2D: mnem = "cvtsd2si"; break;
|
1466
1493
|
case 0x51: mnem = "sqrtsd"; break;
|
1467
1494
|
case 0x58: mnem = "addsd"; break;
|
1468
1495
|
case 0x59: mnem = "mulsd"; break;
|
@@ -1475,7 +1502,7 @@ int DisassemblerIA32::InstructionDecode(v8::internal::Vector<char> out_buffer,
|
|
1475
1502
|
if (b2 == 0x2A) {
|
1476
1503
|
AppendToBuffer("%s %s,", mnem, NameOfXMMRegister(regop));
|
1477
1504
|
data += PrintRightOperand(data);
|
1478
|
-
} else if (b2 == 0x2C) {
|
1505
|
+
} else if (b2 == 0x2C || b2 == 0x2D) {
|
1479
1506
|
AppendToBuffer("%s %s,", mnem, NameOfCPURegister(regop));
|
1480
1507
|
data += PrintRightXMMOperand(data);
|
1481
1508
|
} else if (b2 == 0xC2) {
|
@@ -53,6 +53,10 @@ typedef Object* JSCallerSavedBuffer[kNumJSCallerSaved];
|
|
53
53
|
// Number of registers for which space is reserved in safepoints.
|
54
54
|
const int kNumSafepointRegisters = 8;
|
55
55
|
|
56
|
+
const int kNoAlignmentPadding = 0;
|
57
|
+
const int kAlignmentPaddingPushed = 2;
|
58
|
+
const int kAlignmentZapValue = 0x12345678; // Not heap object tagged.
|
59
|
+
|
56
60
|
// ----------------------------------------------------
|
57
61
|
|
58
62
|
|
@@ -93,22 +97,6 @@ class ExitFrameConstants : public AllStatic {
|
|
93
97
|
};
|
94
98
|
|
95
99
|
|
96
|
-
class StandardFrameConstants : public AllStatic {
|
97
|
-
public:
|
98
|
-
// Fixed part of the frame consists of return address, caller fp,
|
99
|
-
// context and function.
|
100
|
-
// StandardFrame::IterateExpressions assumes that kContextOffset is the last
|
101
|
-
// object pointer.
|
102
|
-
static const int kFixedFrameSize = 4 * kPointerSize;
|
103
|
-
static const int kExpressionsOffset = -3 * kPointerSize;
|
104
|
-
static const int kMarkerOffset = -2 * kPointerSize;
|
105
|
-
static const int kContextOffset = -1 * kPointerSize;
|
106
|
-
static const int kCallerFPOffset = 0 * kPointerSize;
|
107
|
-
static const int kCallerPCOffset = +1 * kPointerSize;
|
108
|
-
static const int kCallerSPOffset = +2 * kPointerSize;
|
109
|
-
};
|
110
|
-
|
111
|
-
|
112
100
|
class JavaScriptFrameConstants : public AllStatic {
|
113
101
|
public:
|
114
102
|
// FP-relative.
|
@@ -119,6 +107,8 @@ class JavaScriptFrameConstants : public AllStatic {
|
|
119
107
|
// Caller SP-relative.
|
120
108
|
static const int kParam0Offset = -2 * kPointerSize;
|
121
109
|
static const int kReceiverOffset = -1 * kPointerSize;
|
110
|
+
|
111
|
+
static const int kDynamicAlignmentStateOffset = kLocal0Offset;
|
122
112
|
};
|
123
113
|
|
124
114
|
|
@@ -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
|
@@ -154,6 +156,7 @@ void FullCodeGenerator::Generate() {
|
|
154
156
|
// the frame (that is done below).
|
155
157
|
FrameScope frame_scope(masm_, StackFrame::MANUAL);
|
156
158
|
|
159
|
+
info->set_prologue_offset(masm_->pc_offset());
|
157
160
|
__ push(ebp); // Caller's frame pointer.
|
158
161
|
__ mov(ebp, esp);
|
159
162
|
__ push(esi); // Callee's context.
|
@@ -176,10 +179,13 @@ void FullCodeGenerator::Generate() {
|
|
176
179
|
// Possibly allocate a local context.
|
177
180
|
int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
|
178
181
|
if (heap_slots > 0) {
|
179
|
-
Comment cmnt(masm_, "[ Allocate
|
182
|
+
Comment cmnt(masm_, "[ Allocate context");
|
180
183
|
// Argument to NewContext is the function, which is still in edi.
|
181
184
|
__ push(edi);
|
182
|
-
if (
|
185
|
+
if (FLAG_harmony_scoping && info->scope()->is_global_scope()) {
|
186
|
+
__ Push(info->scope()->GetScopeInfo());
|
187
|
+
__ CallRuntime(Runtime::kNewGlobalContext, 2);
|
188
|
+
} else if (heap_slots <= FastNewContextStub::kMaximumSlots) {
|
183
189
|
FastNewContextStub stub(heap_slots);
|
184
190
|
__ CallStub(&stub);
|
185
191
|
} else {
|
@@ -227,7 +233,7 @@ void FullCodeGenerator::Generate() {
|
|
227
233
|
__ lea(edx,
|
228
234
|
Operand(ebp, StandardFrameConstants::kCallerSPOffset + offset));
|
229
235
|
__ push(edx);
|
230
|
-
__
|
236
|
+
__ push(Immediate(Smi::FromInt(num_parameters)));
|
231
237
|
// Arguments to ArgumentsAccessStub:
|
232
238
|
// function, receiver address, parameter count.
|
233
239
|
// The stub will rewrite receiver and parameter count if the previous
|
@@ -257,7 +263,7 @@ void FullCodeGenerator::Generate() {
|
|
257
263
|
scope()->VisitIllegalRedeclaration(this);
|
258
264
|
|
259
265
|
} else {
|
260
|
-
PrepareForBailoutForId(
|
266
|
+
PrepareForBailoutForId(BailoutId::FunctionEntry(), NO_REGISTERS);
|
261
267
|
{ Comment cmnt(masm_, "[ Declarations");
|
262
268
|
// For named function expressions, declare the function name as a
|
263
269
|
// constant.
|
@@ -272,7 +278,7 @@ void FullCodeGenerator::Generate() {
|
|
272
278
|
}
|
273
279
|
|
274
280
|
{ Comment cmnt(masm_, "[ Stack check");
|
275
|
-
PrepareForBailoutForId(
|
281
|
+
PrepareForBailoutForId(BailoutId::Declarations(), NO_REGISTERS);
|
276
282
|
Label ok;
|
277
283
|
ExternalReference stack_limit =
|
278
284
|
ExternalReference::address_of_stack_limit(isolate());
|
@@ -317,53 +323,33 @@ void FullCodeGenerator::EmitProfilingCounterReset() {
|
|
317
323
|
// Self-optimization is a one-off thing: if it fails, don't try again.
|
318
324
|
reset_value = Smi::kMaxValue;
|
319
325
|
}
|
320
|
-
if (isolate()->IsDebuggerActive()) {
|
321
|
-
// Detect debug break requests as soon as possible.
|
322
|
-
reset_value = 10;
|
323
|
-
}
|
324
326
|
__ mov(ebx, Immediate(profiling_counter_));
|
325
327
|
__ mov(FieldOperand(ebx, JSGlobalPropertyCell::kValueOffset),
|
326
328
|
Immediate(Smi::FromInt(reset_value)));
|
327
329
|
}
|
328
330
|
|
329
331
|
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
void FullCodeGenerator::EmitStackCheck(IterationStatement* stmt,
|
335
|
-
Label* back_edge_target) {
|
336
|
-
Comment cmnt(masm_, "[ Stack check");
|
332
|
+
void FullCodeGenerator::EmitBackEdgeBookkeeping(IterationStatement* stmt,
|
333
|
+
Label* back_edge_target) {
|
334
|
+
Comment cmnt(masm_, "[ Back edge bookkeeping");
|
337
335
|
Label ok;
|
338
336
|
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
Max(1, distance / kBackEdgeDistanceDivisor));
|
346
|
-
}
|
347
|
-
EmitProfilingCounterDecrement(weight);
|
348
|
-
__ j(positive, &ok, Label::kNear);
|
349
|
-
InterruptStub stub;
|
350
|
-
__ CallStub(&stub);
|
351
|
-
} else {
|
352
|
-
// Count based interrupts happen often enough when they are enabled
|
353
|
-
// that the additional stack checks are not necessary (they would
|
354
|
-
// only check for interrupts).
|
355
|
-
ExternalReference stack_limit =
|
356
|
-
ExternalReference::address_of_stack_limit(isolate());
|
357
|
-
__ cmp(esp, Operand::StaticVariable(stack_limit));
|
358
|
-
__ j(above_equal, &ok, Label::kNear);
|
359
|
-
StackCheckStub stub;
|
360
|
-
__ CallStub(&stub);
|
337
|
+
int weight = 1;
|
338
|
+
if (FLAG_weighted_back_edges) {
|
339
|
+
ASSERT(back_edge_target->is_bound());
|
340
|
+
int distance = masm_->SizeOfCodeGeneratedSince(back_edge_target);
|
341
|
+
weight = Min(kMaxBackEdgeWeight,
|
342
|
+
Max(1, distance / kBackEdgeDistanceUnit));
|
361
343
|
}
|
344
|
+
EmitProfilingCounterDecrement(weight);
|
345
|
+
__ j(positive, &ok, Label::kNear);
|
346
|
+
InterruptStub stub;
|
347
|
+
__ CallStub(&stub);
|
362
348
|
|
363
349
|
// Record a mapping of this PC offset to the OSR id. This is used to find
|
364
350
|
// the AST id from the unoptimized code in order to use it as a key into
|
365
351
|
// the deoptimization input data found in the optimized code.
|
366
|
-
|
352
|
+
RecordBackEdge(stmt->OsrEntryId());
|
367
353
|
|
368
354
|
// Loop stack checks can be patched to perform on-stack replacement. In
|
369
355
|
// order to decide whether or not to perform OSR we embed the loop depth
|
@@ -372,9 +358,7 @@ void FullCodeGenerator::EmitStackCheck(IterationStatement* stmt,
|
|
372
358
|
ASSERT(loop_depth() > 0);
|
373
359
|
__ test(eax, Immediate(Min(loop_depth(), Code::kMaxLoopNestingMarker)));
|
374
360
|
|
375
|
-
|
376
|
-
EmitProfilingCounterReset();
|
377
|
-
}
|
361
|
+
EmitProfilingCounterReset();
|
378
362
|
|
379
363
|
__ bind(&ok);
|
380
364
|
PrepareForBailoutForId(stmt->EntryId(), NO_REGISTERS);
|
@@ -404,7 +388,7 @@ void FullCodeGenerator::EmitReturnSequence() {
|
|
404
388
|
} else if (FLAG_weighted_back_edges) {
|
405
389
|
int distance = masm_->pc_offset();
|
406
390
|
weight = Min(kMaxBackEdgeWeight,
|
407
|
-
Max(1, distance /
|
391
|
+
Max(1, distance / kBackEdgeDistanceUnit));
|
408
392
|
}
|
409
393
|
EmitProfilingCounterDecrement(weight);
|
410
394
|
Label ok;
|
@@ -757,10 +741,9 @@ void FullCodeGenerator::PrepareForBailoutBeforeSplit(Expression* expr,
|
|
757
741
|
|
758
742
|
|
759
743
|
void FullCodeGenerator::EmitDebugCheckDeclarationContext(Variable* variable) {
|
760
|
-
// The variable in the declaration always resides in the current
|
761
|
-
// context.
|
744
|
+
// The variable in the declaration always resides in the current context.
|
762
745
|
ASSERT_EQ(0, scope()->ContextChainLength(variable->scope()));
|
763
|
-
if (
|
746
|
+
if (generate_debug_code_) {
|
764
747
|
// Check that we're not inside a with or catch context.
|
765
748
|
__ mov(ebx, FieldOperand(esi, HeapObject::kMapOffset));
|
766
749
|
__ cmp(ebx, isolate()->factory()->with_context_map());
|
@@ -782,10 +765,10 @@ void FullCodeGenerator::VisitVariableDeclaration(
|
|
782
765
|
bool hole_init = mode == CONST || mode == CONST_HARMONY || mode == LET;
|
783
766
|
switch (variable->location()) {
|
784
767
|
case Variable::UNALLOCATED:
|
785
|
-
globals_->Add(variable->name());
|
768
|
+
globals_->Add(variable->name(), zone());
|
786
769
|
globals_->Add(variable->binding_needs_init()
|
787
770
|
? isolate()->factory()->the_hole_value()
|
788
|
-
: isolate()->factory()->undefined_value());
|
771
|
+
: isolate()->factory()->undefined_value(), zone());
|
789
772
|
break;
|
790
773
|
|
791
774
|
case Variable::PARAMETER:
|
@@ -813,10 +796,9 @@ void FullCodeGenerator::VisitVariableDeclaration(
|
|
813
796
|
__ push(esi);
|
814
797
|
__ push(Immediate(variable->name()));
|
815
798
|
// VariableDeclaration nodes are always introduced in one of four modes.
|
816
|
-
ASSERT(mode
|
817
|
-
|
818
|
-
|
819
|
-
? READ_ONLY : NONE;
|
799
|
+
ASSERT(IsDeclaredVariableMode(mode));
|
800
|
+
PropertyAttributes attr =
|
801
|
+
IsImmutableVariableMode(mode) ? READ_ONLY : NONE;
|
820
802
|
__ push(Immediate(Smi::FromInt(attr)));
|
821
803
|
// Push initial value, if any.
|
822
804
|
// Note: For variables we must not push an initial value (such as
|
@@ -840,12 +822,12 @@ void FullCodeGenerator::VisitFunctionDeclaration(
|
|
840
822
|
Variable* variable = proxy->var();
|
841
823
|
switch (variable->location()) {
|
842
824
|
case Variable::UNALLOCATED: {
|
843
|
-
globals_->Add(variable->name());
|
825
|
+
globals_->Add(variable->name(), zone());
|
844
826
|
Handle<SharedFunctionInfo> function =
|
845
827
|
Compiler::BuildFunctionInfo(declaration->fun(), script());
|
846
828
|
// Check for stack-overflow exception.
|
847
829
|
if (function.is_null()) return SetStackOverflow();
|
848
|
-
globals_->Add(function);
|
830
|
+
globals_->Add(function, zone());
|
849
831
|
break;
|
850
832
|
}
|
851
833
|
|
@@ -888,33 +870,32 @@ void FullCodeGenerator::VisitFunctionDeclaration(
|
|
888
870
|
|
889
871
|
|
890
872
|
void FullCodeGenerator::VisitModuleDeclaration(ModuleDeclaration* declaration) {
|
891
|
-
|
892
|
-
|
893
|
-
|
894
|
-
ASSERT(!instance.is_null());
|
873
|
+
Variable* variable = declaration->proxy()->var();
|
874
|
+
ASSERT(variable->location() == Variable::CONTEXT);
|
875
|
+
ASSERT(variable->interface()->IsFrozen());
|
895
876
|
|
896
|
-
|
897
|
-
|
898
|
-
Comment cmnt(masm_, "[ ModuleDeclaration");
|
899
|
-
globals_->Add(variable->name());
|
900
|
-
globals_->Add(instance);
|
901
|
-
Visit(declaration->module());
|
902
|
-
break;
|
903
|
-
}
|
877
|
+
Comment cmnt(masm_, "[ ModuleDeclaration");
|
878
|
+
EmitDebugCheckDeclarationContext(variable);
|
904
879
|
|
905
|
-
|
906
|
-
|
907
|
-
|
908
|
-
|
909
|
-
Visit(declaration->module());
|
910
|
-
break;
|
911
|
-
}
|
880
|
+
// Load instance object.
|
881
|
+
__ LoadContext(eax, scope_->ContextChainLength(scope_->GlobalScope()));
|
882
|
+
__ mov(eax, ContextOperand(eax, variable->interface()->Index()));
|
883
|
+
__ mov(eax, ContextOperand(eax, Context::EXTENSION_INDEX));
|
912
884
|
|
913
|
-
|
914
|
-
|
915
|
-
|
916
|
-
|
917
|
-
|
885
|
+
// Assign it.
|
886
|
+
__ mov(ContextOperand(esi, variable->index()), eax);
|
887
|
+
// We know that we have written a module, which is not a smi.
|
888
|
+
__ RecordWriteContextSlot(esi,
|
889
|
+
Context::SlotOffset(variable->index()),
|
890
|
+
eax,
|
891
|
+
ecx,
|
892
|
+
kDontSaveFPRegs,
|
893
|
+
EMIT_REMEMBERED_SET,
|
894
|
+
OMIT_SMI_CHECK);
|
895
|
+
PrepareForBailoutForId(declaration->proxy()->id(), NO_REGISTERS);
|
896
|
+
|
897
|
+
// Traverse into body.
|
898
|
+
Visit(declaration->module());
|
918
899
|
}
|
919
900
|
|
920
901
|
|
@@ -949,13 +930,21 @@ void FullCodeGenerator::VisitExportDeclaration(ExportDeclaration* declaration) {
|
|
949
930
|
void FullCodeGenerator::DeclareGlobals(Handle<FixedArray> pairs) {
|
950
931
|
// Call the runtime to declare the globals.
|
951
932
|
__ push(esi); // The context is the first argument.
|
952
|
-
__
|
953
|
-
__
|
933
|
+
__ Push(pairs);
|
934
|
+
__ Push(Smi::FromInt(DeclareGlobalsFlags()));
|
954
935
|
__ CallRuntime(Runtime::kDeclareGlobals, 3);
|
955
936
|
// Return value is ignored.
|
956
937
|
}
|
957
938
|
|
958
939
|
|
940
|
+
void FullCodeGenerator::DeclareModules(Handle<FixedArray> descriptions) {
|
941
|
+
// Call the runtime to declare the modules.
|
942
|
+
__ Push(descriptions);
|
943
|
+
__ CallRuntime(Runtime::kDeclareModules, 1);
|
944
|
+
// Return value is ignored.
|
945
|
+
}
|
946
|
+
|
947
|
+
|
959
948
|
void FullCodeGenerator::VisitSwitchStatement(SwitchStatement* stmt) {
|
960
949
|
Comment cmnt(masm_, "[ SwitchStatement");
|
961
950
|
Breakable nested_statement(this, stmt);
|
@@ -1094,19 +1083,28 @@ void FullCodeGenerator::VisitForInStatement(ForInStatement* stmt) {
|
|
1094
1083
|
|
1095
1084
|
|
1096
1085
|
// We got a map in register eax. Get the enumeration cache from it.
|
1086
|
+
Label no_descriptors;
|
1097
1087
|
__ bind(&use_cache);
|
1088
|
+
|
1089
|
+
__ EnumLength(edx, eax);
|
1090
|
+
__ cmp(edx, Immediate(Smi::FromInt(0)));
|
1091
|
+
__ j(equal, &no_descriptors);
|
1092
|
+
|
1098
1093
|
__ LoadInstanceDescriptors(eax, ecx);
|
1099
|
-
__ mov(ecx, FieldOperand(ecx, DescriptorArray::
|
1100
|
-
__ mov(
|
1094
|
+
__ mov(ecx, FieldOperand(ecx, DescriptorArray::kEnumCacheOffset));
|
1095
|
+
__ mov(ecx, FieldOperand(ecx, DescriptorArray::kEnumCacheBridgeCacheOffset));
|
1101
1096
|
|
1102
1097
|
// Set up the four remaining stack slots.
|
1103
1098
|
__ push(eax); // Map.
|
1104
|
-
__ push(
|
1105
|
-
__
|
1106
|
-
__ push(eax); // Enumeration cache length (as smi).
|
1099
|
+
__ push(ecx); // Enumeration cache.
|
1100
|
+
__ push(edx); // Number of valid entries for the map in the enum cache.
|
1107
1101
|
__ push(Immediate(Smi::FromInt(0))); // Initial index.
|
1108
1102
|
__ jmp(&loop);
|
1109
1103
|
|
1104
|
+
__ bind(&no_descriptors);
|
1105
|
+
__ add(esp, Immediate(kPointerSize));
|
1106
|
+
__ jmp(&exit);
|
1107
|
+
|
1110
1108
|
// We got a fixed array in register eax. Iterate through that.
|
1111
1109
|
Label non_proxy;
|
1112
1110
|
__ bind(&fixed_array);
|
@@ -1115,7 +1113,7 @@ void FullCodeGenerator::VisitForInStatement(ForInStatement* stmt) {
|
|
1115
1113
|
isolate()->factory()->NewJSGlobalPropertyCell(
|
1116
1114
|
Handle<Object>(
|
1117
1115
|
Smi::FromInt(TypeFeedbackCells::kForInFastCaseMarker)));
|
1118
|
-
RecordTypeFeedbackCell(stmt->
|
1116
|
+
RecordTypeFeedbackCell(stmt->ForInFeedbackId(), cell);
|
1119
1117
|
__ LoadHeapObject(ebx, cell);
|
1120
1118
|
__ mov(FieldOperand(ebx, JSGlobalPropertyCell::kValueOffset),
|
1121
1119
|
Immediate(Smi::FromInt(TypeFeedbackCells::kForInSlowCaseMarker)));
|
@@ -1188,7 +1186,7 @@ void FullCodeGenerator::VisitForInStatement(ForInStatement* stmt) {
|
|
1188
1186
|
__ bind(loop_statement.continue_label());
|
1189
1187
|
__ add(Operand(esp, 0 * kPointerSize), Immediate(Smi::FromInt(1)));
|
1190
1188
|
|
1191
|
-
|
1189
|
+
EmitBackEdgeBookkeeping(stmt, &loop);
|
1192
1190
|
__ jmp(&loop);
|
1193
1191
|
|
1194
1192
|
// Remove the pointers stored on the stack.
|
@@ -1271,9 +1269,9 @@ void FullCodeGenerator::EmitLoadGlobalCheckExtensions(Variable* var,
|
|
1271
1269
|
__ mov(temp, context);
|
1272
1270
|
}
|
1273
1271
|
__ bind(&next);
|
1274
|
-
// Terminate at
|
1272
|
+
// Terminate at native context.
|
1275
1273
|
__ cmp(FieldOperand(temp, HeapObject::kMapOffset),
|
1276
|
-
Immediate(isolate()->factory()->
|
1274
|
+
Immediate(isolate()->factory()->native_context_map()));
|
1277
1275
|
__ j(equal, &fast, Label::kNear);
|
1278
1276
|
// Check that extension is NULL.
|
1279
1277
|
__ cmp(ContextOperand(temp, Context::EXTENSION_INDEX), Immediate(0));
|
@@ -1341,9 +1339,9 @@ void FullCodeGenerator::EmitDynamicLookupFastCase(Variable* var,
|
|
1341
1339
|
} else if (var->mode() == DYNAMIC_LOCAL) {
|
1342
1340
|
Variable* local = var->local_if_not_shadowed();
|
1343
1341
|
__ mov(eax, ContextSlotOperandCheckExtensions(local, slow));
|
1344
|
-
if (local->mode() ==
|
1345
|
-
local->mode() ==
|
1346
|
-
local->mode() ==
|
1342
|
+
if (local->mode() == LET ||
|
1343
|
+
local->mode() == CONST ||
|
1344
|
+
local->mode() == CONST_HARMONY) {
|
1347
1345
|
__ cmp(eax, isolate()->factory()->the_hole_value());
|
1348
1346
|
__ j(not_equal, done);
|
1349
1347
|
if (local->mode() == CONST) {
|
@@ -1557,9 +1555,9 @@ void FullCodeGenerator::VisitObjectLiteral(ObjectLiteral* expr) {
|
|
1557
1555
|
// Mark all computed expressions that are bound to a key that
|
1558
1556
|
// is shadowed by a later occurrence of the same key. For the
|
1559
1557
|
// marked expressions, no store code is emitted.
|
1560
|
-
expr->CalculateEmitStore();
|
1558
|
+
expr->CalculateEmitStore(zone());
|
1561
1559
|
|
1562
|
-
AccessorTable accessor_table(
|
1560
|
+
AccessorTable accessor_table(zone());
|
1563
1561
|
for (int i = 0; i < expr->properties()->length(); i++) {
|
1564
1562
|
ObjectLiteral::Property* property = expr->properties()->at(i);
|
1565
1563
|
if (property->IsCompileTimeValue()) continue;
|
@@ -1585,7 +1583,7 @@ void FullCodeGenerator::VisitObjectLiteral(ObjectLiteral* expr) {
|
|
1585
1583
|
Handle<Code> ic = is_classic_mode()
|
1586
1584
|
? isolate()->builtins()->StoreIC_Initialize()
|
1587
1585
|
: isolate()->builtins()->StoreIC_Initialize_Strict();
|
1588
|
-
CallIC(ic, RelocInfo::CODE_TARGET, key->
|
1586
|
+
CallIC(ic, RelocInfo::CODE_TARGET, key->LiteralFeedbackId());
|
1589
1587
|
PrepareForBailoutForId(key->id(), NO_REGISTERS);
|
1590
1588
|
} else {
|
1591
1589
|
VisitForEffect(value);
|
@@ -1666,6 +1664,7 @@ void FullCodeGenerator::VisitArrayLiteral(ArrayLiteral* expr) {
|
|
1666
1664
|
__ IncrementCounter(isolate()->counters()->cow_arrays_created_stub(), 1);
|
1667
1665
|
FastCloneShallowArrayStub stub(
|
1668
1666
|
FastCloneShallowArrayStub::COPY_ON_WRITE_ELEMENTS,
|
1667
|
+
DONT_TRACK_ALLOCATION_SITE,
|
1669
1668
|
length);
|
1670
1669
|
__ CallStub(&stub);
|
1671
1670
|
} else if (expr->depth() > 1) {
|
@@ -1675,12 +1674,19 @@ void FullCodeGenerator::VisitArrayLiteral(ArrayLiteral* expr) {
|
|
1675
1674
|
} else {
|
1676
1675
|
ASSERT(IsFastSmiOrObjectElementsKind(constant_elements_kind) ||
|
1677
1676
|
FLAG_smi_only_arrays);
|
1677
|
+
FastCloneShallowArrayStub::Mode mode =
|
1678
|
+
FastCloneShallowArrayStub::CLONE_ANY_ELEMENTS;
|
1679
|
+
AllocationSiteMode allocation_site_mode = FLAG_track_allocation_sites
|
1680
|
+
? TRACK_ALLOCATION_SITE : DONT_TRACK_ALLOCATION_SITE;
|
1681
|
+
|
1678
1682
|
// If the elements are already FAST_*_ELEMENTS, the boilerplate cannot
|
1679
1683
|
// change, so it's possible to specialize the stub in advance.
|
1680
|
-
|
1681
|
-
|
1682
|
-
|
1683
|
-
|
1684
|
+
if (has_constant_fast_elements) {
|
1685
|
+
mode = FastCloneShallowArrayStub::CLONE_ELEMENTS;
|
1686
|
+
allocation_site_mode = DONT_TRACK_ALLOCATION_SITE;
|
1687
|
+
}
|
1688
|
+
|
1689
|
+
FastCloneShallowArrayStub stub(mode, allocation_site_mode, length);
|
1684
1690
|
__ CallStub(&stub);
|
1685
1691
|
}
|
1686
1692
|
|
@@ -1797,11 +1803,11 @@ void FullCodeGenerator::VisitAssignment(Assignment* expr) {
|
|
1797
1803
|
break;
|
1798
1804
|
case NAMED_PROPERTY:
|
1799
1805
|
EmitNamedPropertyLoad(property);
|
1800
|
-
PrepareForBailoutForId(
|
1806
|
+
PrepareForBailoutForId(property->LoadId(), TOS_REG);
|
1801
1807
|
break;
|
1802
1808
|
case KEYED_PROPERTY:
|
1803
1809
|
EmitKeyedPropertyLoad(property);
|
1804
|
-
PrepareForBailoutForId(
|
1810
|
+
PrepareForBailoutForId(property->LoadId(), TOS_REG);
|
1805
1811
|
break;
|
1806
1812
|
}
|
1807
1813
|
}
|
@@ -1857,14 +1863,14 @@ void FullCodeGenerator::EmitNamedPropertyLoad(Property* prop) {
|
|
1857
1863
|
ASSERT(!key->handle()->IsSmi());
|
1858
1864
|
__ mov(ecx, Immediate(key->handle()));
|
1859
1865
|
Handle<Code> ic = isolate()->builtins()->LoadIC_Initialize();
|
1860
|
-
CallIC(ic, RelocInfo::CODE_TARGET, prop->
|
1866
|
+
CallIC(ic, RelocInfo::CODE_TARGET, prop->PropertyFeedbackId());
|
1861
1867
|
}
|
1862
1868
|
|
1863
1869
|
|
1864
1870
|
void FullCodeGenerator::EmitKeyedPropertyLoad(Property* prop) {
|
1865
1871
|
SetSourcePosition(prop->position());
|
1866
1872
|
Handle<Code> ic = isolate()->builtins()->KeyedLoadIC_Initialize();
|
1867
|
-
CallIC(ic, RelocInfo::CODE_TARGET, prop->
|
1873
|
+
CallIC(ic, RelocInfo::CODE_TARGET, prop->PropertyFeedbackId());
|
1868
1874
|
}
|
1869
1875
|
|
1870
1876
|
|
@@ -1885,7 +1891,8 @@ void FullCodeGenerator::EmitInlineSmiBinaryOp(BinaryOperation* expr,
|
|
1885
1891
|
__ bind(&stub_call);
|
1886
1892
|
__ mov(eax, ecx);
|
1887
1893
|
BinaryOpStub stub(op, mode);
|
1888
|
-
CallIC(stub.GetCode(), RelocInfo::CODE_TARGET,
|
1894
|
+
CallIC(stub.GetCode(), RelocInfo::CODE_TARGET,
|
1895
|
+
expr->BinaryOperationFeedbackId());
|
1889
1896
|
patch_site.EmitPatchInfo();
|
1890
1897
|
__ jmp(&done, Label::kNear);
|
1891
1898
|
|
@@ -1970,14 +1977,15 @@ void FullCodeGenerator::EmitBinaryOp(BinaryOperation* expr,
|
|
1970
1977
|
__ pop(edx);
|
1971
1978
|
BinaryOpStub stub(op, mode);
|
1972
1979
|
JumpPatchSite patch_site(masm_); // unbound, signals no inlined smi code.
|
1973
|
-
CallIC(stub.GetCode(), RelocInfo::CODE_TARGET,
|
1980
|
+
CallIC(stub.GetCode(), RelocInfo::CODE_TARGET,
|
1981
|
+
expr->BinaryOperationFeedbackId());
|
1974
1982
|
patch_site.EmitPatchInfo();
|
1975
1983
|
context()->Plug(eax);
|
1976
1984
|
}
|
1977
1985
|
|
1978
1986
|
|
1979
1987
|
void FullCodeGenerator::EmitAssignment(Expression* expr) {
|
1980
|
-
// Invalid left-hand sides are rewritten to have a 'throw
|
1988
|
+
// Invalid left-hand sides are rewritten by the parser to have a 'throw
|
1981
1989
|
// ReferenceError' on the left-hand side.
|
1982
1990
|
if (!expr->IsValidLeftHandSide()) {
|
1983
1991
|
VisitForEffect(expr);
|
@@ -2097,7 +2105,7 @@ void FullCodeGenerator::EmitVariableAssignment(Variable* var,
|
|
2097
2105
|
// in harmony mode.
|
2098
2106
|
if (var->IsStackAllocated() || var->IsContextSlot()) {
|
2099
2107
|
MemOperand location = VarOperand(var, ecx);
|
2100
|
-
if (
|
2108
|
+
if (generate_debug_code_ && op == Token::INIT_LET) {
|
2101
2109
|
// Check for an uninitialized let binding.
|
2102
2110
|
__ mov(edx, location);
|
2103
2111
|
__ cmp(edx, isolate()->factory()->the_hole_value());
|
@@ -2132,37 +2140,15 @@ void FullCodeGenerator::EmitNamedPropertyAssignment(Assignment* expr) {
|
|
2132
2140
|
ASSERT(prop != NULL);
|
2133
2141
|
ASSERT(prop->key()->AsLiteral() != NULL);
|
2134
2142
|
|
2135
|
-
// If the assignment starts a block of assignments to the same object,
|
2136
|
-
// change to slow case to avoid the quadratic behavior of repeatedly
|
2137
|
-
// adding fast properties.
|
2138
|
-
if (expr->starts_initialization_block()) {
|
2139
|
-
__ push(result_register());
|
2140
|
-
__ push(Operand(esp, kPointerSize)); // Receiver is now under value.
|
2141
|
-
__ CallRuntime(Runtime::kToSlowProperties, 1);
|
2142
|
-
__ pop(result_register());
|
2143
|
-
}
|
2144
|
-
|
2145
2143
|
// Record source code position before IC call.
|
2146
2144
|
SetSourcePosition(expr->position());
|
2147
2145
|
__ mov(ecx, prop->key()->AsLiteral()->handle());
|
2148
|
-
|
2149
|
-
__ mov(edx, Operand(esp, 0));
|
2150
|
-
} else {
|
2151
|
-
__ pop(edx);
|
2152
|
-
}
|
2146
|
+
__ pop(edx);
|
2153
2147
|
Handle<Code> ic = is_classic_mode()
|
2154
2148
|
? isolate()->builtins()->StoreIC_Initialize()
|
2155
2149
|
: isolate()->builtins()->StoreIC_Initialize_Strict();
|
2156
|
-
CallIC(ic, RelocInfo::CODE_TARGET, expr->
|
2150
|
+
CallIC(ic, RelocInfo::CODE_TARGET, expr->AssignmentFeedbackId());
|
2157
2151
|
|
2158
|
-
// If the assignment ends an initialization block, revert to fast case.
|
2159
|
-
if (expr->ends_initialization_block()) {
|
2160
|
-
__ push(eax); // Result of assignment, saved even if not needed.
|
2161
|
-
__ push(Operand(esp, kPointerSize)); // Receiver is under value.
|
2162
|
-
__ CallRuntime(Runtime::kToFastProperties, 1);
|
2163
|
-
__ pop(eax);
|
2164
|
-
__ Drop(1);
|
2165
|
-
}
|
2166
2152
|
PrepareForBailoutForId(expr->AssignmentId(), TOS_REG);
|
2167
2153
|
context()->Plug(eax);
|
2168
2154
|
}
|
@@ -2174,38 +2160,14 @@ void FullCodeGenerator::EmitKeyedPropertyAssignment(Assignment* expr) {
|
|
2174
2160
|
// esp[0] : key
|
2175
2161
|
// esp[kPointerSize] : receiver
|
2176
2162
|
|
2177
|
-
// If the assignment starts a block of assignments to the same object,
|
2178
|
-
// change to slow case to avoid the quadratic behavior of repeatedly
|
2179
|
-
// adding fast properties.
|
2180
|
-
if (expr->starts_initialization_block()) {
|
2181
|
-
__ push(result_register());
|
2182
|
-
// Receiver is now under the key and value.
|
2183
|
-
__ push(Operand(esp, 2 * kPointerSize));
|
2184
|
-
__ CallRuntime(Runtime::kToSlowProperties, 1);
|
2185
|
-
__ pop(result_register());
|
2186
|
-
}
|
2187
|
-
|
2188
2163
|
__ pop(ecx); // Key.
|
2189
|
-
|
2190
|
-
__ mov(edx, Operand(esp, 0)); // Leave receiver on the stack for later.
|
2191
|
-
} else {
|
2192
|
-
__ pop(edx);
|
2193
|
-
}
|
2164
|
+
__ pop(edx);
|
2194
2165
|
// Record source code position before IC call.
|
2195
2166
|
SetSourcePosition(expr->position());
|
2196
2167
|
Handle<Code> ic = is_classic_mode()
|
2197
2168
|
? isolate()->builtins()->KeyedStoreIC_Initialize()
|
2198
2169
|
: isolate()->builtins()->KeyedStoreIC_Initialize_Strict();
|
2199
|
-
CallIC(ic, RelocInfo::CODE_TARGET, expr->
|
2200
|
-
|
2201
|
-
// If the assignment ends an initialization block, revert to fast case.
|
2202
|
-
if (expr->ends_initialization_block()) {
|
2203
|
-
__ pop(edx);
|
2204
|
-
__ push(eax); // Result of assignment, saved even if not needed.
|
2205
|
-
__ push(edx);
|
2206
|
-
__ CallRuntime(Runtime::kToFastProperties, 1);
|
2207
|
-
__ pop(eax);
|
2208
|
-
}
|
2170
|
+
CallIC(ic, RelocInfo::CODE_TARGET, expr->AssignmentFeedbackId());
|
2209
2171
|
|
2210
2172
|
PrepareForBailoutForId(expr->AssignmentId(), TOS_REG);
|
2211
2173
|
context()->Plug(eax);
|
@@ -2220,6 +2182,7 @@ void FullCodeGenerator::VisitProperty(Property* expr) {
|
|
2220
2182
|
VisitForAccumulatorValue(expr->obj());
|
2221
2183
|
__ mov(edx, result_register());
|
2222
2184
|
EmitNamedPropertyLoad(expr);
|
2185
|
+
PrepareForBailoutForId(expr->LoadId(), TOS_REG);
|
2223
2186
|
context()->Plug(eax);
|
2224
2187
|
} else {
|
2225
2188
|
VisitForStackValue(expr->obj());
|
@@ -2234,7 +2197,7 @@ void FullCodeGenerator::VisitProperty(Property* expr) {
|
|
2234
2197
|
|
2235
2198
|
void FullCodeGenerator::CallIC(Handle<Code> code,
|
2236
2199
|
RelocInfo::Mode rmode,
|
2237
|
-
|
2200
|
+
TypeFeedbackId ast_id) {
|
2238
2201
|
ic_total_count_++;
|
2239
2202
|
__ call(code, rmode, ast_id);
|
2240
2203
|
}
|
@@ -2258,7 +2221,7 @@ void FullCodeGenerator::EmitCallWithIC(Call* expr,
|
|
2258
2221
|
SetSourcePosition(expr->position());
|
2259
2222
|
Handle<Code> ic =
|
2260
2223
|
isolate()->stub_cache()->ComputeCallInitialize(arg_count, mode);
|
2261
|
-
CallIC(ic, mode, expr->
|
2224
|
+
CallIC(ic, mode, expr->CallFeedbackId());
|
2262
2225
|
RecordJSReturnSite(expr);
|
2263
2226
|
// Restore context register.
|
2264
2227
|
__ mov(esi, Operand(ebp, StandardFrameConstants::kContextOffset));
|
@@ -2290,7 +2253,7 @@ void FullCodeGenerator::EmitKeyedCallWithIC(Call* expr,
|
|
2290
2253
|
Handle<Code> ic =
|
2291
2254
|
isolate()->stub_cache()->ComputeKeyedCallInitialize(arg_count);
|
2292
2255
|
__ mov(ecx, Operand(esp, (arg_count + 1) * kPointerSize)); // Key.
|
2293
|
-
CallIC(ic, RelocInfo::CODE_TARGET, expr->
|
2256
|
+
CallIC(ic, RelocInfo::CODE_TARGET, expr->CallFeedbackId());
|
2294
2257
|
RecordJSReturnSite(expr);
|
2295
2258
|
// Restore context register.
|
2296
2259
|
__ mov(esi, Operand(ebp, StandardFrameConstants::kContextOffset));
|
@@ -2310,20 +2273,18 @@ void FullCodeGenerator::EmitCallWithStub(Call* expr, CallFunctionFlags flags) {
|
|
2310
2273
|
// Record source position for debugger.
|
2311
2274
|
SetSourcePosition(expr->position());
|
2312
2275
|
|
2313
|
-
// Record call targets in unoptimized code
|
2314
|
-
|
2315
|
-
|
2316
|
-
|
2317
|
-
|
2318
|
-
|
2319
|
-
|
2320
|
-
|
2321
|
-
__ mov(ebx, cell);
|
2322
|
-
}
|
2276
|
+
// Record call targets in unoptimized code.
|
2277
|
+
flags = static_cast<CallFunctionFlags>(flags | RECORD_CALL_TARGET);
|
2278
|
+
Handle<Object> uninitialized =
|
2279
|
+
TypeFeedbackCells::UninitializedSentinel(isolate());
|
2280
|
+
Handle<JSGlobalPropertyCell> cell =
|
2281
|
+
isolate()->factory()->NewJSGlobalPropertyCell(uninitialized);
|
2282
|
+
RecordTypeFeedbackCell(expr->CallFeedbackId(), cell);
|
2283
|
+
__ mov(ebx, cell);
|
2323
2284
|
|
2324
2285
|
CallFunctionStub stub(arg_count, flags);
|
2325
2286
|
__ mov(edi, Operand(esp, (arg_count + 1) * kPointerSize));
|
2326
|
-
__ CallStub(&stub, expr->
|
2287
|
+
__ CallStub(&stub, expr->CallFeedbackId());
|
2327
2288
|
|
2328
2289
|
RecordJSReturnSite(expr);
|
2329
2290
|
// Restore context register.
|
@@ -2365,7 +2326,7 @@ void FullCodeGenerator::VisitCall(Call* expr) {
|
|
2365
2326
|
VariableProxy* proxy = callee->AsVariableProxy();
|
2366
2327
|
Property* property = callee->AsProperty();
|
2367
2328
|
|
2368
|
-
if (proxy != NULL && proxy->var()->is_possibly_eval()) {
|
2329
|
+
if (proxy != NULL && proxy->var()->is_possibly_eval(isolate())) {
|
2369
2330
|
// In a call to eval, we first call %ResolvePossiblyDirectEval to
|
2370
2331
|
// resolve the function we need to call and the receiver of the call.
|
2371
2332
|
// Then we call the resolved function using the given arguments.
|
@@ -2495,24 +2456,18 @@ void FullCodeGenerator::VisitCallNew(CallNew* expr) {
|
|
2495
2456
|
SetSourcePosition(expr->position());
|
2496
2457
|
|
2497
2458
|
// Load function and argument count into edi and eax.
|
2498
|
-
__
|
2459
|
+
__ Set(eax, Immediate(arg_count));
|
2499
2460
|
__ mov(edi, Operand(esp, arg_count * kPointerSize));
|
2500
2461
|
|
2501
|
-
// Record call targets in unoptimized code
|
2502
|
-
|
2503
|
-
|
2504
|
-
|
2505
|
-
|
2506
|
-
|
2507
|
-
|
2508
|
-
isolate()->factory()->NewJSGlobalPropertyCell(uninitialized);
|
2509
|
-
RecordTypeFeedbackCell(expr->id(), cell);
|
2510
|
-
__ mov(ebx, cell);
|
2511
|
-
} else {
|
2512
|
-
flags = NO_CALL_FUNCTION_FLAGS;
|
2513
|
-
}
|
2462
|
+
// Record call targets in unoptimized code.
|
2463
|
+
Handle<Object> uninitialized =
|
2464
|
+
TypeFeedbackCells::UninitializedSentinel(isolate());
|
2465
|
+
Handle<JSGlobalPropertyCell> cell =
|
2466
|
+
isolate()->factory()->NewJSGlobalPropertyCell(uninitialized);
|
2467
|
+
RecordTypeFeedbackCell(expr->CallNewFeedbackId(), cell);
|
2468
|
+
__ mov(ebx, cell);
|
2514
2469
|
|
2515
|
-
CallConstructStub stub(
|
2470
|
+
CallConstructStub stub(RECORD_CALL_TARGET);
|
2516
2471
|
__ call(stub.GetCode(), RelocInfo::CONSTRUCT_CALL);
|
2517
2472
|
PrepareForBailoutForId(expr->ReturnId(), TOS_REG);
|
2518
2473
|
context()->Plug(eax);
|
@@ -2653,7 +2608,7 @@ void FullCodeGenerator::EmitIsStringWrapperSafeForDefaultValueOf(
|
|
2653
2608
|
context()->PrepareTest(&materialize_true, &materialize_false,
|
2654
2609
|
&if_true, &if_false, &fall_through);
|
2655
2610
|
|
2656
|
-
|
2611
|
+
__ AssertNotSmi(eax);
|
2657
2612
|
|
2658
2613
|
// Check whether this map has already been checked to be safe for default
|
2659
2614
|
// valueOf.
|
@@ -2669,45 +2624,51 @@ void FullCodeGenerator::EmitIsStringWrapperSafeForDefaultValueOf(
|
|
2669
2624
|
__ j(equal, if_false);
|
2670
2625
|
|
2671
2626
|
// Look for valueOf symbol in the descriptor array, and indicate false if
|
2672
|
-
// found.
|
2673
|
-
//
|
2627
|
+
// found. Since we omit an enumeration index check, if it is added via a
|
2628
|
+
// transition that shares its descriptor array, this is a false positive.
|
2629
|
+
Label entry, loop, done;
|
2630
|
+
|
2631
|
+
// Skip loop if no descriptors are valid.
|
2632
|
+
__ NumberOfOwnDescriptors(ecx, ebx);
|
2633
|
+
__ cmp(ecx, 0);
|
2634
|
+
__ j(equal, &done);
|
2635
|
+
|
2674
2636
|
__ LoadInstanceDescriptors(ebx, ebx);
|
2675
|
-
|
2676
|
-
//
|
2677
|
-
// ecx: length of descriptor array
|
2637
|
+
// ebx: descriptor array.
|
2638
|
+
// ecx: valid entries in the descriptor array.
|
2678
2639
|
// Calculate the end of the descriptor array.
|
2679
2640
|
STATIC_ASSERT(kSmiTag == 0);
|
2680
2641
|
STATIC_ASSERT(kSmiTagSize == 1);
|
2681
2642
|
STATIC_ASSERT(kPointerSize == 4);
|
2682
|
-
__
|
2643
|
+
__ imul(ecx, ecx, DescriptorArray::kDescriptorSize);
|
2644
|
+
__ lea(ecx, Operand(ebx, ecx, times_2, DescriptorArray::kFirstOffset));
|
2683
2645
|
// Calculate location of the first key name.
|
2684
|
-
__ add(ebx,
|
2685
|
-
Immediate(FixedArray::kHeaderSize +
|
2686
|
-
DescriptorArray::kFirstIndex * kPointerSize));
|
2646
|
+
__ add(ebx, Immediate(DescriptorArray::kFirstOffset));
|
2687
2647
|
// Loop through all the keys in the descriptor array. If one of these is the
|
2688
2648
|
// symbol valueOf the result is false.
|
2689
|
-
Label entry, loop;
|
2690
2649
|
__ jmp(&entry);
|
2691
2650
|
__ bind(&loop);
|
2692
2651
|
__ mov(edx, FieldOperand(ebx, 0));
|
2693
2652
|
__ cmp(edx, FACTORY->value_of_symbol());
|
2694
2653
|
__ j(equal, if_false);
|
2695
|
-
__ add(ebx, Immediate(kPointerSize));
|
2654
|
+
__ add(ebx, Immediate(DescriptorArray::kDescriptorSize * kPointerSize));
|
2696
2655
|
__ bind(&entry);
|
2697
2656
|
__ cmp(ebx, ecx);
|
2698
2657
|
__ j(not_equal, &loop);
|
2699
2658
|
|
2659
|
+
__ bind(&done);
|
2660
|
+
|
2700
2661
|
// Reload map as register ebx was used as temporary above.
|
2701
2662
|
__ mov(ebx, FieldOperand(eax, HeapObject::kMapOffset));
|
2702
2663
|
|
2703
|
-
// If a valueOf property is not found on the object check that
|
2664
|
+
// If a valueOf property is not found on the object check that its
|
2704
2665
|
// prototype is the un-modified String prototype. If not result is false.
|
2705
2666
|
__ mov(ecx, FieldOperand(ebx, Map::kPrototypeOffset));
|
2706
2667
|
__ JumpIfSmi(ecx, if_false);
|
2707
2668
|
__ mov(ecx, FieldOperand(ecx, HeapObject::kMapOffset));
|
2708
|
-
__ mov(edx, Operand(esi, Context::SlotOffset(Context::
|
2669
|
+
__ mov(edx, Operand(esi, Context::SlotOffset(Context::GLOBAL_OBJECT_INDEX)));
|
2709
2670
|
__ mov(edx,
|
2710
|
-
FieldOperand(edx, GlobalObject::
|
2671
|
+
FieldOperand(edx, GlobalObject::kNativeContextOffset));
|
2711
2672
|
__ cmp(ecx,
|
2712
2673
|
ContextOperand(edx,
|
2713
2674
|
Context::STRING_FUNCTION_PROTOTYPE_MAP_INDEX));
|
@@ -2853,7 +2814,7 @@ void FullCodeGenerator::EmitArguments(CallRuntime* expr) {
|
|
2853
2814
|
// parameter count in eax.
|
2854
2815
|
VisitForAccumulatorValue(args->at(0));
|
2855
2816
|
__ mov(edx, eax);
|
2856
|
-
__
|
2817
|
+
__ Set(eax, Immediate(Smi::FromInt(info_->scope()->num_parameters())));
|
2857
2818
|
ArgumentsAccessStub stub(ArgumentsAccessStub::READ_ELEMENT);
|
2858
2819
|
__ CallStub(&stub);
|
2859
2820
|
context()->Plug(eax);
|
@@ -2865,7 +2826,7 @@ void FullCodeGenerator::EmitArgumentsLength(CallRuntime* expr) {
|
|
2865
2826
|
|
2866
2827
|
Label exit;
|
2867
2828
|
// Get the number of formal parameters.
|
2868
|
-
__
|
2829
|
+
__ Set(eax, Immediate(Smi::FromInt(info_->scope()->num_parameters())));
|
2869
2830
|
|
2870
2831
|
// Check if the calling frame is an arguments adaptor frame.
|
2871
2832
|
__ mov(ebx, Operand(ebp, StandardFrameConstants::kCallerFPOffset));
|
@@ -2878,7 +2839,7 @@ void FullCodeGenerator::EmitArgumentsLength(CallRuntime* expr) {
|
|
2878
2839
|
__ mov(eax, Operand(ebx, ArgumentsAdaptorFrameConstants::kLengthOffset));
|
2879
2840
|
|
2880
2841
|
__ bind(&exit);
|
2881
|
-
|
2842
|
+
__ AssertSmi(eax);
|
2882
2843
|
context()->Plug(eax);
|
2883
2844
|
}
|
2884
2845
|
|
@@ -2982,8 +2943,8 @@ void FullCodeGenerator::EmitRandomHeapNumber(CallRuntime* expr) {
|
|
2982
2943
|
__ bind(&heapnumber_allocated);
|
2983
2944
|
|
2984
2945
|
__ PrepareCallCFunction(1, ebx);
|
2985
|
-
__ mov(eax, ContextOperand(context_register(), Context::
|
2986
|
-
__ mov(eax, FieldOperand(eax, GlobalObject::
|
2946
|
+
__ mov(eax, ContextOperand(context_register(), Context::GLOBAL_OBJECT_INDEX));
|
2947
|
+
__ mov(eax, FieldOperand(eax, GlobalObject::kNativeContextOffset));
|
2987
2948
|
__ mov(Operand(esp, 0), eax);
|
2988
2949
|
__ CallCFunction(ExternalReference::random_uint32_function(isolate()), 1);
|
2989
2950
|
|
@@ -3070,19 +3031,18 @@ void FullCodeGenerator::EmitDateField(CallRuntime* expr) {
|
|
3070
3031
|
|
3071
3032
|
VisitForAccumulatorValue(args->at(0)); // Load the object.
|
3072
3033
|
|
3073
|
-
Label runtime, done;
|
3034
|
+
Label runtime, done, not_date_object;
|
3074
3035
|
Register object = eax;
|
3075
3036
|
Register result = eax;
|
3076
3037
|
Register scratch = ecx;
|
3077
3038
|
|
3078
|
-
|
3079
|
-
__ AbortIfSmi(object);
|
3039
|
+
__ JumpIfSmi(object, ¬_date_object);
|
3080
3040
|
__ CmpObjectType(object, JS_DATE_TYPE, scratch);
|
3081
|
-
__
|
3082
|
-
#endif
|
3041
|
+
__ j(not_equal, ¬_date_object);
|
3083
3042
|
|
3084
3043
|
if (index->value() == 0) {
|
3085
3044
|
__ mov(result, FieldOperand(object, JSDate::kValueOffset));
|
3045
|
+
__ jmp(&done);
|
3086
3046
|
} else {
|
3087
3047
|
if (index->value() < JSDate::kFirstUncachedField) {
|
3088
3048
|
ExternalReference stamp = ExternalReference::date_cache_stamp(isolate());
|
@@ -3098,12 +3058,48 @@ void FullCodeGenerator::EmitDateField(CallRuntime* expr) {
|
|
3098
3058
|
__ mov(Operand(esp, 0), object);
|
3099
3059
|
__ mov(Operand(esp, 1 * kPointerSize), Immediate(index));
|
3100
3060
|
__ CallCFunction(ExternalReference::get_date_field_function(isolate()), 2);
|
3101
|
-
__
|
3061
|
+
__ jmp(&done);
|
3102
3062
|
}
|
3063
|
+
|
3064
|
+
__ bind(¬_date_object);
|
3065
|
+
__ CallRuntime(Runtime::kThrowNotDateError, 0);
|
3066
|
+
__ bind(&done);
|
3103
3067
|
context()->Plug(result);
|
3104
3068
|
}
|
3105
3069
|
|
3106
3070
|
|
3071
|
+
void FullCodeGenerator::EmitOneByteSeqStringSetChar(CallRuntime* expr) {
|
3072
|
+
ZoneList<Expression*>* args = expr->arguments();
|
3073
|
+
ASSERT_EQ(3, args->length());
|
3074
|
+
|
3075
|
+
VisitForStackValue(args->at(1)); // index
|
3076
|
+
VisitForStackValue(args->at(2)); // value
|
3077
|
+
__ pop(ecx);
|
3078
|
+
__ pop(ebx);
|
3079
|
+
VisitForAccumulatorValue(args->at(0)); // string
|
3080
|
+
|
3081
|
+
static const String::Encoding encoding = String::ONE_BYTE_ENCODING;
|
3082
|
+
SeqStringSetCharGenerator::Generate(masm_, encoding, eax, ebx, ecx);
|
3083
|
+
context()->Plug(eax);
|
3084
|
+
}
|
3085
|
+
|
3086
|
+
|
3087
|
+
void FullCodeGenerator::EmitTwoByteSeqStringSetChar(CallRuntime* expr) {
|
3088
|
+
ZoneList<Expression*>* args = expr->arguments();
|
3089
|
+
ASSERT_EQ(3, args->length());
|
3090
|
+
|
3091
|
+
VisitForStackValue(args->at(1)); // index
|
3092
|
+
VisitForStackValue(args->at(2)); // value
|
3093
|
+
__ pop(ecx);
|
3094
|
+
__ pop(ebx);
|
3095
|
+
VisitForAccumulatorValue(args->at(0)); // string
|
3096
|
+
|
3097
|
+
static const String::Encoding encoding = String::TWO_BYTE_ENCODING;
|
3098
|
+
SeqStringSetCharGenerator::Generate(masm_, encoding, eax, ebx, ecx);
|
3099
|
+
context()->Plug(eax);
|
3100
|
+
}
|
3101
|
+
|
3102
|
+
|
3107
3103
|
void FullCodeGenerator::EmitMathPow(CallRuntime* expr) {
|
3108
3104
|
// Load the arguments on the stack and call the runtime function.
|
3109
3105
|
ZoneList<Expression*>* args = expr->arguments();
|
@@ -3370,10 +3366,11 @@ void FullCodeGenerator::EmitCallFunction(CallRuntime* expr) {
|
|
3370
3366
|
}
|
3371
3367
|
VisitForAccumulatorValue(args->last()); // Function.
|
3372
3368
|
|
3373
|
-
|
3374
|
-
|
3375
|
-
__
|
3376
|
-
__
|
3369
|
+
Label runtime, done;
|
3370
|
+
// Check for non-function argument (including proxy).
|
3371
|
+
__ JumpIfSmi(eax, &runtime);
|
3372
|
+
__ CmpObjectType(eax, JS_FUNCTION_TYPE, ebx);
|
3373
|
+
__ j(not_equal, &runtime);
|
3377
3374
|
|
3378
3375
|
// InvokeFunction requires the function in edi. Move it in there.
|
3379
3376
|
__ mov(edi, result_register());
|
@@ -3383,7 +3380,7 @@ void FullCodeGenerator::EmitCallFunction(CallRuntime* expr) {
|
|
3383
3380
|
__ mov(esi, Operand(ebp, StandardFrameConstants::kContextOffset));
|
3384
3381
|
__ jmp(&done);
|
3385
3382
|
|
3386
|
-
__ bind(&
|
3383
|
+
__ bind(&runtime);
|
3387
3384
|
__ push(eax);
|
3388
3385
|
__ CallRuntime(Runtime::kCall, args->length());
|
3389
3386
|
__ bind(&done);
|
@@ -3413,7 +3410,7 @@ void FullCodeGenerator::EmitGetFromCache(CallRuntime* expr) {
|
|
3413
3410
|
int cache_id = Smi::cast(*(args->at(0)->AsLiteral()->handle()))->value();
|
3414
3411
|
|
3415
3412
|
Handle<FixedArray> jsfunction_result_caches(
|
3416
|
-
isolate()->
|
3413
|
+
isolate()->native_context()->jsfunction_result_caches());
|
3417
3414
|
if (jsfunction_result_caches->length() <= cache_id) {
|
3418
3415
|
__ Abort("Attempt to use undefined cache.");
|
3419
3416
|
__ mov(eax, isolate()->factory()->undefined_value());
|
@@ -3426,9 +3423,9 @@ void FullCodeGenerator::EmitGetFromCache(CallRuntime* expr) {
|
|
3426
3423
|
Register key = eax;
|
3427
3424
|
Register cache = ebx;
|
3428
3425
|
Register tmp = ecx;
|
3429
|
-
__ mov(cache, ContextOperand(esi, Context::
|
3426
|
+
__ mov(cache, ContextOperand(esi, Context::GLOBAL_OBJECT_INDEX));
|
3430
3427
|
__ mov(cache,
|
3431
|
-
FieldOperand(cache, GlobalObject::
|
3428
|
+
FieldOperand(cache, GlobalObject::kNativeContextOffset));
|
3432
3429
|
__ mov(cache, ContextOperand(cache, Context::JSFUNCTION_RESULT_CACHES_INDEX));
|
3433
3430
|
__ mov(cache,
|
3434
3431
|
FieldOperand(cache, FixedArray::OffsetOfElementAt(cache_id)));
|
@@ -3498,9 +3495,7 @@ void FullCodeGenerator::EmitHasCachedArrayIndex(CallRuntime* expr) {
|
|
3498
3495
|
|
3499
3496
|
VisitForAccumulatorValue(args->at(0));
|
3500
3497
|
|
3501
|
-
|
3502
|
-
__ AbortIfNotString(eax);
|
3503
|
-
}
|
3498
|
+
__ AssertString(eax);
|
3504
3499
|
|
3505
3500
|
Label materialize_true, materialize_false;
|
3506
3501
|
Label* if_true = NULL;
|
@@ -3523,9 +3518,7 @@ void FullCodeGenerator::EmitGetCachedArrayIndex(CallRuntime* expr) {
|
|
3523
3518
|
ASSERT(args->length() == 1);
|
3524
3519
|
VisitForAccumulatorValue(args->at(0));
|
3525
3520
|
|
3526
|
-
|
3527
|
-
__ AbortIfNotString(eax);
|
3528
|
-
}
|
3521
|
+
__ AssertString(eax);
|
3529
3522
|
|
3530
3523
|
__ mov(eax, FieldOperand(eax, String::kHashFieldOffset));
|
3531
3524
|
__ IndexFromHash(eax, eax);
|
@@ -3599,7 +3592,7 @@ void FullCodeGenerator::EmitFastAsciiArrayJoin(CallRuntime* expr) {
|
|
3599
3592
|
// Loop condition: while (index < length).
|
3600
3593
|
// Live loop registers: index, array_length, string,
|
3601
3594
|
// scratch, string_length, elements.
|
3602
|
-
if (
|
3595
|
+
if (generate_debug_code_) {
|
3603
3596
|
__ cmp(index, array_length);
|
3604
3597
|
__ Assert(less, "No empty arrays here in EmitFastAsciiArrayJoin");
|
3605
3598
|
}
|
@@ -3613,10 +3606,10 @@ void FullCodeGenerator::EmitFastAsciiArrayJoin(CallRuntime* expr) {
|
|
3613
3606
|
__ movzx_b(scratch, FieldOperand(scratch, Map::kInstanceTypeOffset));
|
3614
3607
|
__ and_(scratch, Immediate(
|
3615
3608
|
kIsNotStringMask | kStringEncodingMask | kStringRepresentationMask));
|
3616
|
-
__ cmp(scratch, kStringTag |
|
3609
|
+
__ cmp(scratch, kStringTag | kOneByteStringTag | kSeqStringTag);
|
3617
3610
|
__ j(not_equal, &bailout);
|
3618
3611
|
__ add(string_length,
|
3619
|
-
FieldOperand(string,
|
3612
|
+
FieldOperand(string, SeqOneByteString::kLengthOffset));
|
3620
3613
|
__ j(overflow, &bailout);
|
3621
3614
|
__ add(index, Immediate(1));
|
3622
3615
|
__ cmp(index, array_length);
|
@@ -3652,7 +3645,7 @@ void FullCodeGenerator::EmitFastAsciiArrayJoin(CallRuntime* expr) {
|
|
3652
3645
|
// Add (separator length times array_length) - separator length
|
3653
3646
|
// to string_length.
|
3654
3647
|
__ mov(scratch, separator_operand);
|
3655
|
-
__ mov(scratch, FieldOperand(scratch,
|
3648
|
+
__ mov(scratch, FieldOperand(scratch, SeqOneByteString::kLengthOffset));
|
3656
3649
|
__ sub(string_length, scratch); // May be negative, temporarily.
|
3657
3650
|
__ imul(scratch, array_length_operand);
|
3658
3651
|
__ j(overflow, &bailout);
|
@@ -3666,11 +3659,11 @@ void FullCodeGenerator::EmitFastAsciiArrayJoin(CallRuntime* expr) {
|
|
3666
3659
|
__ AllocateAsciiString(result_pos, string_length, scratch,
|
3667
3660
|
index, string, &bailout);
|
3668
3661
|
__ mov(result_operand, result_pos);
|
3669
|
-
__ lea(result_pos, FieldOperand(result_pos,
|
3662
|
+
__ lea(result_pos, FieldOperand(result_pos, SeqOneByteString::kHeaderSize));
|
3670
3663
|
|
3671
3664
|
|
3672
3665
|
__ mov(string, separator_operand);
|
3673
|
-
__ cmp(FieldOperand(string,
|
3666
|
+
__ cmp(FieldOperand(string, SeqOneByteString::kLengthOffset),
|
3674
3667
|
Immediate(Smi::FromInt(1)));
|
3675
3668
|
__ j(equal, &one_char_separator);
|
3676
3669
|
__ j(greater, &long_separator);
|
@@ -3695,7 +3688,7 @@ void FullCodeGenerator::EmitFastAsciiArrayJoin(CallRuntime* expr) {
|
|
3695
3688
|
FieldOperand(string, String::kLengthOffset));
|
3696
3689
|
__ shr(string_length, 1);
|
3697
3690
|
__ lea(string,
|
3698
|
-
FieldOperand(string,
|
3691
|
+
FieldOperand(string, SeqOneByteString::kHeaderSize));
|
3699
3692
|
__ CopyBytes(string, result_pos, string_length, scratch);
|
3700
3693
|
__ add(index, Immediate(1));
|
3701
3694
|
__ bind(&loop_1_condition);
|
@@ -3708,7 +3701,7 @@ void FullCodeGenerator::EmitFastAsciiArrayJoin(CallRuntime* expr) {
|
|
3708
3701
|
// One-character separator case
|
3709
3702
|
__ bind(&one_char_separator);
|
3710
3703
|
// Replace separator with its ASCII character value.
|
3711
|
-
__ mov_b(scratch, FieldOperand(string,
|
3704
|
+
__ mov_b(scratch, FieldOperand(string, SeqOneByteString::kHeaderSize));
|
3712
3705
|
__ mov_b(separator_operand, scratch);
|
3713
3706
|
|
3714
3707
|
__ Set(index, Immediate(0));
|
@@ -3736,7 +3729,7 @@ void FullCodeGenerator::EmitFastAsciiArrayJoin(CallRuntime* expr) {
|
|
3736
3729
|
FieldOperand(string, String::kLengthOffset));
|
3737
3730
|
__ shr(string_length, 1);
|
3738
3731
|
__ lea(string,
|
3739
|
-
FieldOperand(string,
|
3732
|
+
FieldOperand(string, SeqOneByteString::kHeaderSize));
|
3740
3733
|
__ CopyBytes(string, result_pos, string_length, scratch);
|
3741
3734
|
__ add(index, Immediate(1));
|
3742
3735
|
|
@@ -3765,7 +3758,7 @@ void FullCodeGenerator::EmitFastAsciiArrayJoin(CallRuntime* expr) {
|
|
3765
3758
|
FieldOperand(string, String::kLengthOffset));
|
3766
3759
|
__ shr(string_length, 1);
|
3767
3760
|
__ lea(string,
|
3768
|
-
FieldOperand(string,
|
3761
|
+
FieldOperand(string, SeqOneByteString::kHeaderSize));
|
3769
3762
|
__ CopyBytes(string, result_pos, string_length, scratch);
|
3770
3763
|
|
3771
3764
|
__ bind(&loop_3_entry);
|
@@ -3777,7 +3770,7 @@ void FullCodeGenerator::EmitFastAsciiArrayJoin(CallRuntime* expr) {
|
|
3777
3770
|
FieldOperand(string, String::kLengthOffset));
|
3778
3771
|
__ shr(string_length, 1);
|
3779
3772
|
__ lea(string,
|
3780
|
-
FieldOperand(string,
|
3773
|
+
FieldOperand(string, SeqOneByteString::kHeaderSize));
|
3781
3774
|
__ CopyBytes(string, result_pos, string_length, scratch);
|
3782
3775
|
__ add(index, Immediate(1));
|
3783
3776
|
|
@@ -3827,7 +3820,7 @@ void FullCodeGenerator::VisitCallRuntime(CallRuntime* expr) {
|
|
3827
3820
|
RelocInfo::Mode mode = RelocInfo::CODE_TARGET;
|
3828
3821
|
Handle<Code> ic =
|
3829
3822
|
isolate()->stub_cache()->ComputeCallInitialize(arg_count, mode);
|
3830
|
-
CallIC(ic, mode, expr->
|
3823
|
+
CallIC(ic, mode, expr->CallRuntimeFeedbackId());
|
3831
3824
|
// Restore context register.
|
3832
3825
|
__ mov(esi, Operand(ebp, StandardFrameConstants::kContextOffset));
|
3833
3826
|
} else {
|
@@ -3985,7 +3978,8 @@ void FullCodeGenerator::EmitUnaryOperation(UnaryOperation* expr,
|
|
3985
3978
|
// accumulator register eax.
|
3986
3979
|
VisitForAccumulatorValue(expr->expression());
|
3987
3980
|
SetSourcePosition(expr->position());
|
3988
|
-
CallIC(stub.GetCode(), RelocInfo::CODE_TARGET,
|
3981
|
+
CallIC(stub.GetCode(), RelocInfo::CODE_TARGET,
|
3982
|
+
expr->UnaryOperationFeedbackId());
|
3989
3983
|
context()->Plug(eax);
|
3990
3984
|
}
|
3991
3985
|
|
@@ -4043,7 +4037,7 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) {
|
|
4043
4037
|
if (assign_type == VARIABLE) {
|
4044
4038
|
PrepareForBailout(expr->expression(), TOS_REG);
|
4045
4039
|
} else {
|
4046
|
-
PrepareForBailoutForId(
|
4040
|
+
PrepareForBailoutForId(prop->LoadId(), TOS_REG);
|
4047
4041
|
}
|
4048
4042
|
|
4049
4043
|
// Call ToNumber only if operand is not a smi.
|
@@ -4106,7 +4100,7 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) {
|
|
4106
4100
|
__ mov(edx, eax);
|
4107
4101
|
__ mov(eax, Immediate(Smi::FromInt(1)));
|
4108
4102
|
BinaryOpStub stub(expr->binary_op(), NO_OVERWRITE);
|
4109
|
-
CallIC(stub.GetCode(), RelocInfo::CODE_TARGET, expr->
|
4103
|
+
CallIC(stub.GetCode(), RelocInfo::CODE_TARGET, expr->CountBinOpFeedbackId());
|
4110
4104
|
patch_site.EmitPatchInfo();
|
4111
4105
|
__ bind(&done);
|
4112
4106
|
|
@@ -4140,7 +4134,7 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) {
|
|
4140
4134
|
Handle<Code> ic = is_classic_mode()
|
4141
4135
|
? isolate()->builtins()->StoreIC_Initialize()
|
4142
4136
|
: isolate()->builtins()->StoreIC_Initialize_Strict();
|
4143
|
-
CallIC(ic, RelocInfo::CODE_TARGET, expr->
|
4137
|
+
CallIC(ic, RelocInfo::CODE_TARGET, expr->CountStoreFeedbackId());
|
4144
4138
|
PrepareForBailoutForId(expr->AssignmentId(), TOS_REG);
|
4145
4139
|
if (expr->is_postfix()) {
|
4146
4140
|
if (!context()->IsEffect()) {
|
@@ -4157,7 +4151,7 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) {
|
|
4157
4151
|
Handle<Code> ic = is_classic_mode()
|
4158
4152
|
? isolate()->builtins()->KeyedStoreIC_Initialize()
|
4159
4153
|
: isolate()->builtins()->KeyedStoreIC_Initialize_Strict();
|
4160
|
-
CallIC(ic, RelocInfo::CODE_TARGET, expr->
|
4154
|
+
CallIC(ic, RelocInfo::CODE_TARGET, expr->CountStoreFeedbackId());
|
4161
4155
|
PrepareForBailoutForId(expr->AssignmentId(), TOS_REG);
|
4162
4156
|
if (expr->is_postfix()) {
|
4163
4157
|
// Result is on the stack
|
@@ -4325,29 +4319,7 @@ void FullCodeGenerator::VisitCompareOperation(CompareOperation* expr) {
|
|
4325
4319
|
|
4326
4320
|
default: {
|
4327
4321
|
VisitForAccumulatorValue(expr->right());
|
4328
|
-
Condition cc =
|
4329
|
-
switch (op) {
|
4330
|
-
case Token::EQ_STRICT:
|
4331
|
-
case Token::EQ:
|
4332
|
-
cc = equal;
|
4333
|
-
break;
|
4334
|
-
case Token::LT:
|
4335
|
-
cc = less;
|
4336
|
-
break;
|
4337
|
-
case Token::GT:
|
4338
|
-
cc = greater;
|
4339
|
-
break;
|
4340
|
-
case Token::LTE:
|
4341
|
-
cc = less_equal;
|
4342
|
-
break;
|
4343
|
-
case Token::GTE:
|
4344
|
-
cc = greater_equal;
|
4345
|
-
break;
|
4346
|
-
case Token::IN:
|
4347
|
-
case Token::INSTANCEOF:
|
4348
|
-
default:
|
4349
|
-
UNREACHABLE();
|
4350
|
-
}
|
4322
|
+
Condition cc = CompareIC::ComputeCondition(op);
|
4351
4323
|
__ pop(edx);
|
4352
4324
|
|
4353
4325
|
bool inline_smi_code = ShouldInlineSmiCase(op);
|
@@ -4365,7 +4337,7 @@ void FullCodeGenerator::VisitCompareOperation(CompareOperation* expr) {
|
|
4365
4337
|
// Record position and call the compare IC.
|
4366
4338
|
SetSourcePosition(expr->position());
|
4367
4339
|
Handle<Code> ic = CompareIC::GetUninitialized(op);
|
4368
|
-
CallIC(ic, RelocInfo::CODE_TARGET, expr->
|
4340
|
+
CallIC(ic, RelocInfo::CODE_TARGET, expr->CompareOperationFeedbackId());
|
4369
4341
|
patch_site.EmitPatchInfo();
|
4370
4342
|
|
4371
4343
|
PrepareForBailoutBeforeSplit(expr, true, if_true, if_false);
|
@@ -4447,7 +4419,7 @@ void FullCodeGenerator::PushFunctionArgumentForContextAllocation() {
|
|
4447
4419
|
Scope* declaration_scope = scope()->DeclarationScope();
|
4448
4420
|
if (declaration_scope->is_global_scope() ||
|
4449
4421
|
declaration_scope->is_module_scope()) {
|
4450
|
-
// Contexts nested in the
|
4422
|
+
// Contexts nested in the native context have a canonical empty function
|
4451
4423
|
// as their closure, not the anonymous closure containing the global
|
4452
4424
|
// code. Pass a smi sentinel and let the runtime look up the empty
|
4453
4425
|
// function.
|
@@ -4476,14 +4448,51 @@ void FullCodeGenerator::EnterFinallyBlock() {
|
|
4476
4448
|
STATIC_ASSERT(kSmiTag == 0);
|
4477
4449
|
__ SmiTag(edx);
|
4478
4450
|
__ push(edx);
|
4451
|
+
|
4479
4452
|
// Store result register while executing finally block.
|
4480
4453
|
__ push(result_register());
|
4454
|
+
|
4455
|
+
// Store pending message while executing finally block.
|
4456
|
+
ExternalReference pending_message_obj =
|
4457
|
+
ExternalReference::address_of_pending_message_obj(isolate());
|
4458
|
+
__ mov(edx, Operand::StaticVariable(pending_message_obj));
|
4459
|
+
__ push(edx);
|
4460
|
+
|
4461
|
+
ExternalReference has_pending_message =
|
4462
|
+
ExternalReference::address_of_has_pending_message(isolate());
|
4463
|
+
__ mov(edx, Operand::StaticVariable(has_pending_message));
|
4464
|
+
__ SmiTag(edx);
|
4465
|
+
__ push(edx);
|
4466
|
+
|
4467
|
+
ExternalReference pending_message_script =
|
4468
|
+
ExternalReference::address_of_pending_message_script(isolate());
|
4469
|
+
__ mov(edx, Operand::StaticVariable(pending_message_script));
|
4470
|
+
__ push(edx);
|
4481
4471
|
}
|
4482
4472
|
|
4483
4473
|
|
4484
4474
|
void FullCodeGenerator::ExitFinallyBlock() {
|
4485
4475
|
ASSERT(!result_register().is(edx));
|
4476
|
+
// Restore pending message from stack.
|
4477
|
+
__ pop(edx);
|
4478
|
+
ExternalReference pending_message_script =
|
4479
|
+
ExternalReference::address_of_pending_message_script(isolate());
|
4480
|
+
__ mov(Operand::StaticVariable(pending_message_script), edx);
|
4481
|
+
|
4482
|
+
__ pop(edx);
|
4483
|
+
__ SmiUntag(edx);
|
4484
|
+
ExternalReference has_pending_message =
|
4485
|
+
ExternalReference::address_of_has_pending_message(isolate());
|
4486
|
+
__ mov(Operand::StaticVariable(has_pending_message), edx);
|
4487
|
+
|
4488
|
+
__ pop(edx);
|
4489
|
+
ExternalReference pending_message_obj =
|
4490
|
+
ExternalReference::address_of_pending_message_obj(isolate());
|
4491
|
+
__ mov(Operand::StaticVariable(pending_message_obj), edx);
|
4492
|
+
|
4493
|
+
// Restore result register from stack.
|
4486
4494
|
__ pop(result_register());
|
4495
|
+
|
4487
4496
|
// Uncook return address.
|
4488
4497
|
__ pop(edx);
|
4489
4498
|
__ SmiUntag(edx);
|
@@ -4519,7 +4528,6 @@ FullCodeGenerator::NestedStatement* FullCodeGenerator::TryFinally::Exit(
|
|
4519
4528
|
return previous_;
|
4520
4529
|
}
|
4521
4530
|
|
4522
|
-
|
4523
4531
|
#undef __
|
4524
4532
|
|
4525
4533
|
} } // namespace v8::internal
|