therubyracer 0.6.3 → 0.7.0.pre
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of therubyracer might be problematic. Click here for more details.
- data/Rakefile +10 -9
- data/ext/v8/callbacks.cpp +15 -8
- data/ext/v8/converters.cpp +7 -8
- data/ext/v8/converters.h +0 -2
- data/ext/v8/extconf.rb +2 -0
- data/ext/v8/rr.cpp +169 -0
- data/ext/v8/rr.h +34 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/AUTHORS +8 -1
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/ChangeLog +198 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/LICENSE +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/SConstruct +152 -38
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/include/v8-debug.h +52 -4
- data/ext/v8/upstream/2.1.10/include/v8-profiler.h +176 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/include/v8.h +227 -48
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/SConscript +60 -10
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/accessors.cc +5 -39
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/accessors.h +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/allocation.cc +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/allocation.h +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/api.cc +477 -57
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/api.h +8 -4
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/apinatives.js +1 -1
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/apiutils.h +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arguments.h +5 -6
- data/ext/v8/upstream/{2.0.6/src/arm/assembler-thumb2-inl.h → 2.1.10/src/arm/assembler-arm-inl.h} +42 -27
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/assembler-arm.cc +430 -216
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/assembler-arm.h +199 -110
- data/ext/v8/upstream/{2.0.6/src/arm/assembler-arm-inl.h → 2.1.10/src/arm/assembler-thumb2-inl.h} +4 -18
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/assembler-thumb2.cc +142 -85
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/assembler-thumb2.h +18 -9
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/builtins-arm.cc +127 -87
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/codegen-arm-inl.h +3 -5
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/codegen-arm.cc +4634 -1427
- data/ext/v8/upstream/2.1.10/src/arm/codegen-arm.h +946 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/constants-arm.cc +21 -3
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/constants-arm.h +39 -13
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/cpu-arm.cc +9 -3
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/debug-arm.cc +34 -8
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/disasm-arm.cc +262 -117
- data/ext/v8/upstream/2.1.10/src/arm/fast-codegen-arm.cc +238 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/frames-arm.cc +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/frames-arm.h +0 -0
- data/ext/v8/upstream/{2.0.6/src/arm/fast-codegen-arm.cc → 2.1.10/src/arm/full-codegen-arm.cc} +453 -283
- data/ext/v8/upstream/2.1.10/src/arm/ic-arm.cc +1833 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/jump-target-arm.cc +3 -29
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/macro-assembler-arm.cc +564 -104
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/macro-assembler-arm.h +255 -46
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/regexp-macro-assembler-arm.cc +78 -104
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/regexp-macro-assembler-arm.h +6 -22
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/register-allocator-arm-inl.h +0 -3
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/register-allocator-arm.cc +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/register-allocator-arm.h +2 -1
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/simulator-arm.cc +557 -180
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/simulator-arm.h +52 -4
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/arm/stub-cache-arm.cc +904 -240
- data/ext/v8/upstream/2.1.10/src/arm/virtual-frame-arm.cc +668 -0
- data/ext/v8/upstream/2.1.10/src/arm/virtual-frame-arm.h +503 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/array.js +82 -109
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/assembler.cc +49 -13
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/assembler.h +27 -5
- data/ext/v8/upstream/2.1.10/src/ast.cc +1138 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ast.h +354 -53
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/bootstrapper.cc +609 -501
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/bootstrapper.h +27 -8
- data/ext/v8/upstream/2.1.10/src/builtins.cc +1512 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/builtins.h +41 -25
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/bytecodes-irregexp.h +0 -0
- data/ext/v8/upstream/2.1.10/src/cached-powers.h +119 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/char-predicates-inl.h +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/char-predicates.h +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/checks.cc +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/checks.h +25 -1
- data/ext/v8/upstream/2.1.10/src/circular-queue-inl.h +101 -0
- data/ext/v8/upstream/2.1.10/src/circular-queue.cc +121 -0
- data/ext/v8/upstream/2.1.10/src/circular-queue.h +129 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/code-stubs.cc +23 -8
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/code-stubs.h +16 -4
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/code.h +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/codegen-inl.h +6 -34
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/codegen.cc +73 -92
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/codegen.h +164 -68
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/compilation-cache.cc +117 -73
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/compilation-cache.h +18 -17
- data/ext/v8/upstream/2.1.10/src/compiler.cc +623 -0
- data/ext/v8/upstream/2.1.10/src/compiler.h +299 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/contexts.cc +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/contexts.h +8 -11
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/conversions-inl.h +28 -13
- data/ext/v8/upstream/2.1.10/src/conversions.cc +1105 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/conversions.h +9 -4
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/counters.cc +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/counters.h +1 -1
- data/ext/v8/upstream/2.1.10/src/cpu-profiler-inl.h +99 -0
- data/ext/v8/upstream/2.1.10/src/cpu-profiler.cc +494 -0
- data/ext/v8/upstream/2.1.10/src/cpu-profiler.h +277 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/cpu.h +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/d8-debug.cc +15 -4
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/d8-debug.h +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/d8-posix.cc +18 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/d8-readline.cc +2 -2
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/d8-windows.cc +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/d8.cc +10 -6
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/d8.h +2 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/d8.js +43 -38
- data/ext/v8/upstream/2.1.10/src/data-flow.cc +755 -0
- data/ext/v8/upstream/2.1.10/src/data-flow.h +278 -0
- data/ext/v8/upstream/{2.0.6/src/date-delay.js → 2.1.10/src/date.js} +100 -110
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/dateparser-inl.h +11 -2
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/dateparser.cc +24 -26
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/dateparser.h +8 -4
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/debug-agent.cc +3 -1
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/debug-agent.h +0 -0
- data/ext/v8/upstream/{2.0.6/src/debug-delay.js → 2.1.10/src/debug-debugger.js} +111 -15
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/debug.cc +156 -96
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/debug.h +53 -5
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/disasm.h +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/disassembler.cc +2 -8
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/disassembler.h +0 -0
- data/ext/v8/upstream/2.1.10/src/diy-fp.cc +58 -0
- data/ext/v8/upstream/2.1.10/src/diy-fp.h +117 -0
- data/ext/v8/upstream/2.1.10/src/double.h +169 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/dtoa-config.c +4 -3
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/execution.cc +22 -22
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/execution.h +17 -4
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/factory.cc +70 -46
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/factory.h +27 -17
- data/ext/v8/upstream/2.1.10/src/fast-codegen.cc +746 -0
- data/ext/v8/upstream/2.1.10/src/fast-codegen.h +161 -0
- data/ext/v8/upstream/2.1.10/src/fast-dtoa.cc +512 -0
- data/ext/v8/upstream/2.1.10/src/fast-dtoa.h +59 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/flag-definitions.h +32 -11
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/flags.cc +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/flags.h +0 -0
- data/ext/v8/upstream/2.1.10/src/flow-graph.cc +763 -0
- data/ext/v8/upstream/2.1.10/src/flow-graph.h +180 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/frame-element.cc +1 -4
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/frame-element.h +49 -11
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/frames-inl.h +2 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/frames.cc +91 -17
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/frames.h +24 -2
- data/ext/v8/upstream/{2.0.6/src/fast-codegen.cc → 2.1.10/src/full-codegen.cc} +549 -198
- data/ext/v8/upstream/{2.0.6/src/fast-codegen.h → 2.1.10/src/full-codegen.h} +109 -29
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/func-name-inferrer.cc +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/func-name-inferrer.h +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/global-handles.cc +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/global-handles.h +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/globals.h +67 -43
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/handles-inl.h +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/handles.cc +124 -129
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/handles.h +33 -15
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/hashmap.cc +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/hashmap.h +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/heap-inl.h +56 -12
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/heap-profiler.cc +2 -2
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/heap-profiler.h +2 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/heap.cc +413 -221
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/heap.h +192 -67
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/assembler-ia32-inl.h +6 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/assembler-ia32.cc +187 -32
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/assembler-ia32.h +31 -4
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/builtins-ia32.cc +160 -133
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/codegen-ia32-inl.h +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/codegen-ia32.cc +5533 -2177
- data/ext/v8/upstream/{2.0.6/src/x64/codegen-x64.h → 2.1.10/src/ia32/codegen-ia32.h} +453 -134
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/cpu-ia32.cc +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/debug-ia32.cc +63 -8
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/disasm-ia32.cc +99 -16
- data/ext/v8/upstream/2.1.10/src/ia32/fast-codegen-ia32.cc +950 -0
- data/ext/v8/upstream/2.1.10/src/ia32/fast-codegen-ia32.h +155 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/frames-ia32.cc +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/frames-ia32.h +0 -0
- data/ext/v8/upstream/{2.0.6/src/ia32/fast-codegen-ia32.cc → 2.1.10/src/ia32/full-codegen-ia32.cc} +454 -253
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/ic-ia32.cc +545 -390
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/jump-target-ia32.cc +1 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/macro-assembler-ia32.cc +330 -139
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/macro-assembler-ia32.h +96 -30
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/regexp-macro-assembler-ia32.cc +73 -89
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/regexp-macro-assembler-ia32.h +6 -21
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/register-allocator-ia32-inl.h +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/register-allocator-ia32.cc +59 -5
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/register-allocator-ia32.h +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/simulator-ia32.cc +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/simulator-ia32.h +2 -2
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/stub-cache-ia32.cc +745 -303
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/virtual-frame-ia32.cc +278 -71
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ia32/virtual-frame-ia32.h +78 -22
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ic-inl.h +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ic.cc +172 -89
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/ic.h +51 -20
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/interpreter-irregexp.cc +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/interpreter-irregexp.h +0 -0
- data/ext/v8/upstream/{2.0.6/src/json-delay.js → 2.1.10/src/json.js} +26 -12
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/jsregexp.cc +151 -118
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/jsregexp.h +31 -7
- data/ext/v8/upstream/2.1.10/src/jump-target-heavy-inl.h +51 -0
- data/ext/v8/upstream/{2.0.6/src/jump-target.cc → 2.1.10/src/jump-target-heavy.cc} +164 -184
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/jump-target-inl.h +8 -9
- data/ext/v8/upstream/{2.0.6/src/usage-analyzer.h → 2.1.10/src/jump-target-light-inl.h} +9 -7
- data/ext/v8/upstream/2.1.10/src/jump-target-light.cc +86 -0
- data/ext/v8/upstream/2.1.10/src/jump-target.cc +155 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/jump-target.h +6 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/list-inl.h +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/list.h +2 -1
- data/ext/v8/upstream/2.1.10/src/liveedit-debugger.js +944 -0
- data/ext/v8/upstream/2.1.10/src/liveedit.cc +1468 -0
- data/ext/v8/upstream/2.1.10/src/liveedit.h +170 -0
- data/ext/v8/upstream/2.1.10/src/log-inl.h +59 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/log-utils.cc +3 -9
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/log-utils.h +1 -4
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/log.cc +198 -95
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/log.h +50 -49
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/macro-assembler.h +9 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/macros.py +30 -11
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/mark-compact.cc +464 -152
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/mark-compact.h +41 -20
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/math.js +9 -8
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/memory.h +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/messages.cc +1 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/messages.h +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/messages.js +46 -9
- data/ext/v8/upstream/2.1.10/src/mips/assembler-mips-inl.h +215 -0
- data/ext/v8/upstream/2.1.10/src/mips/assembler-mips.cc +1208 -0
- data/ext/v8/upstream/2.1.10/src/mips/assembler-mips.h +665 -0
- data/ext/v8/upstream/2.1.10/src/mips/builtins-mips.cc +202 -0
- data/ext/v8/upstream/2.1.10/src/mips/codegen-mips-inl.h +70 -0
- data/ext/v8/upstream/2.1.10/src/mips/codegen-mips.cc +1428 -0
- data/ext/v8/upstream/{2.0.6/src/arm/codegen-arm.h → 2.1.10/src/mips/codegen-mips.h} +103 -205
- data/ext/v8/upstream/2.1.10/src/mips/constants-mips.cc +323 -0
- data/ext/v8/upstream/2.1.10/src/mips/constants-mips.h +525 -0
- data/ext/v8/upstream/2.1.10/src/mips/cpu-mips.cc +69 -0
- data/ext/v8/upstream/2.1.10/src/mips/debug-mips.cc +128 -0
- data/ext/v8/upstream/2.1.10/src/mips/disasm-mips.cc +784 -0
- data/ext/v8/upstream/2.1.10/src/mips/fast-codegen-mips.cc +74 -0
- data/ext/v8/upstream/2.1.10/src/mips/frames-mips.cc +99 -0
- data/ext/v8/upstream/2.1.10/src/mips/frames-mips.h +164 -0
- data/ext/v8/upstream/2.1.10/src/mips/full-codegen-mips.cc +273 -0
- data/ext/v8/upstream/2.1.10/src/mips/ic-mips.cc +217 -0
- data/ext/v8/upstream/2.1.10/src/mips/jump-target-mips.cc +172 -0
- data/ext/v8/upstream/2.1.10/src/mips/macro-assembler-mips.cc +1323 -0
- data/ext/v8/upstream/2.1.10/src/mips/macro-assembler-mips.h +461 -0
- data/ext/v8/upstream/2.1.10/src/mips/register-allocator-mips-inl.h +137 -0
- data/ext/v8/upstream/2.1.10/src/mips/register-allocator-mips.cc +60 -0
- data/ext/v8/upstream/2.1.10/src/mips/register-allocator-mips.h +46 -0
- data/ext/v8/upstream/2.1.10/src/mips/simulator-mips.cc +1648 -0
- data/ext/v8/upstream/2.1.10/src/mips/simulator-mips.h +311 -0
- data/ext/v8/upstream/2.1.10/src/mips/stub-cache-mips.cc +400 -0
- data/ext/v8/upstream/2.1.10/src/mips/virtual-frame-mips.cc +316 -0
- data/ext/v8/upstream/{2.0.6/src/arm/virtual-frame-arm.h → 2.1.10/src/mips/virtual-frame-mips.h} +87 -71
- data/ext/v8/upstream/{2.0.6/src/mirror-delay.js → 2.1.10/src/mirror-debugger.js} +51 -45
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/mksnapshot.cc +97 -10
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/natives.h +6 -6
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/objects-debug.cc +47 -5
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/objects-inl.h +154 -38
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/objects.cc +528 -280
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/objects.h +302 -95
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/oprofile-agent.cc +25 -33
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/oprofile-agent.h +9 -1
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/parser.cc +444 -72
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/parser.h +4 -2
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/platform-freebsd.cc +32 -13
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/platform-linux.cc +59 -25
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/platform-macos.cc +30 -13
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/platform-nullos.cc +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/platform-openbsd.cc +21 -2
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/platform-posix.cc +0 -18
- data/ext/v8/upstream/2.1.10/src/platform-solaris.cc +607 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/platform-win32.cc +16 -17
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/platform.h +25 -8
- data/ext/v8/upstream/2.1.10/src/powers-ten.h +2461 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/prettyprinter.cc +49 -29
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/prettyprinter.h +3 -1
- data/ext/v8/upstream/2.1.10/src/profile-generator-inl.h +124 -0
- data/ext/v8/upstream/2.1.10/src/profile-generator.cc +583 -0
- data/ext/v8/upstream/2.1.10/src/profile-generator.h +364 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/property.cc +1 -1
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/property.h +12 -24
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/regexp-macro-assembler-irregexp-inl.h +2 -2
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/regexp-macro-assembler-irregexp.cc +2 -2
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/regexp-macro-assembler-irregexp.h +2 -2
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/regexp-macro-assembler-tracer.cc +2 -2
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/regexp-macro-assembler-tracer.h +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/regexp-macro-assembler.cc +33 -10
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/regexp-macro-assembler.h +12 -4
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/regexp-stack.cc +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/regexp-stack.h +0 -0
- data/ext/v8/upstream/{2.0.6/src/regexp-delay.js → 2.1.10/src/regexp.js} +180 -58
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/register-allocator-inl.h +68 -1
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/register-allocator.cc +5 -2
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/register-allocator.h +42 -17
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/rewriter.cc +110 -4
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/rewriter.h +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/runtime.cc +2733 -623
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/runtime.h +43 -20
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/runtime.js +46 -35
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/scanner.cc +278 -36
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/scanner.h +97 -26
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/scopeinfo.cc +3 -3
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/scopeinfo.h +1 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/scopes.cc +11 -12
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/scopes.h +0 -1
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/serialize.cc +298 -175
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/serialize.h +184 -40
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/shell.h +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/simulator.h +2 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/smart-pointer.h +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/snapshot-common.cc +16 -31
- data/ext/v8/upstream/2.1.10/src/snapshot-empty.cc +50 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/snapshot.h +13 -1
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/spaces-inl.h +35 -27
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/spaces.cc +256 -42
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/spaces.h +136 -42
- data/ext/v8/upstream/{2.0.6/src/zone-inl.h → 2.1.10/src/splay-tree-inl.h} +102 -89
- data/ext/v8/upstream/2.1.10/src/splay-tree.h +203 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/string-stream.cc +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/string-stream.h +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/string.js +260 -149
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/stub-cache.cc +195 -69
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/stub-cache.h +127 -12
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/third_party/dtoa/COPYING +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/third_party/dtoa/dtoa.c +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/third_party/valgrind/valgrind.h +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/token.cc +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/token.h +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/top.cc +26 -31
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/top.h +3 -4
- data/ext/v8/upstream/2.1.10/src/type-info.cc +53 -0
- data/ext/v8/upstream/2.1.10/src/type-info.h +244 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/unicode-inl.h +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/unicode.cc +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/unicode.h +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/uri.js +6 -6
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/utils.cc +0 -37
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/utils.h +121 -50
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/v8-counters.cc +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/v8-counters.h +130 -98
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/v8.cc +42 -11
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/v8.h +4 -2
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/v8natives.js +202 -37
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/v8threads.cc +11 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/v8threads.h +15 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/variables.cc +7 -51
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/variables.h +5 -35
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/version.cc +3 -3
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/version.h +0 -0
- data/ext/v8/upstream/2.1.10/src/virtual-frame-heavy-inl.h +152 -0
- data/ext/v8/upstream/{2.0.6/src/virtual-frame.cc → 2.1.10/src/virtual-frame-heavy.cc} +107 -176
- data/ext/v8/upstream/2.1.10/src/virtual-frame-inl.h +39 -0
- data/ext/v8/upstream/2.1.10/src/virtual-frame-light-inl.h +69 -0
- data/ext/v8/upstream/2.1.10/src/virtual-frame-light.cc +49 -0
- data/ext/v8/upstream/2.1.10/src/virtual-frame.cc +49 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/virtual-frame.h +2 -0
- data/ext/v8/upstream/{2.0.6/src/log-inl.h → 2.1.10/src/vm-state-inl.h} +28 -20
- data/ext/v8/upstream/{2.0.6/src/snapshot-empty.cc → 2.1.10/src/vm-state.cc} +5 -6
- data/ext/v8/upstream/2.1.10/src/vm-state.h +75 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/assembler-x64-inl.h +11 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/assembler-x64.cc +285 -93
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/assembler-x64.h +81 -78
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/builtins-x64.cc +130 -87
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/codegen-x64-inl.h +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/codegen-x64.cc +4520 -1317
- data/ext/v8/upstream/{2.0.6/src/ia32/codegen-ia32.h → 2.1.10/src/x64/codegen-x64.h} +362 -141
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/cpu-x64.cc +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/debug-x64.cc +20 -4
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/disasm-x64.cc +121 -44
- data/ext/v8/upstream/2.1.10/src/x64/fast-codegen-x64.cc +246 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/frames-x64.cc +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/frames-x64.h +0 -0
- data/ext/v8/upstream/{2.0.6/src/x64/fast-codegen-x64.cc → 2.1.10/src/x64/full-codegen-x64.cc} +404 -231
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/ic-x64.cc +346 -117
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/jump-target-x64.cc +1 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/macro-assembler-x64.cc +537 -181
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/macro-assembler-x64.h +140 -34
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/regexp-macro-assembler-x64.cc +74 -96
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/regexp-macro-assembler-x64.h +8 -25
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/register-allocator-x64-inl.h +1 -1
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/register-allocator-x64.cc +3 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/register-allocator-x64.h +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/simulator-x64.cc +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/simulator-x64.h +2 -2
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/stub-cache-x64.cc +785 -288
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/virtual-frame-x64.cc +128 -52
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/x64/virtual-frame-x64.h +40 -19
- data/ext/v8/upstream/2.1.10/src/zone-inl.h +82 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/zone.cc +1 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/src/zone.h +6 -90
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/codemap.js +12 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/consarray.js +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/csvparser.js +22 -37
- data/ext/v8/upstream/2.1.10/tools/generate-ten-powers.scm +286 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/gyp/v8.gyp +86 -24
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/js2c.py +22 -22
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/jsmin.py +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/linux-tick-processor +10 -1
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/linux-tick-processor.py +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/logreader.js +34 -16
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/mac-nm +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/mac-tick-processor +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/oprofile/annotate +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/oprofile/common +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/oprofile/dump +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/oprofile/report +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/oprofile/reset +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/oprofile/run +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/oprofile/shutdown +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/oprofile/start +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/presubmit.py +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/process-heap-prof.py +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/profile.js +70 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/profile_view.js +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/run-valgrind.py +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/splaytree.js +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/splaytree.py +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/stats-viewer.py +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/test.py +7 -7
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/tickprocessor-driver.js +7 -1
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/tickprocessor.js +140 -9
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/tickprocessor.py +40 -4
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/utils.py +6 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/README.txt +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/arm.vsprops +1 -1
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/common.vsprops +1 -2
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/d8.vcproj +0 -6
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/d8_arm.vcproj +193 -199
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/d8_x64.vcproj +16 -8
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/d8js2c.cmd +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/debug.vsprops +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/ia32.vsprops +5 -1
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/js2c.cmd +1 -1
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/release.vsprops +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8.sln +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8.vcproj +11 -7
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_arm.sln +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_arm.vcproj +227 -223
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_base.vcproj +137 -5
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_base_arm.vcproj +116 -4
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_base_x64.vcproj +125 -4
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_cctest.vcproj +12 -6
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_cctest_arm.vcproj +12 -6
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_cctest_x64.vcproj +11 -11
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_mksnapshot.vcproj +0 -6
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_mksnapshot_x64.vcproj +0 -6
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_process_sample.vcproj +0 -6
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_process_sample_arm.vcproj +145 -151
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_process_sample_x64.vcproj +16 -6
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_shell_sample.vcproj +0 -6
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_shell_sample_arm.vcproj +145 -151
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_shell_sample_x64.vcproj +16 -8
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_snapshot.vcproj +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_snapshot_cc.vcproj +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_snapshot_cc_x64.vcproj +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_snapshot_x64.vcproj +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_x64.sln +0 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/v8_x64.vcproj +11 -7
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/visual_studio/x64.vsprops +5 -1
- data/ext/v8/upstream/2.1.10/tools/windows-tick-processor.bat +29 -0
- data/ext/v8/upstream/{2.0.6 → 2.1.10}/tools/windows-tick-processor.py +0 -0
- data/ext/v8/upstream/Makefile +8 -2
- data/ext/v8/v8.cpp +21 -73
- data/ext/v8/v8_array.cpp +56 -0
- data/ext/v8/v8_array.h +8 -0
- data/ext/v8/v8_callbacks.cpp +121 -0
- data/ext/v8/v8_callbacks.h +8 -0
- data/ext/v8/v8_cxt.cpp +74 -77
- data/ext/v8/v8_cxt.h +2 -9
- data/ext/v8/v8_date.cpp +26 -0
- data/ext/v8/v8_date.h +6 -0
- data/ext/v8/v8_exception.cpp +55 -0
- data/ext/v8/v8_exception.h +6 -0
- data/ext/v8/v8_external.cpp +50 -0
- data/ext/v8/v8_external.h +8 -0
- data/ext/v8/v8_func.cpp +76 -18
- data/ext/v8/v8_func.h +5 -4
- data/ext/v8/v8_msg.cpp +55 -46
- data/ext/v8/v8_msg.h +3 -11
- data/ext/v8/v8_obj.cpp +67 -36
- data/ext/v8/v8_obj.h +6 -8
- data/ext/v8/v8_ref.cpp +25 -9
- data/ext/v8/v8_ref.h +3 -5
- data/ext/v8/v8_script.cpp +17 -10
- data/ext/v8/v8_script.h +3 -3
- data/ext/v8/v8_str.cpp +34 -6
- data/ext/v8/v8_str.h +4 -2
- data/ext/v8/v8_template.cpp +195 -33
- data/ext/v8/v8_template.h +4 -5
- data/ext/v8/v8_try_catch.cpp +99 -0
- data/ext/v8/v8_try_catch.h +5 -0
- data/ext/v8/v8_value.cpp +164 -0
- data/ext/v8/v8_value.h +10 -0
- data/lib/v8.rb +3 -1
- data/lib/v8/access.rb +60 -0
- data/lib/v8/array.rb +15 -0
- data/lib/v8/callbacks.rb +88 -0
- data/lib/v8/cli.rb +1 -1
- data/lib/v8/context.rb +55 -66
- data/lib/v8/function.rb +20 -2
- data/lib/v8/object.rb +14 -12
- data/lib/v8/ruby_error.rb +3 -0
- data/lib/v8/to.rb +59 -7
- data/spec/ext/cxt_spec.rb +2 -15
- data/spec/ext/func_spec.rb +17 -10
- data/spec/ext/try_catch_spec.rb +32 -0
- data/spec/foo.rb +17 -0
- data/spec/redjs/jsapi_spec.rb +173 -96
- data/spec/spec_helper.rb +7 -0
- data/spec/v8/to_spec.rb +0 -1
- data/therubyracer.gemspec +6 -6
- metadata +493 -386
- data/ext/v8/upstream/2.0.6/src/arm/ic-arm.cc +0 -849
- data/ext/v8/upstream/2.0.6/src/arm/virtual-frame-arm.cc +0 -412
- data/ext/v8/upstream/2.0.6/src/ast.cc +0 -512
- data/ext/v8/upstream/2.0.6/src/builtins.cc +0 -851
- data/ext/v8/upstream/2.0.6/src/compiler.cc +0 -1132
- data/ext/v8/upstream/2.0.6/src/compiler.h +0 -107
- data/ext/v8/upstream/2.0.6/src/conversions.cc +0 -709
- data/ext/v8/upstream/2.0.6/src/usage-analyzer.cc +0 -426
- data/ext/v8/upstream/2.0.6/tools/windows-tick-processor.bat +0 -5
- data/ext/v8/upstream/no-strict-aliasing.patch +0 -13
- data/ext/v8/v8_standalone.cpp +0 -69
- data/ext/v8/v8_standalone.h +0 -31
- data/spec/ext/obj_spec.rb +0 -13
@@ -32,42 +32,43 @@ namespace v8 {
|
|
32
32
|
namespace internal {
|
33
33
|
|
34
34
|
|
35
|
-
// The compilation cache keeps function
|
36
|
-
// scripts and evals. The
|
37
|
-
// string as the key. For regular expressions the
|
35
|
+
// The compilation cache keeps shared function infos for compiled
|
36
|
+
// scripts and evals. The shared function infos are looked up using
|
37
|
+
// the source string as the key. For regular expressions the
|
38
|
+
// compilation data is cached.
|
38
39
|
class CompilationCache {
|
39
40
|
public:
|
40
|
-
// Finds the script function
|
41
|
+
// Finds the script shared function info for a source
|
41
42
|
// string. Returns an empty handle if the cache doesn't contain a
|
42
43
|
// script for the given source string with the right origin.
|
43
|
-
static Handle<
|
44
|
-
|
45
|
-
|
46
|
-
|
44
|
+
static Handle<SharedFunctionInfo> LookupScript(Handle<String> source,
|
45
|
+
Handle<Object> name,
|
46
|
+
int line_offset,
|
47
|
+
int column_offset);
|
47
48
|
|
48
|
-
// Finds the function
|
49
|
+
// Finds the shared function info for a source string for eval in a
|
49
50
|
// given context. Returns an empty handle if the cache doesn't
|
50
51
|
// contain a script for the given source string.
|
51
|
-
static Handle<
|
52
|
-
|
53
|
-
|
52
|
+
static Handle<SharedFunctionInfo> LookupEval(Handle<String> source,
|
53
|
+
Handle<Context> context,
|
54
|
+
bool is_global);
|
54
55
|
|
55
56
|
// Returns the regexp data associated with the given regexp if it
|
56
57
|
// is in cache, otherwise an empty handle.
|
57
58
|
static Handle<FixedArray> LookupRegExp(Handle<String> source,
|
58
59
|
JSRegExp::Flags flags);
|
59
60
|
|
60
|
-
// Associate the (source, kind) pair to the
|
61
|
-
// overwrite an existing mapping.
|
61
|
+
// Associate the (source, kind) pair to the shared function
|
62
|
+
// info. This may overwrite an existing mapping.
|
62
63
|
static void PutScript(Handle<String> source,
|
63
|
-
Handle<
|
64
|
+
Handle<SharedFunctionInfo> function_info);
|
64
65
|
|
65
66
|
// Associate the (source, context->closure()->shared(), kind) triple
|
66
|
-
// with the
|
67
|
+
// with the shared function info. This may overwrite an existing mapping.
|
67
68
|
static void PutEval(Handle<String> source,
|
68
69
|
Handle<Context> context,
|
69
70
|
bool is_global,
|
70
|
-
Handle<
|
71
|
+
Handle<SharedFunctionInfo> function_info);
|
71
72
|
|
72
73
|
// Associate the (source, flags) pair to the given regexp data.
|
73
74
|
// This may overwrite an existing mapping.
|
@@ -0,0 +1,623 @@
|
|
1
|
+
// Copyright 2010 the V8 project authors. All rights reserved.
|
2
|
+
// Redistribution and use in source and binary forms, with or without
|
3
|
+
// modification, are permitted provided that the following conditions are
|
4
|
+
// met:
|
5
|
+
//
|
6
|
+
// * Redistributions of source code must retain the above copyright
|
7
|
+
// notice, this list of conditions and the following disclaimer.
|
8
|
+
// * Redistributions in binary form must reproduce the above
|
9
|
+
// copyright notice, this list of conditions and the following
|
10
|
+
// disclaimer in the documentation and/or other materials provided
|
11
|
+
// with the distribution.
|
12
|
+
// * Neither the name of Google Inc. nor the names of its
|
13
|
+
// contributors may be used to endorse or promote products derived
|
14
|
+
// from this software without specific prior written permission.
|
15
|
+
//
|
16
|
+
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
17
|
+
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
18
|
+
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
19
|
+
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
20
|
+
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
21
|
+
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
22
|
+
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
23
|
+
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
24
|
+
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
25
|
+
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
26
|
+
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
27
|
+
|
28
|
+
#include "v8.h"
|
29
|
+
|
30
|
+
#include "bootstrapper.h"
|
31
|
+
#include "codegen-inl.h"
|
32
|
+
#include "compilation-cache.h"
|
33
|
+
#include "compiler.h"
|
34
|
+
#include "data-flow.h"
|
35
|
+
#include "debug.h"
|
36
|
+
#include "fast-codegen.h"
|
37
|
+
#include "flow-graph.h"
|
38
|
+
#include "full-codegen.h"
|
39
|
+
#include "liveedit.h"
|
40
|
+
#include "oprofile-agent.h"
|
41
|
+
#include "rewriter.h"
|
42
|
+
#include "scopes.h"
|
43
|
+
|
44
|
+
namespace v8 {
|
45
|
+
namespace internal {
|
46
|
+
|
47
|
+
|
48
|
+
static Handle<Code> MakeCode(Handle<Context> context, CompilationInfo* info) {
|
49
|
+
FunctionLiteral* function = info->function();
|
50
|
+
ASSERT(function != NULL);
|
51
|
+
// Rewrite the AST by introducing .result assignments where needed.
|
52
|
+
if (!Rewriter::Process(function)) {
|
53
|
+
// Signal a stack overflow by returning a null handle. The stack
|
54
|
+
// overflow exception will be thrown by the caller.
|
55
|
+
return Handle<Code>::null();
|
56
|
+
}
|
57
|
+
|
58
|
+
{
|
59
|
+
// Compute top scope and allocate variables. For lazy compilation
|
60
|
+
// the top scope only contains the single lazily compiled function,
|
61
|
+
// so this doesn't re-allocate variables repeatedly.
|
62
|
+
HistogramTimerScope timer(&Counters::variable_allocation);
|
63
|
+
Scope* top = info->scope();
|
64
|
+
while (top->outer_scope() != NULL) top = top->outer_scope();
|
65
|
+
top->AllocateVariables(context);
|
66
|
+
}
|
67
|
+
|
68
|
+
#ifdef DEBUG
|
69
|
+
if (Bootstrapper::IsActive() ?
|
70
|
+
FLAG_print_builtin_scopes :
|
71
|
+
FLAG_print_scopes) {
|
72
|
+
info->scope()->Print();
|
73
|
+
}
|
74
|
+
#endif
|
75
|
+
|
76
|
+
// Optimize the AST.
|
77
|
+
if (!Rewriter::Optimize(function)) {
|
78
|
+
// Signal a stack overflow by returning a null handle. The stack
|
79
|
+
// overflow exception will be thrown by the caller.
|
80
|
+
return Handle<Code>::null();
|
81
|
+
}
|
82
|
+
|
83
|
+
if (function->scope()->num_parameters() > 0 ||
|
84
|
+
function->scope()->num_stack_slots()) {
|
85
|
+
AssignedVariablesAnalyzer ava(function);
|
86
|
+
ava.Analyze();
|
87
|
+
if (ava.HasStackOverflow()) {
|
88
|
+
return Handle<Code>::null();
|
89
|
+
}
|
90
|
+
}
|
91
|
+
|
92
|
+
if (FLAG_use_flow_graph) {
|
93
|
+
FlowGraphBuilder builder;
|
94
|
+
FlowGraph* graph = builder.Build(function);
|
95
|
+
USE(graph);
|
96
|
+
|
97
|
+
#ifdef DEBUG
|
98
|
+
if (FLAG_print_graph_text && !builder.HasStackOverflow()) {
|
99
|
+
graph->PrintAsText(function->name());
|
100
|
+
}
|
101
|
+
#endif
|
102
|
+
}
|
103
|
+
|
104
|
+
// Generate code and return it. Code generator selection is governed by
|
105
|
+
// which backends are enabled and whether the function is considered
|
106
|
+
// run-once code or not:
|
107
|
+
//
|
108
|
+
// --full-compiler enables the dedicated backend for code we expect to be
|
109
|
+
// run once
|
110
|
+
// --fast-compiler enables a speculative optimizing backend (for
|
111
|
+
// non-run-once code)
|
112
|
+
//
|
113
|
+
// The normal choice of backend can be overridden with the flags
|
114
|
+
// --always-full-compiler and --always-fast-compiler, which are mutually
|
115
|
+
// incompatible.
|
116
|
+
CHECK(!FLAG_always_full_compiler || !FLAG_always_fast_compiler);
|
117
|
+
|
118
|
+
Handle<SharedFunctionInfo> shared = info->shared_info();
|
119
|
+
bool is_run_once = (shared.is_null())
|
120
|
+
? info->scope()->is_global_scope()
|
121
|
+
: (shared->is_toplevel() || shared->try_full_codegen());
|
122
|
+
|
123
|
+
if (FLAG_always_full_compiler || (FLAG_full_compiler && is_run_once)) {
|
124
|
+
FullCodeGenSyntaxChecker checker;
|
125
|
+
checker.Check(function);
|
126
|
+
if (checker.has_supported_syntax()) {
|
127
|
+
return FullCodeGenerator::MakeCode(info);
|
128
|
+
}
|
129
|
+
} else if (FLAG_always_fast_compiler ||
|
130
|
+
(FLAG_fast_compiler && !is_run_once)) {
|
131
|
+
FastCodeGenSyntaxChecker checker;
|
132
|
+
checker.Check(info);
|
133
|
+
if (checker.has_supported_syntax()) {
|
134
|
+
return FastCodeGenerator::MakeCode(info);
|
135
|
+
}
|
136
|
+
}
|
137
|
+
|
138
|
+
return CodeGenerator::MakeCode(info);
|
139
|
+
}
|
140
|
+
|
141
|
+
|
142
|
+
#ifdef ENABLE_DEBUGGER_SUPPORT
|
143
|
+
Handle<Code> MakeCodeForLiveEdit(CompilationInfo* info) {
|
144
|
+
Handle<Context> context = Handle<Context>::null();
|
145
|
+
return MakeCode(context, info);
|
146
|
+
}
|
147
|
+
#endif
|
148
|
+
|
149
|
+
|
150
|
+
static Handle<SharedFunctionInfo> MakeFunctionInfo(bool is_global,
|
151
|
+
bool is_eval,
|
152
|
+
Compiler::ValidationState validate,
|
153
|
+
Handle<Script> script,
|
154
|
+
Handle<Context> context,
|
155
|
+
v8::Extension* extension,
|
156
|
+
ScriptDataImpl* pre_data) {
|
157
|
+
CompilationZoneScope zone_scope(DELETE_ON_EXIT);
|
158
|
+
|
159
|
+
PostponeInterruptsScope postpone;
|
160
|
+
|
161
|
+
ASSERT(!i::Top::global_context().is_null());
|
162
|
+
script->set_context_data((*i::Top::global_context())->data());
|
163
|
+
|
164
|
+
bool is_json = (validate == Compiler::VALIDATE_JSON);
|
165
|
+
#ifdef ENABLE_DEBUGGER_SUPPORT
|
166
|
+
if (is_eval || is_json) {
|
167
|
+
script->set_compilation_type(
|
168
|
+
is_json ? Smi::FromInt(Script::COMPILATION_TYPE_JSON) :
|
169
|
+
Smi::FromInt(Script::COMPILATION_TYPE_EVAL));
|
170
|
+
// For eval scripts add information on the function from which eval was
|
171
|
+
// called.
|
172
|
+
if (is_eval) {
|
173
|
+
StackTraceFrameIterator it;
|
174
|
+
if (!it.done()) {
|
175
|
+
script->set_eval_from_shared(
|
176
|
+
JSFunction::cast(it.frame()->function())->shared());
|
177
|
+
int offset = static_cast<int>(
|
178
|
+
it.frame()->pc() - it.frame()->code()->instruction_start());
|
179
|
+
script->set_eval_from_instructions_offset(Smi::FromInt(offset));
|
180
|
+
}
|
181
|
+
}
|
182
|
+
}
|
183
|
+
|
184
|
+
// Notify debugger
|
185
|
+
Debugger::OnBeforeCompile(script);
|
186
|
+
#endif
|
187
|
+
|
188
|
+
// Only allow non-global compiles for eval.
|
189
|
+
ASSERT(is_eval || is_global);
|
190
|
+
|
191
|
+
// Build AST.
|
192
|
+
FunctionLiteral* lit =
|
193
|
+
MakeAST(is_global, script, extension, pre_data, is_json);
|
194
|
+
|
195
|
+
LiveEditFunctionTracker live_edit_tracker(lit);
|
196
|
+
|
197
|
+
// Check for parse errors.
|
198
|
+
if (lit == NULL) {
|
199
|
+
ASSERT(Top::has_pending_exception());
|
200
|
+
return Handle<SharedFunctionInfo>::null();
|
201
|
+
}
|
202
|
+
|
203
|
+
// Measure how long it takes to do the compilation; only take the
|
204
|
+
// rest of the function into account to avoid overlap with the
|
205
|
+
// parsing statistics.
|
206
|
+
HistogramTimer* rate = is_eval
|
207
|
+
? &Counters::compile_eval
|
208
|
+
: &Counters::compile;
|
209
|
+
HistogramTimerScope timer(rate);
|
210
|
+
|
211
|
+
// Compile the code.
|
212
|
+
CompilationInfo info(lit, script, is_eval);
|
213
|
+
Handle<Code> code = MakeCode(context, &info);
|
214
|
+
|
215
|
+
// Check for stack-overflow exceptions.
|
216
|
+
if (code.is_null()) {
|
217
|
+
Top::StackOverflow();
|
218
|
+
return Handle<SharedFunctionInfo>::null();
|
219
|
+
}
|
220
|
+
|
221
|
+
if (script->name()->IsString()) {
|
222
|
+
PROFILE(CodeCreateEvent(
|
223
|
+
is_eval ? Logger::EVAL_TAG :
|
224
|
+
Logger::ToNativeByScript(Logger::SCRIPT_TAG, *script),
|
225
|
+
*code, String::cast(script->name())));
|
226
|
+
OPROFILE(CreateNativeCodeRegion(String::cast(script->name()),
|
227
|
+
code->instruction_start(),
|
228
|
+
code->instruction_size()));
|
229
|
+
} else {
|
230
|
+
PROFILE(CodeCreateEvent(
|
231
|
+
is_eval ? Logger::EVAL_TAG :
|
232
|
+
Logger::ToNativeByScript(Logger::SCRIPT_TAG, *script),
|
233
|
+
*code, ""));
|
234
|
+
OPROFILE(CreateNativeCodeRegion(is_eval ? "Eval" : "Script",
|
235
|
+
code->instruction_start(),
|
236
|
+
code->instruction_size()));
|
237
|
+
}
|
238
|
+
|
239
|
+
// Allocate function.
|
240
|
+
Handle<SharedFunctionInfo> result =
|
241
|
+
Factory::NewSharedFunctionInfo(lit->name(),
|
242
|
+
lit->materialized_literal_count(),
|
243
|
+
code);
|
244
|
+
|
245
|
+
ASSERT_EQ(RelocInfo::kNoPosition, lit->function_token_position());
|
246
|
+
Compiler::SetFunctionInfo(result, lit, true, script);
|
247
|
+
|
248
|
+
// Hint to the runtime system used when allocating space for initial
|
249
|
+
// property space by setting the expected number of properties for
|
250
|
+
// the instances of the function.
|
251
|
+
SetExpectedNofPropertiesFromEstimate(result, lit->expected_property_count());
|
252
|
+
|
253
|
+
#ifdef ENABLE_DEBUGGER_SUPPORT
|
254
|
+
// Notify debugger
|
255
|
+
Debugger::OnAfterCompile(script, Debugger::NO_AFTER_COMPILE_FLAGS);
|
256
|
+
#endif
|
257
|
+
|
258
|
+
live_edit_tracker.RecordFunctionInfo(result, lit);
|
259
|
+
|
260
|
+
return result;
|
261
|
+
}
|
262
|
+
|
263
|
+
|
264
|
+
static StaticResource<SafeStringInputBuffer> safe_string_input_buffer;
|
265
|
+
|
266
|
+
|
267
|
+
Handle<SharedFunctionInfo> Compiler::Compile(Handle<String> source,
|
268
|
+
Handle<Object> script_name,
|
269
|
+
int line_offset,
|
270
|
+
int column_offset,
|
271
|
+
v8::Extension* extension,
|
272
|
+
ScriptDataImpl* input_pre_data,
|
273
|
+
Handle<Object> script_data,
|
274
|
+
NativesFlag natives) {
|
275
|
+
int source_length = source->length();
|
276
|
+
Counters::total_load_size.Increment(source_length);
|
277
|
+
Counters::total_compile_size.Increment(source_length);
|
278
|
+
|
279
|
+
// The VM is in the COMPILER state until exiting this function.
|
280
|
+
VMState state(COMPILER);
|
281
|
+
|
282
|
+
// Do a lookup in the compilation cache but not for extensions.
|
283
|
+
Handle<SharedFunctionInfo> result;
|
284
|
+
if (extension == NULL) {
|
285
|
+
result = CompilationCache::LookupScript(source,
|
286
|
+
script_name,
|
287
|
+
line_offset,
|
288
|
+
column_offset);
|
289
|
+
}
|
290
|
+
|
291
|
+
if (result.is_null()) {
|
292
|
+
// No cache entry found. Do pre-parsing and compile the script.
|
293
|
+
ScriptDataImpl* pre_data = input_pre_data;
|
294
|
+
if (pre_data == NULL && source_length >= FLAG_min_preparse_length) {
|
295
|
+
Access<SafeStringInputBuffer> buf(&safe_string_input_buffer);
|
296
|
+
buf->Reset(source.location());
|
297
|
+
pre_data = PreParse(source, buf.value(), extension);
|
298
|
+
}
|
299
|
+
|
300
|
+
// Create a script object describing the script to be compiled.
|
301
|
+
Handle<Script> script = Factory::NewScript(source);
|
302
|
+
if (natives == NATIVES_CODE) {
|
303
|
+
script->set_type(Smi::FromInt(Script::TYPE_NATIVE));
|
304
|
+
}
|
305
|
+
if (!script_name.is_null()) {
|
306
|
+
script->set_name(*script_name);
|
307
|
+
script->set_line_offset(Smi::FromInt(line_offset));
|
308
|
+
script->set_column_offset(Smi::FromInt(column_offset));
|
309
|
+
}
|
310
|
+
|
311
|
+
script->set_data(script_data.is_null() ? Heap::undefined_value()
|
312
|
+
: *script_data);
|
313
|
+
|
314
|
+
// Compile the function and add it to the cache.
|
315
|
+
result = MakeFunctionInfo(true,
|
316
|
+
false,
|
317
|
+
DONT_VALIDATE_JSON,
|
318
|
+
script,
|
319
|
+
Handle<Context>::null(),
|
320
|
+
extension,
|
321
|
+
pre_data);
|
322
|
+
if (extension == NULL && !result.is_null()) {
|
323
|
+
CompilationCache::PutScript(source, result);
|
324
|
+
}
|
325
|
+
|
326
|
+
// Get rid of the pre-parsing data (if necessary).
|
327
|
+
if (input_pre_data == NULL && pre_data != NULL) {
|
328
|
+
delete pre_data;
|
329
|
+
}
|
330
|
+
}
|
331
|
+
|
332
|
+
if (result.is_null()) Top::ReportPendingMessages();
|
333
|
+
return result;
|
334
|
+
}
|
335
|
+
|
336
|
+
|
337
|
+
Handle<SharedFunctionInfo> Compiler::CompileEval(Handle<String> source,
|
338
|
+
Handle<Context> context,
|
339
|
+
bool is_global,
|
340
|
+
ValidationState validate) {
|
341
|
+
// Note that if validation is required then no path through this
|
342
|
+
// function is allowed to return a value without validating that
|
343
|
+
// the input is legal json.
|
344
|
+
|
345
|
+
int source_length = source->length();
|
346
|
+
Counters::total_eval_size.Increment(source_length);
|
347
|
+
Counters::total_compile_size.Increment(source_length);
|
348
|
+
|
349
|
+
// The VM is in the COMPILER state until exiting this function.
|
350
|
+
VMState state(COMPILER);
|
351
|
+
|
352
|
+
// Do a lookup in the compilation cache; if the entry is not there,
|
353
|
+
// invoke the compiler and add the result to the cache. If we're
|
354
|
+
// evaluating json we bypass the cache since we can't be sure a
|
355
|
+
// potential value in the cache has been validated.
|
356
|
+
Handle<SharedFunctionInfo> result;
|
357
|
+
if (validate == DONT_VALIDATE_JSON)
|
358
|
+
result = CompilationCache::LookupEval(source, context, is_global);
|
359
|
+
|
360
|
+
if (result.is_null()) {
|
361
|
+
// Create a script object describing the script to be compiled.
|
362
|
+
Handle<Script> script = Factory::NewScript(source);
|
363
|
+
result = MakeFunctionInfo(is_global,
|
364
|
+
true,
|
365
|
+
validate,
|
366
|
+
script,
|
367
|
+
context,
|
368
|
+
NULL,
|
369
|
+
NULL);
|
370
|
+
if (!result.is_null() && validate != VALIDATE_JSON) {
|
371
|
+
// For json it's unlikely that we'll ever see exactly the same
|
372
|
+
// string again so we don't use the compilation cache.
|
373
|
+
CompilationCache::PutEval(source, context, is_global, result);
|
374
|
+
}
|
375
|
+
}
|
376
|
+
|
377
|
+
return result;
|
378
|
+
}
|
379
|
+
|
380
|
+
|
381
|
+
bool Compiler::CompileLazy(CompilationInfo* info) {
|
382
|
+
CompilationZoneScope zone_scope(DELETE_ON_EXIT);
|
383
|
+
|
384
|
+
// The VM is in the COMPILER state until exiting this function.
|
385
|
+
VMState state(COMPILER);
|
386
|
+
|
387
|
+
PostponeInterruptsScope postpone;
|
388
|
+
|
389
|
+
// Compute name, source code and script data.
|
390
|
+
Handle<SharedFunctionInfo> shared = info->shared_info();
|
391
|
+
Handle<String> name(String::cast(shared->name()));
|
392
|
+
|
393
|
+
int start_position = shared->start_position();
|
394
|
+
int end_position = shared->end_position();
|
395
|
+
bool is_expression = shared->is_expression();
|
396
|
+
Counters::total_compile_size.Increment(end_position - start_position);
|
397
|
+
|
398
|
+
// Generate the AST for the lazily compiled function. The AST may be
|
399
|
+
// NULL in case of parser stack overflow.
|
400
|
+
FunctionLiteral* lit = MakeLazyAST(info->script(),
|
401
|
+
name,
|
402
|
+
start_position,
|
403
|
+
end_position,
|
404
|
+
is_expression);
|
405
|
+
|
406
|
+
// Check for parse errors.
|
407
|
+
if (lit == NULL) {
|
408
|
+
ASSERT(Top::has_pending_exception());
|
409
|
+
return false;
|
410
|
+
}
|
411
|
+
info->set_function(lit);
|
412
|
+
|
413
|
+
// Measure how long it takes to do the lazy compilation; only take
|
414
|
+
// the rest of the function into account to avoid overlap with the
|
415
|
+
// lazy parsing statistics.
|
416
|
+
HistogramTimerScope timer(&Counters::compile_lazy);
|
417
|
+
|
418
|
+
// Compile the code.
|
419
|
+
Handle<Code> code = MakeCode(Handle<Context>::null(), info);
|
420
|
+
|
421
|
+
// Check for stack-overflow exception.
|
422
|
+
if (code.is_null()) {
|
423
|
+
Top::StackOverflow();
|
424
|
+
return false;
|
425
|
+
}
|
426
|
+
|
427
|
+
RecordFunctionCompilation(Logger::LAZY_COMPILE_TAG,
|
428
|
+
name,
|
429
|
+
Handle<String>(shared->inferred_name()),
|
430
|
+
start_position,
|
431
|
+
info->script(),
|
432
|
+
code);
|
433
|
+
|
434
|
+
// Update the shared function info with the compiled code.
|
435
|
+
shared->set_code(*code);
|
436
|
+
|
437
|
+
// Set the expected number of properties for instances.
|
438
|
+
SetExpectedNofPropertiesFromEstimate(shared, lit->expected_property_count());
|
439
|
+
|
440
|
+
// Set the optimication hints after performing lazy compilation, as these are
|
441
|
+
// not set when the function is set up as a lazily compiled function.
|
442
|
+
shared->SetThisPropertyAssignmentsInfo(
|
443
|
+
lit->has_only_simple_this_property_assignments(),
|
444
|
+
*lit->this_property_assignments());
|
445
|
+
|
446
|
+
// Check the function has compiled code.
|
447
|
+
ASSERT(shared->is_compiled());
|
448
|
+
return true;
|
449
|
+
}
|
450
|
+
|
451
|
+
|
452
|
+
Handle<SharedFunctionInfo> Compiler::BuildFunctionInfo(FunctionLiteral* literal,
|
453
|
+
Handle<Script> script,
|
454
|
+
AstVisitor* caller) {
|
455
|
+
LiveEditFunctionTracker live_edit_tracker(literal);
|
456
|
+
#ifdef DEBUG
|
457
|
+
// We should not try to compile the same function literal more than
|
458
|
+
// once.
|
459
|
+
literal->mark_as_compiled();
|
460
|
+
#endif
|
461
|
+
|
462
|
+
// Determine if the function can be lazily compiled. This is
|
463
|
+
// necessary to allow some of our builtin JS files to be lazily
|
464
|
+
// compiled. These builtins cannot be handled lazily by the parser,
|
465
|
+
// since we have to know if a function uses the special natives
|
466
|
+
// syntax, which is something the parser records.
|
467
|
+
bool allow_lazy = literal->AllowsLazyCompilation() &&
|
468
|
+
!LiveEditFunctionTracker::IsActive();
|
469
|
+
|
470
|
+
// Generate code
|
471
|
+
Handle<Code> code;
|
472
|
+
if (FLAG_lazy && allow_lazy) {
|
473
|
+
code = ComputeLazyCompile(literal->num_parameters());
|
474
|
+
} else {
|
475
|
+
// The bodies of function literals have not yet been visited by
|
476
|
+
// the AST optimizer/analyzer.
|
477
|
+
if (!Rewriter::Optimize(literal)) {
|
478
|
+
return Handle<SharedFunctionInfo>::null();
|
479
|
+
}
|
480
|
+
|
481
|
+
if (literal->scope()->num_parameters() > 0 ||
|
482
|
+
literal->scope()->num_stack_slots()) {
|
483
|
+
AssignedVariablesAnalyzer ava(literal);
|
484
|
+
ava.Analyze();
|
485
|
+
if (ava.HasStackOverflow()) {
|
486
|
+
return Handle<SharedFunctionInfo>::null();
|
487
|
+
}
|
488
|
+
}
|
489
|
+
|
490
|
+
if (FLAG_use_flow_graph) {
|
491
|
+
FlowGraphBuilder builder;
|
492
|
+
FlowGraph* graph = builder.Build(literal);
|
493
|
+
USE(graph);
|
494
|
+
|
495
|
+
#ifdef DEBUG
|
496
|
+
if (FLAG_print_graph_text && !builder.HasStackOverflow()) {
|
497
|
+
graph->PrintAsText(literal->name());
|
498
|
+
}
|
499
|
+
#endif
|
500
|
+
}
|
501
|
+
|
502
|
+
// Generate code and return it. The way that the compilation mode
|
503
|
+
// is controlled by the command-line flags is described in
|
504
|
+
// the static helper function MakeCode.
|
505
|
+
CompilationInfo info(literal, script, false);
|
506
|
+
|
507
|
+
CHECK(!FLAG_always_full_compiler || !FLAG_always_fast_compiler);
|
508
|
+
bool is_run_once = literal->try_full_codegen();
|
509
|
+
bool is_compiled = false;
|
510
|
+
if (FLAG_always_full_compiler || (FLAG_full_compiler && is_run_once)) {
|
511
|
+
FullCodeGenSyntaxChecker checker;
|
512
|
+
checker.Check(literal);
|
513
|
+
if (checker.has_supported_syntax()) {
|
514
|
+
code = FullCodeGenerator::MakeCode(&info);
|
515
|
+
is_compiled = true;
|
516
|
+
}
|
517
|
+
} else if (FLAG_always_fast_compiler ||
|
518
|
+
(FLAG_fast_compiler && !is_run_once)) {
|
519
|
+
// Since we are not lazily compiling we do not have a receiver to
|
520
|
+
// specialize for.
|
521
|
+
FastCodeGenSyntaxChecker checker;
|
522
|
+
checker.Check(&info);
|
523
|
+
if (checker.has_supported_syntax()) {
|
524
|
+
code = FastCodeGenerator::MakeCode(&info);
|
525
|
+
is_compiled = true;
|
526
|
+
}
|
527
|
+
}
|
528
|
+
|
529
|
+
if (!is_compiled) {
|
530
|
+
// We fall back to the classic V8 code generator.
|
531
|
+
code = CodeGenerator::MakeCode(&info);
|
532
|
+
}
|
533
|
+
|
534
|
+
// Check for stack-overflow exception.
|
535
|
+
if (code.is_null()) {
|
536
|
+
caller->SetStackOverflow();
|
537
|
+
return Handle<SharedFunctionInfo>::null();
|
538
|
+
}
|
539
|
+
|
540
|
+
// Function compilation complete.
|
541
|
+
RecordFunctionCompilation(Logger::FUNCTION_TAG,
|
542
|
+
literal->name(),
|
543
|
+
literal->inferred_name(),
|
544
|
+
literal->start_position(),
|
545
|
+
script,
|
546
|
+
code);
|
547
|
+
}
|
548
|
+
|
549
|
+
// Create a shared function info object.
|
550
|
+
Handle<SharedFunctionInfo> result =
|
551
|
+
Factory::NewSharedFunctionInfo(literal->name(),
|
552
|
+
literal->materialized_literal_count(),
|
553
|
+
code);
|
554
|
+
SetFunctionInfo(result, literal, false, script);
|
555
|
+
|
556
|
+
// Set the expected number of properties for instances and return
|
557
|
+
// the resulting function.
|
558
|
+
SetExpectedNofPropertiesFromEstimate(result,
|
559
|
+
literal->expected_property_count());
|
560
|
+
live_edit_tracker.RecordFunctionInfo(result, literal);
|
561
|
+
return result;
|
562
|
+
}
|
563
|
+
|
564
|
+
|
565
|
+
// Sets the function info on a function.
|
566
|
+
// The start_position points to the first '(' character after the function name
|
567
|
+
// in the full script source. When counting characters in the script source the
|
568
|
+
// the first character is number 0 (not 1).
|
569
|
+
void Compiler::SetFunctionInfo(Handle<SharedFunctionInfo> function_info,
|
570
|
+
FunctionLiteral* lit,
|
571
|
+
bool is_toplevel,
|
572
|
+
Handle<Script> script) {
|
573
|
+
function_info->set_length(lit->num_parameters());
|
574
|
+
function_info->set_formal_parameter_count(lit->num_parameters());
|
575
|
+
function_info->set_script(*script);
|
576
|
+
function_info->set_function_token_position(lit->function_token_position());
|
577
|
+
function_info->set_start_position(lit->start_position());
|
578
|
+
function_info->set_end_position(lit->end_position());
|
579
|
+
function_info->set_is_expression(lit->is_expression());
|
580
|
+
function_info->set_is_toplevel(is_toplevel);
|
581
|
+
function_info->set_inferred_name(*lit->inferred_name());
|
582
|
+
function_info->SetThisPropertyAssignmentsInfo(
|
583
|
+
lit->has_only_simple_this_property_assignments(),
|
584
|
+
*lit->this_property_assignments());
|
585
|
+
function_info->set_try_full_codegen(lit->try_full_codegen());
|
586
|
+
}
|
587
|
+
|
588
|
+
|
589
|
+
void Compiler::RecordFunctionCompilation(Logger::LogEventsAndTags tag,
|
590
|
+
Handle<String> name,
|
591
|
+
Handle<String> inferred_name,
|
592
|
+
int start_position,
|
593
|
+
Handle<Script> script,
|
594
|
+
Handle<Code> code) {
|
595
|
+
// Log the code generation. If source information is available
|
596
|
+
// include script name and line number. Check explicitly whether
|
597
|
+
// logging is enabled as finding the line number is not free.
|
598
|
+
if (Logger::is_logging()
|
599
|
+
|| OProfileAgent::is_enabled()
|
600
|
+
|| CpuProfiler::is_profiling()) {
|
601
|
+
Handle<String> func_name(name->length() > 0 ? *name : *inferred_name);
|
602
|
+
if (script->name()->IsString()) {
|
603
|
+
int line_num = GetScriptLineNumber(script, start_position) + 1;
|
604
|
+
USE(line_num);
|
605
|
+
PROFILE(CodeCreateEvent(Logger::ToNativeByScript(tag, *script),
|
606
|
+
*code, *func_name,
|
607
|
+
String::cast(script->name()), line_num));
|
608
|
+
OPROFILE(CreateNativeCodeRegion(*func_name,
|
609
|
+
String::cast(script->name()),
|
610
|
+
line_num,
|
611
|
+
code->instruction_start(),
|
612
|
+
code->instruction_size()));
|
613
|
+
} else {
|
614
|
+
PROFILE(CodeCreateEvent(Logger::ToNativeByScript(tag, *script),
|
615
|
+
*code, *func_name));
|
616
|
+
OPROFILE(CreateNativeCodeRegion(*func_name,
|
617
|
+
code->instruction_start(),
|
618
|
+
code->instruction_size()));
|
619
|
+
}
|
620
|
+
}
|
621
|
+
}
|
622
|
+
|
623
|
+
} } // namespace v8::internal
|