RegExp: Add support for table-based character class
authorerik.corry@gmail.com <erik.corry@gmail.com@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Fri, 30 Mar 2012 07:43:48 +0000 (07:43 +0000)
committererik.corry@gmail.com <erik.corry@gmail.com@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Fri, 30 Mar 2012 07:43:48 +0000 (07:43 +0000)
commit356cf1ed0a3c652d0addeee7e767973be430df1d
tree4716879ee8036fa4dd7b42d1a3d7216be8b7abdb
parent0572806287a39cd10ce0e71d092b76597fa353d1
RegExp: Add support for table-based character class
code generation.  This is performance neutral for
all our tests, but a factor 6 faster for the Unicode
based regexp in the new test (and much more compact
code).
Review URL: https://chromiumcodereview.appspot.com/9854020

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@11189 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
18 files changed:
src/arm/regexp-macro-assembler-arm.cc
src/arm/regexp-macro-assembler-arm.h
src/bytecodes-irregexp.h
src/ia32/regexp-macro-assembler-ia32.cc
src/ia32/regexp-macro-assembler-ia32.h
src/interpreter-irregexp.cc
src/jsregexp.cc
src/mips/regexp-macro-assembler-mips.h
src/regexp-macro-assembler-irregexp-inl.h
src/regexp-macro-assembler-irregexp.cc
src/regexp-macro-assembler-irregexp.h
src/regexp-macro-assembler-tracer.cc
src/regexp-macro-assembler-tracer.h
src/regexp-macro-assembler.h
src/x64/regexp-macro-assembler-x64.cc
src/x64/regexp-macro-assembler-x64.h
test/mjsunit/unicodelctest-no-optimization.js [new file with mode: 0644]
test/mjsunit/unicodelctest.js [new file with mode: 0644]