libv8-sgonyea 3.3.10
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +8 -0
- data/.gitmodules +3 -0
- data/Gemfile +4 -0
- data/README.md +76 -0
- data/Rakefile +113 -0
- data/ext/libv8/extconf.rb +28 -0
- data/lib/libv8.rb +15 -0
- data/lib/libv8/Makefile +30 -0
- data/lib/libv8/detect_cpu.rb +27 -0
- data/lib/libv8/fpic-on-linux-amd64.patch +13 -0
- data/lib/libv8/v8/.gitignore +35 -0
- data/lib/libv8/v8/AUTHORS +44 -0
- data/lib/libv8/v8/ChangeLog +2839 -0
- data/lib/libv8/v8/LICENSE +52 -0
- data/lib/libv8/v8/LICENSE.strongtalk +29 -0
- data/lib/libv8/v8/LICENSE.v8 +26 -0
- data/lib/libv8/v8/LICENSE.valgrind +45 -0
- data/lib/libv8/v8/SConstruct +1478 -0
- data/lib/libv8/v8/build/README.txt +49 -0
- data/lib/libv8/v8/build/all.gyp +18 -0
- data/lib/libv8/v8/build/armu.gypi +32 -0
- data/lib/libv8/v8/build/common.gypi +144 -0
- data/lib/libv8/v8/build/gyp_v8 +145 -0
- data/lib/libv8/v8/include/v8-debug.h +395 -0
- data/lib/libv8/v8/include/v8-preparser.h +117 -0
- data/lib/libv8/v8/include/v8-profiler.h +505 -0
- data/lib/libv8/v8/include/v8-testing.h +104 -0
- data/lib/libv8/v8/include/v8.h +4124 -0
- data/lib/libv8/v8/include/v8stdint.h +53 -0
- data/lib/libv8/v8/preparser/SConscript +38 -0
- data/lib/libv8/v8/preparser/preparser-process.cc +379 -0
- data/lib/libv8/v8/src/SConscript +368 -0
- data/lib/libv8/v8/src/accessors.cc +767 -0
- data/lib/libv8/v8/src/accessors.h +123 -0
- data/lib/libv8/v8/src/allocation-inl.h +49 -0
- data/lib/libv8/v8/src/allocation.cc +122 -0
- data/lib/libv8/v8/src/allocation.h +143 -0
- data/lib/libv8/v8/src/api.cc +5845 -0
- data/lib/libv8/v8/src/api.h +574 -0
- data/lib/libv8/v8/src/apinatives.js +110 -0
- data/lib/libv8/v8/src/apiutils.h +73 -0
- data/lib/libv8/v8/src/arguments.h +118 -0
- data/lib/libv8/v8/src/arm/assembler-arm-inl.h +353 -0
- data/lib/libv8/v8/src/arm/assembler-arm.cc +2661 -0
- data/lib/libv8/v8/src/arm/assembler-arm.h +1375 -0
- data/lib/libv8/v8/src/arm/builtins-arm.cc +1658 -0
- data/lib/libv8/v8/src/arm/code-stubs-arm.cc +6398 -0
- data/lib/libv8/v8/src/arm/code-stubs-arm.h +673 -0
- data/lib/libv8/v8/src/arm/codegen-arm.cc +52 -0
- data/lib/libv8/v8/src/arm/codegen-arm.h +91 -0
- data/lib/libv8/v8/src/arm/constants-arm.cc +152 -0
- data/lib/libv8/v8/src/arm/constants-arm.h +775 -0
- data/lib/libv8/v8/src/arm/cpu-arm.cc +120 -0
- data/lib/libv8/v8/src/arm/debug-arm.cc +317 -0
- data/lib/libv8/v8/src/arm/deoptimizer-arm.cc +754 -0
- data/lib/libv8/v8/src/arm/disasm-arm.cc +1506 -0
- data/lib/libv8/v8/src/arm/frames-arm.cc +45 -0
- data/lib/libv8/v8/src/arm/frames-arm.h +168 -0
- data/lib/libv8/v8/src/arm/full-codegen-arm.cc +4375 -0
- data/lib/libv8/v8/src/arm/ic-arm.cc +1562 -0
- data/lib/libv8/v8/src/arm/lithium-arm.cc +2206 -0
- data/lib/libv8/v8/src/arm/lithium-arm.h +2348 -0
- data/lib/libv8/v8/src/arm/lithium-codegen-arm.cc +4526 -0
- data/lib/libv8/v8/src/arm/lithium-codegen-arm.h +403 -0
- data/lib/libv8/v8/src/arm/lithium-gap-resolver-arm.cc +305 -0
- data/lib/libv8/v8/src/arm/lithium-gap-resolver-arm.h +84 -0
- data/lib/libv8/v8/src/arm/macro-assembler-arm.cc +3163 -0
- data/lib/libv8/v8/src/arm/macro-assembler-arm.h +1126 -0
- data/lib/libv8/v8/src/arm/regexp-macro-assembler-arm.cc +1287 -0
- data/lib/libv8/v8/src/arm/regexp-macro-assembler-arm.h +253 -0
- data/lib/libv8/v8/src/arm/simulator-arm.cc +3424 -0
- data/lib/libv8/v8/src/arm/simulator-arm.h +431 -0
- data/lib/libv8/v8/src/arm/stub-cache-arm.cc +4243 -0
- data/lib/libv8/v8/src/array.js +1366 -0
- data/lib/libv8/v8/src/assembler.cc +1207 -0
- data/lib/libv8/v8/src/assembler.h +858 -0
- data/lib/libv8/v8/src/ast-inl.h +112 -0
- data/lib/libv8/v8/src/ast.cc +1146 -0
- data/lib/libv8/v8/src/ast.h +2188 -0
- data/lib/libv8/v8/src/atomicops.h +167 -0
- data/lib/libv8/v8/src/atomicops_internals_arm_gcc.h +145 -0
- data/lib/libv8/v8/src/atomicops_internals_mips_gcc.h +169 -0
- data/lib/libv8/v8/src/atomicops_internals_x86_gcc.cc +133 -0
- data/lib/libv8/v8/src/atomicops_internals_x86_gcc.h +287 -0
- data/lib/libv8/v8/src/atomicops_internals_x86_macosx.h +301 -0
- data/lib/libv8/v8/src/atomicops_internals_x86_msvc.h +203 -0
- data/lib/libv8/v8/src/bignum-dtoa.cc +655 -0
- data/lib/libv8/v8/src/bignum-dtoa.h +81 -0
- data/lib/libv8/v8/src/bignum.cc +768 -0
- data/lib/libv8/v8/src/bignum.h +140 -0
- data/lib/libv8/v8/src/bootstrapper.cc +2184 -0
- data/lib/libv8/v8/src/bootstrapper.h +188 -0
- data/lib/libv8/v8/src/builtins.cc +1707 -0
- data/lib/libv8/v8/src/builtins.h +371 -0
- data/lib/libv8/v8/src/bytecodes-irregexp.h +105 -0
- data/lib/libv8/v8/src/cached-powers.cc +177 -0
- data/lib/libv8/v8/src/cached-powers.h +65 -0
- data/lib/libv8/v8/src/char-predicates-inl.h +94 -0
- data/lib/libv8/v8/src/char-predicates.h +67 -0
- data/lib/libv8/v8/src/checks.cc +110 -0
- data/lib/libv8/v8/src/checks.h +296 -0
- data/lib/libv8/v8/src/circular-queue-inl.h +53 -0
- data/lib/libv8/v8/src/circular-queue.cc +122 -0
- data/lib/libv8/v8/src/circular-queue.h +103 -0
- data/lib/libv8/v8/src/code-stubs.cc +267 -0
- data/lib/libv8/v8/src/code-stubs.h +1011 -0
- data/lib/libv8/v8/src/code.h +70 -0
- data/lib/libv8/v8/src/codegen.cc +231 -0
- data/lib/libv8/v8/src/codegen.h +84 -0
- data/lib/libv8/v8/src/compilation-cache.cc +540 -0
- data/lib/libv8/v8/src/compilation-cache.h +287 -0
- data/lib/libv8/v8/src/compiler.cc +786 -0
- data/lib/libv8/v8/src/compiler.h +312 -0
- data/lib/libv8/v8/src/contexts.cc +347 -0
- data/lib/libv8/v8/src/contexts.h +391 -0
- data/lib/libv8/v8/src/conversions-inl.h +106 -0
- data/lib/libv8/v8/src/conversions.cc +1131 -0
- data/lib/libv8/v8/src/conversions.h +135 -0
- data/lib/libv8/v8/src/counters.cc +93 -0
- data/lib/libv8/v8/src/counters.h +254 -0
- data/lib/libv8/v8/src/cpu-profiler-inl.h +101 -0
- data/lib/libv8/v8/src/cpu-profiler.cc +609 -0
- data/lib/libv8/v8/src/cpu-profiler.h +302 -0
- data/lib/libv8/v8/src/cpu.h +69 -0
- data/lib/libv8/v8/src/d8-debug.cc +367 -0
- data/lib/libv8/v8/src/d8-debug.h +158 -0
- data/lib/libv8/v8/src/d8-posix.cc +695 -0
- data/lib/libv8/v8/src/d8-readline.cc +130 -0
- data/lib/libv8/v8/src/d8-windows.cc +42 -0
- data/lib/libv8/v8/src/d8.cc +803 -0
- data/lib/libv8/v8/src/d8.gyp +91 -0
- data/lib/libv8/v8/src/d8.h +235 -0
- data/lib/libv8/v8/src/d8.js +2798 -0
- data/lib/libv8/v8/src/data-flow.cc +66 -0
- data/lib/libv8/v8/src/data-flow.h +205 -0
- data/lib/libv8/v8/src/date.js +1103 -0
- data/lib/libv8/v8/src/dateparser-inl.h +127 -0
- data/lib/libv8/v8/src/dateparser.cc +178 -0
- data/lib/libv8/v8/src/dateparser.h +266 -0
- data/lib/libv8/v8/src/debug-agent.cc +447 -0
- data/lib/libv8/v8/src/debug-agent.h +129 -0
- data/lib/libv8/v8/src/debug-debugger.js +2569 -0
- data/lib/libv8/v8/src/debug.cc +3165 -0
- data/lib/libv8/v8/src/debug.h +1057 -0
- data/lib/libv8/v8/src/deoptimizer.cc +1256 -0
- data/lib/libv8/v8/src/deoptimizer.h +602 -0
- data/lib/libv8/v8/src/disasm.h +80 -0
- data/lib/libv8/v8/src/disassembler.cc +343 -0
- data/lib/libv8/v8/src/disassembler.h +58 -0
- data/lib/libv8/v8/src/diy-fp.cc +58 -0
- data/lib/libv8/v8/src/diy-fp.h +117 -0
- data/lib/libv8/v8/src/double.h +238 -0
- data/lib/libv8/v8/src/dtoa.cc +103 -0
- data/lib/libv8/v8/src/dtoa.h +85 -0
- data/lib/libv8/v8/src/execution.cc +849 -0
- data/lib/libv8/v8/src/execution.h +297 -0
- data/lib/libv8/v8/src/extensions/experimental/break-iterator.cc +250 -0
- data/lib/libv8/v8/src/extensions/experimental/break-iterator.h +89 -0
- data/lib/libv8/v8/src/extensions/experimental/collator.cc +218 -0
- data/lib/libv8/v8/src/extensions/experimental/collator.h +69 -0
- data/lib/libv8/v8/src/extensions/experimental/experimental.gyp +94 -0
- data/lib/libv8/v8/src/extensions/experimental/i18n-extension.cc +78 -0
- data/lib/libv8/v8/src/extensions/experimental/i18n-extension.h +54 -0
- data/lib/libv8/v8/src/extensions/experimental/i18n-locale.cc +112 -0
- data/lib/libv8/v8/src/extensions/experimental/i18n-locale.h +60 -0
- data/lib/libv8/v8/src/extensions/experimental/i18n-utils.cc +43 -0
- data/lib/libv8/v8/src/extensions/experimental/i18n-utils.h +49 -0
- data/lib/libv8/v8/src/extensions/experimental/i18n.js +180 -0
- data/lib/libv8/v8/src/extensions/experimental/language-matcher.cc +251 -0
- data/lib/libv8/v8/src/extensions/experimental/language-matcher.h +95 -0
- data/lib/libv8/v8/src/extensions/externalize-string-extension.cc +141 -0
- data/lib/libv8/v8/src/extensions/externalize-string-extension.h +50 -0
- data/lib/libv8/v8/src/extensions/gc-extension.cc +58 -0
- data/lib/libv8/v8/src/extensions/gc-extension.h +49 -0
- data/lib/libv8/v8/src/factory.cc +1222 -0
- data/lib/libv8/v8/src/factory.h +442 -0
- data/lib/libv8/v8/src/fast-dtoa.cc +736 -0
- data/lib/libv8/v8/src/fast-dtoa.h +83 -0
- data/lib/libv8/v8/src/fixed-dtoa.cc +405 -0
- data/lib/libv8/v8/src/fixed-dtoa.h +55 -0
- data/lib/libv8/v8/src/flag-definitions.h +560 -0
- data/lib/libv8/v8/src/flags.cc +551 -0
- data/lib/libv8/v8/src/flags.h +79 -0
- data/lib/libv8/v8/src/frames-inl.h +247 -0
- data/lib/libv8/v8/src/frames.cc +1243 -0
- data/lib/libv8/v8/src/frames.h +870 -0
- data/lib/libv8/v8/src/full-codegen.cc +1374 -0
- data/lib/libv8/v8/src/full-codegen.h +771 -0
- data/lib/libv8/v8/src/func-name-inferrer.cc +92 -0
- data/lib/libv8/v8/src/func-name-inferrer.h +111 -0
- data/lib/libv8/v8/src/gdb-jit.cc +1555 -0
- data/lib/libv8/v8/src/gdb-jit.h +143 -0
- data/lib/libv8/v8/src/global-handles.cc +665 -0
- data/lib/libv8/v8/src/global-handles.h +284 -0
- data/lib/libv8/v8/src/globals.h +325 -0
- data/lib/libv8/v8/src/handles-inl.h +177 -0
- data/lib/libv8/v8/src/handles.cc +987 -0
- data/lib/libv8/v8/src/handles.h +382 -0
- data/lib/libv8/v8/src/hashmap.cc +230 -0
- data/lib/libv8/v8/src/hashmap.h +123 -0
- data/lib/libv8/v8/src/heap-inl.h +704 -0
- data/lib/libv8/v8/src/heap-profiler.cc +1173 -0
- data/lib/libv8/v8/src/heap-profiler.h +397 -0
- data/lib/libv8/v8/src/heap.cc +5930 -0
- data/lib/libv8/v8/src/heap.h +2268 -0
- data/lib/libv8/v8/src/hydrogen-instructions.cc +1769 -0
- data/lib/libv8/v8/src/hydrogen-instructions.h +3971 -0
- data/lib/libv8/v8/src/hydrogen.cc +6239 -0
- data/lib/libv8/v8/src/hydrogen.h +1202 -0
- data/lib/libv8/v8/src/ia32/assembler-ia32-inl.h +446 -0
- data/lib/libv8/v8/src/ia32/assembler-ia32.cc +2487 -0
- data/lib/libv8/v8/src/ia32/assembler-ia32.h +1144 -0
- data/lib/libv8/v8/src/ia32/builtins-ia32.cc +1621 -0
- data/lib/libv8/v8/src/ia32/code-stubs-ia32.cc +6198 -0
- data/lib/libv8/v8/src/ia32/code-stubs-ia32.h +517 -0
- data/lib/libv8/v8/src/ia32/codegen-ia32.cc +265 -0
- data/lib/libv8/v8/src/ia32/codegen-ia32.h +79 -0
- data/lib/libv8/v8/src/ia32/cpu-ia32.cc +88 -0
- data/lib/libv8/v8/src/ia32/debug-ia32.cc +312 -0
- data/lib/libv8/v8/src/ia32/deoptimizer-ia32.cc +774 -0
- data/lib/libv8/v8/src/ia32/disasm-ia32.cc +1628 -0
- data/lib/libv8/v8/src/ia32/frames-ia32.cc +45 -0
- data/lib/libv8/v8/src/ia32/frames-ia32.h +142 -0
- data/lib/libv8/v8/src/ia32/full-codegen-ia32.cc +4338 -0
- data/lib/libv8/v8/src/ia32/ic-ia32.cc +1597 -0
- data/lib/libv8/v8/src/ia32/lithium-codegen-ia32.cc +4461 -0
- data/lib/libv8/v8/src/ia32/lithium-codegen-ia32.h +375 -0
- data/lib/libv8/v8/src/ia32/lithium-gap-resolver-ia32.cc +475 -0
- data/lib/libv8/v8/src/ia32/lithium-gap-resolver-ia32.h +110 -0
- data/lib/libv8/v8/src/ia32/lithium-ia32.cc +2261 -0
- data/lib/libv8/v8/src/ia32/lithium-ia32.h +2396 -0
- data/lib/libv8/v8/src/ia32/macro-assembler-ia32.cc +2136 -0
- data/lib/libv8/v8/src/ia32/macro-assembler-ia32.h +775 -0
- data/lib/libv8/v8/src/ia32/regexp-macro-assembler-ia32.cc +1263 -0
- data/lib/libv8/v8/src/ia32/regexp-macro-assembler-ia32.h +216 -0
- data/lib/libv8/v8/src/ia32/simulator-ia32.cc +30 -0
- data/lib/libv8/v8/src/ia32/simulator-ia32.h +74 -0
- data/lib/libv8/v8/src/ia32/stub-cache-ia32.cc +3847 -0
- data/lib/libv8/v8/src/ic-inl.h +130 -0
- data/lib/libv8/v8/src/ic.cc +2577 -0
- data/lib/libv8/v8/src/ic.h +736 -0
- data/lib/libv8/v8/src/inspector.cc +63 -0
- data/lib/libv8/v8/src/inspector.h +62 -0
- data/lib/libv8/v8/src/interpreter-irregexp.cc +659 -0
- data/lib/libv8/v8/src/interpreter-irregexp.h +49 -0
- data/lib/libv8/v8/src/isolate-inl.h +50 -0
- data/lib/libv8/v8/src/isolate.cc +1869 -0
- data/lib/libv8/v8/src/isolate.h +1382 -0
- data/lib/libv8/v8/src/json-parser.cc +504 -0
- data/lib/libv8/v8/src/json-parser.h +161 -0
- data/lib/libv8/v8/src/json.js +342 -0
- data/lib/libv8/v8/src/jsregexp.cc +5385 -0
- data/lib/libv8/v8/src/jsregexp.h +1492 -0
- data/lib/libv8/v8/src/list-inl.h +212 -0
- data/lib/libv8/v8/src/list.h +174 -0
- data/lib/libv8/v8/src/lithium-allocator-inl.h +142 -0
- data/lib/libv8/v8/src/lithium-allocator.cc +2123 -0
- data/lib/libv8/v8/src/lithium-allocator.h +630 -0
- data/lib/libv8/v8/src/lithium.cc +190 -0
- data/lib/libv8/v8/src/lithium.h +597 -0
- data/lib/libv8/v8/src/liveedit-debugger.js +1082 -0
- data/lib/libv8/v8/src/liveedit.cc +1691 -0
- data/lib/libv8/v8/src/liveedit.h +180 -0
- data/lib/libv8/v8/src/liveobjectlist-inl.h +126 -0
- data/lib/libv8/v8/src/liveobjectlist.cc +2589 -0
- data/lib/libv8/v8/src/liveobjectlist.h +322 -0
- data/lib/libv8/v8/src/log-inl.h +59 -0
- data/lib/libv8/v8/src/log-utils.cc +428 -0
- data/lib/libv8/v8/src/log-utils.h +231 -0
- data/lib/libv8/v8/src/log.cc +1993 -0
- data/lib/libv8/v8/src/log.h +476 -0
- data/lib/libv8/v8/src/macro-assembler.h +120 -0
- data/lib/libv8/v8/src/macros.py +178 -0
- data/lib/libv8/v8/src/mark-compact.cc +3143 -0
- data/lib/libv8/v8/src/mark-compact.h +506 -0
- data/lib/libv8/v8/src/math.js +264 -0
- data/lib/libv8/v8/src/messages.cc +179 -0
- data/lib/libv8/v8/src/messages.h +113 -0
- data/lib/libv8/v8/src/messages.js +1096 -0
- data/lib/libv8/v8/src/mips/assembler-mips-inl.h +312 -0
- data/lib/libv8/v8/src/mips/assembler-mips.cc +1960 -0
- data/lib/libv8/v8/src/mips/assembler-mips.h +1138 -0
- data/lib/libv8/v8/src/mips/builtins-mips.cc +1628 -0
- data/lib/libv8/v8/src/mips/code-stubs-mips.cc +6656 -0
- data/lib/libv8/v8/src/mips/code-stubs-mips.h +682 -0
- data/lib/libv8/v8/src/mips/codegen-mips.cc +52 -0
- data/lib/libv8/v8/src/mips/codegen-mips.h +98 -0
- data/lib/libv8/v8/src/mips/constants-mips.cc +352 -0
- data/lib/libv8/v8/src/mips/constants-mips.h +739 -0
- data/lib/libv8/v8/src/mips/cpu-mips.cc +96 -0
- data/lib/libv8/v8/src/mips/debug-mips.cc +308 -0
- data/lib/libv8/v8/src/mips/deoptimizer-mips.cc +91 -0
- data/lib/libv8/v8/src/mips/disasm-mips.cc +1050 -0
- data/lib/libv8/v8/src/mips/frames-mips.cc +47 -0
- data/lib/libv8/v8/src/mips/frames-mips.h +219 -0
- data/lib/libv8/v8/src/mips/full-codegen-mips.cc +4388 -0
- data/lib/libv8/v8/src/mips/ic-mips.cc +1580 -0
- data/lib/libv8/v8/src/mips/lithium-codegen-mips.h +65 -0
- data/lib/libv8/v8/src/mips/lithium-mips.h +307 -0
- data/lib/libv8/v8/src/mips/macro-assembler-mips.cc +4056 -0
- data/lib/libv8/v8/src/mips/macro-assembler-mips.h +1214 -0
- data/lib/libv8/v8/src/mips/regexp-macro-assembler-mips.cc +1251 -0
- data/lib/libv8/v8/src/mips/regexp-macro-assembler-mips.h +252 -0
- data/lib/libv8/v8/src/mips/simulator-mips.cc +2621 -0
- data/lib/libv8/v8/src/mips/simulator-mips.h +401 -0
- data/lib/libv8/v8/src/mips/stub-cache-mips.cc +4285 -0
- data/lib/libv8/v8/src/mirror-debugger.js +2382 -0
- data/lib/libv8/v8/src/mksnapshot.cc +328 -0
- data/lib/libv8/v8/src/natives.h +64 -0
- data/lib/libv8/v8/src/objects-debug.cc +738 -0
- data/lib/libv8/v8/src/objects-inl.h +4323 -0
- data/lib/libv8/v8/src/objects-printer.cc +829 -0
- data/lib/libv8/v8/src/objects-visiting.cc +148 -0
- data/lib/libv8/v8/src/objects-visiting.h +424 -0
- data/lib/libv8/v8/src/objects.cc +10585 -0
- data/lib/libv8/v8/src/objects.h +6838 -0
- data/lib/libv8/v8/src/parser.cc +4997 -0
- data/lib/libv8/v8/src/parser.h +765 -0
- data/lib/libv8/v8/src/platform-cygwin.cc +779 -0
- data/lib/libv8/v8/src/platform-freebsd.cc +826 -0
- data/lib/libv8/v8/src/platform-linux.cc +1149 -0
- data/lib/libv8/v8/src/platform-macos.cc +830 -0
- data/lib/libv8/v8/src/platform-nullos.cc +479 -0
- data/lib/libv8/v8/src/platform-openbsd.cc +640 -0
- data/lib/libv8/v8/src/platform-posix.cc +424 -0
- data/lib/libv8/v8/src/platform-solaris.cc +762 -0
- data/lib/libv8/v8/src/platform-tls-mac.h +62 -0
- data/lib/libv8/v8/src/platform-tls-win32.h +62 -0
- data/lib/libv8/v8/src/platform-tls.h +50 -0
- data/lib/libv8/v8/src/platform-win32.cc +2021 -0
- data/lib/libv8/v8/src/platform.h +667 -0
- data/lib/libv8/v8/src/preparse-data-format.h +62 -0
- data/lib/libv8/v8/src/preparse-data.cc +183 -0
- data/lib/libv8/v8/src/preparse-data.h +225 -0
- data/lib/libv8/v8/src/preparser-api.cc +220 -0
- data/lib/libv8/v8/src/preparser.cc +1450 -0
- data/lib/libv8/v8/src/preparser.h +493 -0
- data/lib/libv8/v8/src/prettyprinter.cc +1493 -0
- data/lib/libv8/v8/src/prettyprinter.h +223 -0
- data/lib/libv8/v8/src/profile-generator-inl.h +128 -0
- data/lib/libv8/v8/src/profile-generator.cc +3098 -0
- data/lib/libv8/v8/src/profile-generator.h +1126 -0
- data/lib/libv8/v8/src/property.cc +105 -0
- data/lib/libv8/v8/src/property.h +365 -0
- data/lib/libv8/v8/src/proxy.js +83 -0
- data/lib/libv8/v8/src/regexp-macro-assembler-irregexp-inl.h +78 -0
- data/lib/libv8/v8/src/regexp-macro-assembler-irregexp.cc +471 -0
- data/lib/libv8/v8/src/regexp-macro-assembler-irregexp.h +142 -0
- data/lib/libv8/v8/src/regexp-macro-assembler-tracer.cc +373 -0
- data/lib/libv8/v8/src/regexp-macro-assembler-tracer.h +104 -0
- data/lib/libv8/v8/src/regexp-macro-assembler.cc +267 -0
- data/lib/libv8/v8/src/regexp-macro-assembler.h +243 -0
- data/lib/libv8/v8/src/regexp-stack.cc +111 -0
- data/lib/libv8/v8/src/regexp-stack.h +147 -0
- data/lib/libv8/v8/src/regexp.js +483 -0
- data/lib/libv8/v8/src/rewriter.cc +360 -0
- data/lib/libv8/v8/src/rewriter.h +50 -0
- data/lib/libv8/v8/src/runtime-profiler.cc +489 -0
- data/lib/libv8/v8/src/runtime-profiler.h +201 -0
- data/lib/libv8/v8/src/runtime.cc +12227 -0
- data/lib/libv8/v8/src/runtime.h +652 -0
- data/lib/libv8/v8/src/runtime.js +649 -0
- data/lib/libv8/v8/src/safepoint-table.cc +256 -0
- data/lib/libv8/v8/src/safepoint-table.h +270 -0
- data/lib/libv8/v8/src/scanner-base.cc +952 -0
- data/lib/libv8/v8/src/scanner-base.h +670 -0
- data/lib/libv8/v8/src/scanner.cc +345 -0
- data/lib/libv8/v8/src/scanner.h +146 -0
- data/lib/libv8/v8/src/scopeinfo.cc +646 -0
- data/lib/libv8/v8/src/scopeinfo.h +254 -0
- data/lib/libv8/v8/src/scopes.cc +1150 -0
- data/lib/libv8/v8/src/scopes.h +507 -0
- data/lib/libv8/v8/src/serialize.cc +1574 -0
- data/lib/libv8/v8/src/serialize.h +589 -0
- data/lib/libv8/v8/src/shell.h +55 -0
- data/lib/libv8/v8/src/simulator.h +43 -0
- data/lib/libv8/v8/src/small-pointer-list.h +163 -0
- data/lib/libv8/v8/src/smart-pointer.h +109 -0
- data/lib/libv8/v8/src/snapshot-common.cc +83 -0
- data/lib/libv8/v8/src/snapshot-empty.cc +54 -0
- data/lib/libv8/v8/src/snapshot.h +91 -0
- data/lib/libv8/v8/src/spaces-inl.h +529 -0
- data/lib/libv8/v8/src/spaces.cc +3145 -0
- data/lib/libv8/v8/src/spaces.h +2369 -0
- data/lib/libv8/v8/src/splay-tree-inl.h +310 -0
- data/lib/libv8/v8/src/splay-tree.h +205 -0
- data/lib/libv8/v8/src/string-search.cc +41 -0
- data/lib/libv8/v8/src/string-search.h +568 -0
- data/lib/libv8/v8/src/string-stream.cc +592 -0
- data/lib/libv8/v8/src/string-stream.h +191 -0
- data/lib/libv8/v8/src/string.js +994 -0
- data/lib/libv8/v8/src/strtod.cc +440 -0
- data/lib/libv8/v8/src/strtod.h +40 -0
- data/lib/libv8/v8/src/stub-cache.cc +1965 -0
- data/lib/libv8/v8/src/stub-cache.h +924 -0
- data/lib/libv8/v8/src/third_party/valgrind/valgrind.h +3925 -0
- data/lib/libv8/v8/src/token.cc +63 -0
- data/lib/libv8/v8/src/token.h +288 -0
- data/lib/libv8/v8/src/type-info.cc +507 -0
- data/lib/libv8/v8/src/type-info.h +272 -0
- data/lib/libv8/v8/src/unbound-queue-inl.h +95 -0
- data/lib/libv8/v8/src/unbound-queue.h +69 -0
- data/lib/libv8/v8/src/unicode-inl.h +238 -0
- data/lib/libv8/v8/src/unicode.cc +1624 -0
- data/lib/libv8/v8/src/unicode.h +280 -0
- data/lib/libv8/v8/src/uri.js +408 -0
- data/lib/libv8/v8/src/utils-inl.h +48 -0
- data/lib/libv8/v8/src/utils.cc +371 -0
- data/lib/libv8/v8/src/utils.h +800 -0
- data/lib/libv8/v8/src/v8-counters.cc +62 -0
- data/lib/libv8/v8/src/v8-counters.h +314 -0
- data/lib/libv8/v8/src/v8.cc +213 -0
- data/lib/libv8/v8/src/v8.h +131 -0
- data/lib/libv8/v8/src/v8checks.h +64 -0
- data/lib/libv8/v8/src/v8dll-main.cc +44 -0
- data/lib/libv8/v8/src/v8globals.h +512 -0
- data/lib/libv8/v8/src/v8memory.h +82 -0
- data/lib/libv8/v8/src/v8natives.js +1310 -0
- data/lib/libv8/v8/src/v8preparserdll-main.cc +39 -0
- data/lib/libv8/v8/src/v8threads.cc +464 -0
- data/lib/libv8/v8/src/v8threads.h +165 -0
- data/lib/libv8/v8/src/v8utils.h +319 -0
- data/lib/libv8/v8/src/variables.cc +114 -0
- data/lib/libv8/v8/src/variables.h +167 -0
- data/lib/libv8/v8/src/version.cc +116 -0
- data/lib/libv8/v8/src/version.h +68 -0
- data/lib/libv8/v8/src/vm-state-inl.h +138 -0
- data/lib/libv8/v8/src/vm-state.h +71 -0
- data/lib/libv8/v8/src/win32-headers.h +96 -0
- data/lib/libv8/v8/src/x64/assembler-x64-inl.h +462 -0
- data/lib/libv8/v8/src/x64/assembler-x64.cc +3027 -0
- data/lib/libv8/v8/src/x64/assembler-x64.h +1633 -0
- data/lib/libv8/v8/src/x64/builtins-x64.cc +1520 -0
- data/lib/libv8/v8/src/x64/code-stubs-x64.cc +5132 -0
- data/lib/libv8/v8/src/x64/code-stubs-x64.h +514 -0
- data/lib/libv8/v8/src/x64/codegen-x64.cc +146 -0
- data/lib/libv8/v8/src/x64/codegen-x64.h +76 -0
- data/lib/libv8/v8/src/x64/cpu-x64.cc +88 -0
- data/lib/libv8/v8/src/x64/debug-x64.cc +319 -0
- data/lib/libv8/v8/src/x64/deoptimizer-x64.cc +815 -0
- data/lib/libv8/v8/src/x64/disasm-x64.cc +1832 -0
- data/lib/libv8/v8/src/x64/frames-x64.cc +45 -0
- data/lib/libv8/v8/src/x64/frames-x64.h +130 -0
- data/lib/libv8/v8/src/x64/full-codegen-x64.cc +4318 -0
- data/lib/libv8/v8/src/x64/ic-x64.cc +1608 -0
- data/lib/libv8/v8/src/x64/lithium-codegen-x64.cc +4267 -0
- data/lib/libv8/v8/src/x64/lithium-codegen-x64.h +367 -0
- data/lib/libv8/v8/src/x64/lithium-gap-resolver-x64.cc +320 -0
- data/lib/libv8/v8/src/x64/lithium-gap-resolver-x64.h +74 -0
- data/lib/libv8/v8/src/x64/lithium-x64.cc +2202 -0
- data/lib/libv8/v8/src/x64/lithium-x64.h +2333 -0
- data/lib/libv8/v8/src/x64/macro-assembler-x64.cc +3745 -0
- data/lib/libv8/v8/src/x64/macro-assembler-x64.h +1290 -0
- data/lib/libv8/v8/src/x64/regexp-macro-assembler-x64.cc +1398 -0
- data/lib/libv8/v8/src/x64/regexp-macro-assembler-x64.h +282 -0
- data/lib/libv8/v8/src/x64/simulator-x64.cc +27 -0
- data/lib/libv8/v8/src/x64/simulator-x64.h +72 -0
- data/lib/libv8/v8/src/x64/stub-cache-x64.cc +3610 -0
- data/lib/libv8/v8/src/zone-inl.h +140 -0
- data/lib/libv8/v8/src/zone.cc +196 -0
- data/lib/libv8/v8/src/zone.h +240 -0
- data/lib/libv8/v8/tools/codemap.js +265 -0
- data/lib/libv8/v8/tools/consarray.js +93 -0
- data/lib/libv8/v8/tools/csvparser.js +78 -0
- data/lib/libv8/v8/tools/disasm.py +92 -0
- data/lib/libv8/v8/tools/freebsd-tick-processor +10 -0
- data/lib/libv8/v8/tools/gc-nvp-trace-processor.py +342 -0
- data/lib/libv8/v8/tools/gcmole/README +62 -0
- data/lib/libv8/v8/tools/gcmole/gccause.lua +60 -0
- data/lib/libv8/v8/tools/gcmole/gcmole.cc +1261 -0
- data/lib/libv8/v8/tools/gcmole/gcmole.lua +378 -0
- data/lib/libv8/v8/tools/generate-ten-powers.scm +286 -0
- data/lib/libv8/v8/tools/grokdump.py +841 -0
- data/lib/libv8/v8/tools/gyp/v8.gyp +995 -0
- data/lib/libv8/v8/tools/js2c.py +364 -0
- data/lib/libv8/v8/tools/jsmin.py +280 -0
- data/lib/libv8/v8/tools/linux-tick-processor +35 -0
- data/lib/libv8/v8/tools/ll_prof.py +942 -0
- data/lib/libv8/v8/tools/logreader.js +185 -0
- data/lib/libv8/v8/tools/mac-nm +18 -0
- data/lib/libv8/v8/tools/mac-tick-processor +6 -0
- data/lib/libv8/v8/tools/oom_dump/README +31 -0
- data/lib/libv8/v8/tools/oom_dump/SConstruct +42 -0
- data/lib/libv8/v8/tools/oom_dump/oom_dump.cc +288 -0
- data/lib/libv8/v8/tools/presubmit.py +305 -0
- data/lib/libv8/v8/tools/process-heap-prof.py +120 -0
- data/lib/libv8/v8/tools/profile.js +751 -0
- data/lib/libv8/v8/tools/profile_view.js +219 -0
- data/lib/libv8/v8/tools/run-valgrind.py +77 -0
- data/lib/libv8/v8/tools/splaytree.js +316 -0
- data/lib/libv8/v8/tools/stats-viewer.py +468 -0
- data/lib/libv8/v8/tools/test.py +1510 -0
- data/lib/libv8/v8/tools/tickprocessor-driver.js +59 -0
- data/lib/libv8/v8/tools/tickprocessor.js +877 -0
- data/lib/libv8/v8/tools/utils.py +96 -0
- data/lib/libv8/v8/tools/visual_studio/README.txt +12 -0
- data/lib/libv8/v8/tools/windows-tick-processor.bat +30 -0
- data/lib/libv8/version.rb +5 -0
- data/libv8.gemspec +36 -0
- metadata +578 -0
@@ -0,0 +1,1263 @@
|
|
1
|
+
// Copyright 2008-2009 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
|
+
#if defined(V8_TARGET_ARCH_IA32)
|
31
|
+
|
32
|
+
#include "unicode.h"
|
33
|
+
#include "log.h"
|
34
|
+
#include "regexp-stack.h"
|
35
|
+
#include "macro-assembler.h"
|
36
|
+
#include "regexp-macro-assembler.h"
|
37
|
+
#include "ia32/regexp-macro-assembler-ia32.h"
|
38
|
+
|
39
|
+
namespace v8 {
|
40
|
+
namespace internal {
|
41
|
+
|
42
|
+
#ifndef V8_INTERPRETED_REGEXP
|
43
|
+
/*
|
44
|
+
* This assembler uses the following register assignment convention
|
45
|
+
* - edx : current character. Must be loaded using LoadCurrentCharacter
|
46
|
+
* before using any of the dispatch methods.
|
47
|
+
* - edi : current position in input, as negative offset from end of string.
|
48
|
+
* Please notice that this is the byte offset, not the character offset!
|
49
|
+
* - esi : end of input (points to byte after last character in input).
|
50
|
+
* - ebp : frame pointer. Used to access arguments, local variables and
|
51
|
+
* RegExp registers.
|
52
|
+
* - esp : points to tip of C stack.
|
53
|
+
* - ecx : points to tip of backtrack stack
|
54
|
+
*
|
55
|
+
* The registers eax and ebx are free to use for computations.
|
56
|
+
*
|
57
|
+
* Each call to a public method should retain this convention.
|
58
|
+
* The stack will have the following structure:
|
59
|
+
* - Isolate* isolate (Address of the current isolate)
|
60
|
+
* - direct_call (if 1, direct call from JavaScript code, if 0
|
61
|
+
* call through the runtime system)
|
62
|
+
* - stack_area_base (High end of the memory area to use as
|
63
|
+
* backtracking stack)
|
64
|
+
* - int* capture_array (int[num_saved_registers_], for output).
|
65
|
+
* - end of input (Address of end of string)
|
66
|
+
* - start of input (Address of first character in string)
|
67
|
+
* - start index (character index of start)
|
68
|
+
* - String* input_string (location of a handle containing the string)
|
69
|
+
* --- frame alignment (if applicable) ---
|
70
|
+
* - return address
|
71
|
+
* ebp-> - old ebp
|
72
|
+
* - backup of caller esi
|
73
|
+
* - backup of caller edi
|
74
|
+
* - backup of caller ebx
|
75
|
+
* - Offset of location before start of input (effectively character
|
76
|
+
* position -1). Used to initialize capture registers to a non-position.
|
77
|
+
* - register 0 ebp[-4] (Only positions must be stored in the first
|
78
|
+
* - register 1 ebp[-8] num_saved_registers_ registers)
|
79
|
+
* - ...
|
80
|
+
*
|
81
|
+
* The first num_saved_registers_ registers are initialized to point to
|
82
|
+
* "character -1" in the string (i.e., char_size() bytes before the first
|
83
|
+
* character of the string). The remaining registers starts out as garbage.
|
84
|
+
*
|
85
|
+
* The data up to the return address must be placed there by the calling
|
86
|
+
* code, by calling the code entry as cast to a function with the signature:
|
87
|
+
* int (*match)(String* input_string,
|
88
|
+
* int start_index,
|
89
|
+
* Address start,
|
90
|
+
* Address end,
|
91
|
+
* int* capture_output_array,
|
92
|
+
* bool at_start,
|
93
|
+
* byte* stack_area_base,
|
94
|
+
* bool direct_call)
|
95
|
+
*/
|
96
|
+
|
97
|
+
#define __ ACCESS_MASM(masm_)
|
98
|
+
|
99
|
+
RegExpMacroAssemblerIA32::RegExpMacroAssemblerIA32(
|
100
|
+
Mode mode,
|
101
|
+
int registers_to_save)
|
102
|
+
: masm_(new MacroAssembler(Isolate::Current(), NULL, kRegExpCodeSize)),
|
103
|
+
mode_(mode),
|
104
|
+
num_registers_(registers_to_save),
|
105
|
+
num_saved_registers_(registers_to_save),
|
106
|
+
entry_label_(),
|
107
|
+
start_label_(),
|
108
|
+
success_label_(),
|
109
|
+
backtrack_label_(),
|
110
|
+
exit_label_() {
|
111
|
+
ASSERT_EQ(0, registers_to_save % 2);
|
112
|
+
__ jmp(&entry_label_); // We'll write the entry code later.
|
113
|
+
__ bind(&start_label_); // And then continue from here.
|
114
|
+
}
|
115
|
+
|
116
|
+
|
117
|
+
RegExpMacroAssemblerIA32::~RegExpMacroAssemblerIA32() {
|
118
|
+
delete masm_;
|
119
|
+
// Unuse labels in case we throw away the assembler without calling GetCode.
|
120
|
+
entry_label_.Unuse();
|
121
|
+
start_label_.Unuse();
|
122
|
+
success_label_.Unuse();
|
123
|
+
backtrack_label_.Unuse();
|
124
|
+
exit_label_.Unuse();
|
125
|
+
check_preempt_label_.Unuse();
|
126
|
+
stack_overflow_label_.Unuse();
|
127
|
+
}
|
128
|
+
|
129
|
+
|
130
|
+
int RegExpMacroAssemblerIA32::stack_limit_slack() {
|
131
|
+
return RegExpStack::kStackLimitSlack;
|
132
|
+
}
|
133
|
+
|
134
|
+
|
135
|
+
void RegExpMacroAssemblerIA32::AdvanceCurrentPosition(int by) {
|
136
|
+
if (by != 0) {
|
137
|
+
__ add(Operand(edi), Immediate(by * char_size()));
|
138
|
+
}
|
139
|
+
}
|
140
|
+
|
141
|
+
|
142
|
+
void RegExpMacroAssemblerIA32::AdvanceRegister(int reg, int by) {
|
143
|
+
ASSERT(reg >= 0);
|
144
|
+
ASSERT(reg < num_registers_);
|
145
|
+
if (by != 0) {
|
146
|
+
__ add(register_location(reg), Immediate(by));
|
147
|
+
}
|
148
|
+
}
|
149
|
+
|
150
|
+
|
151
|
+
void RegExpMacroAssemblerIA32::Backtrack() {
|
152
|
+
CheckPreemption();
|
153
|
+
// Pop Code* offset from backtrack stack, add Code* and jump to location.
|
154
|
+
Pop(ebx);
|
155
|
+
__ add(Operand(ebx), Immediate(masm_->CodeObject()));
|
156
|
+
__ jmp(Operand(ebx));
|
157
|
+
}
|
158
|
+
|
159
|
+
|
160
|
+
void RegExpMacroAssemblerIA32::Bind(Label* label) {
|
161
|
+
__ bind(label);
|
162
|
+
}
|
163
|
+
|
164
|
+
|
165
|
+
void RegExpMacroAssemblerIA32::CheckCharacter(uint32_t c, Label* on_equal) {
|
166
|
+
__ cmp(current_character(), c);
|
167
|
+
BranchOrBacktrack(equal, on_equal);
|
168
|
+
}
|
169
|
+
|
170
|
+
|
171
|
+
void RegExpMacroAssemblerIA32::CheckCharacterGT(uc16 limit, Label* on_greater) {
|
172
|
+
__ cmp(current_character(), limit);
|
173
|
+
BranchOrBacktrack(greater, on_greater);
|
174
|
+
}
|
175
|
+
|
176
|
+
|
177
|
+
void RegExpMacroAssemblerIA32::CheckAtStart(Label* on_at_start) {
|
178
|
+
Label not_at_start;
|
179
|
+
// Did we start the match at the start of the string at all?
|
180
|
+
__ cmp(Operand(ebp, kStartIndex), Immediate(0));
|
181
|
+
BranchOrBacktrack(not_equal, ¬_at_start);
|
182
|
+
// If we did, are we still at the start of the input?
|
183
|
+
__ lea(eax, Operand(esi, edi, times_1, 0));
|
184
|
+
__ cmp(eax, Operand(ebp, kInputStart));
|
185
|
+
BranchOrBacktrack(equal, on_at_start);
|
186
|
+
__ bind(¬_at_start);
|
187
|
+
}
|
188
|
+
|
189
|
+
|
190
|
+
void RegExpMacroAssemblerIA32::CheckNotAtStart(Label* on_not_at_start) {
|
191
|
+
// Did we start the match at the start of the string at all?
|
192
|
+
__ cmp(Operand(ebp, kStartIndex), Immediate(0));
|
193
|
+
BranchOrBacktrack(not_equal, on_not_at_start);
|
194
|
+
// If we did, are we still at the start of the input?
|
195
|
+
__ lea(eax, Operand(esi, edi, times_1, 0));
|
196
|
+
__ cmp(eax, Operand(ebp, kInputStart));
|
197
|
+
BranchOrBacktrack(not_equal, on_not_at_start);
|
198
|
+
}
|
199
|
+
|
200
|
+
|
201
|
+
void RegExpMacroAssemblerIA32::CheckCharacterLT(uc16 limit, Label* on_less) {
|
202
|
+
__ cmp(current_character(), limit);
|
203
|
+
BranchOrBacktrack(less, on_less);
|
204
|
+
}
|
205
|
+
|
206
|
+
|
207
|
+
void RegExpMacroAssemblerIA32::CheckCharacters(Vector<const uc16> str,
|
208
|
+
int cp_offset,
|
209
|
+
Label* on_failure,
|
210
|
+
bool check_end_of_string) {
|
211
|
+
#ifdef DEBUG
|
212
|
+
// If input is ASCII, don't even bother calling here if the string to
|
213
|
+
// match contains a non-ascii character.
|
214
|
+
if (mode_ == ASCII) {
|
215
|
+
ASSERT(String::IsAscii(str.start(), str.length()));
|
216
|
+
}
|
217
|
+
#endif
|
218
|
+
int byte_length = str.length() * char_size();
|
219
|
+
int byte_offset = cp_offset * char_size();
|
220
|
+
if (check_end_of_string) {
|
221
|
+
// Check that there are at least str.length() characters left in the input.
|
222
|
+
__ cmp(Operand(edi), Immediate(-(byte_offset + byte_length)));
|
223
|
+
BranchOrBacktrack(greater, on_failure);
|
224
|
+
}
|
225
|
+
|
226
|
+
if (on_failure == NULL) {
|
227
|
+
// Instead of inlining a backtrack, (re)use the global backtrack target.
|
228
|
+
on_failure = &backtrack_label_;
|
229
|
+
}
|
230
|
+
|
231
|
+
// Do one character test first to minimize loading for the case that
|
232
|
+
// we don't match at all (loading more than one character introduces that
|
233
|
+
// chance of reading unaligned and reading across cache boundaries).
|
234
|
+
// If the first character matches, expect a larger chance of matching the
|
235
|
+
// string, and start loading more characters at a time.
|
236
|
+
if (mode_ == ASCII) {
|
237
|
+
__ cmpb(Operand(esi, edi, times_1, byte_offset),
|
238
|
+
static_cast<int8_t>(str[0]));
|
239
|
+
} else {
|
240
|
+
// Don't use 16-bit immediate. The size changing prefix throws off
|
241
|
+
// pre-decoding.
|
242
|
+
__ movzx_w(eax,
|
243
|
+
Operand(esi, edi, times_1, byte_offset));
|
244
|
+
__ cmp(eax, static_cast<int32_t>(str[0]));
|
245
|
+
}
|
246
|
+
BranchOrBacktrack(not_equal, on_failure);
|
247
|
+
|
248
|
+
__ lea(ebx, Operand(esi, edi, times_1, 0));
|
249
|
+
for (int i = 1, n = str.length(); i < n;) {
|
250
|
+
if (mode_ == ASCII) {
|
251
|
+
if (i <= n - 4) {
|
252
|
+
int combined_chars =
|
253
|
+
(static_cast<uint32_t>(str[i + 0]) << 0) |
|
254
|
+
(static_cast<uint32_t>(str[i + 1]) << 8) |
|
255
|
+
(static_cast<uint32_t>(str[i + 2]) << 16) |
|
256
|
+
(static_cast<uint32_t>(str[i + 3]) << 24);
|
257
|
+
__ cmp(Operand(ebx, byte_offset + i), Immediate(combined_chars));
|
258
|
+
i += 4;
|
259
|
+
} else {
|
260
|
+
__ cmpb(Operand(ebx, byte_offset + i),
|
261
|
+
static_cast<int8_t>(str[i]));
|
262
|
+
i += 1;
|
263
|
+
}
|
264
|
+
} else {
|
265
|
+
ASSERT(mode_ == UC16);
|
266
|
+
if (i <= n - 2) {
|
267
|
+
__ cmp(Operand(ebx, byte_offset + i * sizeof(uc16)),
|
268
|
+
Immediate(*reinterpret_cast<const int*>(&str[i])));
|
269
|
+
i += 2;
|
270
|
+
} else {
|
271
|
+
// Avoid a 16-bit immediate operation. It uses the length-changing
|
272
|
+
// 0x66 prefix which causes pre-decoder misprediction and pipeline
|
273
|
+
// stalls. See
|
274
|
+
// "Intel(R) 64 and IA-32 Architectures Optimization Reference Manual"
|
275
|
+
// (248966.pdf) section 3.4.2.3 "Length-Changing Prefixes (LCP)"
|
276
|
+
__ movzx_w(eax,
|
277
|
+
Operand(ebx, byte_offset + i * sizeof(uc16)));
|
278
|
+
__ cmp(eax, static_cast<int32_t>(str[i]));
|
279
|
+
i += 1;
|
280
|
+
}
|
281
|
+
}
|
282
|
+
BranchOrBacktrack(not_equal, on_failure);
|
283
|
+
}
|
284
|
+
}
|
285
|
+
|
286
|
+
|
287
|
+
void RegExpMacroAssemblerIA32::CheckGreedyLoop(Label* on_equal) {
|
288
|
+
Label fallthrough;
|
289
|
+
__ cmp(edi, Operand(backtrack_stackpointer(), 0));
|
290
|
+
__ j(not_equal, &fallthrough);
|
291
|
+
__ add(Operand(backtrack_stackpointer()), Immediate(kPointerSize)); // Pop.
|
292
|
+
BranchOrBacktrack(no_condition, on_equal);
|
293
|
+
__ bind(&fallthrough);
|
294
|
+
}
|
295
|
+
|
296
|
+
|
297
|
+
void RegExpMacroAssemblerIA32::CheckNotBackReferenceIgnoreCase(
|
298
|
+
int start_reg,
|
299
|
+
Label* on_no_match) {
|
300
|
+
Label fallthrough;
|
301
|
+
__ mov(edx, register_location(start_reg)); // Index of start of capture
|
302
|
+
__ mov(ebx, register_location(start_reg + 1)); // Index of end of capture
|
303
|
+
__ sub(ebx, Operand(edx)); // Length of capture.
|
304
|
+
|
305
|
+
// The length of a capture should not be negative. This can only happen
|
306
|
+
// if the end of the capture is unrecorded, or at a point earlier than
|
307
|
+
// the start of the capture.
|
308
|
+
BranchOrBacktrack(less, on_no_match);
|
309
|
+
|
310
|
+
// If length is zero, either the capture is empty or it is completely
|
311
|
+
// uncaptured. In either case succeed immediately.
|
312
|
+
__ j(equal, &fallthrough);
|
313
|
+
|
314
|
+
if (mode_ == ASCII) {
|
315
|
+
Label success;
|
316
|
+
Label fail;
|
317
|
+
Label loop_increment;
|
318
|
+
// Save register contents to make the registers available below.
|
319
|
+
__ push(edi);
|
320
|
+
__ push(backtrack_stackpointer());
|
321
|
+
// After this, the eax, ecx, and edi registers are available.
|
322
|
+
|
323
|
+
__ add(edx, Operand(esi)); // Start of capture
|
324
|
+
__ add(edi, Operand(esi)); // Start of text to match against capture.
|
325
|
+
__ add(ebx, Operand(edi)); // End of text to match against capture.
|
326
|
+
|
327
|
+
Label loop;
|
328
|
+
__ bind(&loop);
|
329
|
+
__ movzx_b(eax, Operand(edi, 0));
|
330
|
+
__ cmpb_al(Operand(edx, 0));
|
331
|
+
__ j(equal, &loop_increment);
|
332
|
+
|
333
|
+
// Mismatch, try case-insensitive match (converting letters to lower-case).
|
334
|
+
__ or_(eax, 0x20); // Convert match character to lower-case.
|
335
|
+
__ lea(ecx, Operand(eax, -'a'));
|
336
|
+
__ cmp(ecx, static_cast<int32_t>('z' - 'a')); // Is eax a lowercase letter?
|
337
|
+
__ j(above, &fail);
|
338
|
+
// Also convert capture character.
|
339
|
+
__ movzx_b(ecx, Operand(edx, 0));
|
340
|
+
__ or_(ecx, 0x20);
|
341
|
+
|
342
|
+
__ cmp(eax, Operand(ecx));
|
343
|
+
__ j(not_equal, &fail);
|
344
|
+
|
345
|
+
__ bind(&loop_increment);
|
346
|
+
// Increment pointers into match and capture strings.
|
347
|
+
__ add(Operand(edx), Immediate(1));
|
348
|
+
__ add(Operand(edi), Immediate(1));
|
349
|
+
// Compare to end of match, and loop if not done.
|
350
|
+
__ cmp(edi, Operand(ebx));
|
351
|
+
__ j(below, &loop);
|
352
|
+
__ jmp(&success);
|
353
|
+
|
354
|
+
__ bind(&fail);
|
355
|
+
// Restore original values before failing.
|
356
|
+
__ pop(backtrack_stackpointer());
|
357
|
+
__ pop(edi);
|
358
|
+
BranchOrBacktrack(no_condition, on_no_match);
|
359
|
+
|
360
|
+
__ bind(&success);
|
361
|
+
// Restore original value before continuing.
|
362
|
+
__ pop(backtrack_stackpointer());
|
363
|
+
// Drop original value of character position.
|
364
|
+
__ add(Operand(esp), Immediate(kPointerSize));
|
365
|
+
// Compute new value of character position after the matched part.
|
366
|
+
__ sub(edi, Operand(esi));
|
367
|
+
} else {
|
368
|
+
ASSERT(mode_ == UC16);
|
369
|
+
// Save registers before calling C function.
|
370
|
+
__ push(esi);
|
371
|
+
__ push(edi);
|
372
|
+
__ push(backtrack_stackpointer());
|
373
|
+
__ push(ebx);
|
374
|
+
|
375
|
+
static const int argument_count = 4;
|
376
|
+
__ PrepareCallCFunction(argument_count, ecx);
|
377
|
+
// Put arguments into allocated stack area, last argument highest on stack.
|
378
|
+
// Parameters are
|
379
|
+
// Address byte_offset1 - Address captured substring's start.
|
380
|
+
// Address byte_offset2 - Address of current character position.
|
381
|
+
// size_t byte_length - length of capture in bytes(!)
|
382
|
+
// Isolate* isolate
|
383
|
+
|
384
|
+
// Set isolate.
|
385
|
+
__ mov(Operand(esp, 3 * kPointerSize),
|
386
|
+
Immediate(ExternalReference::isolate_address()));
|
387
|
+
// Set byte_length.
|
388
|
+
__ mov(Operand(esp, 2 * kPointerSize), ebx);
|
389
|
+
// Set byte_offset2.
|
390
|
+
// Found by adding negative string-end offset of current position (edi)
|
391
|
+
// to end of string.
|
392
|
+
__ add(edi, Operand(esi));
|
393
|
+
__ mov(Operand(esp, 1 * kPointerSize), edi);
|
394
|
+
// Set byte_offset1.
|
395
|
+
// Start of capture, where edx already holds string-end negative offset.
|
396
|
+
__ add(edx, Operand(esi));
|
397
|
+
__ mov(Operand(esp, 0 * kPointerSize), edx);
|
398
|
+
|
399
|
+
ExternalReference compare =
|
400
|
+
ExternalReference::re_case_insensitive_compare_uc16(masm_->isolate());
|
401
|
+
__ CallCFunction(compare, argument_count);
|
402
|
+
// Pop original values before reacting on result value.
|
403
|
+
__ pop(ebx);
|
404
|
+
__ pop(backtrack_stackpointer());
|
405
|
+
__ pop(edi);
|
406
|
+
__ pop(esi);
|
407
|
+
|
408
|
+
// Check if function returned non-zero for success or zero for failure.
|
409
|
+
__ or_(eax, Operand(eax));
|
410
|
+
BranchOrBacktrack(zero, on_no_match);
|
411
|
+
// On success, increment position by length of capture.
|
412
|
+
__ add(edi, Operand(ebx));
|
413
|
+
}
|
414
|
+
__ bind(&fallthrough);
|
415
|
+
}
|
416
|
+
|
417
|
+
|
418
|
+
void RegExpMacroAssemblerIA32::CheckNotBackReference(
|
419
|
+
int start_reg,
|
420
|
+
Label* on_no_match) {
|
421
|
+
Label fallthrough;
|
422
|
+
Label success;
|
423
|
+
Label fail;
|
424
|
+
|
425
|
+
// Find length of back-referenced capture.
|
426
|
+
__ mov(edx, register_location(start_reg));
|
427
|
+
__ mov(eax, register_location(start_reg + 1));
|
428
|
+
__ sub(eax, Operand(edx)); // Length to check.
|
429
|
+
// Fail on partial or illegal capture (start of capture after end of capture).
|
430
|
+
BranchOrBacktrack(less, on_no_match);
|
431
|
+
// Succeed on empty capture (including no capture)
|
432
|
+
__ j(equal, &fallthrough);
|
433
|
+
|
434
|
+
// Check that there are sufficient characters left in the input.
|
435
|
+
__ mov(ebx, edi);
|
436
|
+
__ add(ebx, Operand(eax));
|
437
|
+
BranchOrBacktrack(greater, on_no_match);
|
438
|
+
|
439
|
+
// Save register to make it available below.
|
440
|
+
__ push(backtrack_stackpointer());
|
441
|
+
|
442
|
+
// Compute pointers to match string and capture string
|
443
|
+
__ lea(ebx, Operand(esi, edi, times_1, 0)); // Start of match.
|
444
|
+
__ add(edx, Operand(esi)); // Start of capture.
|
445
|
+
__ lea(ecx, Operand(eax, ebx, times_1, 0)); // End of match
|
446
|
+
|
447
|
+
Label loop;
|
448
|
+
__ bind(&loop);
|
449
|
+
if (mode_ == ASCII) {
|
450
|
+
__ movzx_b(eax, Operand(edx, 0));
|
451
|
+
__ cmpb_al(Operand(ebx, 0));
|
452
|
+
} else {
|
453
|
+
ASSERT(mode_ == UC16);
|
454
|
+
__ movzx_w(eax, Operand(edx, 0));
|
455
|
+
__ cmpw_ax(Operand(ebx, 0));
|
456
|
+
}
|
457
|
+
__ j(not_equal, &fail);
|
458
|
+
// Increment pointers into capture and match string.
|
459
|
+
__ add(Operand(edx), Immediate(char_size()));
|
460
|
+
__ add(Operand(ebx), Immediate(char_size()));
|
461
|
+
// Check if we have reached end of match area.
|
462
|
+
__ cmp(ebx, Operand(ecx));
|
463
|
+
__ j(below, &loop);
|
464
|
+
__ jmp(&success);
|
465
|
+
|
466
|
+
__ bind(&fail);
|
467
|
+
// Restore backtrack stackpointer.
|
468
|
+
__ pop(backtrack_stackpointer());
|
469
|
+
BranchOrBacktrack(no_condition, on_no_match);
|
470
|
+
|
471
|
+
__ bind(&success);
|
472
|
+
// Move current character position to position after match.
|
473
|
+
__ mov(edi, ecx);
|
474
|
+
__ sub(Operand(edi), esi);
|
475
|
+
// Restore backtrack stackpointer.
|
476
|
+
__ pop(backtrack_stackpointer());
|
477
|
+
|
478
|
+
__ bind(&fallthrough);
|
479
|
+
}
|
480
|
+
|
481
|
+
|
482
|
+
void RegExpMacroAssemblerIA32::CheckNotRegistersEqual(int reg1,
|
483
|
+
int reg2,
|
484
|
+
Label* on_not_equal) {
|
485
|
+
__ mov(eax, register_location(reg1));
|
486
|
+
__ cmp(eax, register_location(reg2));
|
487
|
+
BranchOrBacktrack(not_equal, on_not_equal);
|
488
|
+
}
|
489
|
+
|
490
|
+
|
491
|
+
void RegExpMacroAssemblerIA32::CheckNotCharacter(uint32_t c,
|
492
|
+
Label* on_not_equal) {
|
493
|
+
__ cmp(current_character(), c);
|
494
|
+
BranchOrBacktrack(not_equal, on_not_equal);
|
495
|
+
}
|
496
|
+
|
497
|
+
|
498
|
+
void RegExpMacroAssemblerIA32::CheckCharacterAfterAnd(uint32_t c,
|
499
|
+
uint32_t mask,
|
500
|
+
Label* on_equal) {
|
501
|
+
__ mov(eax, current_character());
|
502
|
+
__ and_(eax, mask);
|
503
|
+
__ cmp(eax, c);
|
504
|
+
BranchOrBacktrack(equal, on_equal);
|
505
|
+
}
|
506
|
+
|
507
|
+
|
508
|
+
void RegExpMacroAssemblerIA32::CheckNotCharacterAfterAnd(uint32_t c,
|
509
|
+
uint32_t mask,
|
510
|
+
Label* on_not_equal) {
|
511
|
+
__ mov(eax, current_character());
|
512
|
+
__ and_(eax, mask);
|
513
|
+
__ cmp(eax, c);
|
514
|
+
BranchOrBacktrack(not_equal, on_not_equal);
|
515
|
+
}
|
516
|
+
|
517
|
+
|
518
|
+
void RegExpMacroAssemblerIA32::CheckNotCharacterAfterMinusAnd(
|
519
|
+
uc16 c,
|
520
|
+
uc16 minus,
|
521
|
+
uc16 mask,
|
522
|
+
Label* on_not_equal) {
|
523
|
+
ASSERT(minus < String::kMaxUC16CharCode);
|
524
|
+
__ lea(eax, Operand(current_character(), -minus));
|
525
|
+
__ and_(eax, mask);
|
526
|
+
__ cmp(eax, c);
|
527
|
+
BranchOrBacktrack(not_equal, on_not_equal);
|
528
|
+
}
|
529
|
+
|
530
|
+
|
531
|
+
bool RegExpMacroAssemblerIA32::CheckSpecialCharacterClass(uc16 type,
|
532
|
+
Label* on_no_match) {
|
533
|
+
// Range checks (c in min..max) are generally implemented by an unsigned
|
534
|
+
// (c - min) <= (max - min) check
|
535
|
+
switch (type) {
|
536
|
+
case 's':
|
537
|
+
// Match space-characters
|
538
|
+
if (mode_ == ASCII) {
|
539
|
+
// ASCII space characters are '\t'..'\r' and ' '.
|
540
|
+
Label success;
|
541
|
+
__ cmp(current_character(), ' ');
|
542
|
+
__ j(equal, &success);
|
543
|
+
// Check range 0x09..0x0d
|
544
|
+
__ lea(eax, Operand(current_character(), -'\t'));
|
545
|
+
__ cmp(eax, '\r' - '\t');
|
546
|
+
BranchOrBacktrack(above, on_no_match);
|
547
|
+
__ bind(&success);
|
548
|
+
return true;
|
549
|
+
}
|
550
|
+
return false;
|
551
|
+
case 'S':
|
552
|
+
// Match non-space characters.
|
553
|
+
if (mode_ == ASCII) {
|
554
|
+
// ASCII space characters are '\t'..'\r' and ' '.
|
555
|
+
__ cmp(current_character(), ' ');
|
556
|
+
BranchOrBacktrack(equal, on_no_match);
|
557
|
+
__ lea(eax, Operand(current_character(), -'\t'));
|
558
|
+
__ cmp(eax, '\r' - '\t');
|
559
|
+
BranchOrBacktrack(below_equal, on_no_match);
|
560
|
+
return true;
|
561
|
+
}
|
562
|
+
return false;
|
563
|
+
case 'd':
|
564
|
+
// Match ASCII digits ('0'..'9')
|
565
|
+
__ lea(eax, Operand(current_character(), -'0'));
|
566
|
+
__ cmp(eax, '9' - '0');
|
567
|
+
BranchOrBacktrack(above, on_no_match);
|
568
|
+
return true;
|
569
|
+
case 'D':
|
570
|
+
// Match non ASCII-digits
|
571
|
+
__ lea(eax, Operand(current_character(), -'0'));
|
572
|
+
__ cmp(eax, '9' - '0');
|
573
|
+
BranchOrBacktrack(below_equal, on_no_match);
|
574
|
+
return true;
|
575
|
+
case '.': {
|
576
|
+
// Match non-newlines (not 0x0a('\n'), 0x0d('\r'), 0x2028 and 0x2029)
|
577
|
+
__ mov(Operand(eax), current_character());
|
578
|
+
__ xor_(Operand(eax), Immediate(0x01));
|
579
|
+
// See if current character is '\n'^1 or '\r'^1, i.e., 0x0b or 0x0c
|
580
|
+
__ sub(Operand(eax), Immediate(0x0b));
|
581
|
+
__ cmp(eax, 0x0c - 0x0b);
|
582
|
+
BranchOrBacktrack(below_equal, on_no_match);
|
583
|
+
if (mode_ == UC16) {
|
584
|
+
// Compare original value to 0x2028 and 0x2029, using the already
|
585
|
+
// computed (current_char ^ 0x01 - 0x0b). I.e., check for
|
586
|
+
// 0x201d (0x2028 - 0x0b) or 0x201e.
|
587
|
+
__ sub(Operand(eax), Immediate(0x2028 - 0x0b));
|
588
|
+
__ cmp(eax, 0x2029 - 0x2028);
|
589
|
+
BranchOrBacktrack(below_equal, on_no_match);
|
590
|
+
}
|
591
|
+
return true;
|
592
|
+
}
|
593
|
+
case 'w': {
|
594
|
+
if (mode_ != ASCII) {
|
595
|
+
// Table is 128 entries, so all ASCII characters can be tested.
|
596
|
+
__ cmp(Operand(current_character()), Immediate('z'));
|
597
|
+
BranchOrBacktrack(above, on_no_match);
|
598
|
+
}
|
599
|
+
ASSERT_EQ(0, word_character_map[0]); // Character '\0' is not a word char.
|
600
|
+
ExternalReference word_map = ExternalReference::re_word_character_map();
|
601
|
+
__ test_b(current_character(),
|
602
|
+
Operand::StaticArray(current_character(), times_1, word_map));
|
603
|
+
BranchOrBacktrack(zero, on_no_match);
|
604
|
+
return true;
|
605
|
+
}
|
606
|
+
case 'W': {
|
607
|
+
Label done;
|
608
|
+
if (mode_ != ASCII) {
|
609
|
+
// Table is 128 entries, so all ASCII characters can be tested.
|
610
|
+
__ cmp(Operand(current_character()), Immediate('z'));
|
611
|
+
__ j(above, &done);
|
612
|
+
}
|
613
|
+
ASSERT_EQ(0, word_character_map[0]); // Character '\0' is not a word char.
|
614
|
+
ExternalReference word_map = ExternalReference::re_word_character_map();
|
615
|
+
__ test_b(current_character(),
|
616
|
+
Operand::StaticArray(current_character(), times_1, word_map));
|
617
|
+
BranchOrBacktrack(not_zero, on_no_match);
|
618
|
+
if (mode_ != ASCII) {
|
619
|
+
__ bind(&done);
|
620
|
+
}
|
621
|
+
return true;
|
622
|
+
}
|
623
|
+
// Non-standard classes (with no syntactic shorthand) used internally.
|
624
|
+
case '*':
|
625
|
+
// Match any character.
|
626
|
+
return true;
|
627
|
+
case 'n': {
|
628
|
+
// Match newlines (0x0a('\n'), 0x0d('\r'), 0x2028 or 0x2029).
|
629
|
+
// The opposite of '.'.
|
630
|
+
__ mov(Operand(eax), current_character());
|
631
|
+
__ xor_(Operand(eax), Immediate(0x01));
|
632
|
+
// See if current character is '\n'^1 or '\r'^1, i.e., 0x0b or 0x0c
|
633
|
+
__ sub(Operand(eax), Immediate(0x0b));
|
634
|
+
__ cmp(eax, 0x0c - 0x0b);
|
635
|
+
if (mode_ == ASCII) {
|
636
|
+
BranchOrBacktrack(above, on_no_match);
|
637
|
+
} else {
|
638
|
+
Label done;
|
639
|
+
BranchOrBacktrack(below_equal, &done);
|
640
|
+
ASSERT_EQ(UC16, mode_);
|
641
|
+
// Compare original value to 0x2028 and 0x2029, using the already
|
642
|
+
// computed (current_char ^ 0x01 - 0x0b). I.e., check for
|
643
|
+
// 0x201d (0x2028 - 0x0b) or 0x201e.
|
644
|
+
__ sub(Operand(eax), Immediate(0x2028 - 0x0b));
|
645
|
+
__ cmp(eax, 1);
|
646
|
+
BranchOrBacktrack(above, on_no_match);
|
647
|
+
__ bind(&done);
|
648
|
+
}
|
649
|
+
return true;
|
650
|
+
}
|
651
|
+
// No custom implementation (yet): s(UC16), S(UC16).
|
652
|
+
default:
|
653
|
+
return false;
|
654
|
+
}
|
655
|
+
}
|
656
|
+
|
657
|
+
|
658
|
+
void RegExpMacroAssemblerIA32::Fail() {
|
659
|
+
ASSERT(FAILURE == 0); // Return value for failure is zero.
|
660
|
+
__ Set(eax, Immediate(0));
|
661
|
+
__ jmp(&exit_label_);
|
662
|
+
}
|
663
|
+
|
664
|
+
|
665
|
+
Handle<HeapObject> RegExpMacroAssemblerIA32::GetCode(Handle<String> source) {
|
666
|
+
// Finalize code - write the entry point code now we know how many
|
667
|
+
// registers we need.
|
668
|
+
|
669
|
+
// Entry code:
|
670
|
+
__ bind(&entry_label_);
|
671
|
+
// Start new stack frame.
|
672
|
+
__ push(ebp);
|
673
|
+
__ mov(ebp, esp);
|
674
|
+
// Save callee-save registers. Order here should correspond to order of
|
675
|
+
// kBackup_ebx etc.
|
676
|
+
__ push(esi);
|
677
|
+
__ push(edi);
|
678
|
+
__ push(ebx); // Callee-save on MacOS.
|
679
|
+
__ push(Immediate(0)); // Make room for "input start - 1" constant.
|
680
|
+
|
681
|
+
// Check if we have space on the stack for registers.
|
682
|
+
Label stack_limit_hit;
|
683
|
+
Label stack_ok;
|
684
|
+
|
685
|
+
ExternalReference stack_limit =
|
686
|
+
ExternalReference::address_of_stack_limit(masm_->isolate());
|
687
|
+
__ mov(ecx, esp);
|
688
|
+
__ sub(ecx, Operand::StaticVariable(stack_limit));
|
689
|
+
// Handle it if the stack pointer is already below the stack limit.
|
690
|
+
__ j(below_equal, &stack_limit_hit);
|
691
|
+
// Check if there is room for the variable number of registers above
|
692
|
+
// the stack limit.
|
693
|
+
__ cmp(ecx, num_registers_ * kPointerSize);
|
694
|
+
__ j(above_equal, &stack_ok);
|
695
|
+
// Exit with OutOfMemory exception. There is not enough space on the stack
|
696
|
+
// for our working registers.
|
697
|
+
__ mov(eax, EXCEPTION);
|
698
|
+
__ jmp(&exit_label_);
|
699
|
+
|
700
|
+
__ bind(&stack_limit_hit);
|
701
|
+
CallCheckStackGuardState(ebx);
|
702
|
+
__ or_(eax, Operand(eax));
|
703
|
+
// If returned value is non-zero, we exit with the returned value as result.
|
704
|
+
__ j(not_zero, &exit_label_);
|
705
|
+
|
706
|
+
__ bind(&stack_ok);
|
707
|
+
// Load start index for later use.
|
708
|
+
__ mov(ebx, Operand(ebp, kStartIndex));
|
709
|
+
|
710
|
+
// Allocate space on stack for registers.
|
711
|
+
__ sub(Operand(esp), Immediate(num_registers_ * kPointerSize));
|
712
|
+
// Load string length.
|
713
|
+
__ mov(esi, Operand(ebp, kInputEnd));
|
714
|
+
// Load input position.
|
715
|
+
__ mov(edi, Operand(ebp, kInputStart));
|
716
|
+
// Set up edi to be negative offset from string end.
|
717
|
+
__ sub(edi, Operand(esi));
|
718
|
+
|
719
|
+
// Set eax to address of char before start of the string.
|
720
|
+
// (effectively string position -1).
|
721
|
+
__ neg(ebx);
|
722
|
+
if (mode_ == UC16) {
|
723
|
+
__ lea(eax, Operand(edi, ebx, times_2, -char_size()));
|
724
|
+
} else {
|
725
|
+
__ lea(eax, Operand(edi, ebx, times_1, -char_size()));
|
726
|
+
}
|
727
|
+
// Store this value in a local variable, for use when clearing
|
728
|
+
// position registers.
|
729
|
+
__ mov(Operand(ebp, kInputStartMinusOne), eax);
|
730
|
+
|
731
|
+
if (num_saved_registers_ > 0) { // Always is, if generated from a regexp.
|
732
|
+
// Fill saved registers with initial value = start offset - 1
|
733
|
+
// Fill in stack push order, to avoid accessing across an unwritten
|
734
|
+
// page (a problem on Windows).
|
735
|
+
__ mov(ecx, kRegisterZero);
|
736
|
+
Label init_loop;
|
737
|
+
__ bind(&init_loop);
|
738
|
+
__ mov(Operand(ebp, ecx, times_1, +0), eax);
|
739
|
+
__ sub(Operand(ecx), Immediate(kPointerSize));
|
740
|
+
__ cmp(ecx, kRegisterZero - num_saved_registers_ * kPointerSize);
|
741
|
+
__ j(greater, &init_loop);
|
742
|
+
}
|
743
|
+
// Ensure that we have written to each stack page, in order. Skipping a page
|
744
|
+
// on Windows can cause segmentation faults. Assuming page size is 4k.
|
745
|
+
const int kPageSize = 4096;
|
746
|
+
const int kRegistersPerPage = kPageSize / kPointerSize;
|
747
|
+
for (int i = num_saved_registers_ + kRegistersPerPage - 1;
|
748
|
+
i < num_registers_;
|
749
|
+
i += kRegistersPerPage) {
|
750
|
+
__ mov(register_location(i), eax); // One write every page.
|
751
|
+
}
|
752
|
+
|
753
|
+
|
754
|
+
// Initialize backtrack stack pointer.
|
755
|
+
__ mov(backtrack_stackpointer(), Operand(ebp, kStackHighEnd));
|
756
|
+
// Load previous char as initial value of current-character.
|
757
|
+
Label at_start;
|
758
|
+
__ cmp(Operand(ebp, kStartIndex), Immediate(0));
|
759
|
+
__ j(equal, &at_start);
|
760
|
+
LoadCurrentCharacterUnchecked(-1, 1); // Load previous char.
|
761
|
+
__ jmp(&start_label_);
|
762
|
+
__ bind(&at_start);
|
763
|
+
__ mov(current_character(), '\n');
|
764
|
+
__ jmp(&start_label_);
|
765
|
+
|
766
|
+
|
767
|
+
// Exit code:
|
768
|
+
if (success_label_.is_linked()) {
|
769
|
+
// Save captures when successful.
|
770
|
+
__ bind(&success_label_);
|
771
|
+
if (num_saved_registers_ > 0) {
|
772
|
+
// copy captures to output
|
773
|
+
__ mov(ebx, Operand(ebp, kRegisterOutput));
|
774
|
+
__ mov(ecx, Operand(ebp, kInputEnd));
|
775
|
+
__ mov(edx, Operand(ebp, kStartIndex));
|
776
|
+
__ sub(ecx, Operand(ebp, kInputStart));
|
777
|
+
if (mode_ == UC16) {
|
778
|
+
__ lea(ecx, Operand(ecx, edx, times_2, 0));
|
779
|
+
} else {
|
780
|
+
__ add(ecx, Operand(edx));
|
781
|
+
}
|
782
|
+
for (int i = 0; i < num_saved_registers_; i++) {
|
783
|
+
__ mov(eax, register_location(i));
|
784
|
+
// Convert to index from start of string, not end.
|
785
|
+
__ add(eax, Operand(ecx));
|
786
|
+
if (mode_ == UC16) {
|
787
|
+
__ sar(eax, 1); // Convert byte index to character index.
|
788
|
+
}
|
789
|
+
__ mov(Operand(ebx, i * kPointerSize), eax);
|
790
|
+
}
|
791
|
+
}
|
792
|
+
__ mov(eax, Immediate(SUCCESS));
|
793
|
+
}
|
794
|
+
// Exit and return eax
|
795
|
+
__ bind(&exit_label_);
|
796
|
+
// Skip esp past regexp registers.
|
797
|
+
__ lea(esp, Operand(ebp, kBackup_ebx));
|
798
|
+
// Restore callee-save registers.
|
799
|
+
__ pop(ebx);
|
800
|
+
__ pop(edi);
|
801
|
+
__ pop(esi);
|
802
|
+
// Exit function frame, restore previous one.
|
803
|
+
__ pop(ebp);
|
804
|
+
__ ret(0);
|
805
|
+
|
806
|
+
// Backtrack code (branch target for conditional backtracks).
|
807
|
+
if (backtrack_label_.is_linked()) {
|
808
|
+
__ bind(&backtrack_label_);
|
809
|
+
Backtrack();
|
810
|
+
}
|
811
|
+
|
812
|
+
Label exit_with_exception;
|
813
|
+
|
814
|
+
// Preempt-code
|
815
|
+
if (check_preempt_label_.is_linked()) {
|
816
|
+
SafeCallTarget(&check_preempt_label_);
|
817
|
+
|
818
|
+
__ push(backtrack_stackpointer());
|
819
|
+
__ push(edi);
|
820
|
+
|
821
|
+
CallCheckStackGuardState(ebx);
|
822
|
+
__ or_(eax, Operand(eax));
|
823
|
+
// If returning non-zero, we should end execution with the given
|
824
|
+
// result as return value.
|
825
|
+
__ j(not_zero, &exit_label_);
|
826
|
+
|
827
|
+
__ pop(edi);
|
828
|
+
__ pop(backtrack_stackpointer());
|
829
|
+
// String might have moved: Reload esi from frame.
|
830
|
+
__ mov(esi, Operand(ebp, kInputEnd));
|
831
|
+
SafeReturn();
|
832
|
+
}
|
833
|
+
|
834
|
+
// Backtrack stack overflow code.
|
835
|
+
if (stack_overflow_label_.is_linked()) {
|
836
|
+
SafeCallTarget(&stack_overflow_label_);
|
837
|
+
// Reached if the backtrack-stack limit has been hit.
|
838
|
+
|
839
|
+
Label grow_failed;
|
840
|
+
// Save registers before calling C function
|
841
|
+
__ push(esi);
|
842
|
+
__ push(edi);
|
843
|
+
|
844
|
+
// Call GrowStack(backtrack_stackpointer())
|
845
|
+
static const int num_arguments = 3;
|
846
|
+
__ PrepareCallCFunction(num_arguments, ebx);
|
847
|
+
__ mov(Operand(esp, 2 * kPointerSize),
|
848
|
+
Immediate(ExternalReference::isolate_address()));
|
849
|
+
__ lea(eax, Operand(ebp, kStackHighEnd));
|
850
|
+
__ mov(Operand(esp, 1 * kPointerSize), eax);
|
851
|
+
__ mov(Operand(esp, 0 * kPointerSize), backtrack_stackpointer());
|
852
|
+
ExternalReference grow_stack =
|
853
|
+
ExternalReference::re_grow_stack(masm_->isolate());
|
854
|
+
__ CallCFunction(grow_stack, num_arguments);
|
855
|
+
// If return NULL, we have failed to grow the stack, and
|
856
|
+
// must exit with a stack-overflow exception.
|
857
|
+
__ or_(eax, Operand(eax));
|
858
|
+
__ j(equal, &exit_with_exception);
|
859
|
+
// Otherwise use return value as new stack pointer.
|
860
|
+
__ mov(backtrack_stackpointer(), eax);
|
861
|
+
// Restore saved registers and continue.
|
862
|
+
__ pop(edi);
|
863
|
+
__ pop(esi);
|
864
|
+
SafeReturn();
|
865
|
+
}
|
866
|
+
|
867
|
+
if (exit_with_exception.is_linked()) {
|
868
|
+
// If any of the code above needed to exit with an exception.
|
869
|
+
__ bind(&exit_with_exception);
|
870
|
+
// Exit with Result EXCEPTION(-1) to signal thrown exception.
|
871
|
+
__ mov(eax, EXCEPTION);
|
872
|
+
__ jmp(&exit_label_);
|
873
|
+
}
|
874
|
+
|
875
|
+
CodeDesc code_desc;
|
876
|
+
masm_->GetCode(&code_desc);
|
877
|
+
Handle<Code> code =
|
878
|
+
masm_->isolate()->factory()->NewCode(code_desc,
|
879
|
+
Code::ComputeFlags(Code::REGEXP),
|
880
|
+
masm_->CodeObject());
|
881
|
+
PROFILE(masm_->isolate(), RegExpCodeCreateEvent(*code, *source));
|
882
|
+
return Handle<HeapObject>::cast(code);
|
883
|
+
}
|
884
|
+
|
885
|
+
|
886
|
+
void RegExpMacroAssemblerIA32::GoTo(Label* to) {
|
887
|
+
BranchOrBacktrack(no_condition, to);
|
888
|
+
}
|
889
|
+
|
890
|
+
|
891
|
+
void RegExpMacroAssemblerIA32::IfRegisterGE(int reg,
|
892
|
+
int comparand,
|
893
|
+
Label* if_ge) {
|
894
|
+
__ cmp(register_location(reg), Immediate(comparand));
|
895
|
+
BranchOrBacktrack(greater_equal, if_ge);
|
896
|
+
}
|
897
|
+
|
898
|
+
|
899
|
+
void RegExpMacroAssemblerIA32::IfRegisterLT(int reg,
|
900
|
+
int comparand,
|
901
|
+
Label* if_lt) {
|
902
|
+
__ cmp(register_location(reg), Immediate(comparand));
|
903
|
+
BranchOrBacktrack(less, if_lt);
|
904
|
+
}
|
905
|
+
|
906
|
+
|
907
|
+
void RegExpMacroAssemblerIA32::IfRegisterEqPos(int reg,
|
908
|
+
Label* if_eq) {
|
909
|
+
__ cmp(edi, register_location(reg));
|
910
|
+
BranchOrBacktrack(equal, if_eq);
|
911
|
+
}
|
912
|
+
|
913
|
+
|
914
|
+
RegExpMacroAssembler::IrregexpImplementation
|
915
|
+
RegExpMacroAssemblerIA32::Implementation() {
|
916
|
+
return kIA32Implementation;
|
917
|
+
}
|
918
|
+
|
919
|
+
|
920
|
+
void RegExpMacroAssemblerIA32::LoadCurrentCharacter(int cp_offset,
|
921
|
+
Label* on_end_of_input,
|
922
|
+
bool check_bounds,
|
923
|
+
int characters) {
|
924
|
+
ASSERT(cp_offset >= -1); // ^ and \b can look behind one character.
|
925
|
+
ASSERT(cp_offset < (1<<30)); // Be sane! (And ensure negation works)
|
926
|
+
if (check_bounds) {
|
927
|
+
CheckPosition(cp_offset + characters - 1, on_end_of_input);
|
928
|
+
}
|
929
|
+
LoadCurrentCharacterUnchecked(cp_offset, characters);
|
930
|
+
}
|
931
|
+
|
932
|
+
|
933
|
+
void RegExpMacroAssemblerIA32::PopCurrentPosition() {
|
934
|
+
Pop(edi);
|
935
|
+
}
|
936
|
+
|
937
|
+
|
938
|
+
void RegExpMacroAssemblerIA32::PopRegister(int register_index) {
|
939
|
+
Pop(eax);
|
940
|
+
__ mov(register_location(register_index), eax);
|
941
|
+
}
|
942
|
+
|
943
|
+
|
944
|
+
void RegExpMacroAssemblerIA32::PushBacktrack(Label* label) {
|
945
|
+
Push(Immediate::CodeRelativeOffset(label));
|
946
|
+
CheckStackLimit();
|
947
|
+
}
|
948
|
+
|
949
|
+
|
950
|
+
void RegExpMacroAssemblerIA32::PushCurrentPosition() {
|
951
|
+
Push(edi);
|
952
|
+
}
|
953
|
+
|
954
|
+
|
955
|
+
void RegExpMacroAssemblerIA32::PushRegister(int register_index,
|
956
|
+
StackCheckFlag check_stack_limit) {
|
957
|
+
__ mov(eax, register_location(register_index));
|
958
|
+
Push(eax);
|
959
|
+
if (check_stack_limit) CheckStackLimit();
|
960
|
+
}
|
961
|
+
|
962
|
+
|
963
|
+
void RegExpMacroAssemblerIA32::ReadCurrentPositionFromRegister(int reg) {
|
964
|
+
__ mov(edi, register_location(reg));
|
965
|
+
}
|
966
|
+
|
967
|
+
|
968
|
+
void RegExpMacroAssemblerIA32::ReadStackPointerFromRegister(int reg) {
|
969
|
+
__ mov(backtrack_stackpointer(), register_location(reg));
|
970
|
+
__ add(backtrack_stackpointer(), Operand(ebp, kStackHighEnd));
|
971
|
+
}
|
972
|
+
|
973
|
+
void RegExpMacroAssemblerIA32::SetCurrentPositionFromEnd(int by) {
|
974
|
+
Label after_position;
|
975
|
+
__ cmp(edi, -by * char_size());
|
976
|
+
__ j(greater_equal, &after_position, Label::kNear);
|
977
|
+
__ mov(edi, -by * char_size());
|
978
|
+
// On RegExp code entry (where this operation is used), the character before
|
979
|
+
// the current position is expected to be already loaded.
|
980
|
+
// We have advanced the position, so it's safe to read backwards.
|
981
|
+
LoadCurrentCharacterUnchecked(-1, 1);
|
982
|
+
__ bind(&after_position);
|
983
|
+
}
|
984
|
+
|
985
|
+
void RegExpMacroAssemblerIA32::SetRegister(int register_index, int to) {
|
986
|
+
ASSERT(register_index >= num_saved_registers_); // Reserved for positions!
|
987
|
+
__ mov(register_location(register_index), Immediate(to));
|
988
|
+
}
|
989
|
+
|
990
|
+
|
991
|
+
void RegExpMacroAssemblerIA32::Succeed() {
|
992
|
+
__ jmp(&success_label_);
|
993
|
+
}
|
994
|
+
|
995
|
+
|
996
|
+
void RegExpMacroAssemblerIA32::WriteCurrentPositionToRegister(int reg,
|
997
|
+
int cp_offset) {
|
998
|
+
if (cp_offset == 0) {
|
999
|
+
__ mov(register_location(reg), edi);
|
1000
|
+
} else {
|
1001
|
+
__ lea(eax, Operand(edi, cp_offset * char_size()));
|
1002
|
+
__ mov(register_location(reg), eax);
|
1003
|
+
}
|
1004
|
+
}
|
1005
|
+
|
1006
|
+
|
1007
|
+
void RegExpMacroAssemblerIA32::ClearRegisters(int reg_from, int reg_to) {
|
1008
|
+
ASSERT(reg_from <= reg_to);
|
1009
|
+
__ mov(eax, Operand(ebp, kInputStartMinusOne));
|
1010
|
+
for (int reg = reg_from; reg <= reg_to; reg++) {
|
1011
|
+
__ mov(register_location(reg), eax);
|
1012
|
+
}
|
1013
|
+
}
|
1014
|
+
|
1015
|
+
|
1016
|
+
void RegExpMacroAssemblerIA32::WriteStackPointerToRegister(int reg) {
|
1017
|
+
__ mov(eax, backtrack_stackpointer());
|
1018
|
+
__ sub(eax, Operand(ebp, kStackHighEnd));
|
1019
|
+
__ mov(register_location(reg), eax);
|
1020
|
+
}
|
1021
|
+
|
1022
|
+
|
1023
|
+
// Private methods:
|
1024
|
+
|
1025
|
+
void RegExpMacroAssemblerIA32::CallCheckStackGuardState(Register scratch) {
|
1026
|
+
static const int num_arguments = 3;
|
1027
|
+
__ PrepareCallCFunction(num_arguments, scratch);
|
1028
|
+
// RegExp code frame pointer.
|
1029
|
+
__ mov(Operand(esp, 2 * kPointerSize), ebp);
|
1030
|
+
// Code* of self.
|
1031
|
+
__ mov(Operand(esp, 1 * kPointerSize), Immediate(masm_->CodeObject()));
|
1032
|
+
// Next address on the stack (will be address of return address).
|
1033
|
+
__ lea(eax, Operand(esp, -kPointerSize));
|
1034
|
+
__ mov(Operand(esp, 0 * kPointerSize), eax);
|
1035
|
+
ExternalReference check_stack_guard =
|
1036
|
+
ExternalReference::re_check_stack_guard_state(masm_->isolate());
|
1037
|
+
__ CallCFunction(check_stack_guard, num_arguments);
|
1038
|
+
}
|
1039
|
+
|
1040
|
+
|
1041
|
+
// Helper function for reading a value out of a stack frame.
|
1042
|
+
template <typename T>
|
1043
|
+
static T& frame_entry(Address re_frame, int frame_offset) {
|
1044
|
+
return reinterpret_cast<T&>(Memory::int32_at(re_frame + frame_offset));
|
1045
|
+
}
|
1046
|
+
|
1047
|
+
|
1048
|
+
int RegExpMacroAssemblerIA32::CheckStackGuardState(Address* return_address,
|
1049
|
+
Code* re_code,
|
1050
|
+
Address re_frame) {
|
1051
|
+
Isolate* isolate = frame_entry<Isolate*>(re_frame, kIsolate);
|
1052
|
+
ASSERT(isolate == Isolate::Current());
|
1053
|
+
if (isolate->stack_guard()->IsStackOverflow()) {
|
1054
|
+
isolate->StackOverflow();
|
1055
|
+
return EXCEPTION;
|
1056
|
+
}
|
1057
|
+
|
1058
|
+
// If not real stack overflow the stack guard was used to interrupt
|
1059
|
+
// execution for another purpose.
|
1060
|
+
|
1061
|
+
// If this is a direct call from JavaScript retry the RegExp forcing the call
|
1062
|
+
// through the runtime system. Currently the direct call cannot handle a GC.
|
1063
|
+
if (frame_entry<int>(re_frame, kDirectCall) == 1) {
|
1064
|
+
return RETRY;
|
1065
|
+
}
|
1066
|
+
|
1067
|
+
// Prepare for possible GC.
|
1068
|
+
HandleScope handles;
|
1069
|
+
Handle<Code> code_handle(re_code);
|
1070
|
+
|
1071
|
+
Handle<String> subject(frame_entry<String*>(re_frame, kInputString));
|
1072
|
+
// Current string.
|
1073
|
+
bool is_ascii = subject->IsAsciiRepresentation();
|
1074
|
+
|
1075
|
+
ASSERT(re_code->instruction_start() <= *return_address);
|
1076
|
+
ASSERT(*return_address <=
|
1077
|
+
re_code->instruction_start() + re_code->instruction_size());
|
1078
|
+
|
1079
|
+
MaybeObject* result = Execution::HandleStackGuardInterrupt();
|
1080
|
+
|
1081
|
+
if (*code_handle != re_code) { // Return address no longer valid
|
1082
|
+
int delta = *code_handle - re_code;
|
1083
|
+
// Overwrite the return address on the stack.
|
1084
|
+
*return_address += delta;
|
1085
|
+
}
|
1086
|
+
|
1087
|
+
if (result->IsException()) {
|
1088
|
+
return EXCEPTION;
|
1089
|
+
}
|
1090
|
+
|
1091
|
+
// String might have changed.
|
1092
|
+
if (subject->IsAsciiRepresentation() != is_ascii) {
|
1093
|
+
// If we changed between an ASCII and an UC16 string, the specialized
|
1094
|
+
// code cannot be used, and we need to restart regexp matching from
|
1095
|
+
// scratch (including, potentially, compiling a new version of the code).
|
1096
|
+
return RETRY;
|
1097
|
+
}
|
1098
|
+
|
1099
|
+
// Otherwise, the content of the string might have moved. It must still
|
1100
|
+
// be a sequential or external string with the same content.
|
1101
|
+
// Update the start and end pointers in the stack frame to the current
|
1102
|
+
// location (whether it has actually moved or not).
|
1103
|
+
ASSERT(StringShape(*subject).IsSequential() ||
|
1104
|
+
StringShape(*subject).IsExternal());
|
1105
|
+
|
1106
|
+
// The original start address of the characters to match.
|
1107
|
+
const byte* start_address = frame_entry<const byte*>(re_frame, kInputStart);
|
1108
|
+
|
1109
|
+
// Find the current start address of the same character at the current string
|
1110
|
+
// position.
|
1111
|
+
int start_index = frame_entry<int>(re_frame, kStartIndex);
|
1112
|
+
const byte* new_address = StringCharacterPosition(*subject, start_index);
|
1113
|
+
|
1114
|
+
if (start_address != new_address) {
|
1115
|
+
// If there is a difference, update the object pointer and start and end
|
1116
|
+
// addresses in the RegExp stack frame to match the new value.
|
1117
|
+
const byte* end_address = frame_entry<const byte* >(re_frame, kInputEnd);
|
1118
|
+
int byte_length = end_address - start_address;
|
1119
|
+
frame_entry<const String*>(re_frame, kInputString) = *subject;
|
1120
|
+
frame_entry<const byte*>(re_frame, kInputStart) = new_address;
|
1121
|
+
frame_entry<const byte*>(re_frame, kInputEnd) = new_address + byte_length;
|
1122
|
+
}
|
1123
|
+
|
1124
|
+
return 0;
|
1125
|
+
}
|
1126
|
+
|
1127
|
+
|
1128
|
+
Operand RegExpMacroAssemblerIA32::register_location(int register_index) {
|
1129
|
+
ASSERT(register_index < (1<<30));
|
1130
|
+
if (num_registers_ <= register_index) {
|
1131
|
+
num_registers_ = register_index + 1;
|
1132
|
+
}
|
1133
|
+
return Operand(ebp, kRegisterZero - register_index * kPointerSize);
|
1134
|
+
}
|
1135
|
+
|
1136
|
+
|
1137
|
+
void RegExpMacroAssemblerIA32::CheckPosition(int cp_offset,
|
1138
|
+
Label* on_outside_input) {
|
1139
|
+
__ cmp(edi, -cp_offset * char_size());
|
1140
|
+
BranchOrBacktrack(greater_equal, on_outside_input);
|
1141
|
+
}
|
1142
|
+
|
1143
|
+
|
1144
|
+
void RegExpMacroAssemblerIA32::BranchOrBacktrack(Condition condition,
|
1145
|
+
Label* to) {
|
1146
|
+
if (condition < 0) { // No condition
|
1147
|
+
if (to == NULL) {
|
1148
|
+
Backtrack();
|
1149
|
+
return;
|
1150
|
+
}
|
1151
|
+
__ jmp(to);
|
1152
|
+
return;
|
1153
|
+
}
|
1154
|
+
if (to == NULL) {
|
1155
|
+
__ j(condition, &backtrack_label_);
|
1156
|
+
return;
|
1157
|
+
}
|
1158
|
+
__ j(condition, to);
|
1159
|
+
}
|
1160
|
+
|
1161
|
+
|
1162
|
+
void RegExpMacroAssemblerIA32::SafeCall(Label* to) {
|
1163
|
+
Label return_to;
|
1164
|
+
__ push(Immediate::CodeRelativeOffset(&return_to));
|
1165
|
+
__ jmp(to);
|
1166
|
+
__ bind(&return_to);
|
1167
|
+
}
|
1168
|
+
|
1169
|
+
|
1170
|
+
void RegExpMacroAssemblerIA32::SafeReturn() {
|
1171
|
+
__ pop(ebx);
|
1172
|
+
__ add(Operand(ebx), Immediate(masm_->CodeObject()));
|
1173
|
+
__ jmp(Operand(ebx));
|
1174
|
+
}
|
1175
|
+
|
1176
|
+
|
1177
|
+
void RegExpMacroAssemblerIA32::SafeCallTarget(Label* name) {
|
1178
|
+
__ bind(name);
|
1179
|
+
}
|
1180
|
+
|
1181
|
+
|
1182
|
+
void RegExpMacroAssemblerIA32::Push(Register source) {
|
1183
|
+
ASSERT(!source.is(backtrack_stackpointer()));
|
1184
|
+
// Notice: This updates flags, unlike normal Push.
|
1185
|
+
__ sub(Operand(backtrack_stackpointer()), Immediate(kPointerSize));
|
1186
|
+
__ mov(Operand(backtrack_stackpointer(), 0), source);
|
1187
|
+
}
|
1188
|
+
|
1189
|
+
|
1190
|
+
void RegExpMacroAssemblerIA32::Push(Immediate value) {
|
1191
|
+
// Notice: This updates flags, unlike normal Push.
|
1192
|
+
__ sub(Operand(backtrack_stackpointer()), Immediate(kPointerSize));
|
1193
|
+
__ mov(Operand(backtrack_stackpointer(), 0), value);
|
1194
|
+
}
|
1195
|
+
|
1196
|
+
|
1197
|
+
void RegExpMacroAssemblerIA32::Pop(Register target) {
|
1198
|
+
ASSERT(!target.is(backtrack_stackpointer()));
|
1199
|
+
__ mov(target, Operand(backtrack_stackpointer(), 0));
|
1200
|
+
// Notice: This updates flags, unlike normal Pop.
|
1201
|
+
__ add(Operand(backtrack_stackpointer()), Immediate(kPointerSize));
|
1202
|
+
}
|
1203
|
+
|
1204
|
+
|
1205
|
+
void RegExpMacroAssemblerIA32::CheckPreemption() {
|
1206
|
+
// Check for preemption.
|
1207
|
+
Label no_preempt;
|
1208
|
+
ExternalReference stack_limit =
|
1209
|
+
ExternalReference::address_of_stack_limit(masm_->isolate());
|
1210
|
+
__ cmp(esp, Operand::StaticVariable(stack_limit));
|
1211
|
+
__ j(above, &no_preempt);
|
1212
|
+
|
1213
|
+
SafeCall(&check_preempt_label_);
|
1214
|
+
|
1215
|
+
__ bind(&no_preempt);
|
1216
|
+
}
|
1217
|
+
|
1218
|
+
|
1219
|
+
void RegExpMacroAssemblerIA32::CheckStackLimit() {
|
1220
|
+
Label no_stack_overflow;
|
1221
|
+
ExternalReference stack_limit =
|
1222
|
+
ExternalReference::address_of_regexp_stack_limit(masm_->isolate());
|
1223
|
+
__ cmp(backtrack_stackpointer(), Operand::StaticVariable(stack_limit));
|
1224
|
+
__ j(above, &no_stack_overflow);
|
1225
|
+
|
1226
|
+
SafeCall(&stack_overflow_label_);
|
1227
|
+
|
1228
|
+
__ bind(&no_stack_overflow);
|
1229
|
+
}
|
1230
|
+
|
1231
|
+
|
1232
|
+
void RegExpMacroAssemblerIA32::LoadCurrentCharacterUnchecked(int cp_offset,
|
1233
|
+
int characters) {
|
1234
|
+
if (mode_ == ASCII) {
|
1235
|
+
if (characters == 4) {
|
1236
|
+
__ mov(current_character(), Operand(esi, edi, times_1, cp_offset));
|
1237
|
+
} else if (characters == 2) {
|
1238
|
+
__ movzx_w(current_character(), Operand(esi, edi, times_1, cp_offset));
|
1239
|
+
} else {
|
1240
|
+
ASSERT(characters == 1);
|
1241
|
+
__ movzx_b(current_character(), Operand(esi, edi, times_1, cp_offset));
|
1242
|
+
}
|
1243
|
+
} else {
|
1244
|
+
ASSERT(mode_ == UC16);
|
1245
|
+
if (characters == 2) {
|
1246
|
+
__ mov(current_character(),
|
1247
|
+
Operand(esi, edi, times_1, cp_offset * sizeof(uc16)));
|
1248
|
+
} else {
|
1249
|
+
ASSERT(characters == 1);
|
1250
|
+
__ movzx_w(current_character(),
|
1251
|
+
Operand(esi, edi, times_1, cp_offset * sizeof(uc16)));
|
1252
|
+
}
|
1253
|
+
}
|
1254
|
+
}
|
1255
|
+
|
1256
|
+
|
1257
|
+
#undef __
|
1258
|
+
|
1259
|
+
#endif // V8_INTERPRETED_REGEXP
|
1260
|
+
|
1261
|
+
}} // namespace v8::internal
|
1262
|
+
|
1263
|
+
#endif // V8_TARGET_ARCH_IA32
|