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
@@ -365,6 +365,7 @@ class CodeGenerator: public AstVisitor {
|
|
365
365
|
// Accessors
|
366
366
|
inline bool is_eval();
|
367
367
|
inline Scope* scope();
|
368
|
+
inline bool is_strict_mode();
|
368
369
|
inline StrictModeFlag strict_mode_flag();
|
369
370
|
|
370
371
|
// Generating deferred code.
|
@@ -779,6 +780,7 @@ class CodeGenerator: public AstVisitor {
|
|
779
780
|
int jit_cookie_;
|
780
781
|
|
781
782
|
friend class VirtualFrame;
|
783
|
+
friend class Isolate;
|
782
784
|
friend class JumpTarget;
|
783
785
|
friend class Reference;
|
784
786
|
friend class Result;
|
@@ -788,6 +790,7 @@ class CodeGenerator: public AstVisitor {
|
|
788
790
|
friend class LCodeGen;
|
789
791
|
|
790
792
|
friend class CodeGeneratorPatcher; // Used in test-log-stack-tracer.cc
|
793
|
+
friend class InlineRuntimeFunctionsTable;
|
791
794
|
|
792
795
|
DISALLOW_COPY_AND_ASSIGN(CodeGenerator);
|
793
796
|
};
|
@@ -42,11 +42,12 @@ namespace v8 {
|
|
42
42
|
namespace internal {
|
43
43
|
|
44
44
|
void CPU::Setup() {
|
45
|
-
CpuFeatures::
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
45
|
+
CpuFeatures::Probe();
|
46
|
+
}
|
47
|
+
|
48
|
+
|
49
|
+
bool CPU::SupportsCrankshaft() {
|
50
|
+
return CpuFeatures::IsSupported(SSE2);
|
50
51
|
}
|
51
52
|
|
52
53
|
|
@@ -49,7 +49,8 @@ bool BreakLocationIterator::IsDebugBreakAtReturn() {
|
|
49
49
|
void BreakLocationIterator::SetDebugBreakAtReturn() {
|
50
50
|
ASSERT(Assembler::kJSReturnSequenceLength >=
|
51
51
|
Assembler::kCallInstructionLength);
|
52
|
-
|
52
|
+
Isolate* isolate = Isolate::Current();
|
53
|
+
rinfo()->PatchCodeWithCall(isolate->debug()->debug_break_return()->entry(),
|
53
54
|
Assembler::kJSReturnSequenceLength - Assembler::kCallInstructionLength);
|
54
55
|
}
|
55
56
|
|
@@ -78,8 +79,9 @@ bool BreakLocationIterator::IsDebugBreakAtSlot() {
|
|
78
79
|
|
79
80
|
void BreakLocationIterator::SetDebugBreakAtSlot() {
|
80
81
|
ASSERT(IsDebugBreakSlot());
|
82
|
+
Isolate* isolate = Isolate::Current();
|
81
83
|
rinfo()->PatchCodeWithCall(
|
82
|
-
|
84
|
+
isolate->debug()->debug_break_slot()->entry(),
|
83
85
|
Assembler::kDebugBreakSlotLength - Assembler::kCallInstructionLength);
|
84
86
|
}
|
85
87
|
|
@@ -126,7 +128,7 @@ static void Generate_DebugBreakCallHelper(MacroAssembler* masm,
|
|
126
128
|
__ RecordComment("// Calling from debug break to runtime - come in - over");
|
127
129
|
#endif
|
128
130
|
__ Set(eax, Immediate(0)); // No arguments.
|
129
|
-
__ mov(ebx, Immediate(ExternalReference::debug_break()));
|
131
|
+
__ mov(ebx, Immediate(ExternalReference::debug_break(masm->isolate())));
|
130
132
|
|
131
133
|
CEntryStub ceb(1);
|
132
134
|
__ CallStub(&ceb);
|
@@ -161,7 +163,7 @@ static void Generate_DebugBreakCallHelper(MacroAssembler* masm,
|
|
161
163
|
// jumping to the target address intended by the caller and that was
|
162
164
|
// overwritten by the address of DebugBreakXXX.
|
163
165
|
ExternalReference after_break_target =
|
164
|
-
ExternalReference(Debug_Address::AfterBreakTarget());
|
166
|
+
ExternalReference(Debug_Address::AfterBreakTarget(), masm->isolate());
|
165
167
|
__ jmp(Operand::StaticVariable(after_break_target));
|
166
168
|
}
|
167
169
|
|
@@ -277,7 +279,8 @@ void Debug::GeneratePlainReturnLiveEdit(MacroAssembler* masm) {
|
|
277
279
|
|
278
280
|
void Debug::GenerateFrameDropperLiveEdit(MacroAssembler* masm) {
|
279
281
|
ExternalReference restarter_frame_function_slot =
|
280
|
-
ExternalReference(Debug_Address::RestarterFrameFunctionPointer()
|
282
|
+
ExternalReference(Debug_Address::RestarterFrameFunctionPointer(),
|
283
|
+
masm->isolate());
|
281
284
|
__ mov(Operand::StaticVariable(restarter_frame_function_slot), Immediate(0));
|
282
285
|
|
283
286
|
// We do not know our frame height, but set esp based on ebp.
|
@@ -55,11 +55,89 @@ static void ZapCodeRange(Address start, Address end) {
|
|
55
55
|
}
|
56
56
|
|
57
57
|
|
58
|
-
void Deoptimizer::
|
59
|
-
|
58
|
+
void Deoptimizer::EnsureRelocSpaceForLazyDeoptimization(Handle<Code> code) {
|
59
|
+
Isolate* isolate = code->GetIsolate();
|
60
|
+
HandleScope scope(isolate);
|
61
|
+
|
62
|
+
// Compute the size of relocation information needed for the code
|
63
|
+
// patching in Deoptimizer::DeoptimizeFunction.
|
64
|
+
int min_reloc_size = 0;
|
65
|
+
Address prev_reloc_address = code->instruction_start();
|
66
|
+
Address code_start_address = code->instruction_start();
|
67
|
+
SafepointTable table(*code);
|
68
|
+
for (unsigned i = 0; i < table.length(); ++i) {
|
69
|
+
Address curr_reloc_address = code_start_address + table.GetPcOffset(i);
|
70
|
+
ASSERT_GE(curr_reloc_address, prev_reloc_address);
|
71
|
+
SafepointEntry safepoint_entry = table.GetEntry(i);
|
72
|
+
int deoptimization_index = safepoint_entry.deoptimization_index();
|
73
|
+
if (deoptimization_index != Safepoint::kNoDeoptimizationIndex) {
|
74
|
+
// The gap code is needed to get to the state expected at the
|
75
|
+
// bailout and we need to skip the call opcode to get to the
|
76
|
+
// address that needs reloc.
|
77
|
+
curr_reloc_address += safepoint_entry.gap_code_size() + 1;
|
78
|
+
int pc_delta = curr_reloc_address - prev_reloc_address;
|
79
|
+
// We use RUNTIME_ENTRY reloc info which has a size of 2 bytes
|
80
|
+
// if encodable with small pc delta encoding and up to 6 bytes
|
81
|
+
// otherwise.
|
82
|
+
if (pc_delta <= RelocInfo::kMaxSmallPCDelta) {
|
83
|
+
min_reloc_size += 2;
|
84
|
+
} else {
|
85
|
+
min_reloc_size += 6;
|
86
|
+
}
|
87
|
+
prev_reloc_address = curr_reloc_address;
|
88
|
+
}
|
89
|
+
}
|
90
|
+
|
91
|
+
// If the relocation information is not big enough we create a new
|
92
|
+
// relocation info object that is padded with comments to make it
|
93
|
+
// big enough for lazy doptimization.
|
94
|
+
int reloc_length = code->relocation_info()->length();
|
95
|
+
if (min_reloc_size > reloc_length) {
|
96
|
+
int comment_reloc_size = RelocInfo::kMinRelocCommentSize;
|
97
|
+
// Padding needed.
|
98
|
+
int min_padding = min_reloc_size - reloc_length;
|
99
|
+
// Number of comments needed to take up at least that much space.
|
100
|
+
int additional_comments =
|
101
|
+
(min_padding + comment_reloc_size - 1) / comment_reloc_size;
|
102
|
+
// Actual padding size.
|
103
|
+
int padding = additional_comments * comment_reloc_size;
|
104
|
+
// Allocate new relocation info and copy old relocation to the end
|
105
|
+
// of the new relocation info array because relocation info is
|
106
|
+
// written and read backwards.
|
107
|
+
Factory* factory = isolate->factory();
|
108
|
+
Handle<ByteArray> new_reloc =
|
109
|
+
factory->NewByteArray(reloc_length + padding, TENURED);
|
110
|
+
memcpy(new_reloc->GetDataStartAddress() + padding,
|
111
|
+
code->relocation_info()->GetDataStartAddress(),
|
112
|
+
reloc_length);
|
113
|
+
// Create a relocation writer to write the comments in the padding
|
114
|
+
// space. Use position 0 for everything to ensure short encoding.
|
115
|
+
RelocInfoWriter reloc_info_writer(
|
116
|
+
new_reloc->GetDataStartAddress() + padding, 0);
|
117
|
+
intptr_t comment_string
|
118
|
+
= reinterpret_cast<intptr_t>(RelocInfo::kFillerCommentString);
|
119
|
+
RelocInfo rinfo(0, RelocInfo::COMMENT, comment_string);
|
120
|
+
for (int i = 0; i < additional_comments; ++i) {
|
121
|
+
#ifdef DEBUG
|
122
|
+
byte* pos_before = reloc_info_writer.pos();
|
123
|
+
#endif
|
124
|
+
reloc_info_writer.Write(&rinfo);
|
125
|
+
ASSERT(RelocInfo::kMinRelocCommentSize ==
|
126
|
+
pos_before - reloc_info_writer.pos());
|
127
|
+
}
|
128
|
+
// Replace relocation information on the code object.
|
129
|
+
code->set_relocation_info(*new_reloc);
|
130
|
+
}
|
131
|
+
}
|
132
|
+
|
60
133
|
|
134
|
+
void Deoptimizer::DeoptimizeFunction(JSFunction* function) {
|
61
135
|
if (!function->IsOptimized()) return;
|
62
136
|
|
137
|
+
Isolate* isolate = function->GetIsolate();
|
138
|
+
HandleScope scope(isolate);
|
139
|
+
AssertNoAllocation no_allocation;
|
140
|
+
|
63
141
|
// Get the optimized code.
|
64
142
|
Code* code = function->code();
|
65
143
|
Address code_start_address = code->instruction_start();
|
@@ -118,12 +196,14 @@ void Deoptimizer::DeoptimizeFunction(JSFunction* function) {
|
|
118
196
|
// a non-live object in the extra space at the end of the former reloc info.
|
119
197
|
Address junk_address = reloc_info->address() + reloc_info->Size();
|
120
198
|
ASSERT(junk_address <= reloc_end_address);
|
121
|
-
|
199
|
+
isolate->heap()->CreateFillerObjectAt(junk_address,
|
200
|
+
reloc_end_address - junk_address);
|
122
201
|
|
123
202
|
// Add the deoptimizing code to the list.
|
124
203
|
DeoptimizingCodeListNode* node = new DeoptimizingCodeListNode(code);
|
125
|
-
|
126
|
-
deoptimizing_code_list_
|
204
|
+
DeoptimizerData* data = isolate->deoptimizer_data();
|
205
|
+
node->set_next(data->deoptimizing_code_list_);
|
206
|
+
data->deoptimizing_code_list_ = node;
|
127
207
|
|
128
208
|
// Set the code for the function to non-optimized version.
|
129
209
|
function->ReplaceCode(function->shared()->code());
|
@@ -132,6 +212,11 @@ void Deoptimizer::DeoptimizeFunction(JSFunction* function) {
|
|
132
212
|
PrintF("[forced deoptimization: ");
|
133
213
|
function->PrintName();
|
134
214
|
PrintF(" / %x]\n", reinterpret_cast<uint32_t>(function));
|
215
|
+
#ifdef DEBUG
|
216
|
+
if (FLAG_print_code) {
|
217
|
+
code->PrintLn();
|
218
|
+
}
|
219
|
+
#endif
|
135
220
|
}
|
136
221
|
}
|
137
222
|
|
@@ -284,13 +369,31 @@ void Deoptimizer::DoComputeOsrOutputFrame() {
|
|
284
369
|
|
285
370
|
// There are no translation commands for the caller's pc and fp, the
|
286
371
|
// context, and the function. Set them up explicitly.
|
287
|
-
for (int i =
|
372
|
+
for (int i = StandardFrameConstants::kCallerPCOffset;
|
373
|
+
ok && i >= StandardFrameConstants::kMarkerOffset;
|
374
|
+
i -= kPointerSize) {
|
288
375
|
uint32_t input_value = input_->GetFrameSlot(input_offset);
|
289
376
|
if (FLAG_trace_osr) {
|
290
|
-
|
377
|
+
const char* name = "UNKNOWN";
|
378
|
+
switch (i) {
|
379
|
+
case StandardFrameConstants::kCallerPCOffset:
|
380
|
+
name = "caller's pc";
|
381
|
+
break;
|
382
|
+
case StandardFrameConstants::kCallerFPOffset:
|
383
|
+
name = "fp";
|
384
|
+
break;
|
385
|
+
case StandardFrameConstants::kContextOffset:
|
386
|
+
name = "context";
|
387
|
+
break;
|
388
|
+
case StandardFrameConstants::kMarkerOffset:
|
389
|
+
name = "function";
|
390
|
+
break;
|
391
|
+
}
|
392
|
+
PrintF(" [esp + %d] <- 0x%08x ; [esp + %d] (fixed part - %s)\n",
|
291
393
|
output_offset,
|
292
394
|
input_value,
|
293
|
-
input_offset
|
395
|
+
input_offset,
|
396
|
+
name);
|
294
397
|
}
|
295
398
|
output_[0]->SetFrameSlot(output_offset, input_->GetFrameSlot(input_offset));
|
296
399
|
input_offset -= kPointerSize;
|
@@ -317,7 +420,8 @@ void Deoptimizer::DoComputeOsrOutputFrame() {
|
|
317
420
|
optimized_code_->entry() + pc_offset);
|
318
421
|
output_[0]->SetPc(pc);
|
319
422
|
}
|
320
|
-
Code* continuation =
|
423
|
+
Code* continuation =
|
424
|
+
function->GetIsolate()->builtins()->builtin(Builtins::kNotifyOSR);
|
321
425
|
output_[0]->SetContinuation(
|
322
426
|
reinterpret_cast<uint32_t>(continuation->entry()));
|
323
427
|
|
@@ -484,9 +588,10 @@ void Deoptimizer::DoComputeFrame(TranslationIterator* iterator,
|
|
484
588
|
|
485
589
|
// Set the continuation for the topmost frame.
|
486
590
|
if (is_topmost) {
|
591
|
+
Builtins* builtins = isolate_->builtins();
|
487
592
|
Code* continuation = (bailout_type_ == EAGER)
|
488
|
-
?
|
489
|
-
:
|
593
|
+
? builtins->builtin(Builtins::kNotifyDeoptimized)
|
594
|
+
: builtins->builtin(Builtins::kNotifyLazyDeoptimized);
|
490
595
|
output_frame->SetContinuation(
|
491
596
|
reinterpret_cast<uint32_t>(continuation->entry()));
|
492
597
|
}
|
@@ -501,6 +606,8 @@ void Deoptimizer::EntryGenerator::Generate() {
|
|
501
606
|
GeneratePrologue();
|
502
607
|
CpuFeatures::Scope scope(SSE2);
|
503
608
|
|
609
|
+
Isolate* isolate = masm()->isolate();
|
610
|
+
|
504
611
|
// Save all general purpose registers before messing with them.
|
505
612
|
const int kNumberOfRegisters = Register::kNumRegisters;
|
506
613
|
|
@@ -534,14 +641,16 @@ void Deoptimizer::EntryGenerator::Generate() {
|
|
534
641
|
__ neg(edx);
|
535
642
|
|
536
643
|
// Allocate a new deoptimizer object.
|
537
|
-
__ PrepareCallCFunction(
|
644
|
+
__ PrepareCallCFunction(6, eax);
|
538
645
|
__ mov(eax, Operand(ebp, JavaScriptFrameConstants::kFunctionOffset));
|
539
646
|
__ mov(Operand(esp, 0 * kPointerSize), eax); // Function.
|
540
647
|
__ mov(Operand(esp, 1 * kPointerSize), Immediate(type())); // Bailout type.
|
541
648
|
__ mov(Operand(esp, 2 * kPointerSize), ebx); // Bailout id.
|
542
649
|
__ mov(Operand(esp, 3 * kPointerSize), ecx); // Code address or 0.
|
543
650
|
__ mov(Operand(esp, 4 * kPointerSize), edx); // Fp-to-sp delta.
|
544
|
-
__
|
651
|
+
__ mov(Operand(esp, 5 * kPointerSize),
|
652
|
+
Immediate(ExternalReference::isolate_address()));
|
653
|
+
__ CallCFunction(ExternalReference::new_deoptimizer_function(isolate), 6);
|
545
654
|
|
546
655
|
// Preserve deoptimizer object in register eax and get the input
|
547
656
|
// frame descriptor pointer.
|
@@ -589,7 +698,8 @@ void Deoptimizer::EntryGenerator::Generate() {
|
|
589
698
|
__ push(eax);
|
590
699
|
__ PrepareCallCFunction(1, ebx);
|
591
700
|
__ mov(Operand(esp, 0 * kPointerSize), eax);
|
592
|
-
__ CallCFunction(
|
701
|
+
__ CallCFunction(
|
702
|
+
ExternalReference::compute_output_frames_function(isolate), 1);
|
593
703
|
__ pop(eax);
|
594
704
|
|
595
705
|
// Replace the current frame with the output frames.
|
@@ -331,6 +331,7 @@ class DisassemblerIA32 {
|
|
331
331
|
int PrintRightOperandHelper(byte* modrmp, RegisterNameMapping register_name);
|
332
332
|
int PrintRightOperand(byte* modrmp);
|
333
333
|
int PrintRightByteOperand(byte* modrmp);
|
334
|
+
int PrintRightXMMOperand(byte* modrmp);
|
334
335
|
int PrintOperands(const char* mnem, OperandOrder op_order, byte* data);
|
335
336
|
int PrintImmediateOp(byte* data);
|
336
337
|
int F7Instruction(byte* data);
|
@@ -367,9 +368,11 @@ void DisassemblerIA32::AppendToBuffer(const char* format, ...) {
|
|
367
368
|
|
368
369
|
int DisassemblerIA32::PrintRightOperandHelper(
|
369
370
|
byte* modrmp,
|
370
|
-
RegisterNameMapping
|
371
|
+
RegisterNameMapping direct_register_name) {
|
371
372
|
int mod, regop, rm;
|
372
373
|
get_modrm(*modrmp, &mod, ®op, &rm);
|
374
|
+
RegisterNameMapping register_name = (mod == 3) ? direct_register_name :
|
375
|
+
&DisassemblerIA32::NameOfCPURegister;
|
373
376
|
switch (mod) {
|
374
377
|
case 0:
|
375
378
|
if (rm == ebp) {
|
@@ -454,6 +457,12 @@ int DisassemblerIA32::PrintRightByteOperand(byte* modrmp) {
|
|
454
457
|
}
|
455
458
|
|
456
459
|
|
460
|
+
int DisassemblerIA32::PrintRightXMMOperand(byte* modrmp) {
|
461
|
+
return PrintRightOperandHelper(modrmp,
|
462
|
+
&DisassemblerIA32::NameOfXMMRegister);
|
463
|
+
}
|
464
|
+
|
465
|
+
|
457
466
|
// Returns number of bytes used including the current *data.
|
458
467
|
// Writes instruction's mnemonic, left and right operands to 'tmp_buffer_'.
|
459
468
|
int DisassemblerIA32::PrintOperands(const char* mnem,
|
@@ -937,7 +946,7 @@ int DisassemblerIA32::InstructionDecode(v8::internal::Vector<char> out_buffer,
|
|
937
946
|
get_modrm(*data, &mod, ®op, &rm);
|
938
947
|
if (regop == eax) {
|
939
948
|
AppendToBuffer("test_b ");
|
940
|
-
data +=
|
949
|
+
data += PrintRightByteOperand(data);
|
941
950
|
int32_t imm = *data;
|
942
951
|
AppendToBuffer(",0x%x", imm);
|
943
952
|
data++;
|
@@ -1035,11 +1044,19 @@ int DisassemblerIA32::InstructionDecode(v8::internal::Vector<char> out_buffer,
|
|
1035
1044
|
case 0xC6: // imm8
|
1036
1045
|
{ bool is_byte = *data == 0xC6;
|
1037
1046
|
data++;
|
1038
|
-
|
1039
|
-
|
1040
|
-
|
1041
|
-
|
1042
|
-
|
1047
|
+
if (is_byte) {
|
1048
|
+
AppendToBuffer("%s ", "mov_b");
|
1049
|
+
data += PrintRightByteOperand(data);
|
1050
|
+
int32_t imm = *data;
|
1051
|
+
AppendToBuffer(",0x%x", imm);
|
1052
|
+
data++;
|
1053
|
+
} else {
|
1054
|
+
AppendToBuffer("%s ", "mov");
|
1055
|
+
data += PrintRightOperand(data);
|
1056
|
+
int32_t imm = *reinterpret_cast<int32_t*>(data);
|
1057
|
+
AppendToBuffer(",0x%x", imm);
|
1058
|
+
data += 4;
|
1059
|
+
}
|
1043
1060
|
}
|
1044
1061
|
break;
|
1045
1062
|
|
@@ -1054,7 +1071,7 @@ int DisassemblerIA32::InstructionDecode(v8::internal::Vector<char> out_buffer,
|
|
1054
1071
|
default: UnimplementedInstruction();
|
1055
1072
|
}
|
1056
1073
|
AppendToBuffer("%s ", mnem);
|
1057
|
-
data +=
|
1074
|
+
data += PrintRightByteOperand(data);
|
1058
1075
|
int32_t imm = *data;
|
1059
1076
|
AppendToBuffer(",0x%x", imm);
|
1060
1077
|
data++;
|
@@ -1067,9 +1084,15 @@ int DisassemblerIA32::InstructionDecode(v8::internal::Vector<char> out_buffer,
|
|
1067
1084
|
int mod, regop, rm;
|
1068
1085
|
data++;
|
1069
1086
|
get_modrm(*data, &mod, ®op, &rm);
|
1070
|
-
|
1071
|
-
|
1072
|
-
|
1087
|
+
if (is_byte) {
|
1088
|
+
AppendToBuffer("%s ", "mov_b");
|
1089
|
+
data += PrintRightByteOperand(data);
|
1090
|
+
AppendToBuffer(",%s", NameOfByteCPURegister(regop));
|
1091
|
+
} else {
|
1092
|
+
AppendToBuffer("%s ", "mov");
|
1093
|
+
data += PrintRightOperand(data);
|
1094
|
+
AppendToBuffer(",%s", NameOfCPURegister(regop));
|
1095
|
+
}
|
1073
1096
|
}
|
1074
1097
|
break;
|
1075
1098
|
|
@@ -1181,7 +1204,7 @@ int DisassemblerIA32::InstructionDecode(v8::internal::Vector<char> out_buffer,
|
|
1181
1204
|
int mod, regop, rm;
|
1182
1205
|
get_modrm(*data, &mod, ®op, &rm);
|
1183
1206
|
AppendToBuffer("movdqa %s,", NameOfXMMRegister(regop));
|
1184
|
-
data +=
|
1207
|
+
data += PrintRightXMMOperand(data);
|
1185
1208
|
} else if (*data == 0x70) {
|
1186
1209
|
data++;
|
1187
1210
|
int mod, regop, rm;
|
@@ -1224,7 +1247,7 @@ int DisassemblerIA32::InstructionDecode(v8::internal::Vector<char> out_buffer,
|
|
1224
1247
|
data++;
|
1225
1248
|
int mod, regop, rm;
|
1226
1249
|
get_modrm(*data, &mod, ®op, &rm);
|
1227
|
-
data +=
|
1250
|
+
data += PrintRightXMMOperand(data);
|
1228
1251
|
AppendToBuffer(",%s", NameOfXMMRegister(regop));
|
1229
1252
|
} else if (*data == 0x7E) {
|
1230
1253
|
data++;
|
@@ -1242,12 +1265,16 @@ int DisassemblerIA32::InstructionDecode(v8::internal::Vector<char> out_buffer,
|
|
1242
1265
|
NameOfXMMRegister(rm));
|
1243
1266
|
data++;
|
1244
1267
|
} else if (*data == 0xE7) {
|
1245
|
-
AppendToBuffer("movntdq ");
|
1246
1268
|
data++;
|
1247
1269
|
int mod, regop, rm;
|
1248
1270
|
get_modrm(*data, &mod, ®op, &rm);
|
1249
|
-
|
1250
|
-
|
1271
|
+
if (mod == 3) {
|
1272
|
+
AppendToBuffer("movntdq ");
|
1273
|
+
data += PrintRightOperand(data);
|
1274
|
+
AppendToBuffer(",%s", NameOfXMMRegister(regop));
|
1275
|
+
} else {
|
1276
|
+
UnimplementedInstruction();
|
1277
|
+
}
|
1251
1278
|
} else if (*data == 0xEF) {
|
1252
1279
|
data++;
|
1253
1280
|
int mod, regop, rm;
|
@@ -1338,14 +1365,20 @@ int DisassemblerIA32::InstructionDecode(v8::internal::Vector<char> out_buffer,
|
|
1338
1365
|
data += 3;
|
1339
1366
|
int mod, regop, rm;
|
1340
1367
|
get_modrm(*data, &mod, ®op, &rm);
|
1341
|
-
data +=
|
1368
|
+
data += PrintRightXMMOperand(data);
|
1342
1369
|
AppendToBuffer(",%s", NameOfXMMRegister(regop));
|
1343
1370
|
} else if (b2 == 0x10) {
|
1344
1371
|
data += 3;
|
1345
1372
|
int mod, regop, rm;
|
1346
1373
|
get_modrm(*data, &mod, ®op, &rm);
|
1347
1374
|
AppendToBuffer("movsd %s,", NameOfXMMRegister(regop));
|
1348
|
-
data +=
|
1375
|
+
data += PrintRightXMMOperand(data);
|
1376
|
+
} else if (b2 == 0x5A) {
|
1377
|
+
data += 3;
|
1378
|
+
int mod, regop, rm;
|
1379
|
+
get_modrm(*data, &mod, ®op, &rm);
|
1380
|
+
AppendToBuffer("cvtsd2ss %s,", NameOfXMMRegister(regop));
|
1381
|
+
data += PrintRightXMMOperand(data);
|
1349
1382
|
} else {
|
1350
1383
|
const char* mnem = "?";
|
1351
1384
|
switch (b2) {
|
@@ -1361,27 +1394,11 @@ int DisassemblerIA32::InstructionDecode(v8::internal::Vector<char> out_buffer,
|
|
1361
1394
|
int mod, regop, rm;
|
1362
1395
|
get_modrm(*data, &mod, ®op, &rm);
|
1363
1396
|
if (b2 == 0x2A) {
|
1364
|
-
|
1365
|
-
|
1366
|
-
data += PrintRightOperand(data);
|
1367
|
-
} else {
|
1368
|
-
AppendToBuffer("%s %s,%s",
|
1369
|
-
mnem,
|
1370
|
-
NameOfXMMRegister(regop),
|
1371
|
-
NameOfCPURegister(rm));
|
1372
|
-
data++;
|
1373
|
-
}
|
1397
|
+
AppendToBuffer("%s %s,", mnem, NameOfXMMRegister(regop));
|
1398
|
+
data += PrintRightOperand(data);
|
1374
1399
|
} else if (b2 == 0x2C) {
|
1375
|
-
|
1376
|
-
|
1377
|
-
data += PrintRightOperand(data);
|
1378
|
-
} else {
|
1379
|
-
AppendToBuffer("%s %s,%s",
|
1380
|
-
mnem,
|
1381
|
-
NameOfCPURegister(regop),
|
1382
|
-
NameOfXMMRegister(rm));
|
1383
|
-
data++;
|
1384
|
-
}
|
1400
|
+
AppendToBuffer("%s %s,", mnem, NameOfCPURegister(regop));
|
1401
|
+
data += PrintRightXMMOperand(data);
|
1385
1402
|
} else if (b2 == 0xC2) {
|
1386
1403
|
// Intel manual 2A, Table 3-18.
|
1387
1404
|
const char* const pseudo_op[] = {
|
@@ -1400,16 +1417,8 @@ int DisassemblerIA32::InstructionDecode(v8::internal::Vector<char> out_buffer,
|
|
1400
1417
|
NameOfXMMRegister(rm));
|
1401
1418
|
data += 2;
|
1402
1419
|
} else {
|
1403
|
-
|
1404
|
-
|
1405
|
-
data += PrintRightOperand(data);
|
1406
|
-
} else {
|
1407
|
-
AppendToBuffer("%s %s,%s",
|
1408
|
-
mnem,
|
1409
|
-
NameOfXMMRegister(regop),
|
1410
|
-
NameOfXMMRegister(rm));
|
1411
|
-
data++;
|
1412
|
-
}
|
1420
|
+
AppendToBuffer("%s %s,", mnem, NameOfXMMRegister(regop));
|
1421
|
+
data += PrintRightXMMOperand(data);
|
1413
1422
|
}
|
1414
1423
|
}
|
1415
1424
|
} else {
|
@@ -1419,29 +1428,44 @@ int DisassemblerIA32::InstructionDecode(v8::internal::Vector<char> out_buffer,
|
|
1419
1428
|
|
1420
1429
|
case 0xF3:
|
1421
1430
|
if (*(data+1) == 0x0F) {
|
1422
|
-
|
1431
|
+
byte b2 = *(data+2);
|
1432
|
+
if (b2 == 0x11) {
|
1433
|
+
AppendToBuffer("movss ");
|
1423
1434
|
data += 3;
|
1424
|
-
|
1425
|
-
|
1435
|
+
int mod, regop, rm;
|
1436
|
+
get_modrm(*data, &mod, ®op, &rm);
|
1437
|
+
data += PrintRightXMMOperand(data);
|
1438
|
+
AppendToBuffer(",%s", NameOfXMMRegister(regop));
|
1439
|
+
} else if (b2 == 0x10) {
|
1426
1440
|
data += 3;
|
1427
1441
|
int mod, regop, rm;
|
1428
1442
|
get_modrm(*data, &mod, ®op, &rm);
|
1429
|
-
AppendToBuffer("
|
1430
|
-
|
1431
|
-
|
1432
|
-
data
|
1433
|
-
|
1443
|
+
AppendToBuffer("movss %s,", NameOfXMMRegister(regop));
|
1444
|
+
data += PrintRightXMMOperand(data);
|
1445
|
+
} else if (b2 == 0x2C) {
|
1446
|
+
data += 3;
|
1447
|
+
int mod, regop, rm;
|
1448
|
+
get_modrm(*data, &mod, ®op, &rm);
|
1449
|
+
AppendToBuffer("cvttss2si %s,", NameOfCPURegister(regop));
|
1450
|
+
data += PrintRightXMMOperand(data);
|
1451
|
+
} else if (b2 == 0x5A) {
|
1452
|
+
data += 3;
|
1453
|
+
int mod, regop, rm;
|
1454
|
+
get_modrm(*data, &mod, ®op, &rm);
|
1455
|
+
AppendToBuffer("cvtss2sd %s,", NameOfXMMRegister(regop));
|
1456
|
+
data += PrintRightXMMOperand(data);
|
1457
|
+
} else if (b2 == 0x6F) {
|
1434
1458
|
data += 3;
|
1435
1459
|
int mod, regop, rm;
|
1436
1460
|
get_modrm(*data, &mod, ®op, &rm);
|
1437
1461
|
AppendToBuffer("movdqu %s,", NameOfXMMRegister(regop));
|
1438
|
-
data +=
|
1439
|
-
} else if (
|
1462
|
+
data += PrintRightXMMOperand(data);
|
1463
|
+
} else if (b2 == 0x7F) {
|
1440
1464
|
AppendToBuffer("movdqu ");
|
1441
1465
|
data += 3;
|
1442
1466
|
int mod, regop, rm;
|
1443
1467
|
get_modrm(*data, &mod, ®op, &rm);
|
1444
|
-
data +=
|
1468
|
+
data += PrintRightXMMOperand(data);
|
1445
1469
|
AppendToBuffer(",%s", NameOfXMMRegister(regop));
|
1446
1470
|
} else {
|
1447
1471
|
UnimplementedInstruction();
|
@@ -1514,9 +1538,8 @@ static const char* xmm_regs[8] = {
|
|
1514
1538
|
|
1515
1539
|
|
1516
1540
|
const char* NameConverter::NameOfAddress(byte* addr) const {
|
1517
|
-
|
1518
|
-
|
1519
|
-
return tmp_buffer.start();
|
1541
|
+
v8::internal::OS::SNPrintF(tmp_buffer_, "%p", addr);
|
1542
|
+
return tmp_buffer_.start();
|
1520
1543
|
}
|
1521
1544
|
|
1522
1545
|
|