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
@@ -42,10 +42,10 @@ LITHIUM_CONCRETE_INSTRUCTION_LIST(DEFINE_COMPILE)
|
|
42
42
|
#undef DEFINE_COMPILE
|
43
43
|
|
44
44
|
LOsrEntry::LOsrEntry() {
|
45
|
-
for (int i = 0; i < Register::
|
45
|
+
for (int i = 0; i < Register::NumAllocatableRegisters(); ++i) {
|
46
46
|
register_spills_[i] = NULL;
|
47
47
|
}
|
48
|
-
for (int i = 0; i < DoubleRegister::
|
48
|
+
for (int i = 0; i < DoubleRegister::NumAllocatableRegisters(); ++i) {
|
49
49
|
double_register_spills_[i] = NULL;
|
50
50
|
}
|
51
51
|
}
|
@@ -112,7 +112,11 @@ void LInstruction::PrintDataTo(StringStream* stream) {
|
|
112
112
|
stream->Add("= ");
|
113
113
|
for (int i = 0; i < InputCount(); i++) {
|
114
114
|
if (i > 0) stream->Add(" ");
|
115
|
-
InputAt(i)
|
115
|
+
if (InputAt(i) == NULL) {
|
116
|
+
stream->Add("NULL");
|
117
|
+
} else {
|
118
|
+
InputAt(i)->PrintTo(stream);
|
119
|
+
}
|
116
120
|
}
|
117
121
|
}
|
118
122
|
|
@@ -177,6 +181,7 @@ const char* LArithmeticT::Mnemonic() const {
|
|
177
181
|
case Token::BIT_AND: return "bit-and-t";
|
178
182
|
case Token::BIT_OR: return "bit-or-t";
|
179
183
|
case Token::BIT_XOR: return "bit-xor-t";
|
184
|
+
case Token::ROR: return "ror-t";
|
180
185
|
case Token::SHL: return "shl-t";
|
181
186
|
case Token::SAR: return "sar-t";
|
182
187
|
case Token::SHR: return "shr-t";
|
@@ -194,22 +199,22 @@ void LGoto::PrintDataTo(StringStream* stream) {
|
|
194
199
|
|
195
200
|
void LBranch::PrintDataTo(StringStream* stream) {
|
196
201
|
stream->Add("B%d | B%d on ", true_block_id(), false_block_id());
|
197
|
-
|
202
|
+
value()->PrintTo(stream);
|
198
203
|
}
|
199
204
|
|
200
205
|
|
201
206
|
void LCmpIDAndBranch::PrintDataTo(StringStream* stream) {
|
202
207
|
stream->Add("if ");
|
203
|
-
|
208
|
+
left()->PrintTo(stream);
|
204
209
|
stream->Add(" %s ", Token::String(op()));
|
205
|
-
|
210
|
+
right()->PrintTo(stream);
|
206
211
|
stream->Add(" then B%d else B%d", true_block_id(), false_block_id());
|
207
212
|
}
|
208
213
|
|
209
214
|
|
210
215
|
void LIsNilAndBranch::PrintDataTo(StringStream* stream) {
|
211
216
|
stream->Add("if ");
|
212
|
-
|
217
|
+
value()->PrintTo(stream);
|
213
218
|
stream->Add(kind() == kStrictEquality ? " === " : " == ");
|
214
219
|
stream->Add(nil() == kNullValue ? "null" : "undefined");
|
215
220
|
stream->Add(" then B%d else B%d", true_block_id(), false_block_id());
|
@@ -218,57 +223,57 @@ void LIsNilAndBranch::PrintDataTo(StringStream* stream) {
|
|
218
223
|
|
219
224
|
void LIsObjectAndBranch::PrintDataTo(StringStream* stream) {
|
220
225
|
stream->Add("if is_object(");
|
221
|
-
|
226
|
+
value()->PrintTo(stream);
|
222
227
|
stream->Add(") then B%d else B%d", true_block_id(), false_block_id());
|
223
228
|
}
|
224
229
|
|
225
230
|
|
226
231
|
void LIsStringAndBranch::PrintDataTo(StringStream* stream) {
|
227
232
|
stream->Add("if is_string(");
|
228
|
-
|
233
|
+
value()->PrintTo(stream);
|
229
234
|
stream->Add(") then B%d else B%d", true_block_id(), false_block_id());
|
230
235
|
}
|
231
236
|
|
232
237
|
|
233
238
|
void LIsSmiAndBranch::PrintDataTo(StringStream* stream) {
|
234
239
|
stream->Add("if is_smi(");
|
235
|
-
|
240
|
+
value()->PrintTo(stream);
|
236
241
|
stream->Add(") then B%d else B%d", true_block_id(), false_block_id());
|
237
242
|
}
|
238
243
|
|
239
244
|
|
240
245
|
void LIsUndetectableAndBranch::PrintDataTo(StringStream* stream) {
|
241
246
|
stream->Add("if is_undetectable(");
|
242
|
-
|
247
|
+
value()->PrintTo(stream);
|
243
248
|
stream->Add(") then B%d else B%d", true_block_id(), false_block_id());
|
244
249
|
}
|
245
250
|
|
246
251
|
|
247
252
|
void LStringCompareAndBranch::PrintDataTo(StringStream* stream) {
|
248
253
|
stream->Add("if string_compare(");
|
249
|
-
|
250
|
-
|
254
|
+
left()->PrintTo(stream);
|
255
|
+
right()->PrintTo(stream);
|
251
256
|
stream->Add(") then B%d else B%d", true_block_id(), false_block_id());
|
252
257
|
}
|
253
258
|
|
254
259
|
|
255
260
|
void LHasInstanceTypeAndBranch::PrintDataTo(StringStream* stream) {
|
256
261
|
stream->Add("if has_instance_type(");
|
257
|
-
|
262
|
+
value()->PrintTo(stream);
|
258
263
|
stream->Add(") then B%d else B%d", true_block_id(), false_block_id());
|
259
264
|
}
|
260
265
|
|
261
266
|
|
262
267
|
void LHasCachedArrayIndexAndBranch::PrintDataTo(StringStream* stream) {
|
263
268
|
stream->Add("if has_cached_array_index(");
|
264
|
-
|
269
|
+
value()->PrintTo(stream);
|
265
270
|
stream->Add(") then B%d else B%d", true_block_id(), false_block_id());
|
266
271
|
}
|
267
272
|
|
268
273
|
|
269
274
|
void LClassOfTestAndBranch::PrintDataTo(StringStream* stream) {
|
270
275
|
stream->Add("if class_of_test(");
|
271
|
-
|
276
|
+
value()->PrintTo(stream);
|
272
277
|
stream->Add(", \"%o\") then B%d else B%d",
|
273
278
|
*hydrogen()->class_name(),
|
274
279
|
true_block_id(),
|
@@ -278,7 +283,7 @@ void LClassOfTestAndBranch::PrintDataTo(StringStream* stream) {
|
|
278
283
|
|
279
284
|
void LTypeofIsAndBranch::PrintDataTo(StringStream* stream) {
|
280
285
|
stream->Add("if typeof ");
|
281
|
-
|
286
|
+
value()->PrintTo(stream);
|
282
287
|
stream->Add(" == \"%s\" then B%d else B%d",
|
283
288
|
*hydrogen()->type_literal()->ToCString(),
|
284
289
|
true_block_id(), false_block_id());
|
@@ -292,26 +297,31 @@ void LCallConstantFunction::PrintDataTo(StringStream* stream) {
|
|
292
297
|
|
293
298
|
void LUnaryMathOperation::PrintDataTo(StringStream* stream) {
|
294
299
|
stream->Add("/%s ", hydrogen()->OpName());
|
295
|
-
|
300
|
+
value()->PrintTo(stream);
|
301
|
+
}
|
302
|
+
|
303
|
+
|
304
|
+
void LMathExp::PrintDataTo(StringStream* stream) {
|
305
|
+
value()->PrintTo(stream);
|
296
306
|
}
|
297
307
|
|
298
308
|
|
299
309
|
void LLoadContextSlot::PrintDataTo(StringStream* stream) {
|
300
|
-
|
310
|
+
context()->PrintTo(stream);
|
301
311
|
stream->Add("[%d]", slot_index());
|
302
312
|
}
|
303
313
|
|
304
314
|
|
305
315
|
void LStoreContextSlot::PrintDataTo(StringStream* stream) {
|
306
|
-
|
316
|
+
context()->PrintTo(stream);
|
307
317
|
stream->Add("[%d] <- ", slot_index());
|
308
|
-
|
318
|
+
value()->PrintTo(stream);
|
309
319
|
}
|
310
320
|
|
311
321
|
|
312
322
|
void LInvokeFunction::PrintDataTo(StringStream* stream) {
|
313
323
|
stream->Add("= ");
|
314
|
-
|
324
|
+
function()->PrintTo(stream);
|
315
325
|
stream->Add(" #%d / ", arity());
|
316
326
|
}
|
317
327
|
|
@@ -340,17 +350,15 @@ void LCallKnownGlobal::PrintDataTo(StringStream* stream) {
|
|
340
350
|
|
341
351
|
void LCallNew::PrintDataTo(StringStream* stream) {
|
342
352
|
stream->Add("= ");
|
343
|
-
|
353
|
+
constructor()->PrintTo(stream);
|
344
354
|
stream->Add(" #%d / ", arity());
|
345
355
|
}
|
346
356
|
|
347
357
|
|
348
358
|
void LAccessArgumentsAt::PrintDataTo(StringStream* stream) {
|
349
359
|
arguments()->PrintTo(stream);
|
350
|
-
|
351
360
|
stream->Add(" length ");
|
352
361
|
length()->PrintTo(stream);
|
353
|
-
|
354
362
|
stream->Add(" index ");
|
355
363
|
index()->PrintTo(stream);
|
356
364
|
}
|
@@ -374,20 +382,27 @@ void LStoreNamedGeneric::PrintDataTo(StringStream* stream) {
|
|
374
382
|
}
|
375
383
|
|
376
384
|
|
377
|
-
void
|
378
|
-
|
385
|
+
void LLoadKeyed::PrintDataTo(StringStream* stream) {
|
386
|
+
elements()->PrintTo(stream);
|
379
387
|
stream->Add("[");
|
380
388
|
key()->PrintTo(stream);
|
381
|
-
|
382
|
-
|
389
|
+
if (hydrogen()->IsDehoisted()) {
|
390
|
+
stream->Add(" + %d]", additional_index());
|
391
|
+
} else {
|
392
|
+
stream->Add("]");
|
393
|
+
}
|
383
394
|
}
|
384
395
|
|
385
396
|
|
386
|
-
void
|
397
|
+
void LStoreKeyed::PrintDataTo(StringStream* stream) {
|
387
398
|
elements()->PrintTo(stream);
|
388
399
|
stream->Add("[");
|
389
400
|
key()->PrintTo(stream);
|
390
|
-
|
401
|
+
if (hydrogen()->IsDehoisted()) {
|
402
|
+
stream->Add(" + %d] <-", additional_index());
|
403
|
+
} else {
|
404
|
+
stream->Add("] <- ");
|
405
|
+
}
|
391
406
|
value()->PrintTo(stream);
|
392
407
|
}
|
393
408
|
|
@@ -407,146 +422,26 @@ void LTransitionElementsKind::PrintDataTo(StringStream* stream) {
|
|
407
422
|
}
|
408
423
|
|
409
424
|
|
410
|
-
|
411
|
-
: spill_slot_count_(0),
|
412
|
-
info_(info),
|
413
|
-
graph_(graph),
|
414
|
-
instructions_(32),
|
415
|
-
pointer_maps_(8),
|
416
|
-
inlined_closures_(1) {
|
417
|
-
}
|
418
|
-
|
419
|
-
|
420
|
-
int LChunk::GetNextSpillIndex(bool is_double) {
|
425
|
+
int LPlatformChunk::GetNextSpillIndex(bool is_double) {
|
421
426
|
// Skip a slot if for a double-width slot.
|
422
427
|
if (is_double) spill_slot_count_++;
|
423
428
|
return spill_slot_count_++;
|
424
429
|
}
|
425
430
|
|
426
431
|
|
427
|
-
LOperand*
|
432
|
+
LOperand* LPlatformChunk::GetNextSpillSlot(bool is_double) {
|
428
433
|
int index = GetNextSpillIndex(is_double);
|
429
434
|
if (is_double) {
|
430
|
-
return LDoubleStackSlot::Create(index);
|
431
|
-
} else {
|
432
|
-
return LStackSlot::Create(index);
|
433
|
-
}
|
434
|
-
}
|
435
|
-
|
436
|
-
|
437
|
-
void LChunk::MarkEmptyBlocks() {
|
438
|
-
HPhase phase("L_Mark empty blocks", this);
|
439
|
-
for (int i = 0; i < graph()->blocks()->length(); ++i) {
|
440
|
-
HBasicBlock* block = graph()->blocks()->at(i);
|
441
|
-
int first = block->first_instruction_index();
|
442
|
-
int last = block->last_instruction_index();
|
443
|
-
LInstruction* first_instr = instructions()->at(first);
|
444
|
-
LInstruction* last_instr = instructions()->at(last);
|
445
|
-
|
446
|
-
LLabel* label = LLabel::cast(first_instr);
|
447
|
-
if (last_instr->IsGoto()) {
|
448
|
-
LGoto* goto_instr = LGoto::cast(last_instr);
|
449
|
-
if (label->IsRedundant() &&
|
450
|
-
!label->is_loop_header()) {
|
451
|
-
bool can_eliminate = true;
|
452
|
-
for (int i = first + 1; i < last && can_eliminate; ++i) {
|
453
|
-
LInstruction* cur = instructions()->at(i);
|
454
|
-
if (cur->IsGap()) {
|
455
|
-
LGap* gap = LGap::cast(cur);
|
456
|
-
if (!gap->IsRedundant()) {
|
457
|
-
can_eliminate = false;
|
458
|
-
}
|
459
|
-
} else {
|
460
|
-
can_eliminate = false;
|
461
|
-
}
|
462
|
-
}
|
463
|
-
|
464
|
-
if (can_eliminate) {
|
465
|
-
label->set_replacement(GetLabel(goto_instr->block_id()));
|
466
|
-
}
|
467
|
-
}
|
468
|
-
}
|
469
|
-
}
|
470
|
-
}
|
471
|
-
|
472
|
-
|
473
|
-
void LChunk::AddInstruction(LInstruction* instr, HBasicBlock* block) {
|
474
|
-
LInstructionGap* gap = new(graph_->zone()) LInstructionGap(block);
|
475
|
-
int index = -1;
|
476
|
-
if (instr->IsControl()) {
|
477
|
-
instructions_.Add(gap);
|
478
|
-
index = instructions_.length();
|
479
|
-
instructions_.Add(instr);
|
435
|
+
return LDoubleStackSlot::Create(index, zone());
|
480
436
|
} else {
|
481
|
-
index
|
482
|
-
instructions_.Add(instr);
|
483
|
-
instructions_.Add(gap);
|
437
|
+
return LStackSlot::Create(index, zone());
|
484
438
|
}
|
485
|
-
if (instr->HasPointerMap()) {
|
486
|
-
pointer_maps_.Add(instr->pointer_map());
|
487
|
-
instr->pointer_map()->set_lithium_position(index);
|
488
|
-
}
|
489
|
-
}
|
490
|
-
|
491
|
-
|
492
|
-
LConstantOperand* LChunk::DefineConstantOperand(HConstant* constant) {
|
493
|
-
return LConstantOperand::Create(constant->id());
|
494
439
|
}
|
495
440
|
|
496
441
|
|
497
|
-
|
498
|
-
// The receiver is at index 0, the first parameter at index 1, so we
|
499
|
-
// shift all parameter indexes down by the number of parameters, and
|
500
|
-
// make sure they end up negative so they are distinguishable from
|
501
|
-
// spill slots.
|
502
|
-
int result = index - info()->scope()->num_parameters() - 1;
|
503
|
-
ASSERT(result < 0);
|
504
|
-
return result;
|
505
|
-
}
|
506
|
-
|
507
|
-
// A parameter relative to ebp in the arguments stub.
|
508
|
-
int LChunk::ParameterAt(int index) {
|
509
|
-
ASSERT(-1 <= index); // -1 is the receiver.
|
510
|
-
return (1 + info()->scope()->num_parameters() - index) *
|
511
|
-
kPointerSize;
|
512
|
-
}
|
513
|
-
|
514
|
-
|
515
|
-
LGap* LChunk::GetGapAt(int index) const {
|
516
|
-
return LGap::cast(instructions_[index]);
|
517
|
-
}
|
518
|
-
|
519
|
-
|
520
|
-
bool LChunk::IsGapAt(int index) const {
|
521
|
-
return instructions_[index]->IsGap();
|
522
|
-
}
|
523
|
-
|
524
|
-
|
525
|
-
int LChunk::NearestGapPos(int index) const {
|
526
|
-
while (!IsGapAt(index)) index--;
|
527
|
-
return index;
|
528
|
-
}
|
529
|
-
|
530
|
-
|
531
|
-
void LChunk::AddGapMove(int index, LOperand* from, LOperand* to) {
|
532
|
-
GetGapAt(index)->GetOrCreateParallelMove(LGap::START)->AddMove(from, to);
|
533
|
-
}
|
534
|
-
|
535
|
-
|
536
|
-
Handle<Object> LChunk::LookupLiteral(LConstantOperand* operand) const {
|
537
|
-
return HConstant::cast(graph_->LookupValue(operand->index()))->handle();
|
538
|
-
}
|
539
|
-
|
540
|
-
|
541
|
-
Representation LChunk::LookupLiteralRepresentation(
|
542
|
-
LConstantOperand* operand) const {
|
543
|
-
return graph_->LookupValue(operand->index())->representation();
|
544
|
-
}
|
545
|
-
|
546
|
-
|
547
|
-
LChunk* LChunkBuilder::Build() {
|
442
|
+
LPlatformChunk* LChunkBuilder::Build() {
|
548
443
|
ASSERT(is_unused());
|
549
|
-
chunk_ = new(zone())
|
444
|
+
chunk_ = new(zone()) LPlatformChunk(info(), graph());
|
550
445
|
HPhase phase("L_Building chunk", chunk_);
|
551
446
|
status_ = BUILDING;
|
552
447
|
const ZoneList<HBasicBlock*>* blocks = graph()->blocks();
|
@@ -561,17 +456,8 @@ LChunk* LChunkBuilder::Build() {
|
|
561
456
|
}
|
562
457
|
|
563
458
|
|
564
|
-
void LChunkBuilder::Abort(const char*
|
565
|
-
|
566
|
-
SmartArrayPointer<char> name(
|
567
|
-
info()->shared_info()->DebugName()->ToCString());
|
568
|
-
PrintF("Aborting LChunk building in @\"%s\": ", *name);
|
569
|
-
va_list arguments;
|
570
|
-
va_start(arguments, format);
|
571
|
-
OS::VPrint(format, arguments);
|
572
|
-
va_end(arguments);
|
573
|
-
PrintF("\n");
|
574
|
-
}
|
459
|
+
void LChunkBuilder::Abort(const char* reason) {
|
460
|
+
info()->set_bailout_reason(reason);
|
575
461
|
status_ = ABORTED;
|
576
462
|
}
|
577
463
|
|
@@ -730,6 +616,7 @@ LInstruction* LChunkBuilder::AssignEnvironment(LInstruction* instr) {
|
|
730
616
|
LInstruction* LChunkBuilder::MarkAsCall(LInstruction* instr,
|
731
617
|
HInstruction* hinstr,
|
732
618
|
CanDeoptimize can_deoptimize) {
|
619
|
+
info()->MarkAsNonDeferredCalling();
|
733
620
|
#ifdef DEBUG
|
734
621
|
instr->VerifyCall();
|
735
622
|
#endif
|
@@ -740,7 +627,7 @@ LInstruction* LChunkBuilder::MarkAsCall(LInstruction* instr,
|
|
740
627
|
ASSERT(hinstr->next()->IsSimulate());
|
741
628
|
HSimulate* sim = HSimulate::cast(hinstr->next());
|
742
629
|
ASSERT(instruction_pending_deoptimization_environment_ == NULL);
|
743
|
-
ASSERT(pending_deoptimization_ast_id_
|
630
|
+
ASSERT(pending_deoptimization_ast_id_.IsNone());
|
744
631
|
instruction_pending_deoptimization_environment_ = instr;
|
745
632
|
pending_deoptimization_ast_id_ = sim->ast_id();
|
746
633
|
}
|
@@ -762,7 +649,7 @@ LInstruction* LChunkBuilder::MarkAsCall(LInstruction* instr,
|
|
762
649
|
|
763
650
|
LInstruction* LChunkBuilder::AssignPointerMap(LInstruction* instr) {
|
764
651
|
ASSERT(!instr->HasPointerMap());
|
765
|
-
instr->set_pointer_map(new(zone()) LPointerMap(position_));
|
652
|
+
instr->set_pointer_map(new(zone()) LPointerMap(position_, zone()));
|
766
653
|
return instr;
|
767
654
|
}
|
768
655
|
|
@@ -795,6 +682,11 @@ LInstruction* LChunkBuilder::DoBlockEntry(HBlockEntry* instr) {
|
|
795
682
|
}
|
796
683
|
|
797
684
|
|
685
|
+
LInstruction* LChunkBuilder::DoDummyUse(HDummyUse* instr) {
|
686
|
+
return DefineAsRegister(new(zone()) LDummyUse(UseAny(instr->value())));
|
687
|
+
}
|
688
|
+
|
689
|
+
|
798
690
|
LInstruction* LChunkBuilder::DoSoftDeoptimize(HSoftDeoptimize* instr) {
|
799
691
|
return AssignEnvironment(new(zone()) LDeoptimize);
|
800
692
|
}
|
@@ -835,13 +727,16 @@ LInstruction* LChunkBuilder::DoShift(Token::Value op,
|
|
835
727
|
|
836
728
|
// Shift operations can only deoptimize if we do a logical shift
|
837
729
|
// by 0 and the result cannot be truncated to int32.
|
838
|
-
bool may_deopt = (op == Token::SHR && constant_value == 0);
|
839
730
|
bool does_deopt = false;
|
840
|
-
if (
|
841
|
-
|
842
|
-
|
843
|
-
|
844
|
-
|
731
|
+
if (op == Token::SHR && constant_value == 0) {
|
732
|
+
if (FLAG_opt_safe_uint32_operations) {
|
733
|
+
does_deopt = !instr->CheckFlag(HInstruction::kUint32);
|
734
|
+
} else {
|
735
|
+
for (HUseIterator it(instr->uses()); !it.Done(); it.Advance()) {
|
736
|
+
if (!it.value()->CheckFlag(HValue::kTruncatingToInt32)) {
|
737
|
+
does_deopt = true;
|
738
|
+
break;
|
739
|
+
}
|
845
740
|
}
|
846
741
|
}
|
847
742
|
}
|
@@ -974,8 +869,8 @@ LEnvironment* LChunkBuilder::CreateEnvironment(
|
|
974
869
|
|
975
870
|
LEnvironment* outer =
|
976
871
|
CreateEnvironment(hydrogen_env->outer(), argument_index_accumulator);
|
977
|
-
|
978
|
-
ASSERT(ast_id
|
872
|
+
BailoutId ast_id = hydrogen_env->ast_id();
|
873
|
+
ASSERT(!ast_id.IsNone() ||
|
979
874
|
hydrogen_env->frame_type() != JS_FUNCTION);
|
980
875
|
int value_count = hydrogen_env->length();
|
981
876
|
LEnvironment* result = new(zone()) LEnvironment(
|
@@ -985,7 +880,9 @@ LEnvironment* LChunkBuilder::CreateEnvironment(
|
|
985
880
|
hydrogen_env->parameter_count(),
|
986
881
|
argument_count_,
|
987
882
|
value_count,
|
988
|
-
outer
|
883
|
+
outer,
|
884
|
+
hydrogen_env->entry(),
|
885
|
+
zone());
|
989
886
|
int argument_index = *argument_index_accumulator;
|
990
887
|
for (int i = 0; i < value_count; ++i) {
|
991
888
|
if (hydrogen_env->is_special_index(i)) continue;
|
@@ -999,7 +896,9 @@ LEnvironment* LChunkBuilder::CreateEnvironment(
|
|
999
896
|
} else {
|
1000
897
|
op = UseAny(value);
|
1001
898
|
}
|
1002
|
-
result->AddValue(op,
|
899
|
+
result->AddValue(op,
|
900
|
+
value->representation(),
|
901
|
+
value->CheckFlag(HInstruction::kUint32));
|
1003
902
|
}
|
1004
903
|
|
1005
904
|
if (hydrogen_env->frame_type() == JS_FUNCTION) {
|
@@ -1109,7 +1008,14 @@ LInstruction* LChunkBuilder::DoThisFunction(HThisFunction* instr) {
|
|
1109
1008
|
|
1110
1009
|
|
1111
1010
|
LInstruction* LChunkBuilder::DoContext(HContext* instr) {
|
1112
|
-
return
|
1011
|
+
// If there is a non-return use, the context must be allocated in a register.
|
1012
|
+
for (HUseIterator it(instr->uses()); !it.Done(); it.Advance()) {
|
1013
|
+
if (!it.value()->IsReturn()) {
|
1014
|
+
return DefineAsRegister(new(zone()) LContext);
|
1015
|
+
}
|
1016
|
+
}
|
1017
|
+
|
1018
|
+
return NULL;
|
1113
1019
|
}
|
1114
1020
|
|
1115
1021
|
|
@@ -1157,6 +1063,15 @@ LInstruction* LChunkBuilder::DoUnaryMathOperation(HUnaryMathOperation* instr) {
|
|
1157
1063
|
LOperand* input = UseFixedDouble(instr->value(), d2);
|
1158
1064
|
LUnaryMathOperation* result = new(zone()) LUnaryMathOperation(input, NULL);
|
1159
1065
|
return MarkAsCall(DefineFixedDouble(result, d2), instr);
|
1066
|
+
} else if (op == kMathExp) {
|
1067
|
+
ASSERT(instr->representation().IsDouble());
|
1068
|
+
ASSERT(instr->value()->representation().IsDouble());
|
1069
|
+
LOperand* input = UseTempRegister(instr->value());
|
1070
|
+
LOperand* temp1 = TempRegister();
|
1071
|
+
LOperand* temp2 = TempRegister();
|
1072
|
+
LOperand* double_temp = FixedTemp(d3); // Chosen by fair dice roll.
|
1073
|
+
LMathExp* result = new(zone()) LMathExp(input, double_temp, temp1, temp2);
|
1074
|
+
return DefineAsRegister(result);
|
1160
1075
|
} else if (op == kMathPowHalf) {
|
1161
1076
|
LOperand* input = UseFixedDouble(instr->value(), d2);
|
1162
1077
|
LOperand* temp = FixedTemp(d3);
|
@@ -1164,7 +1079,8 @@ LInstruction* LChunkBuilder::DoUnaryMathOperation(HUnaryMathOperation* instr) {
|
|
1164
1079
|
return DefineFixedDouble(result, d2);
|
1165
1080
|
} else {
|
1166
1081
|
LOperand* input = UseRegisterAtStart(instr->value());
|
1167
|
-
|
1082
|
+
|
1083
|
+
LOperand* temp = (op == kMathRound) ? FixedTemp(d3) : NULL;
|
1168
1084
|
LUnaryMathOperation* result = new(zone()) LUnaryMathOperation(input, temp);
|
1169
1085
|
switch (op) {
|
1170
1086
|
case kMathAbs:
|
@@ -1231,6 +1147,11 @@ LInstruction* LChunkBuilder::DoCallRuntime(HCallRuntime* instr) {
|
|
1231
1147
|
}
|
1232
1148
|
|
1233
1149
|
|
1150
|
+
LInstruction* LChunkBuilder::DoRor(HRor* instr) {
|
1151
|
+
return DoShift(Token::ROR, instr);
|
1152
|
+
}
|
1153
|
+
|
1154
|
+
|
1234
1155
|
LInstruction* LChunkBuilder::DoShr(HShr* instr) {
|
1235
1156
|
return DoShift(Token::SHR, instr);
|
1236
1157
|
}
|
@@ -1336,31 +1257,44 @@ HValue* LChunkBuilder::SimplifiedDividendForMathFloorOfDiv(HValue* dividend) {
|
|
1336
1257
|
|
1337
1258
|
|
1338
1259
|
HValue* LChunkBuilder::SimplifiedDivisorForMathFloorOfDiv(HValue* divisor) {
|
1339
|
-
|
1340
|
-
|
1341
|
-
|
1342
|
-
|
1343
|
-
|
1260
|
+
if (CpuFeatures::IsSupported(SUDIV)) {
|
1261
|
+
// A value with an integer representation does not need to be transformed.
|
1262
|
+
if (divisor->representation().IsInteger32()) {
|
1263
|
+
return divisor;
|
1264
|
+
// A change from an integer32 can be replaced by the integer32 value.
|
1265
|
+
} else if (divisor->IsChange() &&
|
1266
|
+
HChange::cast(divisor)->from().IsInteger32()) {
|
1267
|
+
return HChange::cast(divisor)->value();
|
1268
|
+
}
|
1269
|
+
}
|
1270
|
+
|
1271
|
+
if (divisor->IsConstant() && HConstant::cast(divisor)->HasInteger32Value()) {
|
1344
1272
|
HConstant* constant_val = HConstant::cast(divisor);
|
1345
1273
|
int32_t int32_val = constant_val->Integer32Value();
|
1346
|
-
if (LChunkBuilder::HasMagicNumberForDivisor(int32_val)
|
1347
|
-
|
1274
|
+
if (LChunkBuilder::HasMagicNumberForDivisor(int32_val) ||
|
1275
|
+
CpuFeatures::IsSupported(SUDIV)) {
|
1276
|
+
return constant_val->CopyToRepresentation(Representation::Integer32(),
|
1277
|
+
divisor->block()->zone());
|
1348
1278
|
}
|
1349
1279
|
}
|
1280
|
+
|
1350
1281
|
return NULL;
|
1351
1282
|
}
|
1352
1283
|
|
1353
1284
|
|
1354
1285
|
LInstruction* LChunkBuilder::DoMathFloorOfDiv(HMathFloorOfDiv* instr) {
|
1355
|
-
|
1356
|
-
|
1357
|
-
|
1358
|
-
|
1359
|
-
|
1360
|
-
|
1361
|
-
|
1362
|
-
|
1363
|
-
|
1286
|
+
HValue* right = instr->right();
|
1287
|
+
LOperand* dividend = UseRegister(instr->left());
|
1288
|
+
LOperand* divisor = CpuFeatures::IsSupported(SUDIV)
|
1289
|
+
? UseRegister(right)
|
1290
|
+
: UseOrConstant(right);
|
1291
|
+
LOperand* remainder = TempRegister();
|
1292
|
+
ASSERT(CpuFeatures::IsSupported(SUDIV) ||
|
1293
|
+
(right->IsConstant() &&
|
1294
|
+
HConstant::cast(right)->HasInteger32Value() &&
|
1295
|
+
HasMagicNumberForDivisor(HConstant::cast(right)->Integer32Value())));
|
1296
|
+
return AssignEnvironment(DefineAsRegister(
|
1297
|
+
new(zone()) LMathFloorOfDiv(dividend, divisor, remainder)));
|
1364
1298
|
}
|
1365
1299
|
|
1366
1300
|
|
@@ -1428,8 +1362,21 @@ LInstruction* LChunkBuilder::DoMul(HMul* instr) {
|
|
1428
1362
|
return DefineAsRegister(mul);
|
1429
1363
|
|
1430
1364
|
} else if (instr->representation().IsDouble()) {
|
1431
|
-
|
1365
|
+
if (instr->UseCount() == 1 && instr->uses().value()->IsAdd()) {
|
1366
|
+
HAdd* add = HAdd::cast(instr->uses().value());
|
1367
|
+
if (instr == add->left()) {
|
1368
|
+
// This mul is the lhs of an add. The add and mul will be folded
|
1369
|
+
// into a multiply-add.
|
1370
|
+
return NULL;
|
1371
|
+
}
|
1372
|
+
if (instr == add->right() && !add->left()->IsMul()) {
|
1373
|
+
// This mul is the rhs of an add, where the lhs is not another mul.
|
1374
|
+
// The add and mul will be folded into a multiply-add.
|
1375
|
+
return NULL;
|
1376
|
+
}
|
1377
|
+
}
|
1432
1378
|
|
1379
|
+
return DoArithmeticD(Token::MUL, instr);
|
1433
1380
|
} else {
|
1434
1381
|
return DoArithmeticT(Token::MUL, instr);
|
1435
1382
|
}
|
@@ -1440,6 +1387,12 @@ LInstruction* LChunkBuilder::DoSub(HSub* instr) {
|
|
1440
1387
|
if (instr->representation().IsInteger32()) {
|
1441
1388
|
ASSERT(instr->left()->representation().IsInteger32());
|
1442
1389
|
ASSERT(instr->right()->representation().IsInteger32());
|
1390
|
+
|
1391
|
+
if (instr->left()->IsConstant()) {
|
1392
|
+
// If lhs is constant, do reverse subtraction instead.
|
1393
|
+
return DoRSub(instr);
|
1394
|
+
}
|
1395
|
+
|
1443
1396
|
LOperand* left = UseRegisterAtStart(instr->left());
|
1444
1397
|
LOperand* right = UseOrConstantAtStart(instr->right());
|
1445
1398
|
LSubI* sub = new(zone()) LSubI(left, right);
|
@@ -1456,6 +1409,32 @@ LInstruction* LChunkBuilder::DoSub(HSub* instr) {
|
|
1456
1409
|
}
|
1457
1410
|
|
1458
1411
|
|
1412
|
+
LInstruction* LChunkBuilder::DoRSub(HSub* instr) {
|
1413
|
+
ASSERT(instr->representation().IsInteger32());
|
1414
|
+
ASSERT(instr->left()->representation().IsInteger32());
|
1415
|
+
ASSERT(instr->right()->representation().IsInteger32());
|
1416
|
+
|
1417
|
+
// Note: The lhs of the subtraction becomes the rhs of the
|
1418
|
+
// reverse-subtraction.
|
1419
|
+
LOperand* left = UseRegisterAtStart(instr->right());
|
1420
|
+
LOperand* right = UseOrConstantAtStart(instr->left());
|
1421
|
+
LRSubI* rsb = new(zone()) LRSubI(left, right);
|
1422
|
+
LInstruction* result = DefineAsRegister(rsb);
|
1423
|
+
if (instr->CheckFlag(HValue::kCanOverflow)) {
|
1424
|
+
result = AssignEnvironment(result);
|
1425
|
+
}
|
1426
|
+
return result;
|
1427
|
+
}
|
1428
|
+
|
1429
|
+
|
1430
|
+
LInstruction* LChunkBuilder::DoMultiplyAdd(HMul* mul, HValue* addend) {
|
1431
|
+
LOperand* multiplier_op = UseRegisterAtStart(mul->left());
|
1432
|
+
LOperand* multiplicand_op = UseRegisterAtStart(mul->right());
|
1433
|
+
LOperand* addend_op = UseRegisterAtStart(addend);
|
1434
|
+
return DefineSameAsFirst(new(zone()) LMultiplyAddD(addend_op, multiplier_op,
|
1435
|
+
multiplicand_op));
|
1436
|
+
}
|
1437
|
+
|
1459
1438
|
LInstruction* LChunkBuilder::DoAdd(HAdd* instr) {
|
1460
1439
|
if (instr->representation().IsInteger32()) {
|
1461
1440
|
ASSERT(instr->left()->representation().IsInteger32());
|
@@ -1469,6 +1448,14 @@ LInstruction* LChunkBuilder::DoAdd(HAdd* instr) {
|
|
1469
1448
|
}
|
1470
1449
|
return result;
|
1471
1450
|
} else if (instr->representation().IsDouble()) {
|
1451
|
+
if (instr->left()->IsMul())
|
1452
|
+
return DoMultiplyAdd(HMul::cast(instr->left()), instr->right());
|
1453
|
+
|
1454
|
+
if (instr->right()->IsMul()) {
|
1455
|
+
ASSERT(!instr->left()->IsMul());
|
1456
|
+
return DoMultiplyAdd(HMul::cast(instr->right()), instr->left());
|
1457
|
+
}
|
1458
|
+
|
1472
1459
|
return DoArithmeticD(Token::ADD, instr);
|
1473
1460
|
} else {
|
1474
1461
|
ASSERT(instr->representation().IsTagged());
|
@@ -1477,6 +1464,25 @@ LInstruction* LChunkBuilder::DoAdd(HAdd* instr) {
|
|
1477
1464
|
}
|
1478
1465
|
|
1479
1466
|
|
1467
|
+
LInstruction* LChunkBuilder::DoMathMinMax(HMathMinMax* instr) {
|
1468
|
+
LOperand* left = NULL;
|
1469
|
+
LOperand* right = NULL;
|
1470
|
+
if (instr->representation().IsInteger32()) {
|
1471
|
+
ASSERT(instr->left()->representation().IsInteger32());
|
1472
|
+
ASSERT(instr->right()->representation().IsInteger32());
|
1473
|
+
left = UseRegisterAtStart(instr->LeastConstantOperand());
|
1474
|
+
right = UseOrConstantAtStart(instr->MostConstantOperand());
|
1475
|
+
} else {
|
1476
|
+
ASSERT(instr->representation().IsDouble());
|
1477
|
+
ASSERT(instr->left()->representation().IsDouble());
|
1478
|
+
ASSERT(instr->right()->representation().IsDouble());
|
1479
|
+
left = UseRegisterAtStart(instr->left());
|
1480
|
+
right = UseRegisterAtStart(instr->right());
|
1481
|
+
}
|
1482
|
+
return DefineAsRegister(new(zone()) LMathMinMax(left, right));
|
1483
|
+
}
|
1484
|
+
|
1485
|
+
|
1480
1486
|
LInstruction* LChunkBuilder::DoPower(HPower* instr) {
|
1481
1487
|
ASSERT(instr->representation().IsDouble());
|
1482
1488
|
// We call a C function for double power. It can't trigger a GC.
|
@@ -1515,7 +1521,7 @@ LInstruction* LChunkBuilder::DoCompareGeneric(HCompareGeneric* instr) {
|
|
1515
1521
|
|
1516
1522
|
LInstruction* LChunkBuilder::DoCompareIDAndBranch(
|
1517
1523
|
HCompareIDAndBranch* instr) {
|
1518
|
-
Representation r = instr->
|
1524
|
+
Representation r = instr->representation();
|
1519
1525
|
if (r.IsInteger32()) {
|
1520
1526
|
ASSERT(instr->left()->representation().IsInteger32());
|
1521
1527
|
ASSERT(instr->right()->representation().IsInteger32());
|
@@ -1642,6 +1648,12 @@ LInstruction* LChunkBuilder::DoFixedArrayBaseLength(
|
|
1642
1648
|
}
|
1643
1649
|
|
1644
1650
|
|
1651
|
+
LInstruction* LChunkBuilder::DoMapEnumLength(HMapEnumLength* instr) {
|
1652
|
+
LOperand* map = UseRegisterAtStart(instr->value());
|
1653
|
+
return DefineAsRegister(new(zone()) LMapEnumLength(map));
|
1654
|
+
}
|
1655
|
+
|
1656
|
+
|
1645
1657
|
LInstruction* LChunkBuilder::DoElementsKind(HElementsKind* instr) {
|
1646
1658
|
LOperand* object = UseRegisterAtStart(instr->value());
|
1647
1659
|
return DefineAsRegister(new(zone()) LElementsKind(object));
|
@@ -1657,13 +1669,24 @@ LInstruction* LChunkBuilder::DoValueOf(HValueOf* instr) {
|
|
1657
1669
|
|
1658
1670
|
LInstruction* LChunkBuilder::DoDateField(HDateField* instr) {
|
1659
1671
|
LOperand* object = UseFixed(instr->value(), r0);
|
1660
|
-
LDateField* result =
|
1661
|
-
|
1672
|
+
LDateField* result =
|
1673
|
+
new(zone()) LDateField(object, FixedTemp(r1), instr->index());
|
1674
|
+
return MarkAsCall(DefineFixed(result, r0), instr, CAN_DEOPTIMIZE_EAGERLY);
|
1675
|
+
}
|
1676
|
+
|
1677
|
+
|
1678
|
+
LInstruction* LChunkBuilder::DoSeqStringSetChar(HSeqStringSetChar* instr) {
|
1679
|
+
LOperand* string = UseRegister(instr->string());
|
1680
|
+
LOperand* index = UseRegister(instr->index());
|
1681
|
+
LOperand* value = UseRegister(instr->value());
|
1682
|
+
LSeqStringSetChar* result =
|
1683
|
+
new(zone()) LSeqStringSetChar(instr->encoding(), string, index, value);
|
1684
|
+
return DefineAsRegister(result);
|
1662
1685
|
}
|
1663
1686
|
|
1664
1687
|
|
1665
1688
|
LInstruction* LChunkBuilder::DoBoundsCheck(HBoundsCheck* instr) {
|
1666
|
-
LOperand* value =
|
1689
|
+
LOperand* value = UseRegisterOrConstantAtStart(instr->index());
|
1667
1690
|
LOperand* length = UseRegister(instr->length());
|
1668
1691
|
return AssignEnvironment(new(zone()) LBoundsCheck(value, length));
|
1669
1692
|
}
|
@@ -1700,22 +1723,21 @@ LInstruction* LChunkBuilder::DoChange(HChange* instr) {
|
|
1700
1723
|
Representation to = instr->to();
|
1701
1724
|
if (from.IsTagged()) {
|
1702
1725
|
if (to.IsDouble()) {
|
1726
|
+
info()->MarkAsDeferredCalling();
|
1703
1727
|
LOperand* value = UseRegister(instr->value());
|
1704
1728
|
LNumberUntagD* res = new(zone()) LNumberUntagD(value);
|
1705
1729
|
return AssignEnvironment(DefineAsRegister(res));
|
1706
1730
|
} else {
|
1707
1731
|
ASSERT(to.IsInteger32());
|
1708
1732
|
LOperand* value = UseRegisterAtStart(instr->value());
|
1709
|
-
bool needs_check = !instr->value()->type().IsSmi();
|
1710
1733
|
LInstruction* res = NULL;
|
1711
|
-
if (
|
1712
|
-
res = DefineAsRegister(new(zone()) LSmiUntag(value,
|
1734
|
+
if (instr->value()->type().IsSmi()) {
|
1735
|
+
res = DefineAsRegister(new(zone()) LSmiUntag(value, false));
|
1713
1736
|
} else {
|
1714
1737
|
LOperand* temp1 = TempRegister();
|
1715
1738
|
LOperand* temp2 = instr->CanTruncateToInt32() ? TempRegister()
|
1716
1739
|
: NULL;
|
1717
|
-
LOperand* temp3 =
|
1718
|
-
: NULL;
|
1740
|
+
LOperand* temp3 = FixedTemp(d11);
|
1719
1741
|
res = DefineSameAsFirst(new(zone()) LTaggedToI(value,
|
1720
1742
|
temp1,
|
1721
1743
|
temp2,
|
@@ -1726,6 +1748,7 @@ LInstruction* LChunkBuilder::DoChange(HChange* instr) {
|
|
1726
1748
|
}
|
1727
1749
|
} else if (from.IsDouble()) {
|
1728
1750
|
if (to.IsTagged()) {
|
1751
|
+
info()->MarkAsDeferredCalling();
|
1729
1752
|
LOperand* value = UseRegister(instr->value());
|
1730
1753
|
LOperand* temp1 = TempRegister();
|
1731
1754
|
LOperand* temp2 = TempRegister();
|
@@ -1745,10 +1768,14 @@ LInstruction* LChunkBuilder::DoChange(HChange* instr) {
|
|
1745
1768
|
return AssignEnvironment(DefineAsRegister(res));
|
1746
1769
|
}
|
1747
1770
|
} else if (from.IsInteger32()) {
|
1771
|
+
info()->MarkAsDeferredCalling();
|
1748
1772
|
if (to.IsTagged()) {
|
1749
1773
|
HValue* val = instr->value();
|
1750
1774
|
LOperand* value = UseRegisterAtStart(val);
|
1751
|
-
if (val->
|
1775
|
+
if (val->CheckFlag(HInstruction::kUint32)) {
|
1776
|
+
LNumberTagU* result = new(zone()) LNumberTagU(value);
|
1777
|
+
return AssignEnvironment(AssignPointerMap(DefineSameAsFirst(result)));
|
1778
|
+
} else if (val->HasRange() && val->range()->IsInSmiRange()) {
|
1752
1779
|
return DefineAsRegister(new(zone()) LSmiTag(value));
|
1753
1780
|
} else {
|
1754
1781
|
LNumberTagI* result = new(zone()) LNumberTagI(value);
|
@@ -1756,8 +1783,13 @@ LInstruction* LChunkBuilder::DoChange(HChange* instr) {
|
|
1756
1783
|
}
|
1757
1784
|
} else {
|
1758
1785
|
ASSERT(to.IsDouble());
|
1759
|
-
|
1760
|
-
|
1786
|
+
if (instr->value()->CheckFlag(HInstruction::kUint32)) {
|
1787
|
+
return DefineAsRegister(
|
1788
|
+
new(zone()) LUint32ToDouble(UseRegister(instr->value())));
|
1789
|
+
} else {
|
1790
|
+
return DefineAsRegister(
|
1791
|
+
new(zone()) LInteger32ToDouble(Use(instr->value())));
|
1792
|
+
}
|
1761
1793
|
}
|
1762
1794
|
}
|
1763
1795
|
UNREACHABLE();
|
@@ -1779,10 +1811,10 @@ LInstruction* LChunkBuilder::DoCheckInstanceType(HCheckInstanceType* instr) {
|
|
1779
1811
|
|
1780
1812
|
|
1781
1813
|
LInstruction* LChunkBuilder::DoCheckPrototypeMaps(HCheckPrototypeMaps* instr) {
|
1782
|
-
|
1814
|
+
LUnallocated* temp1 = TempRegister();
|
1783
1815
|
LOperand* temp2 = TempRegister();
|
1784
|
-
|
1785
|
-
return AssignEnvironment(result);
|
1816
|
+
LCheckPrototypeMaps* result = new(zone()) LCheckPrototypeMaps(temp1, temp2);
|
1817
|
+
return AssignEnvironment(Define(result, temp1));
|
1786
1818
|
}
|
1787
1819
|
|
1788
1820
|
|
@@ -1950,50 +1982,49 @@ LInstruction* LChunkBuilder::DoLoadExternalArrayPointer(
|
|
1950
1982
|
}
|
1951
1983
|
|
1952
1984
|
|
1953
|
-
LInstruction* LChunkBuilder::
|
1954
|
-
|
1955
|
-
|
1956
|
-
|
1957
|
-
LOperand* obj = UseRegisterAtStart(instr->object());
|
1958
|
-
LOperand* key = UseRegisterAtStart(instr->key());
|
1959
|
-
LLoadKeyedFastElement* result = new(zone()) LLoadKeyedFastElement(obj, key);
|
1960
|
-
if (instr->RequiresHoleCheck()) AssignEnvironment(result);
|
1961
|
-
return DefineAsRegister(result);
|
1962
|
-
}
|
1963
|
-
|
1964
|
-
|
1965
|
-
LInstruction* LChunkBuilder::DoLoadKeyedFastDoubleElement(
|
1966
|
-
HLoadKeyedFastDoubleElement* instr) {
|
1967
|
-
ASSERT(instr->representation().IsDouble());
|
1968
|
-
ASSERT(instr->key()->representation().IsInteger32());
|
1969
|
-
LOperand* elements = UseTempRegister(instr->elements());
|
1985
|
+
LInstruction* LChunkBuilder::DoLoadKeyed(HLoadKeyed* instr) {
|
1986
|
+
ASSERT(instr->key()->representation().IsInteger32() ||
|
1987
|
+
instr->key()->representation().IsTagged());
|
1988
|
+
ElementsKind elements_kind = instr->elements_kind();
|
1970
1989
|
LOperand* key = UseRegisterOrConstantAtStart(instr->key());
|
1971
|
-
|
1972
|
-
new(zone()) LLoadKeyedFastDoubleElement(elements, key);
|
1973
|
-
return AssignEnvironment(DefineAsRegister(result));
|
1974
|
-
}
|
1990
|
+
LLoadKeyed* result = NULL;
|
1975
1991
|
|
1992
|
+
if (!instr->is_external()) {
|
1993
|
+
LOperand* obj = NULL;
|
1994
|
+
if (instr->representation().IsDouble()) {
|
1995
|
+
obj = UseTempRegister(instr->elements());
|
1996
|
+
} else {
|
1997
|
+
ASSERT(instr->representation().IsTagged());
|
1998
|
+
obj = UseRegisterAtStart(instr->elements());
|
1999
|
+
}
|
2000
|
+
result = new(zone()) LLoadKeyed(obj, key);
|
2001
|
+
} else {
|
2002
|
+
ASSERT(
|
2003
|
+
(instr->representation().IsInteger32() &&
|
2004
|
+
(elements_kind != EXTERNAL_FLOAT_ELEMENTS) &&
|
2005
|
+
(elements_kind != EXTERNAL_DOUBLE_ELEMENTS)) ||
|
2006
|
+
(instr->representation().IsDouble() &&
|
2007
|
+
((elements_kind == EXTERNAL_FLOAT_ELEMENTS) ||
|
2008
|
+
(elements_kind == EXTERNAL_DOUBLE_ELEMENTS))));
|
2009
|
+
// float->double conversion on non-VFP2 requires an extra scratch
|
2010
|
+
// register. For convenience, just mark the elements register as "UseTemp"
|
2011
|
+
// so that it can be used as a temp during the float->double conversion
|
2012
|
+
// after it's no longer needed after the float load.
|
2013
|
+
bool needs_temp =
|
2014
|
+
!CpuFeatures::IsSupported(VFP2) &&
|
2015
|
+
(elements_kind == EXTERNAL_FLOAT_ELEMENTS);
|
2016
|
+
LOperand* external_pointer = needs_temp
|
2017
|
+
? UseTempRegister(instr->elements())
|
2018
|
+
: UseRegister(instr->elements());
|
2019
|
+
result = new(zone()) LLoadKeyed(external_pointer, key);
|
2020
|
+
}
|
1976
2021
|
|
1977
|
-
|
1978
|
-
HLoadKeyedSpecializedArrayElement* instr) {
|
1979
|
-
ElementsKind elements_kind = instr->elements_kind();
|
1980
|
-
ASSERT(
|
1981
|
-
(instr->representation().IsInteger32() &&
|
1982
|
-
(elements_kind != EXTERNAL_FLOAT_ELEMENTS) &&
|
1983
|
-
(elements_kind != EXTERNAL_DOUBLE_ELEMENTS)) ||
|
1984
|
-
(instr->representation().IsDouble() &&
|
1985
|
-
((elements_kind == EXTERNAL_FLOAT_ELEMENTS) ||
|
1986
|
-
(elements_kind == EXTERNAL_DOUBLE_ELEMENTS))));
|
1987
|
-
ASSERT(instr->key()->representation().IsInteger32());
|
1988
|
-
LOperand* external_pointer = UseRegister(instr->external_pointer());
|
1989
|
-
LOperand* key = UseRegisterOrConstant(instr->key());
|
1990
|
-
LLoadKeyedSpecializedArrayElement* result =
|
1991
|
-
new(zone()) LLoadKeyedSpecializedArrayElement(external_pointer, key);
|
1992
|
-
LInstruction* load_instr = DefineAsRegister(result);
|
2022
|
+
DefineAsRegister(result);
|
1993
2023
|
// An unsigned int array load might overflow and cause a deopt, make sure it
|
1994
2024
|
// has an environment.
|
1995
|
-
|
1996
|
-
|
2025
|
+
bool can_deoptimize = instr->RequiresHoleCheck() ||
|
2026
|
+
(elements_kind == EXTERNAL_UNSIGNED_INT_ELEMENTS);
|
2027
|
+
return can_deoptimize ? AssignEnvironment(result) : result;
|
1997
2028
|
}
|
1998
2029
|
|
1999
2030
|
|
@@ -2007,63 +2038,48 @@ LInstruction* LChunkBuilder::DoLoadKeyedGeneric(HLoadKeyedGeneric* instr) {
|
|
2007
2038
|
}
|
2008
2039
|
|
2009
2040
|
|
2010
|
-
LInstruction* LChunkBuilder::
|
2011
|
-
|
2012
|
-
bool needs_write_barrier = instr->NeedsWriteBarrier();
|
2013
|
-
ASSERT(instr->value()->representation().IsTagged());
|
2014
|
-
ASSERT(instr->object()->representation().IsTagged());
|
2015
|
-
ASSERT(instr->key()->representation().IsInteger32());
|
2016
|
-
|
2017
|
-
LOperand* obj = UseTempRegister(instr->object());
|
2018
|
-
LOperand* val = needs_write_barrier
|
2019
|
-
? UseTempRegister(instr->value())
|
2020
|
-
: UseRegisterAtStart(instr->value());
|
2021
|
-
LOperand* key = needs_write_barrier
|
2022
|
-
? UseTempRegister(instr->key())
|
2023
|
-
: UseRegisterOrConstantAtStart(instr->key());
|
2024
|
-
return new(zone()) LStoreKeyedFastElement(obj, key, val);
|
2025
|
-
}
|
2026
|
-
|
2027
|
-
|
2028
|
-
LInstruction* LChunkBuilder::DoStoreKeyedFastDoubleElement(
|
2029
|
-
HStoreKeyedFastDoubleElement* instr) {
|
2030
|
-
ASSERT(instr->value()->representation().IsDouble());
|
2031
|
-
ASSERT(instr->elements()->representation().IsTagged());
|
2032
|
-
ASSERT(instr->key()->representation().IsInteger32());
|
2033
|
-
|
2034
|
-
LOperand* elements = UseRegisterAtStart(instr->elements());
|
2035
|
-
LOperand* val = UseTempRegister(instr->value());
|
2036
|
-
LOperand* key = UseRegisterOrConstantAtStart(instr->key());
|
2041
|
+
LInstruction* LChunkBuilder::DoStoreKeyed(HStoreKeyed* instr) {
|
2042
|
+
ElementsKind elements_kind = instr->elements_kind();
|
2037
2043
|
|
2038
|
-
|
2039
|
-
|
2044
|
+
if (!instr->is_external()) {
|
2045
|
+
ASSERT(instr->elements()->representation().IsTagged());
|
2046
|
+
bool needs_write_barrier = instr->NeedsWriteBarrier();
|
2047
|
+
LOperand* object = NULL;
|
2048
|
+
LOperand* key = NULL;
|
2049
|
+
LOperand* val = NULL;
|
2050
|
+
|
2051
|
+
if (instr->value()->representation().IsDouble()) {
|
2052
|
+
object = UseRegisterAtStart(instr->elements());
|
2053
|
+
val = UseTempRegister(instr->value());
|
2054
|
+
key = UseRegisterOrConstantAtStart(instr->key());
|
2055
|
+
} else {
|
2056
|
+
ASSERT(instr->value()->representation().IsTagged());
|
2057
|
+
object = UseTempRegister(instr->elements());
|
2058
|
+
val = needs_write_barrier ? UseTempRegister(instr->value())
|
2059
|
+
: UseRegisterAtStart(instr->value());
|
2060
|
+
key = needs_write_barrier ? UseTempRegister(instr->key())
|
2061
|
+
: UseRegisterOrConstantAtStart(instr->key());
|
2062
|
+
}
|
2040
2063
|
|
2064
|
+
return new(zone()) LStoreKeyed(object, key, val);
|
2065
|
+
}
|
2041
2066
|
|
2042
|
-
LInstruction* LChunkBuilder::DoStoreKeyedSpecializedArrayElement(
|
2043
|
-
HStoreKeyedSpecializedArrayElement* instr) {
|
2044
|
-
ElementsKind elements_kind = instr->elements_kind();
|
2045
2067
|
ASSERT(
|
2046
2068
|
(instr->value()->representation().IsInteger32() &&
|
2047
2069
|
(elements_kind != EXTERNAL_FLOAT_ELEMENTS) &&
|
2048
2070
|
(elements_kind != EXTERNAL_DOUBLE_ELEMENTS)) ||
|
2049
2071
|
(instr->value()->representation().IsDouble() &&
|
2050
2072
|
((elements_kind == EXTERNAL_FLOAT_ELEMENTS) ||
|
2051
|
-
|
2052
|
-
ASSERT(instr->
|
2053
|
-
ASSERT(instr->key()->representation().IsInteger32());
|
2054
|
-
|
2055
|
-
LOperand* external_pointer = UseRegister(instr->external_pointer());
|
2073
|
+
(elements_kind == EXTERNAL_DOUBLE_ELEMENTS))));
|
2074
|
+
ASSERT(instr->elements()->representation().IsExternal());
|
2056
2075
|
bool val_is_temp_register =
|
2057
2076
|
elements_kind == EXTERNAL_PIXEL_ELEMENTS ||
|
2058
2077
|
elements_kind == EXTERNAL_FLOAT_ELEMENTS;
|
2059
|
-
LOperand* val = val_is_temp_register
|
2060
|
-
? UseTempRegister(instr->value())
|
2078
|
+
LOperand* val = val_is_temp_register ? UseTempRegister(instr->value())
|
2061
2079
|
: UseRegister(instr->value());
|
2062
|
-
LOperand* key =
|
2063
|
-
|
2064
|
-
return new(zone())
|
2065
|
-
key,
|
2066
|
-
val);
|
2080
|
+
LOperand* key = UseRegisterOrConstantAtStart(instr->key());
|
2081
|
+
LOperand* external_pointer = UseRegister(instr->elements());
|
2082
|
+
return new(zone()) LStoreKeyed(external_pointer, key, val);
|
2067
2083
|
}
|
2068
2084
|
|
2069
2085
|
|
@@ -2082,14 +2098,16 @@ LInstruction* LChunkBuilder::DoStoreKeyedGeneric(HStoreKeyedGeneric* instr) {
|
|
2082
2098
|
|
2083
2099
|
LInstruction* LChunkBuilder::DoTransitionElementsKind(
|
2084
2100
|
HTransitionElementsKind* instr) {
|
2085
|
-
|
2086
|
-
|
2087
|
-
if (IsSimpleMapChangeTransition(from_kind, to_kind)) {
|
2088
|
-
LOperand* object = UseRegister(instr->object());
|
2101
|
+
LOperand* object = UseRegister(instr->object());
|
2102
|
+
if (IsSimpleMapChangeTransition(instr->from_kind(), instr->to_kind())) {
|
2089
2103
|
LOperand* new_map_reg = TempRegister();
|
2090
2104
|
LTransitionElementsKind* result =
|
2091
2105
|
new(zone()) LTransitionElementsKind(object, new_map_reg, NULL);
|
2092
2106
|
return DefineSameAsFirst(result);
|
2107
|
+
} else if (FLAG_compiled_transitions) {
|
2108
|
+
LTransitionElementsKind* result =
|
2109
|
+
new(zone()) LTransitionElementsKind(object, NULL, NULL);
|
2110
|
+
return AssignPointerMap(result);
|
2093
2111
|
} else {
|
2094
2112
|
LOperand* object = UseFixed(instr->object(), r0);
|
2095
2113
|
LOperand* fixed_object_reg = FixedTemp(r2);
|
@@ -2098,11 +2116,21 @@ LInstruction* LChunkBuilder::DoTransitionElementsKind(
|
|
2098
2116
|
new(zone()) LTransitionElementsKind(object,
|
2099
2117
|
new_map_reg,
|
2100
2118
|
fixed_object_reg);
|
2101
|
-
return MarkAsCall(
|
2119
|
+
return MarkAsCall(result, instr);
|
2102
2120
|
}
|
2103
2121
|
}
|
2104
2122
|
|
2105
2123
|
|
2124
|
+
LInstruction* LChunkBuilder::DoTrapAllocationMemento(
|
2125
|
+
HTrapAllocationMemento* instr) {
|
2126
|
+
LOperand* object = UseRegister(instr->object());
|
2127
|
+
LOperand* temp = TempRegister();
|
2128
|
+
LTrapAllocationMemento* result =
|
2129
|
+
new(zone()) LTrapAllocationMemento(object, temp);
|
2130
|
+
return AssignEnvironment(result);
|
2131
|
+
}
|
2132
|
+
|
2133
|
+
|
2106
2134
|
LInstruction* LChunkBuilder::DoStoreNamedField(HStoreNamedField* instr) {
|
2107
2135
|
bool needs_write_barrier = instr->NeedsWriteBarrier();
|
2108
2136
|
bool needs_write_barrier_for_map = !instr->transition().is_null() &&
|
@@ -2169,7 +2197,19 @@ LInstruction* LChunkBuilder::DoStringLength(HStringLength* instr) {
|
|
2169
2197
|
|
2170
2198
|
|
2171
2199
|
LInstruction* LChunkBuilder::DoAllocateObject(HAllocateObject* instr) {
|
2172
|
-
|
2200
|
+
info()->MarkAsDeferredCalling();
|
2201
|
+
LAllocateObject* result =
|
2202
|
+
new(zone()) LAllocateObject(TempRegister(), TempRegister());
|
2203
|
+
return AssignPointerMap(DefineAsRegister(result));
|
2204
|
+
}
|
2205
|
+
|
2206
|
+
|
2207
|
+
LInstruction* LChunkBuilder::DoAllocate(HAllocate* instr) {
|
2208
|
+
info()->MarkAsDeferredCalling();
|
2209
|
+
LOperand* size = UseTempRegister(instr->size());
|
2210
|
+
LOperand* temp1 = TempRegister();
|
2211
|
+
LOperand* temp2 = TempRegister();
|
2212
|
+
LAllocate* result = new(zone()) LAllocate(size, temp1, temp2);
|
2173
2213
|
return AssignPointerMap(DefineAsRegister(result));
|
2174
2214
|
}
|
2175
2215
|
|
@@ -2208,6 +2248,7 @@ LInstruction* LChunkBuilder::DoDeleteProperty(HDeleteProperty* instr) {
|
|
2208
2248
|
|
2209
2249
|
|
2210
2250
|
LInstruction* LChunkBuilder::DoOsrEntry(HOsrEntry* instr) {
|
2251
|
+
ASSERT(argument_count_ == 0);
|
2211
2252
|
allocator_->MarkAsOsrEntry();
|
2212
2253
|
current_block_->last_environment()->set_ast_id(instr->ast_id());
|
2213
2254
|
return AssignEnvironment(new(zone()) LOsrEntry);
|
@@ -2215,8 +2256,17 @@ LInstruction* LChunkBuilder::DoOsrEntry(HOsrEntry* instr) {
|
|
2215
2256
|
|
2216
2257
|
|
2217
2258
|
LInstruction* LChunkBuilder::DoParameter(HParameter* instr) {
|
2218
|
-
|
2219
|
-
|
2259
|
+
LParameter* result = new(zone()) LParameter;
|
2260
|
+
if (instr->kind() == HParameter::STACK_PARAMETER) {
|
2261
|
+
int spill_index = chunk()->GetParameterStackSlot(instr->index());
|
2262
|
+
return DefineAsSpilled(result, spill_index);
|
2263
|
+
} else {
|
2264
|
+
ASSERT(info()->IsStub());
|
2265
|
+
CodeStubInterfaceDescriptor* descriptor =
|
2266
|
+
info()->code_stub()->GetInterfaceDescriptor(info()->isolate());
|
2267
|
+
Register reg = descriptor->register_params_[instr->index()];
|
2268
|
+
return DefineFixed(result, reg);
|
2269
|
+
}
|
2220
2270
|
}
|
2221
2271
|
|
2222
2272
|
|
@@ -2246,12 +2296,10 @@ LInstruction* LChunkBuilder::DoArgumentsObject(HArgumentsObject* instr) {
|
|
2246
2296
|
|
2247
2297
|
|
2248
2298
|
LInstruction* LChunkBuilder::DoAccessArgumentsAt(HAccessArgumentsAt* instr) {
|
2249
|
-
LOperand*
|
2299
|
+
LOperand* args = UseRegister(instr->arguments());
|
2250
2300
|
LOperand* length = UseTempRegister(instr->length());
|
2251
2301
|
LOperand* index = UseRegister(instr->index());
|
2252
|
-
LAccessArgumentsAt
|
2253
|
-
new(zone()) LAccessArgumentsAt(arguments, length, index);
|
2254
|
-
return AssignEnvironment(DefineAsRegister(result));
|
2302
|
+
return DefineAsRegister(new(zone()) LAccessArgumentsAt(args, length, index));
|
2255
2303
|
}
|
2256
2304
|
|
2257
2305
|
|
@@ -2286,7 +2334,7 @@ LInstruction* LChunkBuilder::DoSimulate(HSimulate* instr) {
|
|
2286
2334
|
env->set_ast_id(instr->ast_id());
|
2287
2335
|
|
2288
2336
|
env->Drop(instr->pop_count());
|
2289
|
-
for (int i =
|
2337
|
+
for (int i = instr->values()->length() - 1; i >= 0; --i) {
|
2290
2338
|
HValue* value = instr->values()->at(i);
|
2291
2339
|
if (instr->HasAssignedIndexAt(i)) {
|
2292
2340
|
env->Bind(instr->GetAssignedIndexAt(i), value);
|
@@ -2305,7 +2353,7 @@ LInstruction* LChunkBuilder::DoSimulate(HSimulate* instr) {
|
|
2305
2353
|
instruction_pending_deoptimization_environment_->
|
2306
2354
|
SetDeferredLazyDeoptimizationEnvironment(result->environment());
|
2307
2355
|
instruction_pending_deoptimization_environment_ = NULL;
|
2308
|
-
pending_deoptimization_ast_id_ =
|
2356
|
+
pending_deoptimization_ast_id_ = BailoutId::None();
|
2309
2357
|
return result;
|
2310
2358
|
}
|
2311
2359
|
|
@@ -2330,11 +2378,12 @@ LInstruction* LChunkBuilder::DoEnterInlined(HEnterInlined* instr) {
|
|
2330
2378
|
instr->arguments_count(),
|
2331
2379
|
instr->function(),
|
2332
2380
|
undefined,
|
2333
|
-
instr->
|
2334
|
-
instr->
|
2381
|
+
instr->inlining_kind(),
|
2382
|
+
instr->undefined_receiver());
|
2335
2383
|
if (instr->arguments_var() != NULL) {
|
2336
2384
|
inner->Bind(instr->arguments_var(), graph()->GetArgumentsObject());
|
2337
2385
|
}
|
2386
|
+
inner->set_entry(instr);
|
2338
2387
|
current_block_->UpdateEnvironment(inner);
|
2339
2388
|
chunk_->AddInlinedClosure(instr->closure());
|
2340
2389
|
return NULL;
|
@@ -2346,7 +2395,7 @@ LInstruction* LChunkBuilder::DoLeaveInlined(HLeaveInlined* instr) {
|
|
2346
2395
|
|
2347
2396
|
HEnvironment* env = current_block_->last_environment();
|
2348
2397
|
|
2349
|
-
if (
|
2398
|
+
if (env->entry()->arguments_pushed()) {
|
2350
2399
|
int argument_count = env->arguments_environment()->parameter_count();
|
2351
2400
|
pop = new(zone()) LDrop(argument_count);
|
2352
2401
|
argument_count_ -= argument_count;
|
@@ -2377,8 +2426,7 @@ LInstruction* LChunkBuilder::DoForInPrepareMap(HForInPrepareMap* instr) {
|
|
2377
2426
|
|
2378
2427
|
LInstruction* LChunkBuilder::DoForInCacheArray(HForInCacheArray* instr) {
|
2379
2428
|
LOperand* map = UseRegister(instr->map());
|
2380
|
-
return AssignEnvironment(DefineAsRegister(
|
2381
|
-
new(zone()) LForInCacheArray(map)));
|
2429
|
+
return AssignEnvironment(DefineAsRegister(new(zone()) LForInCacheArray(map)));
|
2382
2430
|
}
|
2383
2431
|
|
2384
2432
|
|