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
@@ -48,7 +48,7 @@ class BitVector;
|
|
48
48
|
class StringStream;
|
49
49
|
|
50
50
|
class LArgument;
|
51
|
-
class
|
51
|
+
class LPlatformChunk;
|
52
52
|
class LOperand;
|
53
53
|
class LUnallocated;
|
54
54
|
class LConstantOperand;
|
@@ -399,40 +399,6 @@ class LiveRange: public ZoneObject {
|
|
399
399
|
};
|
400
400
|
|
401
401
|
|
402
|
-
class GrowableBitVector BASE_EMBEDDED {
|
403
|
-
public:
|
404
|
-
GrowableBitVector() : bits_(NULL) { }
|
405
|
-
|
406
|
-
bool Contains(int value) const {
|
407
|
-
if (!InBitsRange(value)) return false;
|
408
|
-
return bits_->Contains(value);
|
409
|
-
}
|
410
|
-
|
411
|
-
void Add(int value, Zone* zone) {
|
412
|
-
EnsureCapacity(value, zone);
|
413
|
-
bits_->Add(value);
|
414
|
-
}
|
415
|
-
|
416
|
-
private:
|
417
|
-
static const int kInitialLength = 1024;
|
418
|
-
|
419
|
-
bool InBitsRange(int value) const {
|
420
|
-
return bits_ != NULL && bits_->length() > value;
|
421
|
-
}
|
422
|
-
|
423
|
-
void EnsureCapacity(int value, Zone* zone) {
|
424
|
-
if (InBitsRange(value)) return;
|
425
|
-
int new_length = bits_ == NULL ? kInitialLength : bits_->length();
|
426
|
-
while (new_length <= value) new_length *= 2;
|
427
|
-
BitVector* new_bits = new(zone) BitVector(new_length, zone);
|
428
|
-
if (bits_ != NULL) new_bits->CopyFrom(*bits_);
|
429
|
-
bits_ = new_bits;
|
430
|
-
}
|
431
|
-
|
432
|
-
BitVector* bits_;
|
433
|
-
};
|
434
|
-
|
435
|
-
|
436
402
|
class LAllocator BASE_EMBEDDED {
|
437
403
|
public:
|
438
404
|
LAllocator(int first_virtual_register, HGraph* graph);
|
@@ -455,8 +421,9 @@ class LAllocator BASE_EMBEDDED {
|
|
455
421
|
return &fixed_double_live_ranges_;
|
456
422
|
}
|
457
423
|
|
458
|
-
|
424
|
+
LPlatformChunk* chunk() const { return chunk_; }
|
459
425
|
HGraph* graph() const { return graph_; }
|
426
|
+
Zone* zone() const { return zone_; }
|
460
427
|
|
461
428
|
int GetVirtualRegister() {
|
462
429
|
if (next_virtual_register_ > LUnallocated::kMaxVirtualRegisters) {
|
@@ -478,6 +445,13 @@ class LAllocator BASE_EMBEDDED {
|
|
478
445
|
void Verify() const;
|
479
446
|
#endif
|
480
447
|
|
448
|
+
BitVector* assigned_registers() {
|
449
|
+
return assigned_registers_;
|
450
|
+
}
|
451
|
+
BitVector* assigned_double_registers() {
|
452
|
+
return assigned_double_registers_;
|
453
|
+
}
|
454
|
+
|
481
455
|
private:
|
482
456
|
void MeetRegisterConstraints();
|
483
457
|
void ResolvePhis();
|
@@ -570,6 +544,11 @@ class LAllocator BASE_EMBEDDED {
|
|
570
544
|
HBasicBlock* block,
|
571
545
|
HBasicBlock* pred);
|
572
546
|
|
547
|
+
inline void SetLiveRangeAssignedRegister(LiveRange* range,
|
548
|
+
int reg,
|
549
|
+
RegisterKind register_kind,
|
550
|
+
Zone* zone);
|
551
|
+
|
573
552
|
// Return parallel move that should be used to connect ranges split at the
|
574
553
|
// given position.
|
575
554
|
LParallelMove* GetConnectingParallelMove(LifetimePosition pos);
|
@@ -597,7 +576,7 @@ class LAllocator BASE_EMBEDDED {
|
|
597
576
|
|
598
577
|
Zone* zone_;
|
599
578
|
|
600
|
-
|
579
|
+
LPlatformChunk* chunk_;
|
601
580
|
|
602
581
|
// During liveness analysis keep a mapping from block id to live_in sets
|
603
582
|
// for blocks already analyzed.
|
@@ -607,9 +586,9 @@ class LAllocator BASE_EMBEDDED {
|
|
607
586
|
ZoneList<LiveRange*> live_ranges_;
|
608
587
|
|
609
588
|
// Lists of live ranges
|
610
|
-
EmbeddedVector<LiveRange*, Register::
|
589
|
+
EmbeddedVector<LiveRange*, Register::kMaxNumAllocatableRegisters>
|
611
590
|
fixed_live_ranges_;
|
612
|
-
EmbeddedVector<LiveRange*, DoubleRegister::
|
591
|
+
EmbeddedVector<LiveRange*, DoubleRegister::kMaxNumAllocatableRegisters>
|
613
592
|
fixed_double_live_ranges_;
|
614
593
|
ZoneList<LiveRange*> unhandled_live_ranges_;
|
615
594
|
ZoneList<LiveRange*> active_live_ranges_;
|
@@ -624,6 +603,9 @@ class LAllocator BASE_EMBEDDED {
|
|
624
603
|
RegisterKind mode_;
|
625
604
|
int num_registers_;
|
626
605
|
|
606
|
+
BitVector* assigned_registers_;
|
607
|
+
BitVector* assigned_double_registers_;
|
608
|
+
|
627
609
|
HGraph* graph_;
|
628
610
|
|
629
611
|
bool has_osr_entry_;
|
data/vendor/v8/src/lithium.cc
CHANGED
@@ -27,6 +27,23 @@
|
|
27
27
|
|
28
28
|
#include "v8.h"
|
29
29
|
#include "lithium.h"
|
30
|
+
#include "scopes.h"
|
31
|
+
|
32
|
+
#if V8_TARGET_ARCH_IA32
|
33
|
+
#include "ia32/lithium-ia32.h"
|
34
|
+
#include "ia32/lithium-codegen-ia32.h"
|
35
|
+
#elif V8_TARGET_ARCH_X64
|
36
|
+
#include "x64/lithium-x64.h"
|
37
|
+
#include "x64/lithium-codegen-x64.h"
|
38
|
+
#elif V8_TARGET_ARCH_ARM
|
39
|
+
#include "arm/lithium-arm.h"
|
40
|
+
#include "arm/lithium-codegen-arm.h"
|
41
|
+
#elif V8_TARGET_ARCH_MIPS
|
42
|
+
#include "mips/lithium-mips.h"
|
43
|
+
#include "mips/lithium-codegen-mips.h"
|
44
|
+
#else
|
45
|
+
#error "Unknown architecture."
|
46
|
+
#endif
|
30
47
|
|
31
48
|
namespace v8 {
|
32
49
|
namespace internal {
|
@@ -156,7 +173,7 @@ void LParallelMove::PrintDataTo(StringStream* stream) const {
|
|
156
173
|
|
157
174
|
|
158
175
|
void LEnvironment::PrintTo(StringStream* stream) {
|
159
|
-
stream->Add("[id=%d|", ast_id());
|
176
|
+
stream->Add("[id=%d|", ast_id().ToInt());
|
160
177
|
stream->Add("[parameters=%d|", parameter_count());
|
161
178
|
stream->Add("[arguments_stack_height=%d|", arguments_stack_height());
|
162
179
|
for (int i = 0; i < values_.length(); ++i) {
|
@@ -171,11 +188,11 @@ void LEnvironment::PrintTo(StringStream* stream) {
|
|
171
188
|
}
|
172
189
|
|
173
190
|
|
174
|
-
void LPointerMap::RecordPointer(LOperand* op) {
|
191
|
+
void LPointerMap::RecordPointer(LOperand* op, Zone* zone) {
|
175
192
|
// Do not record arguments as pointers.
|
176
193
|
if (op->IsStackSlot() && op->index() < 0) return;
|
177
194
|
ASSERT(!op->IsDoubleRegister() && !op->IsDoubleStackSlot());
|
178
|
-
pointer_operands_.Add(op);
|
195
|
+
pointer_operands_.Add(op, zone);
|
179
196
|
}
|
180
197
|
|
181
198
|
|
@@ -192,11 +209,11 @@ void LPointerMap::RemovePointer(LOperand* op) {
|
|
192
209
|
}
|
193
210
|
|
194
211
|
|
195
|
-
void LPointerMap::RecordUntagged(LOperand* op) {
|
212
|
+
void LPointerMap::RecordUntagged(LOperand* op, Zone* zone) {
|
196
213
|
// Do not record arguments as pointers.
|
197
214
|
if (op->IsStackSlot() && op->index() < 0) return;
|
198
215
|
ASSERT(!op->IsDoubleRegister() && !op->IsDoubleStackSlot());
|
199
|
-
untagged_operands_.Add(op);
|
216
|
+
untagged_operands_.Add(op, zone);
|
200
217
|
}
|
201
218
|
|
202
219
|
|
@@ -240,4 +257,241 @@ int ElementsKindToShiftSize(ElementsKind elements_kind) {
|
|
240
257
|
}
|
241
258
|
|
242
259
|
|
260
|
+
LChunk::LChunk(CompilationInfo* info, HGraph* graph)
|
261
|
+
: spill_slot_count_(0),
|
262
|
+
info_(info),
|
263
|
+
graph_(graph),
|
264
|
+
instructions_(32, graph->zone()),
|
265
|
+
pointer_maps_(8, graph->zone()),
|
266
|
+
inlined_closures_(1, graph->zone()) {
|
267
|
+
}
|
268
|
+
|
269
|
+
|
270
|
+
LLabel* LChunk::GetLabel(int block_id) const {
|
271
|
+
HBasicBlock* block = graph_->blocks()->at(block_id);
|
272
|
+
int first_instruction = block->first_instruction_index();
|
273
|
+
return LLabel::cast(instructions_[first_instruction]);
|
274
|
+
}
|
275
|
+
|
276
|
+
|
277
|
+
int LChunk::LookupDestination(int block_id) const {
|
278
|
+
LLabel* cur = GetLabel(block_id);
|
279
|
+
while (cur->replacement() != NULL) {
|
280
|
+
cur = cur->replacement();
|
281
|
+
}
|
282
|
+
return cur->block_id();
|
283
|
+
}
|
284
|
+
|
285
|
+
Label* LChunk::GetAssemblyLabel(int block_id) const {
|
286
|
+
LLabel* label = GetLabel(block_id);
|
287
|
+
ASSERT(!label->HasReplacement());
|
288
|
+
return label->label();
|
289
|
+
}
|
290
|
+
|
291
|
+
void LChunk::MarkEmptyBlocks() {
|
292
|
+
HPhase phase("L_Mark empty blocks", this);
|
293
|
+
for (int i = 0; i < graph()->blocks()->length(); ++i) {
|
294
|
+
HBasicBlock* block = graph()->blocks()->at(i);
|
295
|
+
int first = block->first_instruction_index();
|
296
|
+
int last = block->last_instruction_index();
|
297
|
+
LInstruction* first_instr = instructions()->at(first);
|
298
|
+
LInstruction* last_instr = instructions()->at(last);
|
299
|
+
|
300
|
+
LLabel* label = LLabel::cast(first_instr);
|
301
|
+
if (last_instr->IsGoto()) {
|
302
|
+
LGoto* goto_instr = LGoto::cast(last_instr);
|
303
|
+
if (label->IsRedundant() &&
|
304
|
+
!label->is_loop_header()) {
|
305
|
+
bool can_eliminate = true;
|
306
|
+
for (int i = first + 1; i < last && can_eliminate; ++i) {
|
307
|
+
LInstruction* cur = instructions()->at(i);
|
308
|
+
if (cur->IsGap()) {
|
309
|
+
LGap* gap = LGap::cast(cur);
|
310
|
+
if (!gap->IsRedundant()) {
|
311
|
+
can_eliminate = false;
|
312
|
+
}
|
313
|
+
} else {
|
314
|
+
can_eliminate = false;
|
315
|
+
}
|
316
|
+
}
|
317
|
+
|
318
|
+
if (can_eliminate) {
|
319
|
+
label->set_replacement(GetLabel(goto_instr->block_id()));
|
320
|
+
}
|
321
|
+
}
|
322
|
+
}
|
323
|
+
}
|
324
|
+
}
|
325
|
+
|
326
|
+
|
327
|
+
void LChunk::AddInstruction(LInstruction* instr, HBasicBlock* block) {
|
328
|
+
LInstructionGap* gap = new(graph_->zone()) LInstructionGap(block);
|
329
|
+
int index = -1;
|
330
|
+
if (instr->IsControl()) {
|
331
|
+
instructions_.Add(gap, zone());
|
332
|
+
index = instructions_.length();
|
333
|
+
instructions_.Add(instr, zone());
|
334
|
+
} else {
|
335
|
+
index = instructions_.length();
|
336
|
+
instructions_.Add(instr, zone());
|
337
|
+
instructions_.Add(gap, zone());
|
338
|
+
}
|
339
|
+
if (instr->HasPointerMap()) {
|
340
|
+
pointer_maps_.Add(instr->pointer_map(), zone());
|
341
|
+
instr->pointer_map()->set_lithium_position(index);
|
342
|
+
}
|
343
|
+
}
|
344
|
+
|
345
|
+
|
346
|
+
LConstantOperand* LChunk::DefineConstantOperand(HConstant* constant) {
|
347
|
+
return LConstantOperand::Create(constant->id(), zone());
|
348
|
+
}
|
349
|
+
|
350
|
+
|
351
|
+
int LChunk::GetParameterStackSlot(int index) const {
|
352
|
+
// The receiver is at index 0, the first parameter at index 1, so we
|
353
|
+
// shift all parameter indexes down by the number of parameters, and
|
354
|
+
// make sure they end up negative so they are distinguishable from
|
355
|
+
// spill slots.
|
356
|
+
int result = index - info()->scope()->num_parameters() - 1;
|
357
|
+
ASSERT(result < 0);
|
358
|
+
return result;
|
359
|
+
}
|
360
|
+
|
361
|
+
|
362
|
+
// A parameter relative to ebp in the arguments stub.
|
363
|
+
int LChunk::ParameterAt(int index) {
|
364
|
+
ASSERT(-1 <= index); // -1 is the receiver.
|
365
|
+
return (1 + info()->scope()->num_parameters() - index) *
|
366
|
+
kPointerSize;
|
367
|
+
}
|
368
|
+
|
369
|
+
|
370
|
+
LGap* LChunk::GetGapAt(int index) const {
|
371
|
+
return LGap::cast(instructions_[index]);
|
372
|
+
}
|
373
|
+
|
374
|
+
|
375
|
+
bool LChunk::IsGapAt(int index) const {
|
376
|
+
return instructions_[index]->IsGap();
|
377
|
+
}
|
378
|
+
|
379
|
+
|
380
|
+
int LChunk::NearestGapPos(int index) const {
|
381
|
+
while (!IsGapAt(index)) index--;
|
382
|
+
return index;
|
383
|
+
}
|
384
|
+
|
385
|
+
|
386
|
+
void LChunk::AddGapMove(int index, LOperand* from, LOperand* to) {
|
387
|
+
GetGapAt(index)->GetOrCreateParallelMove(
|
388
|
+
LGap::START, zone())->AddMove(from, to, zone());
|
389
|
+
}
|
390
|
+
|
391
|
+
|
392
|
+
HConstant* LChunk::LookupConstant(LConstantOperand* operand) const {
|
393
|
+
return HConstant::cast(graph_->LookupValue(operand->index()));
|
394
|
+
}
|
395
|
+
|
396
|
+
|
397
|
+
Representation LChunk::LookupLiteralRepresentation(
|
398
|
+
LConstantOperand* operand) const {
|
399
|
+
return graph_->LookupValue(operand->index())->representation();
|
400
|
+
}
|
401
|
+
|
402
|
+
|
403
|
+
LChunk* LChunk::NewChunk(HGraph* graph) {
|
404
|
+
NoHandleAllocation no_handles;
|
405
|
+
AssertNoAllocation no_gc;
|
406
|
+
|
407
|
+
int values = graph->GetMaximumValueID();
|
408
|
+
CompilationInfo* info = graph->info();
|
409
|
+
if (values > LUnallocated::kMaxVirtualRegisters) {
|
410
|
+
info->set_bailout_reason("not enough virtual registers for values");
|
411
|
+
return NULL;
|
412
|
+
}
|
413
|
+
LAllocator allocator(values, graph);
|
414
|
+
LChunkBuilder builder(info, graph, &allocator);
|
415
|
+
LChunk* chunk = builder.Build();
|
416
|
+
if (chunk == NULL) return NULL;
|
417
|
+
|
418
|
+
if (!allocator.Allocate(chunk)) {
|
419
|
+
info->set_bailout_reason("not enough virtual registers (regalloc)");
|
420
|
+
return NULL;
|
421
|
+
}
|
422
|
+
|
423
|
+
chunk->set_allocated_double_registers(
|
424
|
+
allocator.assigned_double_registers());
|
425
|
+
|
426
|
+
return chunk;
|
427
|
+
}
|
428
|
+
|
429
|
+
|
430
|
+
Handle<Code> LChunk::Codegen(Code::Kind kind) {
|
431
|
+
MacroAssembler assembler(info()->isolate(), NULL, 0);
|
432
|
+
LCodeGen generator(this, &assembler, info());
|
433
|
+
|
434
|
+
MarkEmptyBlocks();
|
435
|
+
|
436
|
+
if (generator.GenerateCode()) {
|
437
|
+
if (FLAG_trace_codegen) {
|
438
|
+
PrintF("Crankshaft Compiler - ");
|
439
|
+
}
|
440
|
+
CodeGenerator::MakeCodePrologue(info());
|
441
|
+
Code::Flags flags = Code::ComputeFlags(kind);
|
442
|
+
Handle<Code> code =
|
443
|
+
CodeGenerator::MakeCodeEpilogue(&assembler, flags, info());
|
444
|
+
generator.FinishCode(code);
|
445
|
+
if (FLAG_weak_embedded_maps_in_optimized_code) {
|
446
|
+
RegisterDependentCodeForEmbeddedMaps(code);
|
447
|
+
}
|
448
|
+
CodeGenerator::PrintCode(code, info());
|
449
|
+
return code;
|
450
|
+
}
|
451
|
+
return Handle<Code>::null();
|
452
|
+
}
|
453
|
+
|
454
|
+
|
455
|
+
void LChunk::RegisterDependentCodeForEmbeddedMaps(Handle<Code> code) {
|
456
|
+
ZoneList<Handle<Map> > maps(1, zone());
|
457
|
+
int mode_mask = RelocInfo::ModeMask(RelocInfo::EMBEDDED_OBJECT);
|
458
|
+
for (RelocIterator it(*code, mode_mask); !it.done(); it.next()) {
|
459
|
+
RelocInfo::Mode mode = it.rinfo()->rmode();
|
460
|
+
if (mode == RelocInfo::EMBEDDED_OBJECT &&
|
461
|
+
it.rinfo()->target_object()->IsMap()) {
|
462
|
+
Handle<Map> map(Map::cast(it.rinfo()->target_object()));
|
463
|
+
if (map->CanTransition()) {
|
464
|
+
maps.Add(map, zone());
|
465
|
+
}
|
466
|
+
}
|
467
|
+
}
|
468
|
+
#ifdef VERIFY_HEAP
|
469
|
+
// This disables verification of weak embedded maps after full GC.
|
470
|
+
// AddDependentCode can cause a GC, which would observe the state where
|
471
|
+
// this code is not yet in the depended code lists of the embedded maps.
|
472
|
+
NoWeakEmbeddedMapsVerificationScope disable_verification_of_embedded_maps;
|
473
|
+
#endif
|
474
|
+
for (int i = 0; i < maps.length(); i++) {
|
475
|
+
maps.at(i)->AddDependentCode(code);
|
476
|
+
}
|
477
|
+
}
|
478
|
+
|
479
|
+
|
480
|
+
void LChunk::set_allocated_double_registers(BitVector* allocated_registers) {
|
481
|
+
allocated_double_registers_ = allocated_registers;
|
482
|
+
BitVector* doubles = allocated_double_registers();
|
483
|
+
BitVector::Iterator iterator(doubles);
|
484
|
+
while (!iterator.Done()) {
|
485
|
+
if (info()->saves_caller_doubles()) {
|
486
|
+
if (kDoubleSize == kPointerSize * 2) {
|
487
|
+
spill_slot_count_ += 2;
|
488
|
+
} else {
|
489
|
+
spill_slot_count_++;
|
490
|
+
}
|
491
|
+
}
|
492
|
+
iterator.Advance();
|
493
|
+
}
|
494
|
+
}
|
495
|
+
|
496
|
+
|
243
497
|
} } // namespace v8::internal
|
data/vendor/v8/src/lithium.h
CHANGED
@@ -133,13 +133,15 @@ class LUnallocated: public LOperand {
|
|
133
133
|
// index in the upper bits.
|
134
134
|
static const int kPolicyWidth = 3;
|
135
135
|
static const int kLifetimeWidth = 1;
|
136
|
-
static const int kVirtualRegisterWidth =
|
136
|
+
static const int kVirtualRegisterWidth = 15;
|
137
137
|
|
138
138
|
static const int kPolicyShift = kKindFieldWidth;
|
139
139
|
static const int kLifetimeShift = kPolicyShift + kPolicyWidth;
|
140
140
|
static const int kVirtualRegisterShift = kLifetimeShift + kLifetimeWidth;
|
141
141
|
static const int kFixedIndexShift =
|
142
142
|
kVirtualRegisterShift + kVirtualRegisterWidth;
|
143
|
+
static const int kFixedIndexWidth = 32 - kFixedIndexShift;
|
144
|
+
STATIC_ASSERT(kFixedIndexWidth > 5);
|
143
145
|
|
144
146
|
class PolicyField : public BitField<Policy, kPolicyShift, kPolicyWidth> { };
|
145
147
|
|
@@ -154,8 +156,8 @@ class LUnallocated: public LOperand {
|
|
154
156
|
};
|
155
157
|
|
156
158
|
static const int kMaxVirtualRegisters = 1 << kVirtualRegisterWidth;
|
157
|
-
static const int kMaxFixedIndex =
|
158
|
-
static const int kMinFixedIndex = -
|
159
|
+
static const int kMaxFixedIndex = (1 << (kFixedIndexWidth - 1)) - 1;
|
160
|
+
static const int kMinFixedIndex = -(1 << (kFixedIndexWidth - 1));
|
159
161
|
|
160
162
|
bool HasAnyPolicy() const {
|
161
163
|
return policy() == ANY;
|
@@ -187,8 +189,8 @@ class LUnallocated: public LOperand {
|
|
187
189
|
value_ = VirtualRegisterField::update(value_, id);
|
188
190
|
}
|
189
191
|
|
190
|
-
LUnallocated* CopyUnconstrained() {
|
191
|
-
LUnallocated* result = new LUnallocated(ANY);
|
192
|
+
LUnallocated* CopyUnconstrained(Zone* zone) {
|
193
|
+
LUnallocated* result = new(zone) LUnallocated(ANY);
|
192
194
|
result->set_virtual_register(virtual_register());
|
193
195
|
return result;
|
194
196
|
}
|
@@ -260,10 +262,10 @@ class LMoveOperands BASE_EMBEDDED {
|
|
260
262
|
|
261
263
|
class LConstantOperand: public LOperand {
|
262
264
|
public:
|
263
|
-
static LConstantOperand* Create(int index) {
|
265
|
+
static LConstantOperand* Create(int index, Zone* zone) {
|
264
266
|
ASSERT(index >= 0);
|
265
267
|
if (index < kNumCachedOperands) return &cache[index];
|
266
|
-
return new LConstantOperand(index);
|
268
|
+
return new(zone) LConstantOperand(index);
|
267
269
|
}
|
268
270
|
|
269
271
|
static LConstantOperand* cast(LOperand* op) {
|
@@ -296,10 +298,10 @@ class LArgument: public LOperand {
|
|
296
298
|
|
297
299
|
class LStackSlot: public LOperand {
|
298
300
|
public:
|
299
|
-
static LStackSlot* Create(int index) {
|
301
|
+
static LStackSlot* Create(int index, Zone* zone) {
|
300
302
|
ASSERT(index >= 0);
|
301
303
|
if (index < kNumCachedOperands) return &cache[index];
|
302
|
-
return new LStackSlot(index);
|
304
|
+
return new(zone) LStackSlot(index);
|
303
305
|
}
|
304
306
|
|
305
307
|
static LStackSlot* cast(LOperand* op) {
|
@@ -321,10 +323,10 @@ class LStackSlot: public LOperand {
|
|
321
323
|
|
322
324
|
class LDoubleStackSlot: public LOperand {
|
323
325
|
public:
|
324
|
-
static LDoubleStackSlot* Create(int index) {
|
326
|
+
static LDoubleStackSlot* Create(int index, Zone* zone) {
|
325
327
|
ASSERT(index >= 0);
|
326
328
|
if (index < kNumCachedOperands) return &cache[index];
|
327
|
-
return new LDoubleStackSlot(index);
|
329
|
+
return new(zone) LDoubleStackSlot(index);
|
328
330
|
}
|
329
331
|
|
330
332
|
static LDoubleStackSlot* cast(LOperand* op) {
|
@@ -346,10 +348,10 @@ class LDoubleStackSlot: public LOperand {
|
|
346
348
|
|
347
349
|
class LRegister: public LOperand {
|
348
350
|
public:
|
349
|
-
static LRegister* Create(int index) {
|
351
|
+
static LRegister* Create(int index, Zone* zone) {
|
350
352
|
ASSERT(index >= 0);
|
351
353
|
if (index < kNumCachedOperands) return &cache[index];
|
352
|
-
return new LRegister(index);
|
354
|
+
return new(zone) LRegister(index);
|
353
355
|
}
|
354
356
|
|
355
357
|
static LRegister* cast(LOperand* op) {
|
@@ -371,10 +373,10 @@ class LRegister: public LOperand {
|
|
371
373
|
|
372
374
|
class LDoubleRegister: public LOperand {
|
373
375
|
public:
|
374
|
-
static LDoubleRegister* Create(int index) {
|
376
|
+
static LDoubleRegister* Create(int index, Zone* zone) {
|
375
377
|
ASSERT(index >= 0);
|
376
378
|
if (index < kNumCachedOperands) return &cache[index];
|
377
|
-
return new LDoubleRegister(index);
|
379
|
+
return new(zone) LDoubleRegister(index);
|
378
380
|
}
|
379
381
|
|
380
382
|
static LDoubleRegister* cast(LOperand* op) {
|
@@ -396,10 +398,10 @@ class LDoubleRegister: public LOperand {
|
|
396
398
|
|
397
399
|
class LParallelMove : public ZoneObject {
|
398
400
|
public:
|
399
|
-
LParallelMove() : move_operands_(4) { }
|
401
|
+
explicit LParallelMove(Zone* zone) : move_operands_(4, zone) { }
|
400
402
|
|
401
|
-
void AddMove(LOperand* from, LOperand* to) {
|
402
|
-
move_operands_.Add(LMoveOperands(from, to));
|
403
|
+
void AddMove(LOperand* from, LOperand* to, Zone* zone) {
|
404
|
+
move_operands_.Add(LMoveOperands(from, to), zone);
|
403
405
|
}
|
404
406
|
|
405
407
|
bool IsRedundant() const;
|
@@ -417,9 +419,9 @@ class LParallelMove : public ZoneObject {
|
|
417
419
|
|
418
420
|
class LPointerMap: public ZoneObject {
|
419
421
|
public:
|
420
|
-
explicit LPointerMap(int position)
|
421
|
-
: pointer_operands_(8),
|
422
|
-
untagged_operands_(0),
|
422
|
+
explicit LPointerMap(int position, Zone* zone)
|
423
|
+
: pointer_operands_(8, zone),
|
424
|
+
untagged_operands_(0, zone),
|
423
425
|
position_(position),
|
424
426
|
lithium_position_(-1) { }
|
425
427
|
|
@@ -438,9 +440,9 @@ class LPointerMap: public ZoneObject {
|
|
438
440
|
lithium_position_ = pos;
|
439
441
|
}
|
440
442
|
|
441
|
-
void RecordPointer(LOperand* op);
|
443
|
+
void RecordPointer(LOperand* op, Zone* zone);
|
442
444
|
void RemovePointer(LOperand* op);
|
443
|
-
void RecordUntagged(LOperand* op);
|
445
|
+
void RecordUntagged(LOperand* op, Zone* zone);
|
444
446
|
void PrintTo(StringStream* stream);
|
445
447
|
|
446
448
|
private:
|
@@ -455,11 +457,13 @@ class LEnvironment: public ZoneObject {
|
|
455
457
|
public:
|
456
458
|
LEnvironment(Handle<JSFunction> closure,
|
457
459
|
FrameType frame_type,
|
458
|
-
|
460
|
+
BailoutId ast_id,
|
459
461
|
int parameter_count,
|
460
462
|
int argument_count,
|
461
463
|
int value_count,
|
462
|
-
LEnvironment* outer
|
464
|
+
LEnvironment* outer,
|
465
|
+
HEnterInlined* entry,
|
466
|
+
Zone* zone)
|
463
467
|
: closure_(closure),
|
464
468
|
frame_type_(frame_type),
|
465
469
|
arguments_stack_height_(argument_count),
|
@@ -468,18 +472,21 @@ class LEnvironment: public ZoneObject {
|
|
468
472
|
ast_id_(ast_id),
|
469
473
|
parameter_count_(parameter_count),
|
470
474
|
pc_offset_(-1),
|
471
|
-
values_(value_count),
|
472
|
-
is_tagged_(value_count,
|
475
|
+
values_(value_count, zone),
|
476
|
+
is_tagged_(value_count, zone),
|
477
|
+
is_uint32_(value_count, zone),
|
473
478
|
spilled_registers_(NULL),
|
474
479
|
spilled_double_registers_(NULL),
|
475
|
-
outer_(outer)
|
480
|
+
outer_(outer),
|
481
|
+
entry_(entry),
|
482
|
+
zone_(zone) { }
|
476
483
|
|
477
484
|
Handle<JSFunction> closure() const { return closure_; }
|
478
485
|
FrameType frame_type() const { return frame_type_; }
|
479
486
|
int arguments_stack_height() const { return arguments_stack_height_; }
|
480
487
|
int deoptimization_index() const { return deoptimization_index_; }
|
481
488
|
int translation_index() const { return translation_index_; }
|
482
|
-
|
489
|
+
BailoutId ast_id() const { return ast_id_; }
|
483
490
|
int parameter_count() const { return parameter_count_; }
|
484
491
|
int pc_offset() const { return pc_offset_; }
|
485
492
|
LOperand** spilled_registers() const { return spilled_registers_; }
|
@@ -488,18 +495,30 @@ class LEnvironment: public ZoneObject {
|
|
488
495
|
}
|
489
496
|
const ZoneList<LOperand*>* values() const { return &values_; }
|
490
497
|
LEnvironment* outer() const { return outer_; }
|
498
|
+
HEnterInlined* entry() { return entry_; }
|
491
499
|
|
492
|
-
void AddValue(LOperand* operand,
|
493
|
-
|
500
|
+
void AddValue(LOperand* operand,
|
501
|
+
Representation representation,
|
502
|
+
bool is_uint32) {
|
503
|
+
values_.Add(operand, zone());
|
494
504
|
if (representation.IsTagged()) {
|
505
|
+
ASSERT(!is_uint32);
|
495
506
|
is_tagged_.Add(values_.length() - 1);
|
496
507
|
}
|
508
|
+
|
509
|
+
if (is_uint32) {
|
510
|
+
is_uint32_.Add(values_.length() - 1);
|
511
|
+
}
|
497
512
|
}
|
498
513
|
|
499
514
|
bool HasTaggedValueAt(int index) const {
|
500
515
|
return is_tagged_.Contains(index);
|
501
516
|
}
|
502
517
|
|
518
|
+
bool HasUint32ValueAt(int index) const {
|
519
|
+
return is_uint32_.Contains(index);
|
520
|
+
}
|
521
|
+
|
503
522
|
void Register(int deoptimization_index,
|
504
523
|
int translation_index,
|
505
524
|
int pc_offset) {
|
@@ -520,17 +539,20 @@ class LEnvironment: public ZoneObject {
|
|
520
539
|
|
521
540
|
void PrintTo(StringStream* stream);
|
522
541
|
|
542
|
+
Zone* zone() const { return zone_; }
|
543
|
+
|
523
544
|
private:
|
524
545
|
Handle<JSFunction> closure_;
|
525
546
|
FrameType frame_type_;
|
526
547
|
int arguments_stack_height_;
|
527
548
|
int deoptimization_index_;
|
528
549
|
int translation_index_;
|
529
|
-
|
550
|
+
BailoutId ast_id_;
|
530
551
|
int parameter_count_;
|
531
552
|
int pc_offset_;
|
532
553
|
ZoneList<LOperand*> values_;
|
533
554
|
BitVector is_tagged_;
|
555
|
+
BitVector is_uint32_;
|
534
556
|
|
535
557
|
// Allocation index indexed arrays of spill slot operands for registers
|
536
558
|
// that are also in spill slots at an OSR entry. NULL for environments
|
@@ -539,6 +561,9 @@ class LEnvironment: public ZoneObject {
|
|
539
561
|
LOperand** spilled_double_registers_;
|
540
562
|
|
541
563
|
LEnvironment* outer_;
|
564
|
+
HEnterInlined* entry_;
|
565
|
+
|
566
|
+
Zone* zone_;
|
542
567
|
};
|
543
568
|
|
544
569
|
|
@@ -556,6 +581,7 @@ class ShallowIterator BASE_EMBEDDED {
|
|
556
581
|
|
557
582
|
LOperand* Current() {
|
558
583
|
ASSERT(!Done());
|
584
|
+
ASSERT(env_->values()->at(current_) != NULL);
|
559
585
|
return env_->values()->at(current_);
|
560
586
|
}
|
561
587
|
|
@@ -597,6 +623,7 @@ class DeepIterator BASE_EMBEDDED {
|
|
597
623
|
|
598
624
|
LOperand* Current() {
|
599
625
|
ASSERT(!current_iterator_.Done());
|
626
|
+
ASSERT(current_iterator_.Current() != NULL);
|
600
627
|
return current_iterator_.Current();
|
601
628
|
}
|
602
629
|
|
@@ -616,8 +643,80 @@ class DeepIterator BASE_EMBEDDED {
|
|
616
643
|
};
|
617
644
|
|
618
645
|
|
646
|
+
class LPlatformChunk;
|
647
|
+
class LGap;
|
648
|
+
class LLabel;
|
649
|
+
|
650
|
+
// Superclass providing data and behavior common to all the
|
651
|
+
// arch-specific LPlatformChunk classes.
|
652
|
+
class LChunk: public ZoneObject {
|
653
|
+
public:
|
654
|
+
static LChunk* NewChunk(HGraph* graph);
|
655
|
+
|
656
|
+
void AddInstruction(LInstruction* instruction, HBasicBlock* block);
|
657
|
+
LConstantOperand* DefineConstantOperand(HConstant* constant);
|
658
|
+
HConstant* LookupConstant(LConstantOperand* operand) const;
|
659
|
+
Representation LookupLiteralRepresentation(LConstantOperand* operand) const;
|
660
|
+
|
661
|
+
int ParameterAt(int index);
|
662
|
+
int GetParameterStackSlot(int index) const;
|
663
|
+
int spill_slot_count() const { return spill_slot_count_; }
|
664
|
+
CompilationInfo* info() const { return info_; }
|
665
|
+
HGraph* graph() const { return graph_; }
|
666
|
+
const ZoneList<LInstruction*>* instructions() const { return &instructions_; }
|
667
|
+
void AddGapMove(int index, LOperand* from, LOperand* to);
|
668
|
+
LGap* GetGapAt(int index) const;
|
669
|
+
bool IsGapAt(int index) const;
|
670
|
+
int NearestGapPos(int index) const;
|
671
|
+
void MarkEmptyBlocks();
|
672
|
+
const ZoneList<LPointerMap*>* pointer_maps() const { return &pointer_maps_; }
|
673
|
+
LLabel* GetLabel(int block_id) const;
|
674
|
+
int LookupDestination(int block_id) const;
|
675
|
+
Label* GetAssemblyLabel(int block_id) const;
|
676
|
+
|
677
|
+
const ZoneList<Handle<JSFunction> >* inlined_closures() const {
|
678
|
+
return &inlined_closures_;
|
679
|
+
}
|
680
|
+
|
681
|
+
void AddInlinedClosure(Handle<JSFunction> closure) {
|
682
|
+
inlined_closures_.Add(closure, zone());
|
683
|
+
}
|
684
|
+
|
685
|
+
Zone* zone() const { return info_->zone(); }
|
686
|
+
|
687
|
+
Handle<Code> Codegen(Code::Kind kind);
|
688
|
+
|
689
|
+
void set_allocated_double_registers(BitVector* allocated_registers);
|
690
|
+
BitVector* allocated_double_registers() {
|
691
|
+
return allocated_double_registers_;
|
692
|
+
}
|
693
|
+
|
694
|
+
protected:
|
695
|
+
LChunk(CompilationInfo* info, HGraph* graph);
|
696
|
+
|
697
|
+
void RegisterDependentCodeForEmbeddedMaps(Handle<Code> code);
|
698
|
+
|
699
|
+
int spill_slot_count_;
|
700
|
+
|
701
|
+
private:
|
702
|
+
CompilationInfo* info_;
|
703
|
+
HGraph* const graph_;
|
704
|
+
BitVector* allocated_double_registers_;
|
705
|
+
ZoneList<LInstruction*> instructions_;
|
706
|
+
ZoneList<LPointerMap*> pointer_maps_;
|
707
|
+
ZoneList<Handle<JSFunction> > inlined_closures_;
|
708
|
+
};
|
709
|
+
|
710
|
+
|
619
711
|
int ElementsKindToShiftSize(ElementsKind elements_kind);
|
620
712
|
|
713
|
+
enum NumberUntagDMode {
|
714
|
+
NUMBER_CANDIDATE_IS_SMI,
|
715
|
+
NUMBER_CANDIDATE_IS_SMI_OR_HOLE,
|
716
|
+
NUMBER_CANDIDATE_IS_SMI_CONVERT_HOLE,
|
717
|
+
NUMBER_CANDIDATE_IS_ANY_TAGGED
|
718
|
+
};
|
719
|
+
|
621
720
|
|
622
721
|
} } // namespace v8::internal
|
623
722
|
|