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
@@ -108,8 +108,6 @@ class ImplicitRefGroup {
|
|
108
108
|
};
|
109
109
|
|
110
110
|
|
111
|
-
typedef void (*WeakReferenceGuest)(Object* object, void* parameter);
|
112
|
-
|
113
111
|
class GlobalHandles {
|
114
112
|
public:
|
115
113
|
~GlobalHandles();
|
@@ -128,20 +126,17 @@ class GlobalHandles {
|
|
128
126
|
// reason is that Smi::FromInt(0) does not change during garage collection.
|
129
127
|
void MakeWeak(Object** location,
|
130
128
|
void* parameter,
|
131
|
-
WeakReferenceCallback
|
129
|
+
WeakReferenceCallback weak_reference_callback,
|
130
|
+
NearDeathCallback near_death_callback);
|
132
131
|
|
133
|
-
|
132
|
+
void RecordStats(HeapStats* stats);
|
134
133
|
|
135
134
|
// Returns the current number of weak handles.
|
136
|
-
int NumberOfWeakHandles()
|
137
|
-
|
138
|
-
void RecordStats(HeapStats* stats);
|
135
|
+
int NumberOfWeakHandles();
|
139
136
|
|
140
137
|
// Returns the current number of weak handles to global objects.
|
141
138
|
// These handles are also included in NumberOfWeakHandles().
|
142
|
-
int NumberOfGlobalObjectWeakHandles()
|
143
|
-
return number_of_global_object_weak_handles_;
|
144
|
-
}
|
139
|
+
int NumberOfGlobalObjectWeakHandles();
|
145
140
|
|
146
141
|
// Returns the current number of handles to global objects.
|
147
142
|
int NumberOfGlobalHandles() {
|
@@ -154,6 +149,11 @@ class GlobalHandles {
|
|
154
149
|
// Clear the weakness of a global handle.
|
155
150
|
void MarkIndependent(Object** location);
|
156
151
|
|
152
|
+
// Mark the reference to this object externaly unreachable.
|
153
|
+
void MarkPartiallyDependent(Object** location);
|
154
|
+
|
155
|
+
static bool IsIndependent(Object** location);
|
156
|
+
|
157
157
|
// Tells whether global handle is near death.
|
158
158
|
static bool IsNearDeath(Object** location);
|
159
159
|
|
@@ -162,7 +162,8 @@ class GlobalHandles {
|
|
162
162
|
|
163
163
|
// Process pending weak handles.
|
164
164
|
// Returns true if next major GC is likely to collect more garbage.
|
165
|
-
bool PostGarbageCollectionProcessing(GarbageCollector collector
|
165
|
+
bool PostGarbageCollectionProcessing(GarbageCollector collector,
|
166
|
+
GCTracer* tracer);
|
166
167
|
|
167
168
|
// Iterates over all strong handles.
|
168
169
|
void IterateStrongRoots(ObjectVisitor* v);
|
@@ -173,13 +174,13 @@ class GlobalHandles {
|
|
173
174
|
// Iterates over all handles that have embedder-assigned class ID.
|
174
175
|
void IterateAllRootsWithClassIds(ObjectVisitor* v);
|
175
176
|
|
177
|
+
// Iterates over all handles in the new space that have embedder-assigned
|
178
|
+
// class ID.
|
179
|
+
void IterateAllRootsInNewSpaceWithClassIds(ObjectVisitor* v);
|
180
|
+
|
176
181
|
// Iterates over all weak roots in heap.
|
177
182
|
void IterateWeakRoots(ObjectVisitor* v);
|
178
183
|
|
179
|
-
// Iterates over weak roots that are bound to a given callback.
|
180
|
-
void IterateWeakRoots(WeakReferenceGuest f,
|
181
|
-
WeakReferenceCallback callback);
|
182
|
-
|
183
184
|
// Find all weak handles satisfying the callback predicate, mark
|
184
185
|
// them as pending.
|
185
186
|
void IdentifyWeakHandles(WeakSlotCallback f);
|
@@ -192,16 +193,22 @@ class GlobalHandles {
|
|
192
193
|
// Iterates over strong and dependent handles. See the node above.
|
193
194
|
void IterateNewSpaceStrongAndDependentRoots(ObjectVisitor* v);
|
194
195
|
|
195
|
-
// Finds weak independent
|
196
|
-
// and marks them as pending. See the note above.
|
196
|
+
// Finds weak independent or partially independent handles satisfying
|
197
|
+
// the callback predicate and marks them as pending. See the note above.
|
197
198
|
void IdentifyNewSpaceWeakIndependentHandles(WeakSlotCallbackWithHeap f);
|
198
199
|
|
199
|
-
// Iterates over weak independent
|
200
|
+
// Iterates over weak independent or partially independent handles.
|
201
|
+
// See the note above.
|
200
202
|
void IterateNewSpaceWeakIndependentRoots(ObjectVisitor* v);
|
201
203
|
|
204
|
+
// Iterate over objects in object groups that have at least one object
|
205
|
+
// which requires visiting. The callback has to return true if objects
|
206
|
+
// can be skipped and false otherwise.
|
207
|
+
bool IterateObjectGroups(ObjectVisitor* v, WeakSlotCallbackWithHeap can_skip);
|
208
|
+
|
202
209
|
// Add an object group.
|
203
210
|
// Should be only used in GC callback function before a collection.
|
204
|
-
// All groups are destroyed after a
|
211
|
+
// All groups are destroyed after a garbage collection.
|
205
212
|
void AddObjectGroup(Object*** handles,
|
206
213
|
size_t length,
|
207
214
|
v8::RetainedObjectInfo* info);
|
@@ -245,14 +252,6 @@ class GlobalHandles {
|
|
245
252
|
|
246
253
|
Isolate* isolate_;
|
247
254
|
|
248
|
-
// Field always containing the number of weak and near-death handles.
|
249
|
-
int number_of_weak_handles_;
|
250
|
-
|
251
|
-
// Field always containing the number of weak and near-death handles
|
252
|
-
// to global objects. These objects are also included in
|
253
|
-
// number_of_weak_handles_.
|
254
|
-
int number_of_global_object_weak_handles_;
|
255
|
-
|
256
255
|
// Field always containing the number of handles to global objects.
|
257
256
|
int number_of_global_handles_;
|
258
257
|
|
data/vendor/v8/src/globals.h
CHANGED
@@ -136,21 +136,6 @@ namespace internal {
|
|
136
136
|
#endif
|
137
137
|
#endif
|
138
138
|
|
139
|
-
// Define unaligned read for the target architectures supporting it.
|
140
|
-
#if defined(V8_TARGET_ARCH_X64) || defined(V8_TARGET_ARCH_IA32)
|
141
|
-
#define V8_TARGET_CAN_READ_UNALIGNED 1
|
142
|
-
#elif V8_TARGET_ARCH_ARM
|
143
|
-
// Some CPU-OS combinations allow unaligned access on ARM. We assume
|
144
|
-
// that unaligned accesses are not allowed unless the build system
|
145
|
-
// defines the CAN_USE_UNALIGNED_ACCESSES macro to be non-zero.
|
146
|
-
#if CAN_USE_UNALIGNED_ACCESSES
|
147
|
-
#define V8_TARGET_CAN_READ_UNALIGNED 1
|
148
|
-
#endif
|
149
|
-
#elif V8_TARGET_ARCH_MIPS
|
150
|
-
#else
|
151
|
-
#error Target architecture is not supported by v8
|
152
|
-
#endif
|
153
|
-
|
154
139
|
// Support for alternative bool type. This is only enabled if the code is
|
155
140
|
// compiled with USE_MYBOOL defined. This catches some nasty type bugs.
|
156
141
|
// For instance, 'bool b = "false";' results in b == true! This is a hidden
|
@@ -203,6 +188,7 @@ typedef byte* Address;
|
|
203
188
|
|
204
189
|
#define V8PRIxPTR V8_PTR_PREFIX "x"
|
205
190
|
#define V8PRIdPTR V8_PTR_PREFIX "d"
|
191
|
+
#define V8PRIuPTR V8_PTR_PREFIX "u"
|
206
192
|
|
207
193
|
// Fix for Mac OS X defining uintptr_t as "unsigned long":
|
208
194
|
#if defined(__APPLE__) && defined(__MACH__)
|
@@ -267,15 +253,13 @@ const int kBinary32ExponentShift = 23;
|
|
267
253
|
// other bits set.
|
268
254
|
const uint64_t kQuietNaNMask = static_cast<uint64_t>(0xfff) << 51;
|
269
255
|
|
270
|
-
//
|
256
|
+
// Latin1/UTF-16 constants
|
271
257
|
// Code-point values in Unicode 4.0 are 21 bits wide.
|
272
258
|
// Code units in UTF-16 are 16 bits wide.
|
273
259
|
typedef uint16_t uc16;
|
274
260
|
typedef int32_t uc32;
|
275
|
-
const int
|
261
|
+
const int kOneByteSize = kCharSize;
|
276
262
|
const int kUC16Size = sizeof(uc16); // NOLINT
|
277
|
-
const uc32 kMaxAsciiCharCode = 0x7f;
|
278
|
-
const uint32_t kMaxAsciiCharCodeU = 0x7fu;
|
279
263
|
|
280
264
|
|
281
265
|
// The expression OFFSET_OF(type, field) computes the byte-offset
|
@@ -360,6 +344,20 @@ F FUNCTION_CAST(Address addr) {
|
|
360
344
|
#define MUST_USE_RESULT
|
361
345
|
#endif
|
362
346
|
|
347
|
+
|
348
|
+
// Define DISABLE_ASAN macros.
|
349
|
+
#if defined(__has_feature)
|
350
|
+
#if __has_feature(address_sanitizer)
|
351
|
+
#define DISABLE_ASAN __attribute__((no_address_safety_analysis))
|
352
|
+
#endif
|
353
|
+
#endif
|
354
|
+
|
355
|
+
|
356
|
+
#ifndef DISABLE_ASAN
|
357
|
+
#define DISABLE_ASAN
|
358
|
+
#endif
|
359
|
+
|
360
|
+
|
363
361
|
// -----------------------------------------------------------------------------
|
364
362
|
// Forward declarations for frequently used classes
|
365
363
|
// (sorted alphabetically)
|
data/vendor/v8/src/handles-inl.h
CHANGED
@@ -63,9 +63,18 @@ template <typename T>
|
|
63
63
|
inline T* Handle<T>::operator*() const {
|
64
64
|
ASSERT(location_ != NULL);
|
65
65
|
ASSERT(reinterpret_cast<Address>(*location_) != kHandleZapValue);
|
66
|
+
SLOW_ASSERT(ISOLATE->allow_handle_deref());
|
66
67
|
return *BitCast<T**>(location_);
|
67
68
|
}
|
68
69
|
|
70
|
+
template <typename T>
|
71
|
+
inline T** Handle<T>::location() const {
|
72
|
+
ASSERT(location_ == NULL ||
|
73
|
+
reinterpret_cast<Address>(*location_) != kZapValue);
|
74
|
+
SLOW_ASSERT(ISOLATE->allow_handle_deref());
|
75
|
+
return location_;
|
76
|
+
}
|
77
|
+
|
69
78
|
|
70
79
|
HandleScope::HandleScope() {
|
71
80
|
Isolate* isolate = Isolate::Current();
|
@@ -149,25 +158,63 @@ T** HandleScope::CreateHandle(T* value, Isolate* isolate) {
|
|
149
158
|
|
150
159
|
#ifdef DEBUG
|
151
160
|
inline NoHandleAllocation::NoHandleAllocation() {
|
161
|
+
Isolate* isolate = Isolate::Current();
|
152
162
|
v8::ImplementationUtilities::HandleScopeData* current =
|
153
|
-
|
163
|
+
isolate->handle_scope_data();
|
154
164
|
|
155
|
-
|
156
|
-
|
157
|
-
|
165
|
+
active_ = !isolate->optimizing_compiler_thread()->IsOptimizerThread();
|
166
|
+
if (active_) {
|
167
|
+
// Shrink the current handle scope to make it impossible to do
|
168
|
+
// handle allocations without an explicit handle scope.
|
169
|
+
current->limit = current->next;
|
158
170
|
|
159
|
-
|
160
|
-
|
171
|
+
level_ = current->level;
|
172
|
+
current->level = 0;
|
173
|
+
}
|
161
174
|
}
|
162
175
|
|
163
176
|
|
164
177
|
inline NoHandleAllocation::~NoHandleAllocation() {
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
178
|
+
if (active_) {
|
179
|
+
// Restore state in current handle scope to re-enable handle
|
180
|
+
// allocations.
|
181
|
+
v8::ImplementationUtilities::HandleScopeData* data =
|
182
|
+
Isolate::Current()->handle_scope_data();
|
183
|
+
ASSERT_EQ(0, data->level);
|
184
|
+
data->level = level_;
|
185
|
+
}
|
186
|
+
}
|
187
|
+
|
188
|
+
|
189
|
+
NoHandleDereference::NoHandleDereference() {
|
190
|
+
// The guard is set on a per-isolate basis, so it affects all threads.
|
191
|
+
// That's why we can only use it when running without parallel recompilation.
|
192
|
+
if (FLAG_parallel_recompilation) return;
|
193
|
+
Isolate* isolate = Isolate::Current();
|
194
|
+
old_state_ = isolate->allow_handle_deref();
|
195
|
+
isolate->set_allow_handle_deref(false);
|
196
|
+
}
|
197
|
+
|
198
|
+
|
199
|
+
NoHandleDereference::~NoHandleDereference() {
|
200
|
+
if (FLAG_parallel_recompilation) return;
|
201
|
+
Isolate::Current()->set_allow_handle_deref(old_state_);
|
202
|
+
}
|
203
|
+
|
204
|
+
|
205
|
+
AllowHandleDereference::AllowHandleDereference() {
|
206
|
+
// The guard is set on a per-isolate basis, so it affects all threads.
|
207
|
+
// That's why we can only use it when running without parallel recompilation.
|
208
|
+
if (FLAG_parallel_recompilation) return;
|
209
|
+
Isolate* isolate = Isolate::Current();
|
210
|
+
old_state_ = isolate->allow_handle_deref();
|
211
|
+
isolate->set_allow_handle_deref(true);
|
212
|
+
}
|
213
|
+
|
214
|
+
|
215
|
+
AllowHandleDereference::~AllowHandleDereference() {
|
216
|
+
if (FLAG_parallel_recompilation) return;
|
217
|
+
Isolate::Current()->set_allow_handle_deref(old_state_);
|
171
218
|
}
|
172
219
|
#endif
|
173
220
|
|
data/vendor/v8/src/handles.cc
CHANGED
@@ -165,7 +165,7 @@ void SetExpectedNofProperties(Handle<JSFunction> func, int nof) {
|
|
165
165
|
func->shared()->set_expected_nof_properties(nof);
|
166
166
|
if (func->has_initial_map()) {
|
167
167
|
Handle<Map> new_initial_map =
|
168
|
-
func->GetIsolate()->factory()->
|
168
|
+
func->GetIsolate()->factory()->CopyMap(
|
169
169
|
Handle<Map>(func->initial_map()));
|
170
170
|
new_initial_map->set_unused_property_fields(nof);
|
171
171
|
func->set_initial_map(*new_initial_map);
|
@@ -229,12 +229,12 @@ Handle<Object> SetPrototype(Handle<JSFunction> function,
|
|
229
229
|
}
|
230
230
|
|
231
231
|
|
232
|
-
Handle<Object> SetProperty(
|
232
|
+
Handle<Object> SetProperty(Isolate* isolate,
|
233
|
+
Handle<Object> object,
|
233
234
|
Handle<Object> key,
|
234
235
|
Handle<Object> value,
|
235
236
|
PropertyAttributes attributes,
|
236
237
|
StrictModeFlag strict_mode) {
|
237
|
-
Isolate* isolate = Isolate::Current();
|
238
238
|
CALL_HEAP_FUNCTION(
|
239
239
|
isolate,
|
240
240
|
Runtime::SetObjectProperty(
|
@@ -282,7 +282,7 @@ Handle<Object> SetPropertyWithInterceptor(Handle<JSObject> object,
|
|
282
282
|
Handle<Object> GetProperty(Handle<JSReceiver> obj,
|
283
283
|
const char* name) {
|
284
284
|
Isolate* isolate = obj->GetIsolate();
|
285
|
-
Handle<String> str = isolate->factory()->
|
285
|
+
Handle<String> str = isolate->factory()->LookupUtf8Symbol(name);
|
286
286
|
CALL_HEAP_FUNCTION(isolate, obj->GetProperty(*str), Object);
|
287
287
|
}
|
288
288
|
|
@@ -350,14 +350,16 @@ Handle<Object> SetAccessor(Handle<JSObject> obj, Handle<AccessorInfo> info) {
|
|
350
350
|
// collector will call the weak callback on the global handle
|
351
351
|
// associated with the wrapper and get rid of both the wrapper and the
|
352
352
|
// handle.
|
353
|
-
static void ClearWrapperCache(
|
353
|
+
static void ClearWrapperCache(v8::Isolate* v8_isolate,
|
354
|
+
Persistent<v8::Value> handle,
|
355
|
+
void*) {
|
354
356
|
Handle<Object> cache = Utils::OpenHandle(*handle);
|
355
357
|
JSValue* wrapper = JSValue::cast(*cache);
|
356
358
|
Foreign* foreign = Script::cast(wrapper->value())->wrapper();
|
357
359
|
ASSERT(foreign->foreign_address() ==
|
358
360
|
reinterpret_cast<Address>(cache.location()));
|
359
361
|
foreign->set_foreign_address(0);
|
360
|
-
Isolate* isolate = Isolate
|
362
|
+
Isolate* isolate = reinterpret_cast<Isolate*>(v8_isolate);
|
361
363
|
isolate->global_handles()->Destroy(cache.location());
|
362
364
|
isolate->counters()->script_wrappers()->Decrement();
|
363
365
|
}
|
@@ -375,13 +377,24 @@ Handle<JSValue> GetScriptWrapper(Handle<Script> script) {
|
|
375
377
|
Handle<JSFunction> constructor = isolate->script_function();
|
376
378
|
Handle<JSValue> result =
|
377
379
|
Handle<JSValue>::cast(isolate->factory()->NewJSObject(constructor));
|
380
|
+
|
381
|
+
// The allocation might have triggered a GC, which could have called this
|
382
|
+
// function recursively, and a wrapper has already been created and cached.
|
383
|
+
// In that case, simply return the cached wrapper.
|
384
|
+
if (script->wrapper()->foreign_address() != NULL) {
|
385
|
+
return Handle<JSValue>(
|
386
|
+
reinterpret_cast<JSValue**>(script->wrapper()->foreign_address()));
|
387
|
+
}
|
388
|
+
|
378
389
|
result->set_value(*script);
|
379
390
|
|
380
391
|
// Create a new weak global handle and use it to cache the wrapper
|
381
392
|
// for future use. The cache will automatically be cleared by the
|
382
393
|
// garbage collector when it is not used anymore.
|
383
394
|
Handle<Object> handle = isolate->global_handles()->Create(*result);
|
384
|
-
isolate->global_handles()->MakeWeak(handle.location(),
|
395
|
+
isolate->global_handles()->MakeWeak(handle.location(),
|
396
|
+
NULL,
|
397
|
+
NULL,
|
385
398
|
&ClearWrapperCache);
|
386
399
|
script->wrapper()->set_foreign_address(
|
387
400
|
reinterpret_cast<Address>(handle.location()));
|
@@ -423,7 +436,7 @@ static void CalculateLineEnds(Isolate* isolate,
|
|
423
436
|
Vector<const SourceChar> src,
|
424
437
|
bool with_last_line) {
|
425
438
|
const int src_len = src.length();
|
426
|
-
StringSearch<
|
439
|
+
StringSearch<uint8_t, SourceChar> search(isolate, STATIC_ASCII_VECTOR("\n"));
|
427
440
|
|
428
441
|
// Find and record line ends.
|
429
442
|
int position = 0;
|
@@ -457,7 +470,7 @@ Handle<FixedArray> CalculateLineEnds(Handle<String> src,
|
|
457
470
|
if (content.IsAscii()) {
|
458
471
|
CalculateLineEnds(isolate,
|
459
472
|
&line_ends,
|
460
|
-
content.
|
473
|
+
content.ToOneByteVector(),
|
461
474
|
with_last_line);
|
462
475
|
} else {
|
463
476
|
CalculateLineEnds(isolate,
|
@@ -561,6 +574,9 @@ v8::Handle<v8::Array> GetKeysForNamedInterceptor(Handle<JSReceiver> receiver,
|
|
561
574
|
result = enum_fun(info);
|
562
575
|
}
|
563
576
|
}
|
577
|
+
#if ENABLE_EXTRA_CHECKS
|
578
|
+
CHECK(result.IsEmpty() || v8::Utils::OpenHandle(*result)->IsJSObject());
|
579
|
+
#endif
|
564
580
|
return result;
|
565
581
|
}
|
566
582
|
|
@@ -581,12 +597,35 @@ v8::Handle<v8::Array> GetKeysForIndexedInterceptor(Handle<JSReceiver> receiver,
|
|
581
597
|
// Leaving JavaScript.
|
582
598
|
VMState state(isolate, EXTERNAL);
|
583
599
|
result = enum_fun(info);
|
600
|
+
#if ENABLE_EXTRA_CHECKS
|
601
|
+
CHECK(result.IsEmpty() || v8::Utils::OpenHandle(*result)->IsJSObject());
|
602
|
+
#endif
|
584
603
|
}
|
585
604
|
}
|
586
605
|
return result;
|
587
606
|
}
|
588
607
|
|
589
608
|
|
609
|
+
Handle<Object> GetScriptNameOrSourceURL(Handle<Script> script) {
|
610
|
+
Isolate* isolate = script->GetIsolate();
|
611
|
+
Handle<String> name_or_source_url_key =
|
612
|
+
isolate->factory()->LookupOneByteSymbol(
|
613
|
+
STATIC_ASCII_VECTOR("nameOrSourceURL"));
|
614
|
+
Handle<JSValue> script_wrapper = GetScriptWrapper(script);
|
615
|
+
Handle<Object> property = GetProperty(script_wrapper,
|
616
|
+
name_or_source_url_key);
|
617
|
+
ASSERT(property->IsJSFunction());
|
618
|
+
Handle<JSFunction> method = Handle<JSFunction>::cast(property);
|
619
|
+
bool caught_exception;
|
620
|
+
Handle<Object> result = Execution::TryCall(method, script_wrapper, 0,
|
621
|
+
NULL, &caught_exception);
|
622
|
+
if (caught_exception) {
|
623
|
+
result = isolate->factory()->undefined_value();
|
624
|
+
}
|
625
|
+
return result;
|
626
|
+
}
|
627
|
+
|
628
|
+
|
590
629
|
static bool ContainsOnlyValidKeys(Handle<FixedArray> array) {
|
591
630
|
int len = array->length();
|
592
631
|
for (int i = 0; i < len; i++) {
|
@@ -604,7 +643,7 @@ Handle<FixedArray> GetKeysInFixedArrayFor(Handle<JSReceiver> object,
|
|
604
643
|
Isolate* isolate = object->GetIsolate();
|
605
644
|
Handle<FixedArray> content = isolate->factory()->empty_fixed_array();
|
606
645
|
Handle<JSObject> arguments_boilerplate = Handle<JSObject>(
|
607
|
-
isolate->context()->
|
646
|
+
isolate->context()->native_context()->arguments_boilerplate(),
|
608
647
|
isolate);
|
609
648
|
Handle<JSFunction> arguments_function = Handle<JSFunction>(
|
610
649
|
JSFunction::cast(arguments_boilerplate->map()->constructor()),
|
@@ -699,77 +738,134 @@ Handle<JSArray> GetKeysFor(Handle<JSReceiver> object, bool* threw) {
|
|
699
738
|
}
|
700
739
|
|
701
740
|
|
741
|
+
Handle<FixedArray> ReduceFixedArrayTo(Handle<FixedArray> array, int length) {
|
742
|
+
ASSERT(array->length() >= length);
|
743
|
+
if (array->length() == length) return array;
|
744
|
+
|
745
|
+
Handle<FixedArray> new_array =
|
746
|
+
array->GetIsolate()->factory()->NewFixedArray(length);
|
747
|
+
for (int i = 0; i < length; ++i) new_array->set(i, array->get(i));
|
748
|
+
return new_array;
|
749
|
+
}
|
750
|
+
|
751
|
+
|
702
752
|
Handle<FixedArray> GetEnumPropertyKeys(Handle<JSObject> object,
|
703
753
|
bool cache_result) {
|
704
|
-
int index = 0;
|
705
754
|
Isolate* isolate = object->GetIsolate();
|
706
755
|
if (object->HasFastProperties()) {
|
707
756
|
if (object->map()->instance_descriptors()->HasEnumCache()) {
|
708
|
-
|
757
|
+
int own_property_count = object->map()->EnumLength();
|
758
|
+
// If we have an enum cache, but the enum length of the given map is set
|
759
|
+
// to kInvalidEnumCache, this means that the map itself has never used the
|
760
|
+
// present enum cache. The first step to using the cache is to set the
|
761
|
+
// enum length of the map by counting the number of own descriptors that
|
762
|
+
// are not DONT_ENUM.
|
763
|
+
if (own_property_count == Map::kInvalidEnumCache) {
|
764
|
+
own_property_count = object->map()->NumberOfDescribedProperties(
|
765
|
+
OWN_DESCRIPTORS, DONT_ENUM);
|
766
|
+
|
767
|
+
if (cache_result) object->map()->SetEnumLength(own_property_count);
|
768
|
+
}
|
769
|
+
|
709
770
|
DescriptorArray* desc = object->map()->instance_descriptors();
|
710
|
-
|
711
|
-
|
771
|
+
Handle<FixedArray> keys(desc->GetEnumCache(), isolate);
|
772
|
+
|
773
|
+
// In case the number of properties required in the enum are actually
|
774
|
+
// present, we can reuse the enum cache. Otherwise, this means that the
|
775
|
+
// enum cache was generated for a previous (smaller) version of the
|
776
|
+
// Descriptor Array. In that case we regenerate the enum cache.
|
777
|
+
if (own_property_count <= keys->length()) {
|
778
|
+
isolate->counters()->enum_cache_hits()->Increment();
|
779
|
+
return ReduceFixedArrayTo(keys, own_property_count);
|
780
|
+
}
|
712
781
|
}
|
713
|
-
|
782
|
+
|
714
783
|
Handle<Map> map(object->map());
|
715
|
-
int num_enum = object->NumberOfLocalProperties(DONT_ENUM);
|
716
784
|
|
717
|
-
|
718
|
-
|
785
|
+
if (map->instance_descriptors()->IsEmpty()) {
|
786
|
+
isolate->counters()->enum_cache_hits()->Increment();
|
787
|
+
if (cache_result) map->SetEnumLength(0);
|
788
|
+
return isolate->factory()->empty_fixed_array();
|
789
|
+
}
|
719
790
|
|
720
|
-
|
721
|
-
|
791
|
+
isolate->counters()->enum_cache_misses()->Increment();
|
792
|
+
int num_enum = map->NumberOfDescribedProperties(ALL_DESCRIPTORS, DONT_ENUM);
|
722
793
|
|
723
|
-
|
724
|
-
|
725
|
-
sort_array2 = isolate->factory()->NewFixedArray(num_enum);
|
726
|
-
}
|
794
|
+
Handle<FixedArray> storage = isolate->factory()->NewFixedArray(num_enum);
|
795
|
+
Handle<FixedArray> indices = isolate->factory()->NewFixedArray(num_enum);
|
727
796
|
|
728
797
|
Handle<DescriptorArray> descs =
|
729
798
|
Handle<DescriptorArray>(object->map()->instance_descriptors(), isolate);
|
730
799
|
|
800
|
+
int real_size = map->NumberOfOwnDescriptors();
|
801
|
+
int enum_size = 0;
|
802
|
+
int index = 0;
|
803
|
+
|
731
804
|
for (int i = 0; i < descs->number_of_descriptors(); i++) {
|
732
|
-
|
805
|
+
PropertyDetails details = descs->GetDetails(i);
|
806
|
+
if (!details.IsDontEnum()) {
|
807
|
+
if (i < real_size) ++enum_size;
|
733
808
|
storage->set(index, descs->GetKey(i));
|
734
|
-
PropertyDetails details = descs->GetDetails(i);
|
735
|
-
sort_array->set(index, Smi::FromInt(details.index()));
|
736
809
|
if (!indices.is_null()) {
|
737
810
|
if (details.type() != FIELD) {
|
738
811
|
indices = Handle<FixedArray>();
|
739
|
-
sort_array2 = Handle<FixedArray>();
|
740
812
|
} else {
|
741
813
|
int field_index = Descriptor::IndexFromValue(descs->GetValue(i));
|
742
814
|
if (field_index >= map->inobject_properties()) {
|
743
815
|
field_index = -(field_index - map->inobject_properties() + 1);
|
744
816
|
}
|
745
817
|
indices->set(index, Smi::FromInt(field_index));
|
746
|
-
sort_array2->set(index, Smi::FromInt(details.index()));
|
747
818
|
}
|
748
819
|
}
|
749
820
|
index++;
|
750
821
|
}
|
751
822
|
}
|
752
|
-
|
753
|
-
|
754
|
-
|
755
|
-
|
823
|
+
ASSERT(index == storage->length());
|
824
|
+
|
825
|
+
Handle<FixedArray> bridge_storage =
|
826
|
+
isolate->factory()->NewFixedArray(
|
827
|
+
DescriptorArray::kEnumCacheBridgeLength);
|
828
|
+
DescriptorArray* desc = object->map()->instance_descriptors();
|
829
|
+
desc->SetEnumCache(*bridge_storage,
|
830
|
+
*storage,
|
831
|
+
indices.is_null() ? Object::cast(Smi::FromInt(0))
|
832
|
+
: Object::cast(*indices));
|
756
833
|
if (cache_result) {
|
757
|
-
|
758
|
-
isolate->factory()->NewFixedArray(
|
759
|
-
DescriptorArray::kEnumCacheBridgeLength);
|
760
|
-
DescriptorArray* desc = object->map()->instance_descriptors();
|
761
|
-
desc->SetEnumCache(*bridge_storage,
|
762
|
-
*storage,
|
763
|
-
indices.is_null() ? Object::cast(Smi::FromInt(0))
|
764
|
-
: Object::cast(*indices));
|
834
|
+
object->map()->SetEnumLength(enum_size);
|
765
835
|
}
|
766
|
-
|
767
|
-
return storage;
|
836
|
+
|
837
|
+
return ReduceFixedArrayTo(storage, enum_size);
|
768
838
|
} else {
|
769
|
-
|
770
|
-
|
771
|
-
|
772
|
-
|
839
|
+
Handle<StringDictionary> dictionary(object->property_dictionary());
|
840
|
+
|
841
|
+
int length = dictionary->NumberOfElements();
|
842
|
+
if (length == 0) {
|
843
|
+
return Handle<FixedArray>(isolate->heap()->empty_fixed_array());
|
844
|
+
}
|
845
|
+
|
846
|
+
// The enumeration array is generated by allocating an array big enough to
|
847
|
+
// hold all properties that have been seen, whether they are are deleted or
|
848
|
+
// not. Subsequently all visible properties are added to the array. If some
|
849
|
+
// properties were not visible, the array is trimmed so it only contains
|
850
|
+
// visible properties. This improves over adding elements and sorting by
|
851
|
+
// index by having linear complexity rather than n*log(n).
|
852
|
+
|
853
|
+
// By comparing the monotonous NextEnumerationIndex to the NumberOfElements,
|
854
|
+
// we can predict the number of holes in the final array. If there will be
|
855
|
+
// more than 50% holes, regenerate the enumeration indices to reduce the
|
856
|
+
// number of holes to a minimum. This avoids allocating a large array if
|
857
|
+
// many properties were added but subsequently deleted.
|
858
|
+
int next_enumeration = dictionary->NextEnumerationIndex();
|
859
|
+
if (!object->IsGlobalObject() && next_enumeration > (length * 3) / 2) {
|
860
|
+
StringDictionary::DoGenerateNewEnumerationIndices(dictionary);
|
861
|
+
next_enumeration = dictionary->NextEnumerationIndex();
|
862
|
+
}
|
863
|
+
|
864
|
+
Handle<FixedArray> storage =
|
865
|
+
isolate->factory()->NewFixedArray(next_enumeration);
|
866
|
+
|
867
|
+
storage = Handle<FixedArray>(dictionary->CopyEnumKeysTo(*storage));
|
868
|
+
ASSERT(storage->length() == object->NumberOfLocalProperties(DONT_ENUM));
|
773
869
|
return storage;
|
774
870
|
}
|
775
871
|
}
|
@@ -800,162 +896,46 @@ Handle<ObjectHashTable> PutIntoObjectHashTable(Handle<ObjectHashTable> table,
|
|
800
896
|
}
|
801
897
|
|
802
898
|
|
803
|
-
|
804
|
-
|
805
|
-
|
806
|
-
|
807
|
-
|
808
|
-
|
809
|
-
|
810
|
-
|
811
|
-
|
812
|
-
|
813
|
-
|
814
|
-
|
815
|
-
|
816
|
-
|
817
|
-
|
818
|
-
|
819
|
-
|
820
|
-
|
821
|
-
|
822
|
-
// recursion cannot always be avoided. This case is detected, and the failure
|
823
|
-
// flag is set, a signal to the caller that the string should be flattened and
|
824
|
-
// the operation retried.
|
825
|
-
int Utf8LengthHelper(String* input,
|
826
|
-
int from,
|
827
|
-
int to,
|
828
|
-
bool followed_by_surrogate,
|
829
|
-
int max_recursion,
|
830
|
-
bool* failure,
|
831
|
-
bool* starts_with_surrogate) {
|
832
|
-
if (from == to) return 0;
|
833
|
-
int total = 0;
|
834
|
-
bool dummy;
|
835
|
-
while (true) {
|
836
|
-
if (input->IsAsciiRepresentation()) {
|
837
|
-
*starts_with_surrogate = false;
|
838
|
-
return total + to - from;
|
839
|
-
}
|
840
|
-
switch (StringShape(input).representation_tag()) {
|
841
|
-
case kConsStringTag: {
|
842
|
-
ConsString* str = ConsString::cast(input);
|
843
|
-
String* first = str->first();
|
844
|
-
String* second = str->second();
|
845
|
-
int first_length = first->length();
|
846
|
-
if (first_length - from > to - first_length) {
|
847
|
-
if (first_length < to) {
|
848
|
-
// Right hand side is shorter. No need to check the recursion depth
|
849
|
-
// since this can only happen log(n) times.
|
850
|
-
bool right_starts_with_surrogate = false;
|
851
|
-
total += Utf8LengthHelper(second,
|
852
|
-
0,
|
853
|
-
to - first_length,
|
854
|
-
followed_by_surrogate,
|
855
|
-
max_recursion - 1,
|
856
|
-
failure,
|
857
|
-
&right_starts_with_surrogate);
|
858
|
-
if (*failure) return 0;
|
859
|
-
followed_by_surrogate = right_starts_with_surrogate;
|
860
|
-
input = first;
|
861
|
-
to = first_length;
|
862
|
-
} else {
|
863
|
-
// We only need the left hand side.
|
864
|
-
input = first;
|
865
|
-
}
|
866
|
-
} else {
|
867
|
-
if (first_length > from) {
|
868
|
-
// Left hand side is shorter.
|
869
|
-
if (first->IsAsciiRepresentation()) {
|
870
|
-
total += first_length - from;
|
871
|
-
*starts_with_surrogate = false;
|
872
|
-
starts_with_surrogate = &dummy;
|
873
|
-
input = second;
|
874
|
-
from = 0;
|
875
|
-
to -= first_length;
|
876
|
-
} else if (second->IsAsciiRepresentation()) {
|
877
|
-
followed_by_surrogate = false;
|
878
|
-
total += to - first_length;
|
879
|
-
input = first;
|
880
|
-
to = first_length;
|
881
|
-
} else if (max_recursion > 0) {
|
882
|
-
bool right_starts_with_surrogate = false;
|
883
|
-
// Recursing on the long one. This may fail.
|
884
|
-
total += Utf8LengthHelper(second,
|
885
|
-
0,
|
886
|
-
to - first_length,
|
887
|
-
followed_by_surrogate,
|
888
|
-
max_recursion - 1,
|
889
|
-
failure,
|
890
|
-
&right_starts_with_surrogate);
|
891
|
-
if (*failure) return 0;
|
892
|
-
input = first;
|
893
|
-
to = first_length;
|
894
|
-
followed_by_surrogate = right_starts_with_surrogate;
|
895
|
-
} else {
|
896
|
-
*failure = true;
|
897
|
-
return 0;
|
898
|
-
}
|
899
|
-
} else {
|
900
|
-
// We only need the right hand side.
|
901
|
-
input = second;
|
902
|
-
from = 0;
|
903
|
-
to -= first_length;
|
904
|
-
}
|
905
|
-
}
|
906
|
-
continue;
|
907
|
-
}
|
908
|
-
case kExternalStringTag:
|
909
|
-
case kSeqStringTag: {
|
910
|
-
Vector<const uc16> vector = input->GetFlatContent().ToUC16Vector();
|
911
|
-
const uc16* p = vector.start();
|
912
|
-
int previous = unibrow::Utf16::kNoPreviousCharacter;
|
913
|
-
for (int i = from; i < to; i++) {
|
914
|
-
uc16 c = p[i];
|
915
|
-
total += unibrow::Utf8::Length(c, previous);
|
916
|
-
previous = c;
|
917
|
-
}
|
918
|
-
if (to - from > 0) {
|
919
|
-
if (unibrow::Utf16::IsLeadSurrogate(previous) &&
|
920
|
-
followed_by_surrogate) {
|
921
|
-
total -= unibrow::Utf8::kBytesSavedByCombiningSurrogates;
|
922
|
-
}
|
923
|
-
if (unibrow::Utf16::IsTrailSurrogate(p[from])) {
|
924
|
-
*starts_with_surrogate = true;
|
925
|
-
}
|
926
|
-
}
|
927
|
-
return total;
|
928
|
-
}
|
929
|
-
case kSlicedStringTag: {
|
930
|
-
SlicedString* str = SlicedString::cast(input);
|
931
|
-
int offset = str->offset();
|
932
|
-
input = str->parent();
|
933
|
-
from += offset;
|
934
|
-
to += offset;
|
935
|
-
continue;
|
936
|
-
}
|
937
|
-
default:
|
938
|
-
break;
|
939
|
-
}
|
940
|
-
UNREACHABLE();
|
941
|
-
return 0;
|
942
|
-
}
|
943
|
-
return 0;
|
899
|
+
DeferredHandleScope::DeferredHandleScope(Isolate* isolate)
|
900
|
+
: impl_(isolate->handle_scope_implementer()) {
|
901
|
+
ASSERT(impl_->isolate() == Isolate::Current());
|
902
|
+
impl_->BeginDeferredScope();
|
903
|
+
v8::ImplementationUtilities::HandleScopeData* data =
|
904
|
+
impl_->isolate()->handle_scope_data();
|
905
|
+
Object** new_next = impl_->GetSpareOrNewBlock();
|
906
|
+
Object** new_limit = &new_next[kHandleBlockSize];
|
907
|
+
ASSERT(data->limit == &impl_->blocks()->last()[kHandleBlockSize]);
|
908
|
+
impl_->blocks()->Add(new_next);
|
909
|
+
|
910
|
+
#ifdef DEBUG
|
911
|
+
prev_level_ = data->level;
|
912
|
+
#endif
|
913
|
+
data->level++;
|
914
|
+
prev_limit_ = data->limit;
|
915
|
+
prev_next_ = data->next;
|
916
|
+
data->next = new_next;
|
917
|
+
data->limit = new_limit;
|
944
918
|
}
|
945
919
|
|
946
920
|
|
947
|
-
|
948
|
-
|
949
|
-
|
950
|
-
|
951
|
-
const int kRecursionBudget = 100;
|
952
|
-
do {
|
953
|
-
failure = false;
|
954
|
-
len = Utf8LengthHelper(
|
955
|
-
*str, 0, str->length(), false, kRecursionBudget, &failure, &dummy);
|
956
|
-
if (failure) FlattenString(str);
|
957
|
-
} while (failure);
|
958
|
-
return len;
|
921
|
+
DeferredHandleScope::~DeferredHandleScope() {
|
922
|
+
impl_->isolate()->handle_scope_data()->level--;
|
923
|
+
ASSERT(handles_detached_);
|
924
|
+
ASSERT(impl_->isolate()->handle_scope_data()->level == prev_level_);
|
959
925
|
}
|
960
926
|
|
927
|
+
|
928
|
+
DeferredHandles* DeferredHandleScope::Detach() {
|
929
|
+
DeferredHandles* deferred = impl_->Detach(prev_limit_);
|
930
|
+
v8::ImplementationUtilities::HandleScopeData* data =
|
931
|
+
impl_->isolate()->handle_scope_data();
|
932
|
+
data->next = prev_next_;
|
933
|
+
data->limit = prev_limit_;
|
934
|
+
#ifdef DEBUG
|
935
|
+
handles_detached_ = true;
|
936
|
+
#endif
|
937
|
+
return deferred;
|
938
|
+
}
|
939
|
+
|
940
|
+
|
961
941
|
} } // namespace v8::internal
|