mustang 0.0.1 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.rspec +1 -0
- data/Isolate +9 -0
- data/README.md +6 -12
- data/Rakefile +30 -4
- data/TODO.md +9 -0
- data/ext/v8/extconf.rb +56 -0
- data/ext/v8/v8.cpp +37 -0
- data/ext/v8/v8_array.cpp +161 -0
- data/ext/v8/v8_array.h +17 -0
- data/ext/v8/v8_base.cpp +147 -0
- data/ext/v8/v8_base.h +23 -0
- data/ext/v8/v8_cast.cpp +151 -0
- data/ext/v8/v8_cast.h +64 -0
- data/ext/v8/v8_context.cpp +174 -0
- data/ext/v8/v8_context.h +12 -0
- data/ext/v8/v8_date.cpp +61 -0
- data/ext/v8/v8_date.h +16 -0
- data/ext/v8/v8_errors.cpp +147 -0
- data/ext/v8/v8_errors.h +19 -0
- data/ext/v8/v8_external.cpp +66 -0
- data/ext/v8/v8_external.h +16 -0
- data/ext/v8/v8_function.cpp +182 -0
- data/ext/v8/v8_function.h +14 -0
- data/ext/v8/v8_integer.cpp +70 -0
- data/ext/v8/v8_integer.h +16 -0
- data/ext/v8/v8_macros.h +30 -0
- data/ext/v8/v8_main.cpp +53 -0
- data/ext/v8/v8_main.h +13 -0
- data/ext/v8/v8_number.cpp +62 -0
- data/ext/v8/v8_number.h +16 -0
- data/ext/v8/v8_object.cpp +172 -0
- data/ext/v8/v8_object.h +17 -0
- data/ext/v8/v8_ref.cpp +72 -0
- data/ext/v8/v8_ref.h +43 -0
- data/ext/v8/v8_regexp.cpp +148 -0
- data/ext/v8/v8_regexp.h +16 -0
- data/ext/v8/v8_string.cpp +78 -0
- data/ext/v8/v8_string.h +16 -0
- data/ext/v8/v8_value.cpp +370 -0
- data/ext/v8/v8_value.h +19 -0
- data/gemspec.yml +2 -1
- data/lib/core_ext/class.rb +14 -0
- data/lib/core_ext/object.rb +12 -0
- data/lib/core_ext/symbol.rb +23 -0
- data/lib/mustang.rb +44 -0
- data/lib/mustang/context.rb +69 -0
- data/lib/mustang/errors.rb +36 -0
- data/lib/support/delegated.rb +25 -0
- data/lib/v8/array.rb +21 -0
- data/lib/v8/context.rb +13 -0
- data/lib/v8/date.rb +20 -0
- data/lib/v8/error.rb +15 -0
- data/lib/v8/external.rb +16 -0
- data/lib/v8/function.rb +11 -0
- data/lib/v8/integer.rb +16 -0
- data/lib/v8/number.rb +16 -0
- data/lib/v8/object.rb +66 -0
- data/lib/v8/regexp.rb +23 -0
- data/lib/v8/string.rb +27 -0
- data/mustang.gemspec +3 -0
- data/spec/core_ext/class_spec.rb +19 -0
- data/spec/core_ext/object_spec.rb +19 -0
- data/spec/core_ext/symbol_spec.rb +27 -0
- data/spec/fixtures/test1.js +2 -0
- data/spec/fixtures/test2.js +2 -0
- data/spec/spec_helper.rb +20 -0
- data/spec/v8/array_spec.rb +88 -0
- data/spec/v8/cast_spec.rb +151 -0
- data/spec/v8/context_spec.rb +78 -0
- data/spec/v8/data_spec.rb +39 -0
- data/spec/v8/date_spec.rb +45 -0
- data/spec/v8/empty_spec.rb +27 -0
- data/spec/v8/errors_spec.rb +142 -0
- data/spec/v8/external_spec.rb +44 -0
- data/spec/v8/function_spec.rb +170 -0
- data/spec/v8/integer_spec.rb +41 -0
- data/spec/v8/main_spec.rb +18 -0
- data/spec/v8/null_spec.rb +27 -0
- data/spec/v8/number_spec.rb +40 -0
- data/spec/v8/object_spec.rb +79 -0
- data/spec/v8/primitive_spec.rb +9 -0
- data/spec/v8/regexp_spec.rb +65 -0
- data/spec/v8/string_spec.rb +48 -0
- data/spec/v8/undefined_spec.rb +27 -0
- data/spec/v8/value_spec.rb +215 -0
- data/vendor/v8/.gitignore +2 -0
- data/vendor/v8/AUTHORS +3 -1
- data/vendor/v8/ChangeLog +117 -0
- data/vendor/v8/SConstruct +334 -53
- data/vendor/v8/include/v8-debug.h +21 -11
- data/vendor/v8/include/v8-preparser.h +1 -1
- data/vendor/v8/include/v8-profiler.h +122 -43
- data/vendor/v8/include/v8-testing.h +5 -0
- data/vendor/v8/include/v8.h +171 -17
- data/vendor/v8/preparser/SConscript +38 -0
- data/vendor/v8/preparser/preparser-process.cc +77 -114
- data/vendor/v8/samples/shell.cc +232 -46
- data/vendor/v8/src/SConscript +29 -5
- data/vendor/v8/src/accessors.cc +70 -211
- data/vendor/v8/{test/cctest/test-mips.cc → src/allocation-inl.h} +15 -18
- data/vendor/v8/src/allocation.cc +0 -82
- data/vendor/v8/src/allocation.h +9 -42
- data/vendor/v8/src/api.cc +1645 -1156
- data/vendor/v8/src/api.h +76 -12
- data/vendor/v8/src/apiutils.h +0 -7
- data/vendor/v8/src/arguments.h +15 -4
- data/vendor/v8/src/arm/assembler-arm-inl.h +10 -9
- data/vendor/v8/src/arm/assembler-arm.cc +62 -23
- data/vendor/v8/src/arm/assembler-arm.h +76 -11
- data/vendor/v8/src/arm/builtins-arm.cc +39 -33
- data/vendor/v8/src/arm/code-stubs-arm.cc +1182 -402
- data/vendor/v8/src/arm/code-stubs-arm.h +20 -54
- data/vendor/v8/src/arm/codegen-arm.cc +159 -106
- data/vendor/v8/src/arm/codegen-arm.h +6 -6
- data/vendor/v8/src/arm/constants-arm.h +16 -1
- data/vendor/v8/src/arm/cpu-arm.cc +7 -5
- data/vendor/v8/src/arm/debug-arm.cc +6 -4
- data/vendor/v8/src/arm/deoptimizer-arm.cc +51 -14
- data/vendor/v8/src/arm/disasm-arm.cc +47 -15
- data/vendor/v8/src/arm/frames-arm.h +1 -1
- data/vendor/v8/src/arm/full-codegen-arm.cc +724 -408
- data/vendor/v8/src/arm/ic-arm.cc +90 -85
- data/vendor/v8/src/arm/lithium-arm.cc +140 -69
- data/vendor/v8/src/arm/lithium-arm.h +161 -46
- data/vendor/v8/src/arm/lithium-codegen-arm.cc +567 -297
- data/vendor/v8/src/arm/lithium-codegen-arm.h +21 -9
- data/vendor/v8/src/arm/lithium-gap-resolver-arm.cc +2 -0
- data/vendor/v8/src/arm/macro-assembler-arm.cc +457 -96
- data/vendor/v8/src/arm/macro-assembler-arm.h +115 -18
- data/vendor/v8/src/arm/regexp-macro-assembler-arm.cc +20 -13
- data/vendor/v8/src/arm/regexp-macro-assembler-arm.h +1 -0
- data/vendor/v8/src/arm/simulator-arm.cc +184 -101
- data/vendor/v8/src/arm/simulator-arm.h +26 -21
- data/vendor/v8/src/arm/stub-cache-arm.cc +450 -467
- data/vendor/v8/src/arm/virtual-frame-arm.cc +14 -12
- data/vendor/v8/src/arm/virtual-frame-arm.h +11 -8
- data/vendor/v8/src/array.js +35 -18
- data/vendor/v8/src/assembler.cc +186 -92
- data/vendor/v8/src/assembler.h +106 -69
- data/vendor/v8/src/ast-inl.h +5 -0
- data/vendor/v8/src/ast.cc +46 -35
- data/vendor/v8/src/ast.h +107 -50
- data/vendor/v8/src/atomicops.h +2 -0
- data/vendor/v8/src/atomicops_internals_mips_gcc.h +169 -0
- data/vendor/v8/src/bootstrapper.cc +649 -399
- data/vendor/v8/src/bootstrapper.h +94 -27
- data/vendor/v8/src/builtins.cc +359 -227
- data/vendor/v8/src/builtins.h +157 -123
- data/vendor/v8/src/checks.cc +2 -2
- data/vendor/v8/src/checks.h +4 -0
- data/vendor/v8/src/code-stubs.cc +27 -17
- data/vendor/v8/src/code-stubs.h +38 -17
- data/vendor/v8/src/codegen-inl.h +5 -1
- data/vendor/v8/src/codegen.cc +27 -17
- data/vendor/v8/src/codegen.h +9 -9
- data/vendor/v8/src/compilation-cache.cc +92 -206
- data/vendor/v8/src/compilation-cache.h +205 -30
- data/vendor/v8/src/compiler.cc +107 -120
- data/vendor/v8/src/compiler.h +17 -2
- data/vendor/v8/src/contexts.cc +22 -15
- data/vendor/v8/src/contexts.h +14 -8
- data/vendor/v8/src/conversions.cc +86 -30
- data/vendor/v8/src/counters.cc +19 -4
- data/vendor/v8/src/counters.h +28 -16
- data/vendor/v8/src/cpu-profiler-inl.h +4 -3
- data/vendor/v8/src/cpu-profiler.cc +123 -72
- data/vendor/v8/src/cpu-profiler.h +33 -19
- data/vendor/v8/src/cpu.h +2 -0
- data/vendor/v8/src/d8-debug.cc +3 -3
- data/vendor/v8/src/d8-debug.h +7 -6
- data/vendor/v8/src/d8-posix.cc +2 -0
- data/vendor/v8/src/d8.cc +22 -12
- data/vendor/v8/src/d8.gyp +3 -0
- data/vendor/v8/src/d8.js +618 -0
- data/vendor/v8/src/data-flow.h +3 -3
- data/vendor/v8/src/dateparser.h +4 -2
- data/vendor/v8/src/debug-agent.cc +10 -9
- data/vendor/v8/src/debug-agent.h +9 -11
- data/vendor/v8/src/debug-debugger.js +121 -0
- data/vendor/v8/src/debug.cc +331 -227
- data/vendor/v8/src/debug.h +248 -219
- data/vendor/v8/src/deoptimizer.cc +173 -62
- data/vendor/v8/src/deoptimizer.h +119 -19
- data/vendor/v8/src/disasm.h +3 -0
- data/vendor/v8/src/disassembler.cc +10 -9
- data/vendor/v8/src/execution.cc +185 -129
- data/vendor/v8/src/execution.h +47 -78
- data/vendor/v8/src/extensions/experimental/break-iterator.cc +250 -0
- data/vendor/v8/src/extensions/experimental/break-iterator.h +89 -0
- data/vendor/v8/src/extensions/experimental/experimental.gyp +2 -0
- data/vendor/v8/src/extensions/experimental/i18n-extension.cc +22 -2
- data/vendor/v8/src/extensions/externalize-string-extension.cc +2 -2
- data/vendor/v8/src/extensions/gc-extension.cc +1 -1
- data/vendor/v8/src/factory.cc +261 -154
- data/vendor/v8/src/factory.h +162 -158
- data/vendor/v8/src/flag-definitions.h +17 -11
- data/vendor/v8/src/frame-element.cc +0 -5
- data/vendor/v8/src/frame-element.h +9 -13
- data/vendor/v8/src/frames-inl.h +7 -0
- data/vendor/v8/src/frames.cc +56 -46
- data/vendor/v8/src/frames.h +36 -25
- data/vendor/v8/src/full-codegen.cc +15 -24
- data/vendor/v8/src/full-codegen.h +13 -41
- data/vendor/v8/src/func-name-inferrer.cc +7 -6
- data/vendor/v8/src/func-name-inferrer.h +1 -1
- data/vendor/v8/src/gdb-jit.cc +1 -0
- data/vendor/v8/src/global-handles.cc +118 -56
- data/vendor/v8/src/global-handles.h +98 -40
- data/vendor/v8/src/globals.h +2 -2
- data/vendor/v8/src/handles-inl.h +106 -9
- data/vendor/v8/src/handles.cc +220 -157
- data/vendor/v8/src/handles.h +38 -59
- data/vendor/v8/src/hashmap.h +3 -3
- data/vendor/v8/src/heap-inl.h +141 -25
- data/vendor/v8/src/heap-profiler.cc +117 -63
- data/vendor/v8/src/heap-profiler.h +38 -21
- data/vendor/v8/src/heap.cc +805 -564
- data/vendor/v8/src/heap.h +640 -594
- data/vendor/v8/src/hydrogen-instructions.cc +216 -73
- data/vendor/v8/src/hydrogen-instructions.h +259 -124
- data/vendor/v8/src/hydrogen.cc +996 -1171
- data/vendor/v8/src/hydrogen.h +163 -144
- data/vendor/v8/src/ia32/assembler-ia32-inl.h +12 -11
- data/vendor/v8/src/ia32/assembler-ia32.cc +85 -39
- data/vendor/v8/src/ia32/assembler-ia32.h +82 -16
- data/vendor/v8/src/ia32/builtins-ia32.cc +64 -58
- data/vendor/v8/src/ia32/code-stubs-ia32.cc +248 -324
- data/vendor/v8/src/ia32/code-stubs-ia32.h +3 -44
- data/vendor/v8/src/ia32/codegen-ia32.cc +217 -165
- data/vendor/v8/src/ia32/codegen-ia32.h +3 -0
- data/vendor/v8/src/ia32/cpu-ia32.cc +6 -5
- data/vendor/v8/src/ia32/debug-ia32.cc +8 -5
- data/vendor/v8/src/ia32/deoptimizer-ia32.cc +124 -14
- data/vendor/v8/src/ia32/disasm-ia32.cc +85 -62
- data/vendor/v8/src/ia32/frames-ia32.h +1 -1
- data/vendor/v8/src/ia32/full-codegen-ia32.cc +348 -435
- data/vendor/v8/src/ia32/ic-ia32.cc +91 -91
- data/vendor/v8/src/ia32/lithium-codegen-ia32.cc +500 -255
- data/vendor/v8/src/ia32/lithium-codegen-ia32.h +13 -4
- data/vendor/v8/src/ia32/lithium-gap-resolver-ia32.cc +6 -0
- data/vendor/v8/src/ia32/lithium-ia32.cc +122 -45
- data/vendor/v8/src/ia32/lithium-ia32.h +128 -41
- data/vendor/v8/src/ia32/macro-assembler-ia32.cc +109 -84
- data/vendor/v8/src/ia32/macro-assembler-ia32.h +18 -9
- data/vendor/v8/src/ia32/regexp-macro-assembler-ia32.cc +26 -15
- data/vendor/v8/src/ia32/regexp-macro-assembler-ia32.h +1 -0
- data/vendor/v8/src/ia32/register-allocator-ia32.cc +30 -30
- data/vendor/v8/src/ia32/simulator-ia32.h +4 -4
- data/vendor/v8/src/ia32/stub-cache-ia32.cc +383 -400
- data/vendor/v8/src/ia32/virtual-frame-ia32.cc +36 -13
- data/vendor/v8/src/ia32/virtual-frame-ia32.h +11 -5
- data/vendor/v8/src/ic-inl.h +12 -2
- data/vendor/v8/src/ic.cc +304 -221
- data/vendor/v8/src/ic.h +115 -58
- data/vendor/v8/src/interpreter-irregexp.cc +25 -21
- data/vendor/v8/src/interpreter-irregexp.h +2 -1
- data/vendor/v8/src/isolate.cc +883 -0
- data/vendor/v8/src/isolate.h +1304 -0
- data/vendor/v8/src/json.js +10 -10
- data/vendor/v8/src/jsregexp.cc +111 -80
- data/vendor/v8/src/jsregexp.h +6 -7
- data/vendor/v8/src/jump-target-heavy.cc +5 -8
- data/vendor/v8/src/jump-target-heavy.h +0 -6
- data/vendor/v8/src/jump-target-inl.h +1 -1
- data/vendor/v8/src/jump-target-light.cc +3 -3
- data/vendor/v8/src/lithium-allocator-inl.h +2 -0
- data/vendor/v8/src/lithium-allocator.cc +42 -30
- data/vendor/v8/src/lithium-allocator.h +8 -22
- data/vendor/v8/src/lithium.cc +1 -0
- data/vendor/v8/src/liveedit.cc +141 -99
- data/vendor/v8/src/liveedit.h +7 -2
- data/vendor/v8/src/liveobjectlist-inl.h +90 -0
- data/vendor/v8/src/liveobjectlist.cc +2537 -1
- data/vendor/v8/src/liveobjectlist.h +245 -35
- data/vendor/v8/src/log-utils.cc +122 -35
- data/vendor/v8/src/log-utils.h +33 -36
- data/vendor/v8/src/log.cc +299 -241
- data/vendor/v8/src/log.h +177 -110
- data/vendor/v8/src/mark-compact.cc +612 -470
- data/vendor/v8/src/mark-compact.h +153 -80
- data/vendor/v8/src/messages.cc +16 -14
- data/vendor/v8/src/messages.js +30 -7
- data/vendor/v8/src/mips/assembler-mips-inl.h +155 -35
- data/vendor/v8/src/mips/assembler-mips.cc +1093 -219
- data/vendor/v8/src/mips/assembler-mips.h +552 -153
- data/vendor/v8/src/mips/builtins-mips.cc +43 -100
- data/vendor/v8/src/mips/code-stubs-mips.cc +752 -0
- data/vendor/v8/src/mips/code-stubs-mips.h +511 -0
- data/vendor/v8/src/mips/codegen-mips-inl.h +8 -14
- data/vendor/v8/src/mips/codegen-mips.cc +672 -896
- data/vendor/v8/src/mips/codegen-mips.h +271 -69
- data/vendor/v8/src/mips/constants-mips.cc +44 -20
- data/vendor/v8/src/mips/constants-mips.h +238 -40
- data/vendor/v8/src/mips/cpu-mips.cc +20 -3
- data/vendor/v8/src/mips/debug-mips.cc +35 -7
- data/vendor/v8/src/mips/deoptimizer-mips.cc +91 -0
- data/vendor/v8/src/mips/disasm-mips.cc +329 -93
- data/vendor/v8/src/mips/frames-mips.cc +2 -50
- data/vendor/v8/src/mips/frames-mips.h +24 -9
- data/vendor/v8/src/mips/full-codegen-mips.cc +473 -23
- data/vendor/v8/src/mips/ic-mips.cc +81 -45
- data/vendor/v8/src/mips/jump-target-mips.cc +11 -106
- data/vendor/v8/src/mips/lithium-codegen-mips.h +65 -0
- data/vendor/v8/src/mips/lithium-mips.h +304 -0
- data/vendor/v8/src/mips/macro-assembler-mips.cc +2391 -390
- data/vendor/v8/src/mips/macro-assembler-mips.h +718 -121
- data/vendor/v8/src/mips/regexp-macro-assembler-mips.cc +478 -0
- data/vendor/v8/src/mips/regexp-macro-assembler-mips.h +250 -0
- data/vendor/v8/src/mips/register-allocator-mips-inl.h +0 -3
- data/vendor/v8/src/mips/register-allocator-mips.h +3 -2
- data/vendor/v8/src/mips/simulator-mips.cc +1009 -221
- data/vendor/v8/src/mips/simulator-mips.h +119 -36
- data/vendor/v8/src/mips/stub-cache-mips.cc +331 -148
- data/vendor/v8/src/mips/{fast-codegen-mips.cc → virtual-frame-mips-inl.h} +11 -30
- data/vendor/v8/src/mips/virtual-frame-mips.cc +137 -149
- data/vendor/v8/src/mips/virtual-frame-mips.h +294 -312
- data/vendor/v8/src/mirror-debugger.js +9 -8
- data/vendor/v8/src/mksnapshot.cc +2 -2
- data/vendor/v8/src/objects-debug.cc +16 -16
- data/vendor/v8/src/objects-inl.h +421 -195
- data/vendor/v8/src/objects-printer.cc +7 -7
- data/vendor/v8/src/objects-visiting.cc +1 -1
- data/vendor/v8/src/objects-visiting.h +33 -12
- data/vendor/v8/src/objects.cc +935 -658
- data/vendor/v8/src/objects.h +234 -139
- data/vendor/v8/src/parser.cc +484 -439
- data/vendor/v8/src/parser.h +35 -14
- data/vendor/v8/src/platform-cygwin.cc +173 -107
- data/vendor/v8/src/platform-freebsd.cc +224 -72
- data/vendor/v8/src/platform-linux.cc +234 -95
- data/vendor/v8/src/platform-macos.cc +215 -82
- data/vendor/v8/src/platform-nullos.cc +9 -3
- data/vendor/v8/src/platform-openbsd.cc +22 -7
- data/vendor/v8/src/platform-posix.cc +30 -5
- data/vendor/v8/src/platform-solaris.cc +120 -38
- data/vendor/v8/src/platform-tls-mac.h +62 -0
- data/vendor/v8/src/platform-tls-win32.h +62 -0
- data/vendor/v8/src/platform-tls.h +50 -0
- data/vendor/v8/src/platform-win32.cc +195 -97
- data/vendor/v8/src/platform.h +72 -15
- data/vendor/v8/src/preparse-data.cc +2 -0
- data/vendor/v8/src/preparser-api.cc +8 -2
- data/vendor/v8/src/preparser.cc +1 -1
- data/vendor/v8/src/prettyprinter.cc +43 -52
- data/vendor/v8/src/prettyprinter.h +1 -1
- data/vendor/v8/src/profile-generator-inl.h +0 -28
- data/vendor/v8/src/profile-generator.cc +942 -685
- data/vendor/v8/src/profile-generator.h +210 -176
- data/vendor/v8/src/property.cc +6 -0
- data/vendor/v8/src/property.h +14 -3
- data/vendor/v8/src/regexp-macro-assembler-irregexp.cc +1 -1
- data/vendor/v8/src/regexp-macro-assembler.cc +28 -19
- data/vendor/v8/src/regexp-macro-assembler.h +11 -6
- data/vendor/v8/src/regexp-stack.cc +18 -10
- data/vendor/v8/src/regexp-stack.h +45 -21
- data/vendor/v8/src/regexp.js +3 -3
- data/vendor/v8/src/register-allocator-inl.h +3 -3
- data/vendor/v8/src/register-allocator.cc +1 -7
- data/vendor/v8/src/register-allocator.h +5 -15
- data/vendor/v8/src/rewriter.cc +2 -1
- data/vendor/v8/src/runtime-profiler.cc +158 -128
- data/vendor/v8/src/runtime-profiler.h +131 -15
- data/vendor/v8/src/runtime.cc +2409 -1692
- data/vendor/v8/src/runtime.h +93 -17
- data/vendor/v8/src/safepoint-table.cc +3 -0
- data/vendor/v8/src/safepoint-table.h +9 -3
- data/vendor/v8/src/scanner-base.cc +21 -28
- data/vendor/v8/src/scanner-base.h +22 -11
- data/vendor/v8/src/scanner.cc +3 -5
- data/vendor/v8/src/scanner.h +4 -2
- data/vendor/v8/src/scopeinfo.cc +11 -16
- data/vendor/v8/src/scopeinfo.h +26 -15
- data/vendor/v8/src/scopes.cc +67 -37
- data/vendor/v8/src/scopes.h +26 -12
- data/vendor/v8/src/serialize.cc +193 -154
- data/vendor/v8/src/serialize.h +41 -36
- data/vendor/v8/src/small-pointer-list.h +163 -0
- data/vendor/v8/src/snapshot-common.cc +1 -1
- data/vendor/v8/src/snapshot.h +3 -1
- data/vendor/v8/src/spaces-inl.h +30 -25
- data/vendor/v8/src/spaces.cc +263 -370
- data/vendor/v8/src/spaces.h +178 -166
- data/vendor/v8/src/string-search.cc +4 -3
- data/vendor/v8/src/string-search.h +21 -20
- data/vendor/v8/src/string-stream.cc +32 -24
- data/vendor/v8/src/string.js +7 -7
- data/vendor/v8/src/stub-cache.cc +324 -248
- data/vendor/v8/src/stub-cache.h +181 -155
- data/vendor/v8/src/token.cc +3 -3
- data/vendor/v8/src/token.h +3 -3
- data/vendor/v8/src/top.cc +218 -390
- data/vendor/v8/src/type-info.cc +98 -32
- data/vendor/v8/src/type-info.h +10 -3
- data/vendor/v8/src/unicode.cc +1 -1
- data/vendor/v8/src/unicode.h +1 -1
- data/vendor/v8/src/utils.h +3 -0
- data/vendor/v8/src/v8-counters.cc +18 -11
- data/vendor/v8/src/v8-counters.h +34 -13
- data/vendor/v8/src/v8.cc +66 -121
- data/vendor/v8/src/v8.h +7 -4
- data/vendor/v8/src/v8globals.h +18 -12
- data/vendor/v8/src/{memory.h → v8memory.h} +0 -0
- data/vendor/v8/src/v8natives.js +59 -18
- data/vendor/v8/src/v8threads.cc +127 -114
- data/vendor/v8/src/v8threads.h +42 -35
- data/vendor/v8/src/v8utils.h +2 -39
- data/vendor/v8/src/variables.h +1 -1
- data/vendor/v8/src/version.cc +26 -5
- data/vendor/v8/src/version.h +4 -0
- data/vendor/v8/src/virtual-frame-heavy-inl.h +2 -4
- data/vendor/v8/src/virtual-frame-light-inl.h +5 -4
- data/vendor/v8/src/vm-state-inl.h +21 -17
- data/vendor/v8/src/vm-state.h +7 -5
- data/vendor/v8/src/win32-headers.h +1 -0
- data/vendor/v8/src/x64/assembler-x64-inl.h +12 -11
- data/vendor/v8/src/x64/assembler-x64.cc +80 -40
- data/vendor/v8/src/x64/assembler-x64.h +67 -17
- data/vendor/v8/src/x64/builtins-x64.cc +34 -33
- data/vendor/v8/src/x64/code-stubs-x64.cc +636 -377
- data/vendor/v8/src/x64/code-stubs-x64.h +14 -48
- data/vendor/v8/src/x64/codegen-x64-inl.h +1 -1
- data/vendor/v8/src/x64/codegen-x64.cc +158 -136
- data/vendor/v8/src/x64/codegen-x64.h +4 -1
- data/vendor/v8/src/x64/cpu-x64.cc +7 -5
- data/vendor/v8/src/x64/debug-x64.cc +8 -6
- data/vendor/v8/src/x64/deoptimizer-x64.cc +195 -20
- data/vendor/v8/src/x64/disasm-x64.cc +42 -23
- data/vendor/v8/src/x64/frames-x64.cc +1 -1
- data/vendor/v8/src/x64/frames-x64.h +2 -2
- data/vendor/v8/src/x64/full-codegen-x64.cc +780 -218
- data/vendor/v8/src/x64/ic-x64.cc +77 -79
- data/vendor/v8/src/x64/jump-target-x64.cc +1 -1
- data/vendor/v8/src/x64/lithium-codegen-x64.cc +698 -181
- data/vendor/v8/src/x64/lithium-codegen-x64.h +31 -6
- data/vendor/v8/src/x64/lithium-x64.cc +136 -54
- data/vendor/v8/src/x64/lithium-x64.h +142 -51
- data/vendor/v8/src/x64/macro-assembler-x64.cc +456 -187
- data/vendor/v8/src/x64/macro-assembler-x64.h +166 -34
- data/vendor/v8/src/x64/regexp-macro-assembler-x64.cc +44 -28
- data/vendor/v8/src/x64/regexp-macro-assembler-x64.h +8 -4
- data/vendor/v8/src/x64/register-allocator-x64-inl.h +3 -3
- data/vendor/v8/src/x64/register-allocator-x64.cc +12 -8
- data/vendor/v8/src/x64/simulator-x64.h +5 -5
- data/vendor/v8/src/x64/stub-cache-x64.cc +299 -344
- data/vendor/v8/src/x64/virtual-frame-x64.cc +37 -13
- data/vendor/v8/src/x64/virtual-frame-x64.h +13 -7
- data/vendor/v8/src/zone-inl.h +49 -3
- data/vendor/v8/src/zone.cc +42 -41
- data/vendor/v8/src/zone.h +37 -34
- data/vendor/v8/test/benchmarks/testcfg.py +100 -0
- data/vendor/v8/test/cctest/SConscript +5 -4
- data/vendor/v8/test/cctest/cctest.h +3 -2
- data/vendor/v8/test/cctest/cctest.status +6 -11
- data/vendor/v8/test/cctest/test-accessors.cc +3 -3
- data/vendor/v8/test/cctest/test-alloc.cc +39 -33
- data/vendor/v8/test/cctest/test-api.cc +1092 -205
- data/vendor/v8/test/cctest/test-assembler-arm.cc +39 -25
- data/vendor/v8/test/cctest/test-assembler-ia32.cc +36 -37
- data/vendor/v8/test/cctest/test-assembler-mips.cc +1098 -40
- data/vendor/v8/test/cctest/test-assembler-x64.cc +32 -25
- data/vendor/v8/test/cctest/test-ast.cc +1 -0
- data/vendor/v8/test/cctest/test-circular-queue.cc +8 -5
- data/vendor/v8/test/cctest/test-compiler.cc +24 -24
- data/vendor/v8/test/cctest/test-cpu-profiler.cc +140 -5
- data/vendor/v8/test/cctest/test-dataflow.cc +1 -0
- data/vendor/v8/test/cctest/test-debug.cc +136 -77
- data/vendor/v8/test/cctest/test-decls.cc +1 -1
- data/vendor/v8/test/cctest/test-deoptimization.cc +25 -24
- data/vendor/v8/test/cctest/test-disasm-arm.cc +9 -4
- data/vendor/v8/test/cctest/test-disasm-ia32.cc +10 -8
- data/vendor/v8/test/cctest/test-func-name-inference.cc +10 -4
- data/vendor/v8/test/cctest/test-heap-profiler.cc +226 -164
- data/vendor/v8/test/cctest/test-heap.cc +240 -217
- data/vendor/v8/test/cctest/test-liveedit.cc +1 -0
- data/vendor/v8/test/cctest/test-log-stack-tracer.cc +18 -20
- data/vendor/v8/test/cctest/test-log.cc +114 -108
- data/vendor/v8/test/cctest/test-macro-assembler-x64.cc +247 -177
- data/vendor/v8/test/cctest/test-mark-compact.cc +129 -90
- data/vendor/v8/test/cctest/test-parsing.cc +15 -14
- data/vendor/v8/test/cctest/test-platform-linux.cc +1 -0
- data/vendor/v8/test/cctest/test-platform-tls.cc +66 -0
- data/vendor/v8/test/cctest/test-platform-win32.cc +1 -0
- data/vendor/v8/test/cctest/test-profile-generator.cc +1 -1
- data/vendor/v8/test/cctest/test-regexp.cc +53 -41
- data/vendor/v8/test/cctest/test-reloc-info.cc +18 -11
- data/vendor/v8/test/cctest/test-serialize.cc +44 -43
- data/vendor/v8/test/cctest/test-sockets.cc +8 -3
- data/vendor/v8/test/cctest/test-spaces.cc +47 -29
- data/vendor/v8/test/cctest/test-strings.cc +20 -20
- data/vendor/v8/test/cctest/test-thread-termination.cc +8 -3
- data/vendor/v8/test/cctest/test-threads.cc +5 -3
- data/vendor/v8/test/cctest/test-utils.cc +5 -4
- data/vendor/v8/test/cctest/testcfg.py +7 -3
- data/vendor/v8/test/es5conform/es5conform.status +2 -77
- data/vendor/v8/test/es5conform/testcfg.py +1 -1
- data/vendor/v8/test/message/testcfg.py +1 -1
- data/vendor/v8/test/mjsunit/accessors-on-global-object.js +3 -3
- data/vendor/v8/test/mjsunit/array-concat.js +43 -1
- data/vendor/v8/test/mjsunit/array-join.js +25 -0
- data/vendor/v8/test/mjsunit/bitops-info.js +7 -1
- data/vendor/v8/test/mjsunit/compiler/array-length.js +2 -2
- data/vendor/v8/test/mjsunit/compiler/global-accessors.js +47 -0
- data/vendor/v8/test/mjsunit/compiler/pic.js +1 -1
- data/vendor/v8/test/mjsunit/compiler/regress-loadfield.js +65 -0
- data/vendor/v8/test/mjsunit/math-sqrt.js +5 -1
- data/vendor/v8/test/mjsunit/mjsunit.js +59 -8
- data/vendor/v8/test/mjsunit/mjsunit.status +0 -12
- data/vendor/v8/test/mjsunit/mul-exhaustive.js +129 -11
- data/vendor/v8/test/mjsunit/negate-zero.js +1 -1
- data/vendor/v8/test/mjsunit/object-freeze.js +5 -13
- data/vendor/v8/test/mjsunit/object-prevent-extensions.js +9 -50
- data/vendor/v8/test/mjsunit/object-seal.js +4 -13
- data/vendor/v8/test/mjsunit/override-eval-with-non-function.js +36 -0
- data/vendor/v8/test/mjsunit/regress/regress-1145.js +54 -0
- data/vendor/v8/test/mjsunit/regress/regress-1172-bis.js +37 -0
- data/vendor/v8/test/mjsunit/regress/regress-1181.js +54 -0
- data/vendor/v8/test/mjsunit/regress/regress-1207.js +35 -0
- data/vendor/v8/test/mjsunit/regress/regress-1209.js +34 -0
- data/vendor/v8/test/mjsunit/regress/regress-1210.js +48 -0
- data/vendor/v8/test/mjsunit/regress/regress-1213.js +43 -0
- data/vendor/v8/test/mjsunit/regress/regress-1218.js +29 -0
- data/vendor/v8/test/mjsunit/regress/regress-1229.js +79 -0
- data/vendor/v8/test/mjsunit/regress/regress-1233.js +47 -0
- data/vendor/v8/test/mjsunit/regress/regress-1236.js +34 -0
- data/vendor/v8/test/mjsunit/regress/regress-1237.js +36 -0
- data/vendor/v8/test/mjsunit/regress/regress-1240.js +39 -0
- data/vendor/v8/test/mjsunit/regress/regress-1257.js +58 -0
- data/vendor/v8/test/mjsunit/regress/regress-1278.js +69 -0
- data/vendor/v8/test/mjsunit/regress/regress-create-exception.js +1 -0
- data/vendor/v8/test/mjsunit/regress/regress-lazy-deopt-reloc.js +52 -0
- data/vendor/v8/test/mjsunit/sin-cos.js +15 -10
- data/vendor/v8/test/mjsunit/smi-negative-zero.js +2 -2
- data/vendor/v8/test/mjsunit/str-to-num.js +1 -1
- data/vendor/v8/test/mjsunit/strict-mode.js +435 -0
- data/vendor/v8/test/mjsunit/testcfg.py +23 -6
- data/vendor/v8/test/mozilla/mozilla.status +0 -2
- data/vendor/v8/test/mozilla/testcfg.py +1 -1
- data/vendor/v8/test/preparser/empty.js +28 -0
- data/vendor/v8/test/preparser/functions-only.js +38 -0
- data/vendor/v8/test/preparser/non-alphanum.js +34 -0
- data/vendor/v8/test/preparser/symbols-only.js +49 -0
- data/vendor/v8/test/preparser/testcfg.py +90 -0
- data/vendor/v8/test/sputnik/testcfg.py +1 -1
- data/vendor/v8/test/test262/README +16 -0
- data/vendor/v8/test/test262/harness-adapt.js +80 -0
- data/vendor/v8/test/test262/test262.status +1506 -0
- data/vendor/v8/test/test262/testcfg.py +123 -0
- data/vendor/v8/tools/freebsd-tick-processor +10 -0
- data/vendor/v8/tools/gyp/v8.gyp +8 -33
- data/vendor/v8/tools/linux-tick-processor +5 -3
- data/vendor/v8/tools/test.py +37 -14
- data/vendor/v8/tools/tickprocessor.js +22 -8
- data/vendor/v8/tools/visual_studio/v8_base.vcproj +13 -1
- data/vendor/v8/tools/visual_studio/v8_base_arm.vcproj +5 -1
- data/vendor/v8/tools/visual_studio/v8_base_x64.vcproj +5 -1
- data/vendor/v8/tools/visual_studio/x64.vsprops +1 -0
- metadata +1495 -1341
- data/ext/extconf.rb +0 -22
- data/ext/mustang.cpp +0 -58
- data/vendor/v8/src/top.h +0 -608
@@ -39,30 +39,50 @@
|
|
39
39
|
namespace v8 {
|
40
40
|
namespace internal {
|
41
41
|
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
42
|
+
DeoptimizerData::DeoptimizerData() {
|
43
|
+
eager_deoptimization_entry_code_ = NULL;
|
44
|
+
lazy_deoptimization_entry_code_ = NULL;
|
45
|
+
current_ = NULL;
|
46
|
+
deoptimizing_code_list_ = NULL;
|
47
|
+
}
|
48
|
+
|
46
49
|
|
50
|
+
DeoptimizerData::~DeoptimizerData() {
|
51
|
+
if (eager_deoptimization_entry_code_ != NULL) {
|
52
|
+
eager_deoptimization_entry_code_->Free(EXECUTABLE);
|
53
|
+
eager_deoptimization_entry_code_ = NULL;
|
54
|
+
}
|
55
|
+
if (lazy_deoptimization_entry_code_ != NULL) {
|
56
|
+
lazy_deoptimization_entry_code_->Free(EXECUTABLE);
|
57
|
+
lazy_deoptimization_entry_code_ = NULL;
|
58
|
+
}
|
59
|
+
}
|
47
60
|
|
48
61
|
Deoptimizer* Deoptimizer::New(JSFunction* function,
|
49
62
|
BailoutType type,
|
50
63
|
unsigned bailout_id,
|
51
64
|
Address from,
|
52
|
-
int fp_to_sp_delta
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
65
|
+
int fp_to_sp_delta,
|
66
|
+
Isolate* isolate) {
|
67
|
+
ASSERT(isolate == Isolate::Current());
|
68
|
+
Deoptimizer* deoptimizer = new Deoptimizer(isolate,
|
69
|
+
function,
|
70
|
+
type,
|
71
|
+
bailout_id,
|
72
|
+
from,
|
73
|
+
fp_to_sp_delta);
|
74
|
+
ASSERT(isolate->deoptimizer_data()->current_ == NULL);
|
75
|
+
isolate->deoptimizer_data()->current_ = deoptimizer;
|
57
76
|
return deoptimizer;
|
58
77
|
}
|
59
78
|
|
60
79
|
|
61
|
-
Deoptimizer* Deoptimizer::Grab() {
|
62
|
-
|
80
|
+
Deoptimizer* Deoptimizer::Grab(Isolate* isolate) {
|
81
|
+
ASSERT(isolate == Isolate::Current());
|
82
|
+
Deoptimizer* result = isolate->deoptimizer_data()->current_;
|
63
83
|
ASSERT(result != NULL);
|
64
84
|
result->DeleteFrameDescriptions();
|
65
|
-
current_ = NULL;
|
85
|
+
isolate->deoptimizer_data()->current_ = NULL;
|
66
86
|
return result;
|
67
87
|
}
|
68
88
|
|
@@ -155,7 +175,7 @@ void Deoptimizer::VisitAllOptimizedFunctions(
|
|
155
175
|
AssertNoAllocation no_allocation;
|
156
176
|
|
157
177
|
// Run through the list of all global contexts and deoptimize.
|
158
|
-
Object* global =
|
178
|
+
Object* global = Isolate::Current()->heap()->global_contexts_list();
|
159
179
|
while (!global->IsUndefined()) {
|
160
180
|
VisitAllOptimizedFunctionsForGlobalObject(Context::cast(global)->global(),
|
161
181
|
visitor);
|
@@ -170,7 +190,7 @@ void Deoptimizer::HandleWeakDeoptimizedCode(
|
|
170
190
|
reinterpret_cast<DeoptimizingCodeListNode*>(data);
|
171
191
|
RemoveDeoptimizingCode(*node->code());
|
172
192
|
#ifdef DEBUG
|
173
|
-
node =
|
193
|
+
node = Isolate::Current()->deoptimizer_data()->deoptimizing_code_list_;
|
174
194
|
while (node != NULL) {
|
175
195
|
ASSERT(node != reinterpret_cast<DeoptimizingCodeListNode*>(data));
|
176
196
|
node = node->next();
|
@@ -184,12 +204,14 @@ void Deoptimizer::ComputeOutputFrames(Deoptimizer* deoptimizer) {
|
|
184
204
|
}
|
185
205
|
|
186
206
|
|
187
|
-
Deoptimizer::Deoptimizer(
|
207
|
+
Deoptimizer::Deoptimizer(Isolate* isolate,
|
208
|
+
JSFunction* function,
|
188
209
|
BailoutType type,
|
189
210
|
unsigned bailout_id,
|
190
211
|
Address from,
|
191
212
|
int fp_to_sp_delta)
|
192
|
-
:
|
213
|
+
: isolate_(isolate),
|
214
|
+
function_(function),
|
193
215
|
bailout_id_(bailout_id),
|
194
216
|
bailout_type_(type),
|
195
217
|
from_(from),
|
@@ -228,7 +250,7 @@ Deoptimizer::Deoptimizer(JSFunction* function,
|
|
228
250
|
ASSERT(optimized_code_->kind() == Code::OPTIMIZED_FUNCTION);
|
229
251
|
ASSERT(!optimized_code_->contains(from));
|
230
252
|
}
|
231
|
-
ASSERT(
|
253
|
+
ASSERT(HEAP->allow_allocation(false));
|
232
254
|
unsigned size = ComputeInputFrameSize();
|
233
255
|
input_ = new(size) FrameDescription(size, function);
|
234
256
|
}
|
@@ -249,7 +271,7 @@ void Deoptimizer::DeleteFrameDescriptions() {
|
|
249
271
|
delete[] output_;
|
250
272
|
input_ = NULL;
|
251
273
|
output_ = NULL;
|
252
|
-
ASSERT(!
|
274
|
+
ASSERT(!HEAP->allow_allocation(true));
|
253
275
|
}
|
254
276
|
|
255
277
|
|
@@ -257,16 +279,17 @@ Address Deoptimizer::GetDeoptimizationEntry(int id, BailoutType type) {
|
|
257
279
|
ASSERT(id >= 0);
|
258
280
|
if (id >= kNumberOfEntries) return NULL;
|
259
281
|
LargeObjectChunk* base = NULL;
|
282
|
+
DeoptimizerData* data = Isolate::Current()->deoptimizer_data();
|
260
283
|
if (type == EAGER) {
|
261
|
-
if (eager_deoptimization_entry_code_ == NULL) {
|
262
|
-
eager_deoptimization_entry_code_ = CreateCode(type);
|
284
|
+
if (data->eager_deoptimization_entry_code_ == NULL) {
|
285
|
+
data->eager_deoptimization_entry_code_ = CreateCode(type);
|
263
286
|
}
|
264
|
-
base = eager_deoptimization_entry_code_;
|
287
|
+
base = data->eager_deoptimization_entry_code_;
|
265
288
|
} else {
|
266
|
-
if (lazy_deoptimization_entry_code_ == NULL) {
|
267
|
-
lazy_deoptimization_entry_code_ = CreateCode(type);
|
289
|
+
if (data->lazy_deoptimization_entry_code_ == NULL) {
|
290
|
+
data->lazy_deoptimization_entry_code_ = CreateCode(type);
|
268
291
|
}
|
269
|
-
base = lazy_deoptimization_entry_code_;
|
292
|
+
base = data->lazy_deoptimization_entry_code_;
|
270
293
|
}
|
271
294
|
return
|
272
295
|
static_cast<Address>(base->GetStartAddress()) + (id * table_entry_size_);
|
@@ -275,10 +298,11 @@ Address Deoptimizer::GetDeoptimizationEntry(int id, BailoutType type) {
|
|
275
298
|
|
276
299
|
int Deoptimizer::GetDeoptimizationId(Address addr, BailoutType type) {
|
277
300
|
LargeObjectChunk* base = NULL;
|
301
|
+
DeoptimizerData* data = Isolate::Current()->deoptimizer_data();
|
278
302
|
if (type == EAGER) {
|
279
|
-
base = eager_deoptimization_entry_code_;
|
303
|
+
base = data->eager_deoptimization_entry_code_;
|
280
304
|
} else {
|
281
|
-
base = lazy_deoptimization_entry_code_;
|
305
|
+
base = data->lazy_deoptimization_entry_code_;
|
282
306
|
}
|
283
307
|
if (base == NULL ||
|
284
308
|
addr < base->GetStartAddress() ||
|
@@ -292,23 +316,6 @@ int Deoptimizer::GetDeoptimizationId(Address addr, BailoutType type) {
|
|
292
316
|
}
|
293
317
|
|
294
318
|
|
295
|
-
void Deoptimizer::Setup() {
|
296
|
-
// Do nothing yet.
|
297
|
-
}
|
298
|
-
|
299
|
-
|
300
|
-
void Deoptimizer::TearDown() {
|
301
|
-
if (eager_deoptimization_entry_code_ != NULL) {
|
302
|
-
eager_deoptimization_entry_code_->Free(EXECUTABLE);
|
303
|
-
eager_deoptimization_entry_code_ = NULL;
|
304
|
-
}
|
305
|
-
if (lazy_deoptimization_entry_code_ != NULL) {
|
306
|
-
lazy_deoptimization_entry_code_->Free(EXECUTABLE);
|
307
|
-
lazy_deoptimization_entry_code_ = NULL;
|
308
|
-
}
|
309
|
-
}
|
310
|
-
|
311
|
-
|
312
319
|
int Deoptimizer::GetOutputInfo(DeoptimizationOutputData* data,
|
313
320
|
unsigned id,
|
314
321
|
SharedFunctionInfo* shared) {
|
@@ -335,9 +342,10 @@ int Deoptimizer::GetOutputInfo(DeoptimizationOutputData* data,
|
|
335
342
|
}
|
336
343
|
|
337
344
|
|
338
|
-
int Deoptimizer::GetDeoptimizedCodeCount() {
|
345
|
+
int Deoptimizer::GetDeoptimizedCodeCount(Isolate* isolate) {
|
339
346
|
int length = 0;
|
340
|
-
DeoptimizingCodeListNode* node =
|
347
|
+
DeoptimizingCodeListNode* node =
|
348
|
+
isolate->deoptimizer_data()->deoptimizing_code_list_;
|
341
349
|
while (node != NULL) {
|
342
350
|
length++;
|
343
351
|
node = node->next();
|
@@ -445,7 +453,7 @@ void Deoptimizer::InsertHeapNumberValue(JavaScriptFrame* frame,
|
|
445
453
|
int tos_index = stack_index + extra_slot_count;
|
446
454
|
int index = (frame->ComputeExpressionsCount() - 1) - tos_index;
|
447
455
|
if (FLAG_trace_deopt) PrintF("Allocating a new heap number: %e\n", val);
|
448
|
-
Handle<Object> num =
|
456
|
+
Handle<Object> num = isolate_->factory()->NewNumber(val);
|
449
457
|
frame->SetExpression(index, *num);
|
450
458
|
}
|
451
459
|
|
@@ -625,10 +633,11 @@ void Deoptimizer::DoTranslateCommand(TranslationIterator* iterator,
|
|
625
633
|
PrintF(" 0x%08" V8PRIxPTR ": [top + %d] <- ",
|
626
634
|
output_[frame_index]->GetTop() + output_offset,
|
627
635
|
output_offset);
|
628
|
-
|
636
|
+
isolate_->heap()->arguments_marker()->ShortPrint();
|
629
637
|
PrintF(" ; arguments object\n");
|
630
638
|
}
|
631
|
-
intptr_t value = reinterpret_cast<intptr_t>(
|
639
|
+
intptr_t value = reinterpret_cast<intptr_t>(
|
640
|
+
isolate_->heap()->arguments_marker());
|
632
641
|
output_[frame_index]->SetFrameSlot(output_offset, value);
|
633
642
|
return;
|
634
643
|
}
|
@@ -923,10 +932,9 @@ LargeObjectChunk* Deoptimizer::CreateCode(BailoutType type) {
|
|
923
932
|
// references. This is fine because the deoptimizer's code section
|
924
933
|
// isn't meant to be serialized at all.
|
925
934
|
ASSERT(!Serializer::enabled());
|
926
|
-
bool old_debug_code = FLAG_debug_code;
|
927
|
-
FLAG_debug_code = false;
|
928
935
|
|
929
|
-
MacroAssembler masm(NULL, 16 * KB);
|
936
|
+
MacroAssembler masm(Isolate::Current(), NULL, 16 * KB);
|
937
|
+
masm.set_emit_debug_code(false);
|
930
938
|
GenerateDeoptimizationEntries(&masm, kNumberOfEntries, type);
|
931
939
|
CodeDesc desc;
|
932
940
|
masm.GetCode(&desc);
|
@@ -935,13 +943,13 @@ LargeObjectChunk* Deoptimizer::CreateCode(BailoutType type) {
|
|
935
943
|
LargeObjectChunk* chunk = LargeObjectChunk::New(desc.instr_size, EXECUTABLE);
|
936
944
|
memcpy(chunk->GetStartAddress(), desc.buffer, desc.instr_size);
|
937
945
|
CPU::FlushICache(chunk->GetStartAddress(), desc.instr_size);
|
938
|
-
FLAG_debug_code = old_debug_code;
|
939
946
|
return chunk;
|
940
947
|
}
|
941
948
|
|
942
949
|
|
943
950
|
Code* Deoptimizer::FindDeoptimizingCodeFromAddress(Address addr) {
|
944
|
-
DeoptimizingCodeListNode* node =
|
951
|
+
DeoptimizingCodeListNode* node =
|
952
|
+
Isolate::Current()->deoptimizer_data()->deoptimizing_code_list_;
|
945
953
|
while (node != NULL) {
|
946
954
|
if (node->code()->contains(addr)) return *node->code();
|
947
955
|
node = node->next();
|
@@ -951,15 +959,16 @@ Code* Deoptimizer::FindDeoptimizingCodeFromAddress(Address addr) {
|
|
951
959
|
|
952
960
|
|
953
961
|
void Deoptimizer::RemoveDeoptimizingCode(Code* code) {
|
954
|
-
|
962
|
+
DeoptimizerData* data = Isolate::Current()->deoptimizer_data();
|
963
|
+
ASSERT(data->deoptimizing_code_list_ != NULL);
|
955
964
|
// Run through the code objects to find this one and remove it.
|
956
965
|
DeoptimizingCodeListNode* prev = NULL;
|
957
|
-
DeoptimizingCodeListNode* current = deoptimizing_code_list_;
|
966
|
+
DeoptimizingCodeListNode* current = data->deoptimizing_code_list_;
|
958
967
|
while (current != NULL) {
|
959
968
|
if (*current->code() == code) {
|
960
969
|
// Unlink from list. If prev is NULL we are looking at the first element.
|
961
970
|
if (prev == NULL) {
|
962
|
-
deoptimizing_code_list_ = current->next();
|
971
|
+
data->deoptimizing_code_list_ = current->next();
|
963
972
|
} else {
|
964
973
|
prev->set_next(current->next());
|
965
974
|
}
|
@@ -1046,7 +1055,8 @@ int32_t TranslationIterator::Next() {
|
|
1046
1055
|
|
1047
1056
|
Handle<ByteArray> TranslationBuffer::CreateByteArray() {
|
1048
1057
|
int length = contents_.length();
|
1049
|
-
Handle<ByteArray> result =
|
1058
|
+
Handle<ByteArray> result =
|
1059
|
+
Isolate::Current()->factory()->NewByteArray(length, TENURED);
|
1050
1060
|
memcpy(result->GetDataStartAddress(), contents_.ToVector().start(), length);
|
1051
1061
|
return result;
|
1052
1062
|
}
|
@@ -1169,16 +1179,117 @@ const char* Translation::StringFor(Opcode opcode) {
|
|
1169
1179
|
|
1170
1180
|
|
1171
1181
|
DeoptimizingCodeListNode::DeoptimizingCodeListNode(Code* code): next_(NULL) {
|
1182
|
+
GlobalHandles* global_handles = Isolate::Current()->global_handles();
|
1172
1183
|
// Globalize the code object and make it weak.
|
1173
|
-
code_ = Handle<Code>::cast(
|
1174
|
-
|
1175
|
-
|
1176
|
-
|
1184
|
+
code_ = Handle<Code>::cast(global_handles->Create(code));
|
1185
|
+
global_handles->MakeWeak(reinterpret_cast<Object**>(code_.location()),
|
1186
|
+
this,
|
1187
|
+
Deoptimizer::HandleWeakDeoptimizedCode);
|
1177
1188
|
}
|
1178
1189
|
|
1179
1190
|
|
1180
1191
|
DeoptimizingCodeListNode::~DeoptimizingCodeListNode() {
|
1181
|
-
GlobalHandles::
|
1192
|
+
GlobalHandles* global_handles = Isolate::Current()->global_handles();
|
1193
|
+
global_handles->Destroy(reinterpret_cast<Object**>(code_.location()));
|
1194
|
+
}
|
1195
|
+
|
1196
|
+
|
1197
|
+
// We can't intermix stack decoding and allocations because
|
1198
|
+
// deoptimization infrastracture is not GC safe.
|
1199
|
+
// Thus we build a temporary structure in malloced space.
|
1200
|
+
SlotRef SlotRef::ComputeSlotForNextArgument(TranslationIterator* iterator,
|
1201
|
+
DeoptimizationInputData* data,
|
1202
|
+
JavaScriptFrame* frame) {
|
1203
|
+
Translation::Opcode opcode =
|
1204
|
+
static_cast<Translation::Opcode>(iterator->Next());
|
1205
|
+
|
1206
|
+
switch (opcode) {
|
1207
|
+
case Translation::BEGIN:
|
1208
|
+
case Translation::FRAME:
|
1209
|
+
// Peeled off before getting here.
|
1210
|
+
break;
|
1211
|
+
|
1212
|
+
case Translation::ARGUMENTS_OBJECT:
|
1213
|
+
// This can be only emitted for local slots not for argument slots.
|
1214
|
+
break;
|
1215
|
+
|
1216
|
+
case Translation::REGISTER:
|
1217
|
+
case Translation::INT32_REGISTER:
|
1218
|
+
case Translation::DOUBLE_REGISTER:
|
1219
|
+
case Translation::DUPLICATE:
|
1220
|
+
// We are at safepoint which corresponds to call. All registers are
|
1221
|
+
// saved by caller so there would be no live registers at this
|
1222
|
+
// point. Thus these translation commands should not be used.
|
1223
|
+
break;
|
1224
|
+
|
1225
|
+
case Translation::STACK_SLOT: {
|
1226
|
+
int slot_index = iterator->Next();
|
1227
|
+
Address slot_addr = SlotAddress(frame, slot_index);
|
1228
|
+
return SlotRef(slot_addr, SlotRef::TAGGED);
|
1229
|
+
}
|
1230
|
+
|
1231
|
+
case Translation::INT32_STACK_SLOT: {
|
1232
|
+
int slot_index = iterator->Next();
|
1233
|
+
Address slot_addr = SlotAddress(frame, slot_index);
|
1234
|
+
return SlotRef(slot_addr, SlotRef::INT32);
|
1235
|
+
}
|
1236
|
+
|
1237
|
+
case Translation::DOUBLE_STACK_SLOT: {
|
1238
|
+
int slot_index = iterator->Next();
|
1239
|
+
Address slot_addr = SlotAddress(frame, slot_index);
|
1240
|
+
return SlotRef(slot_addr, SlotRef::DOUBLE);
|
1241
|
+
}
|
1242
|
+
|
1243
|
+
case Translation::LITERAL: {
|
1244
|
+
int literal_index = iterator->Next();
|
1245
|
+
return SlotRef(data->LiteralArray()->get(literal_index));
|
1246
|
+
}
|
1247
|
+
}
|
1248
|
+
|
1249
|
+
UNREACHABLE();
|
1250
|
+
return SlotRef();
|
1251
|
+
}
|
1252
|
+
|
1253
|
+
|
1254
|
+
void SlotRef::ComputeSlotMappingForArguments(JavaScriptFrame* frame,
|
1255
|
+
int inlined_frame_index,
|
1256
|
+
Vector<SlotRef>* args_slots) {
|
1257
|
+
AssertNoAllocation no_gc;
|
1258
|
+
int deopt_index = AstNode::kNoNumber;
|
1259
|
+
DeoptimizationInputData* data =
|
1260
|
+
static_cast<OptimizedFrame*>(frame)->GetDeoptimizationData(&deopt_index);
|
1261
|
+
TranslationIterator it(data->TranslationByteArray(),
|
1262
|
+
data->TranslationIndex(deopt_index)->value());
|
1263
|
+
Translation::Opcode opcode = static_cast<Translation::Opcode>(it.Next());
|
1264
|
+
ASSERT(opcode == Translation::BEGIN);
|
1265
|
+
int frame_count = it.Next();
|
1266
|
+
USE(frame_count);
|
1267
|
+
ASSERT(frame_count > inlined_frame_index);
|
1268
|
+
int frames_to_skip = inlined_frame_index;
|
1269
|
+
while (true) {
|
1270
|
+
opcode = static_cast<Translation::Opcode>(it.Next());
|
1271
|
+
// Skip over operands to advance to the next opcode.
|
1272
|
+
it.Skip(Translation::NumberOfOperandsFor(opcode));
|
1273
|
+
if (opcode == Translation::FRAME) {
|
1274
|
+
if (frames_to_skip == 0) {
|
1275
|
+
// We reached the frame corresponding to the inlined function
|
1276
|
+
// in question. Process the translation commands for the
|
1277
|
+
// arguments.
|
1278
|
+
//
|
1279
|
+
// Skip the translation command for the receiver.
|
1280
|
+
it.Skip(Translation::NumberOfOperandsFor(
|
1281
|
+
static_cast<Translation::Opcode>(it.Next())));
|
1282
|
+
// Compute slots for arguments.
|
1283
|
+
for (int i = 0; i < args_slots->length(); ++i) {
|
1284
|
+
(*args_slots)[i] = ComputeSlotForNextArgument(&it, data, frame);
|
1285
|
+
}
|
1286
|
+
return;
|
1287
|
+
}
|
1288
|
+
frames_to_skip--;
|
1289
|
+
}
|
1290
|
+
}
|
1291
|
+
|
1292
|
+
UNREACHABLE();
|
1182
1293
|
}
|
1183
1294
|
|
1184
1295
|
|
data/vendor/v8/src/deoptimizer.h
CHANGED
@@ -93,6 +93,31 @@ class OptimizedFunctionVisitor BASE_EMBEDDED {
|
|
93
93
|
};
|
94
94
|
|
95
95
|
|
96
|
+
class Deoptimizer;
|
97
|
+
|
98
|
+
|
99
|
+
class DeoptimizerData {
|
100
|
+
public:
|
101
|
+
DeoptimizerData();
|
102
|
+
~DeoptimizerData();
|
103
|
+
|
104
|
+
private:
|
105
|
+
LargeObjectChunk* eager_deoptimization_entry_code_;
|
106
|
+
LargeObjectChunk* lazy_deoptimization_entry_code_;
|
107
|
+
Deoptimizer* current_;
|
108
|
+
|
109
|
+
// List of deoptimized code which still have references from active stack
|
110
|
+
// frames. These code objects are needed by the deoptimizer when deoptimizing
|
111
|
+
// a frame for which the code object for the function function has been
|
112
|
+
// changed from the code present when deoptimizing was done.
|
113
|
+
DeoptimizingCodeListNode* deoptimizing_code_list_;
|
114
|
+
|
115
|
+
friend class Deoptimizer;
|
116
|
+
|
117
|
+
DISALLOW_COPY_AND_ASSIGN(DeoptimizerData);
|
118
|
+
};
|
119
|
+
|
120
|
+
|
96
121
|
class Deoptimizer : public Malloced {
|
97
122
|
public:
|
98
123
|
enum BailoutType {
|
@@ -107,8 +132,16 @@ class Deoptimizer : public Malloced {
|
|
107
132
|
BailoutType type,
|
108
133
|
unsigned bailout_id,
|
109
134
|
Address from,
|
110
|
-
int fp_to_sp_delta
|
111
|
-
|
135
|
+
int fp_to_sp_delta,
|
136
|
+
Isolate* isolate);
|
137
|
+
static Deoptimizer* Grab(Isolate* isolate);
|
138
|
+
|
139
|
+
// Makes sure that there is enough room in the relocation
|
140
|
+
// information of a code object to perform lazy deoptimization
|
141
|
+
// patching. If there is not enough room a new relocation
|
142
|
+
// information object is allocated and comments are added until it
|
143
|
+
// is big enough.
|
144
|
+
static void EnsureRelocSpaceForLazyDeoptimization(Handle<Code> code);
|
112
145
|
|
113
146
|
// Deoptimize the function now. Its current optimized code will never be run
|
114
147
|
// again and any activations of the optimized code will get deoptimized when
|
@@ -167,9 +200,6 @@ class Deoptimizer : public Malloced {
|
|
167
200
|
unsigned node_id,
|
168
201
|
SharedFunctionInfo* shared);
|
169
202
|
|
170
|
-
static void Setup();
|
171
|
-
static void TearDown();
|
172
|
-
|
173
203
|
// Code generation support.
|
174
204
|
static int input_offset() { return OFFSET_OF(Deoptimizer, input_); }
|
175
205
|
static int output_count_offset() {
|
@@ -177,7 +207,7 @@ class Deoptimizer : public Malloced {
|
|
177
207
|
}
|
178
208
|
static int output_offset() { return OFFSET_OF(Deoptimizer, output_); }
|
179
209
|
|
180
|
-
static int GetDeoptimizedCodeCount();
|
210
|
+
static int GetDeoptimizedCodeCount(Isolate* isolate);
|
181
211
|
|
182
212
|
static const int kNotDeoptimizationEntry = -1;
|
183
213
|
|
@@ -218,7 +248,8 @@ class Deoptimizer : public Malloced {
|
|
218
248
|
private:
|
219
249
|
static const int kNumberOfEntries = 4096;
|
220
250
|
|
221
|
-
Deoptimizer(
|
251
|
+
Deoptimizer(Isolate* isolate,
|
252
|
+
JSFunction* function,
|
222
253
|
BailoutType type,
|
223
254
|
unsigned bailout_id,
|
224
255
|
Address from,
|
@@ -264,16 +295,7 @@ class Deoptimizer : public Malloced {
|
|
264
295
|
static Code* FindDeoptimizingCodeFromAddress(Address addr);
|
265
296
|
static void RemoveDeoptimizingCode(Code* code);
|
266
297
|
|
267
|
-
|
268
|
-
static LargeObjectChunk* lazy_deoptimization_entry_code_;
|
269
|
-
static Deoptimizer* current_;
|
270
|
-
|
271
|
-
// List of deoptimized code which still have references from active stack
|
272
|
-
// frames. These code objects are needed by the deoptimizer when deoptimizing
|
273
|
-
// a frame for which the code object for the function function has been
|
274
|
-
// changed from the code present when deoptimizing was done.
|
275
|
-
static DeoptimizingCodeListNode* deoptimizing_code_list_;
|
276
|
-
|
298
|
+
Isolate* isolate_;
|
277
299
|
JSFunction* function_;
|
278
300
|
Code* optimized_code_;
|
279
301
|
unsigned bailout_id_;
|
@@ -304,7 +326,9 @@ class FrameDescription {
|
|
304
326
|
JSFunction* function);
|
305
327
|
|
306
328
|
void* operator new(size_t size, uint32_t frame_size) {
|
307
|
-
|
329
|
+
// Subtracts kPointerSize, as the member frame_content_ already supplies
|
330
|
+
// the first element of the area to store the frame.
|
331
|
+
return malloc(size + frame_size - kPointerSize);
|
308
332
|
}
|
309
333
|
|
310
334
|
void operator delete(void* description) {
|
@@ -388,7 +412,7 @@ class FrameDescription {
|
|
388
412
|
}
|
389
413
|
|
390
414
|
static int frame_content_offset() {
|
391
|
-
return
|
415
|
+
return OFFSET_OF(FrameDescription, frame_content_);
|
392
416
|
}
|
393
417
|
|
394
418
|
private:
|
@@ -407,6 +431,10 @@ class FrameDescription {
|
|
407
431
|
// deoptimizing.
|
408
432
|
intptr_t continuation_;
|
409
433
|
|
434
|
+
// This must be at the end of the object as the object is allocated larger
|
435
|
+
// than it's definition indicate to extend this array.
|
436
|
+
intptr_t frame_content_[1];
|
437
|
+
|
410
438
|
intptr_t* GetFrameSlotPointer(unsigned offset) {
|
411
439
|
ASSERT(offset < frame_size_);
|
412
440
|
return reinterpret_cast<intptr_t*>(
|
@@ -524,6 +552,78 @@ class DeoptimizingCodeListNode : public Malloced {
|
|
524
552
|
};
|
525
553
|
|
526
554
|
|
555
|
+
class SlotRef BASE_EMBEDDED {
|
556
|
+
public:
|
557
|
+
enum SlotRepresentation {
|
558
|
+
UNKNOWN,
|
559
|
+
TAGGED,
|
560
|
+
INT32,
|
561
|
+
DOUBLE,
|
562
|
+
LITERAL
|
563
|
+
};
|
564
|
+
|
565
|
+
SlotRef()
|
566
|
+
: addr_(NULL), representation_(UNKNOWN) { }
|
567
|
+
|
568
|
+
SlotRef(Address addr, SlotRepresentation representation)
|
569
|
+
: addr_(addr), representation_(representation) { }
|
570
|
+
|
571
|
+
explicit SlotRef(Object* literal)
|
572
|
+
: literal_(literal), representation_(LITERAL) { }
|
573
|
+
|
574
|
+
Handle<Object> GetValue() {
|
575
|
+
switch (representation_) {
|
576
|
+
case TAGGED:
|
577
|
+
return Handle<Object>(Memory::Object_at(addr_));
|
578
|
+
|
579
|
+
case INT32: {
|
580
|
+
int value = Memory::int32_at(addr_);
|
581
|
+
if (Smi::IsValid(value)) {
|
582
|
+
return Handle<Object>(Smi::FromInt(value));
|
583
|
+
} else {
|
584
|
+
return Isolate::Current()->factory()->NewNumberFromInt(value);
|
585
|
+
}
|
586
|
+
}
|
587
|
+
|
588
|
+
case DOUBLE: {
|
589
|
+
double value = Memory::double_at(addr_);
|
590
|
+
return Isolate::Current()->factory()->NewNumber(value);
|
591
|
+
}
|
592
|
+
|
593
|
+
case LITERAL:
|
594
|
+
return literal_;
|
595
|
+
|
596
|
+
default:
|
597
|
+
UNREACHABLE();
|
598
|
+
return Handle<Object>::null();
|
599
|
+
}
|
600
|
+
}
|
601
|
+
|
602
|
+
static void ComputeSlotMappingForArguments(JavaScriptFrame* frame,
|
603
|
+
int inlined_frame_index,
|
604
|
+
Vector<SlotRef>* args_slots);
|
605
|
+
|
606
|
+
private:
|
607
|
+
Address addr_;
|
608
|
+
Handle<Object> literal_;
|
609
|
+
SlotRepresentation representation_;
|
610
|
+
|
611
|
+
static Address SlotAddress(JavaScriptFrame* frame, int slot_index) {
|
612
|
+
if (slot_index >= 0) {
|
613
|
+
const int offset = JavaScriptFrameConstants::kLocal0Offset;
|
614
|
+
return frame->fp() + offset - (slot_index * kPointerSize);
|
615
|
+
} else {
|
616
|
+
const int offset = JavaScriptFrameConstants::kLastParameterOffset;
|
617
|
+
return frame->fp() + offset - ((slot_index + 1) * kPointerSize);
|
618
|
+
}
|
619
|
+
}
|
620
|
+
|
621
|
+
static SlotRef ComputeSlotForNextArgument(TranslationIterator* iterator,
|
622
|
+
DeoptimizationInputData* data,
|
623
|
+
JavaScriptFrame* frame);
|
624
|
+
};
|
625
|
+
|
626
|
+
|
527
627
|
} } // namespace v8::internal
|
528
628
|
|
529
629
|
#endif // V8_DEOPTIMIZER_H_
|