libv8 3.3.10.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +8 -0
- data/.gitmodules +3 -0
- data/Gemfile +4 -0
- data/README.md +44 -0
- data/Rakefile +73 -0
- data/ext/libv8/extconf.rb +9 -0
- data/lib/libv8.rb +15 -0
- data/lib/libv8/Makefile +38 -0
- data/lib/libv8/detect_cpu.rb +27 -0
- data/lib/libv8/fpic-on-linux-amd64.patch +13 -0
- data/lib/libv8/scons/CHANGES.txt +5334 -0
- data/lib/libv8/scons/LICENSE.txt +20 -0
- data/lib/libv8/scons/MANIFEST +199 -0
- data/lib/libv8/scons/PKG-INFO +13 -0
- data/lib/libv8/scons/README.txt +243 -0
- data/lib/libv8/scons/RELEASE.txt +98 -0
- data/lib/libv8/scons/engine/SCons/Action.py +1241 -0
- data/lib/libv8/scons/engine/SCons/Builder.py +877 -0
- data/lib/libv8/scons/engine/SCons/CacheDir.py +216 -0
- data/lib/libv8/scons/engine/SCons/Conftest.py +793 -0
- data/lib/libv8/scons/engine/SCons/Debug.py +220 -0
- data/lib/libv8/scons/engine/SCons/Defaults.py +480 -0
- data/lib/libv8/scons/engine/SCons/Environment.py +2318 -0
- data/lib/libv8/scons/engine/SCons/Errors.py +205 -0
- data/lib/libv8/scons/engine/SCons/Executor.py +633 -0
- data/lib/libv8/scons/engine/SCons/Job.py +435 -0
- data/lib/libv8/scons/engine/SCons/Memoize.py +244 -0
- data/lib/libv8/scons/engine/SCons/Node/Alias.py +152 -0
- data/lib/libv8/scons/engine/SCons/Node/FS.py +3142 -0
- data/lib/libv8/scons/engine/SCons/Node/Python.py +128 -0
- data/lib/libv8/scons/engine/SCons/Node/__init__.py +1328 -0
- data/lib/libv8/scons/engine/SCons/Options/BoolOption.py +50 -0
- data/lib/libv8/scons/engine/SCons/Options/EnumOption.py +50 -0
- data/lib/libv8/scons/engine/SCons/Options/ListOption.py +50 -0
- data/lib/libv8/scons/engine/SCons/Options/PackageOption.py +50 -0
- data/lib/libv8/scons/engine/SCons/Options/PathOption.py +76 -0
- data/lib/libv8/scons/engine/SCons/Options/__init__.py +67 -0
- data/lib/libv8/scons/engine/SCons/PathList.py +231 -0
- data/lib/libv8/scons/engine/SCons/Platform/__init__.py +241 -0
- data/lib/libv8/scons/engine/SCons/Platform/aix.py +69 -0
- data/lib/libv8/scons/engine/SCons/Platform/cygwin.py +55 -0
- data/lib/libv8/scons/engine/SCons/Platform/darwin.py +46 -0
- data/lib/libv8/scons/engine/SCons/Platform/hpux.py +46 -0
- data/lib/libv8/scons/engine/SCons/Platform/irix.py +44 -0
- data/lib/libv8/scons/engine/SCons/Platform/os2.py +58 -0
- data/lib/libv8/scons/engine/SCons/Platform/posix.py +263 -0
- data/lib/libv8/scons/engine/SCons/Platform/sunos.py +50 -0
- data/lib/libv8/scons/engine/SCons/Platform/win32.py +385 -0
- data/lib/libv8/scons/engine/SCons/SConf.py +1030 -0
- data/lib/libv8/scons/engine/SCons/SConsign.py +383 -0
- data/lib/libv8/scons/engine/SCons/Scanner/C.py +132 -0
- data/lib/libv8/scons/engine/SCons/Scanner/D.py +73 -0
- data/lib/libv8/scons/engine/SCons/Scanner/Dir.py +109 -0
- data/lib/libv8/scons/engine/SCons/Scanner/Fortran.py +316 -0
- data/lib/libv8/scons/engine/SCons/Scanner/IDL.py +48 -0
- data/lib/libv8/scons/engine/SCons/Scanner/LaTeX.py +384 -0
- data/lib/libv8/scons/engine/SCons/Scanner/Prog.py +101 -0
- data/lib/libv8/scons/engine/SCons/Scanner/RC.py +55 -0
- data/lib/libv8/scons/engine/SCons/Scanner/__init__.py +413 -0
- data/lib/libv8/scons/engine/SCons/Script/Interactive.py +384 -0
- data/lib/libv8/scons/engine/SCons/Script/Main.py +1334 -0
- data/lib/libv8/scons/engine/SCons/Script/SConsOptions.py +939 -0
- data/lib/libv8/scons/engine/SCons/Script/SConscript.py +640 -0
- data/lib/libv8/scons/engine/SCons/Script/__init__.py +412 -0
- data/lib/libv8/scons/engine/SCons/Sig.py +63 -0
- data/lib/libv8/scons/engine/SCons/Subst.py +904 -0
- data/lib/libv8/scons/engine/SCons/Taskmaster.py +1017 -0
- data/lib/libv8/scons/engine/SCons/Tool/386asm.py +61 -0
- data/lib/libv8/scons/engine/SCons/Tool/BitKeeper.py +67 -0
- data/lib/libv8/scons/engine/SCons/Tool/CVS.py +73 -0
- data/lib/libv8/scons/engine/SCons/Tool/FortranCommon.py +246 -0
- data/lib/libv8/scons/engine/SCons/Tool/JavaCommon.py +323 -0
- data/lib/libv8/scons/engine/SCons/Tool/MSCommon/__init__.py +56 -0
- data/lib/libv8/scons/engine/SCons/Tool/MSCommon/arch.py +61 -0
- data/lib/libv8/scons/engine/SCons/Tool/MSCommon/common.py +240 -0
- data/lib/libv8/scons/engine/SCons/Tool/MSCommon/netframework.py +82 -0
- data/lib/libv8/scons/engine/SCons/Tool/MSCommon/sdk.py +391 -0
- data/lib/libv8/scons/engine/SCons/Tool/MSCommon/vc.py +456 -0
- data/lib/libv8/scons/engine/SCons/Tool/MSCommon/vs.py +499 -0
- data/lib/libv8/scons/engine/SCons/Tool/Perforce.py +103 -0
- data/lib/libv8/scons/engine/SCons/Tool/PharLapCommon.py +137 -0
- data/lib/libv8/scons/engine/SCons/Tool/RCS.py +64 -0
- data/lib/libv8/scons/engine/SCons/Tool/SCCS.py +64 -0
- data/lib/libv8/scons/engine/SCons/Tool/Subversion.py +71 -0
- data/lib/libv8/scons/engine/SCons/Tool/__init__.py +681 -0
- data/lib/libv8/scons/engine/SCons/Tool/aixc++.py +82 -0
- data/lib/libv8/scons/engine/SCons/Tool/aixcc.py +74 -0
- data/lib/libv8/scons/engine/SCons/Tool/aixf77.py +80 -0
- data/lib/libv8/scons/engine/SCons/Tool/aixlink.py +76 -0
- data/lib/libv8/scons/engine/SCons/Tool/applelink.py +71 -0
- data/lib/libv8/scons/engine/SCons/Tool/ar.py +63 -0
- data/lib/libv8/scons/engine/SCons/Tool/as.py +78 -0
- data/lib/libv8/scons/engine/SCons/Tool/bcc32.py +81 -0
- data/lib/libv8/scons/engine/SCons/Tool/c++.py +99 -0
- data/lib/libv8/scons/engine/SCons/Tool/cc.py +102 -0
- data/lib/libv8/scons/engine/SCons/Tool/cvf.py +58 -0
- data/lib/libv8/scons/engine/SCons/Tool/default.py +50 -0
- data/lib/libv8/scons/engine/SCons/Tool/dmd.py +223 -0
- data/lib/libv8/scons/engine/SCons/Tool/dvi.py +64 -0
- data/lib/libv8/scons/engine/SCons/Tool/dvipdf.py +124 -0
- data/lib/libv8/scons/engine/SCons/Tool/dvips.py +94 -0
- data/lib/libv8/scons/engine/SCons/Tool/f77.py +62 -0
- data/lib/libv8/scons/engine/SCons/Tool/f90.py +62 -0
- data/lib/libv8/scons/engine/SCons/Tool/f95.py +63 -0
- data/lib/libv8/scons/engine/SCons/Tool/filesystem.py +98 -0
- data/lib/libv8/scons/engine/SCons/Tool/fortran.py +62 -0
- data/lib/libv8/scons/engine/SCons/Tool/g++.py +90 -0
- data/lib/libv8/scons/engine/SCons/Tool/g77.py +73 -0
- data/lib/libv8/scons/engine/SCons/Tool/gas.py +53 -0
- data/lib/libv8/scons/engine/SCons/Tool/gcc.py +80 -0
- data/lib/libv8/scons/engine/SCons/Tool/gfortran.py +64 -0
- data/lib/libv8/scons/engine/SCons/Tool/gnulink.py +63 -0
- data/lib/libv8/scons/engine/SCons/Tool/gs.py +81 -0
- data/lib/libv8/scons/engine/SCons/Tool/hpc++.py +84 -0
- data/lib/libv8/scons/engine/SCons/Tool/hpcc.py +53 -0
- data/lib/libv8/scons/engine/SCons/Tool/hplink.py +77 -0
- data/lib/libv8/scons/engine/SCons/Tool/icc.py +59 -0
- data/lib/libv8/scons/engine/SCons/Tool/icl.py +52 -0
- data/lib/libv8/scons/engine/SCons/Tool/ifl.py +72 -0
- data/lib/libv8/scons/engine/SCons/Tool/ifort.py +88 -0
- data/lib/libv8/scons/engine/SCons/Tool/ilink.py +59 -0
- data/lib/libv8/scons/engine/SCons/Tool/ilink32.py +60 -0
- data/lib/libv8/scons/engine/SCons/Tool/install.py +229 -0
- data/lib/libv8/scons/engine/SCons/Tool/intelc.py +482 -0
- data/lib/libv8/scons/engine/SCons/Tool/ipkg.py +67 -0
- data/lib/libv8/scons/engine/SCons/Tool/jar.py +110 -0
- data/lib/libv8/scons/engine/SCons/Tool/javac.py +230 -0
- data/lib/libv8/scons/engine/SCons/Tool/javah.py +137 -0
- data/lib/libv8/scons/engine/SCons/Tool/latex.py +79 -0
- data/lib/libv8/scons/engine/SCons/Tool/lex.py +97 -0
- data/lib/libv8/scons/engine/SCons/Tool/link.py +121 -0
- data/lib/libv8/scons/engine/SCons/Tool/linkloc.py +112 -0
- data/lib/libv8/scons/engine/SCons/Tool/m4.py +63 -0
- data/lib/libv8/scons/engine/SCons/Tool/masm.py +77 -0
- data/lib/libv8/scons/engine/SCons/Tool/midl.py +88 -0
- data/lib/libv8/scons/engine/SCons/Tool/mingw.py +158 -0
- data/lib/libv8/scons/engine/SCons/Tool/mslib.py +64 -0
- data/lib/libv8/scons/engine/SCons/Tool/mslink.py +266 -0
- data/lib/libv8/scons/engine/SCons/Tool/mssdk.py +50 -0
- data/lib/libv8/scons/engine/SCons/Tool/msvc.py +268 -0
- data/lib/libv8/scons/engine/SCons/Tool/msvs.py +1388 -0
- data/lib/libv8/scons/engine/SCons/Tool/mwcc.py +207 -0
- data/lib/libv8/scons/engine/SCons/Tool/mwld.py +107 -0
- data/lib/libv8/scons/engine/SCons/Tool/nasm.py +72 -0
- data/lib/libv8/scons/engine/SCons/Tool/packaging/__init__.py +312 -0
- data/lib/libv8/scons/engine/SCons/Tool/packaging/ipk.py +185 -0
- data/lib/libv8/scons/engine/SCons/Tool/packaging/msi.py +527 -0
- data/lib/libv8/scons/engine/SCons/Tool/packaging/rpm.py +365 -0
- data/lib/libv8/scons/engine/SCons/Tool/packaging/src_tarbz2.py +43 -0
- data/lib/libv8/scons/engine/SCons/Tool/packaging/src_targz.py +43 -0
- data/lib/libv8/scons/engine/SCons/Tool/packaging/src_zip.py +43 -0
- data/lib/libv8/scons/engine/SCons/Tool/packaging/tarbz2.py +44 -0
- data/lib/libv8/scons/engine/SCons/Tool/packaging/targz.py +44 -0
- data/lib/libv8/scons/engine/SCons/Tool/packaging/zip.py +44 -0
- data/lib/libv8/scons/engine/SCons/Tool/pdf.py +78 -0
- data/lib/libv8/scons/engine/SCons/Tool/pdflatex.py +83 -0
- data/lib/libv8/scons/engine/SCons/Tool/pdftex.py +108 -0
- data/lib/libv8/scons/engine/SCons/Tool/qt.py +336 -0
- data/lib/libv8/scons/engine/SCons/Tool/rmic.py +120 -0
- data/lib/libv8/scons/engine/SCons/Tool/rpcgen.py +70 -0
- data/lib/libv8/scons/engine/SCons/Tool/rpm.py +132 -0
- data/lib/libv8/scons/engine/SCons/Tool/sgiar.py +68 -0
- data/lib/libv8/scons/engine/SCons/Tool/sgic++.py +58 -0
- data/lib/libv8/scons/engine/SCons/Tool/sgicc.py +53 -0
- data/lib/libv8/scons/engine/SCons/Tool/sgilink.py +63 -0
- data/lib/libv8/scons/engine/SCons/Tool/sunar.py +67 -0
- data/lib/libv8/scons/engine/SCons/Tool/sunc++.py +142 -0
- data/lib/libv8/scons/engine/SCons/Tool/suncc.py +58 -0
- data/lib/libv8/scons/engine/SCons/Tool/sunf77.py +63 -0
- data/lib/libv8/scons/engine/SCons/Tool/sunf90.py +64 -0
- data/lib/libv8/scons/engine/SCons/Tool/sunf95.py +64 -0
- data/lib/libv8/scons/engine/SCons/Tool/sunlink.py +77 -0
- data/lib/libv8/scons/engine/SCons/Tool/swig.py +182 -0
- data/lib/libv8/scons/engine/SCons/Tool/tar.py +73 -0
- data/lib/libv8/scons/engine/SCons/Tool/tex.py +813 -0
- data/lib/libv8/scons/engine/SCons/Tool/textfile.py +175 -0
- data/lib/libv8/scons/engine/SCons/Tool/tlib.py +53 -0
- data/lib/libv8/scons/engine/SCons/Tool/wix.py +99 -0
- data/lib/libv8/scons/engine/SCons/Tool/yacc.py +130 -0
- data/lib/libv8/scons/engine/SCons/Tool/zip.py +99 -0
- data/lib/libv8/scons/engine/SCons/Util.py +1492 -0
- data/lib/libv8/scons/engine/SCons/Variables/BoolVariable.py +89 -0
- data/lib/libv8/scons/engine/SCons/Variables/EnumVariable.py +103 -0
- data/lib/libv8/scons/engine/SCons/Variables/ListVariable.py +135 -0
- data/lib/libv8/scons/engine/SCons/Variables/PackageVariable.py +106 -0
- data/lib/libv8/scons/engine/SCons/Variables/PathVariable.py +147 -0
- data/lib/libv8/scons/engine/SCons/Variables/__init__.py +312 -0
- data/lib/libv8/scons/engine/SCons/Warnings.py +246 -0
- data/lib/libv8/scons/engine/SCons/__init__.py +49 -0
- data/lib/libv8/scons/engine/SCons/compat/__init__.py +237 -0
- data/lib/libv8/scons/engine/SCons/compat/_scons_builtins.py +150 -0
- data/lib/libv8/scons/engine/SCons/compat/_scons_collections.py +45 -0
- data/lib/libv8/scons/engine/SCons/compat/_scons_dbm.py +45 -0
- data/lib/libv8/scons/engine/SCons/compat/_scons_hashlib.py +76 -0
- data/lib/libv8/scons/engine/SCons/compat/_scons_io.py +45 -0
- data/lib/libv8/scons/engine/SCons/compat/_scons_sets.py +563 -0
- data/lib/libv8/scons/engine/SCons/compat/_scons_subprocess.py +1281 -0
- data/lib/libv8/scons/engine/SCons/cpp.py +589 -0
- data/lib/libv8/scons/engine/SCons/dblite.py +251 -0
- data/lib/libv8/scons/engine/SCons/exitfuncs.py +77 -0
- data/lib/libv8/scons/os_spawnv_fix.diff +83 -0
- data/lib/libv8/scons/scons-time.1 +1017 -0
- data/lib/libv8/scons/scons.1 +15219 -0
- data/lib/libv8/scons/sconsign.1 +208 -0
- data/lib/libv8/scons/script/scons +196 -0
- data/lib/libv8/scons/script/scons-time +1544 -0
- data/lib/libv8/scons/script/scons.bat +31 -0
- data/lib/libv8/scons/script/sconsign +513 -0
- data/lib/libv8/scons/setup.cfg +6 -0
- data/lib/libv8/scons/setup.py +425 -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 +4 -0
- data/libv8.gemspec +31 -0
- metadata +800 -0
@@ -0,0 +1,952 @@
|
|
1
|
+
// Copyright 2011 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
|
+
// Features shared by parsing and pre-parsing scanners.
|
29
|
+
|
30
|
+
#include "../include/v8stdint.h"
|
31
|
+
#include "scanner-base.h"
|
32
|
+
#include "char-predicates-inl.h"
|
33
|
+
|
34
|
+
namespace v8 {
|
35
|
+
namespace internal {
|
36
|
+
|
37
|
+
// ----------------------------------------------------------------------------
|
38
|
+
// Scanner
|
39
|
+
|
40
|
+
Scanner::Scanner(UnicodeCache* unicode_cache)
|
41
|
+
: unicode_cache_(unicode_cache) { }
|
42
|
+
|
43
|
+
|
44
|
+
uc32 Scanner::ScanHexEscape(uc32 c, int length) {
|
45
|
+
ASSERT(length <= 4); // prevent overflow
|
46
|
+
|
47
|
+
uc32 digits[4];
|
48
|
+
uc32 x = 0;
|
49
|
+
for (int i = 0; i < length; i++) {
|
50
|
+
digits[i] = c0_;
|
51
|
+
int d = HexValue(c0_);
|
52
|
+
if (d < 0) {
|
53
|
+
// According to ECMA-262, 3rd, 7.8.4, page 18, these hex escapes
|
54
|
+
// should be illegal, but other JS VMs just return the
|
55
|
+
// non-escaped version of the original character.
|
56
|
+
|
57
|
+
// Push back digits read, except the last one (in c0_).
|
58
|
+
for (int j = i-1; j >= 0; j--) {
|
59
|
+
PushBack(digits[j]);
|
60
|
+
}
|
61
|
+
// Notice: No handling of error - treat it as "\u"->"u".
|
62
|
+
return c;
|
63
|
+
}
|
64
|
+
x = x * 16 + d;
|
65
|
+
Advance();
|
66
|
+
}
|
67
|
+
|
68
|
+
return x;
|
69
|
+
}
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
// ----------------------------------------------------------------------------
|
74
|
+
// JavaScriptScanner
|
75
|
+
|
76
|
+
JavaScriptScanner::JavaScriptScanner(UnicodeCache* scanner_contants)
|
77
|
+
: Scanner(scanner_contants), octal_pos_(Location::invalid()) { }
|
78
|
+
|
79
|
+
|
80
|
+
Token::Value JavaScriptScanner::Next() {
|
81
|
+
current_ = next_;
|
82
|
+
has_line_terminator_before_next_ = false;
|
83
|
+
Scan();
|
84
|
+
return current_.token;
|
85
|
+
}
|
86
|
+
|
87
|
+
|
88
|
+
static inline bool IsByteOrderMark(uc32 c) {
|
89
|
+
// The Unicode value U+FFFE is guaranteed never to be assigned as a
|
90
|
+
// Unicode character; this implies that in a Unicode context the
|
91
|
+
// 0xFF, 0xFE byte pattern can only be interpreted as the U+FEFF
|
92
|
+
// character expressed in little-endian byte order (since it could
|
93
|
+
// not be a U+FFFE character expressed in big-endian byte
|
94
|
+
// order). Nevertheless, we check for it to be compatible with
|
95
|
+
// Spidermonkey.
|
96
|
+
return c == 0xFEFF || c == 0xFFFE;
|
97
|
+
}
|
98
|
+
|
99
|
+
|
100
|
+
bool JavaScriptScanner::SkipWhiteSpace() {
|
101
|
+
int start_position = source_pos();
|
102
|
+
|
103
|
+
while (true) {
|
104
|
+
// We treat byte-order marks (BOMs) as whitespace for better
|
105
|
+
// compatibility with Spidermonkey and other JavaScript engines.
|
106
|
+
while (unicode_cache_->IsWhiteSpace(c0_) || IsByteOrderMark(c0_)) {
|
107
|
+
// IsWhiteSpace() includes line terminators!
|
108
|
+
if (unicode_cache_->IsLineTerminator(c0_)) {
|
109
|
+
// Ignore line terminators, but remember them. This is necessary
|
110
|
+
// for automatic semicolon insertion.
|
111
|
+
has_line_terminator_before_next_ = true;
|
112
|
+
}
|
113
|
+
Advance();
|
114
|
+
}
|
115
|
+
|
116
|
+
// If there is an HTML comment end '-->' at the beginning of a
|
117
|
+
// line (with only whitespace in front of it), we treat the rest
|
118
|
+
// of the line as a comment. This is in line with the way
|
119
|
+
// SpiderMonkey handles it.
|
120
|
+
if (c0_ == '-' && has_line_terminator_before_next_) {
|
121
|
+
Advance();
|
122
|
+
if (c0_ == '-') {
|
123
|
+
Advance();
|
124
|
+
if (c0_ == '>') {
|
125
|
+
// Treat the rest of the line as a comment.
|
126
|
+
SkipSingleLineComment();
|
127
|
+
// Continue skipping white space after the comment.
|
128
|
+
continue;
|
129
|
+
}
|
130
|
+
PushBack('-'); // undo Advance()
|
131
|
+
}
|
132
|
+
PushBack('-'); // undo Advance()
|
133
|
+
}
|
134
|
+
// Return whether or not we skipped any characters.
|
135
|
+
return source_pos() != start_position;
|
136
|
+
}
|
137
|
+
}
|
138
|
+
|
139
|
+
|
140
|
+
Token::Value JavaScriptScanner::SkipSingleLineComment() {
|
141
|
+
Advance();
|
142
|
+
|
143
|
+
// The line terminator at the end of the line is not considered
|
144
|
+
// to be part of the single-line comment; it is recognized
|
145
|
+
// separately by the lexical grammar and becomes part of the
|
146
|
+
// stream of input elements for the syntactic grammar (see
|
147
|
+
// ECMA-262, section 7.4, page 12).
|
148
|
+
while (c0_ >= 0 && !unicode_cache_->IsLineTerminator(c0_)) {
|
149
|
+
Advance();
|
150
|
+
}
|
151
|
+
|
152
|
+
return Token::WHITESPACE;
|
153
|
+
}
|
154
|
+
|
155
|
+
|
156
|
+
Token::Value JavaScriptScanner::SkipMultiLineComment() {
|
157
|
+
ASSERT(c0_ == '*');
|
158
|
+
Advance();
|
159
|
+
|
160
|
+
while (c0_ >= 0) {
|
161
|
+
char ch = c0_;
|
162
|
+
Advance();
|
163
|
+
// If we have reached the end of the multi-line comment, we
|
164
|
+
// consume the '/' and insert a whitespace. This way all
|
165
|
+
// multi-line comments are treated as whitespace - even the ones
|
166
|
+
// containing line terminators. This contradicts ECMA-262, section
|
167
|
+
// 7.4, page 12, that says that multi-line comments containing
|
168
|
+
// line terminators should be treated as a line terminator, but it
|
169
|
+
// matches the behaviour of SpiderMonkey and KJS.
|
170
|
+
if (ch == '*' && c0_ == '/') {
|
171
|
+
c0_ = ' ';
|
172
|
+
return Token::WHITESPACE;
|
173
|
+
}
|
174
|
+
}
|
175
|
+
|
176
|
+
// Unterminated multi-line comment.
|
177
|
+
return Token::ILLEGAL;
|
178
|
+
}
|
179
|
+
|
180
|
+
|
181
|
+
Token::Value JavaScriptScanner::ScanHtmlComment() {
|
182
|
+
// Check for <!-- comments.
|
183
|
+
ASSERT(c0_ == '!');
|
184
|
+
Advance();
|
185
|
+
if (c0_ == '-') {
|
186
|
+
Advance();
|
187
|
+
if (c0_ == '-') return SkipSingleLineComment();
|
188
|
+
PushBack('-'); // undo Advance()
|
189
|
+
}
|
190
|
+
PushBack('!'); // undo Advance()
|
191
|
+
ASSERT(c0_ == '!');
|
192
|
+
return Token::LT;
|
193
|
+
}
|
194
|
+
|
195
|
+
|
196
|
+
void JavaScriptScanner::Scan() {
|
197
|
+
next_.literal_chars = NULL;
|
198
|
+
Token::Value token;
|
199
|
+
do {
|
200
|
+
// Remember the position of the next token
|
201
|
+
next_.location.beg_pos = source_pos();
|
202
|
+
|
203
|
+
switch (c0_) {
|
204
|
+
case ' ':
|
205
|
+
case '\t':
|
206
|
+
Advance();
|
207
|
+
token = Token::WHITESPACE;
|
208
|
+
break;
|
209
|
+
|
210
|
+
case '\n':
|
211
|
+
Advance();
|
212
|
+
has_line_terminator_before_next_ = true;
|
213
|
+
token = Token::WHITESPACE;
|
214
|
+
break;
|
215
|
+
|
216
|
+
case '"': case '\'':
|
217
|
+
token = ScanString();
|
218
|
+
break;
|
219
|
+
|
220
|
+
case '<':
|
221
|
+
// < <= << <<= <!--
|
222
|
+
Advance();
|
223
|
+
if (c0_ == '=') {
|
224
|
+
token = Select(Token::LTE);
|
225
|
+
} else if (c0_ == '<') {
|
226
|
+
token = Select('=', Token::ASSIGN_SHL, Token::SHL);
|
227
|
+
} else if (c0_ == '!') {
|
228
|
+
token = ScanHtmlComment();
|
229
|
+
} else {
|
230
|
+
token = Token::LT;
|
231
|
+
}
|
232
|
+
break;
|
233
|
+
|
234
|
+
case '>':
|
235
|
+
// > >= >> >>= >>> >>>=
|
236
|
+
Advance();
|
237
|
+
if (c0_ == '=') {
|
238
|
+
token = Select(Token::GTE);
|
239
|
+
} else if (c0_ == '>') {
|
240
|
+
// >> >>= >>> >>>=
|
241
|
+
Advance();
|
242
|
+
if (c0_ == '=') {
|
243
|
+
token = Select(Token::ASSIGN_SAR);
|
244
|
+
} else if (c0_ == '>') {
|
245
|
+
token = Select('=', Token::ASSIGN_SHR, Token::SHR);
|
246
|
+
} else {
|
247
|
+
token = Token::SAR;
|
248
|
+
}
|
249
|
+
} else {
|
250
|
+
token = Token::GT;
|
251
|
+
}
|
252
|
+
break;
|
253
|
+
|
254
|
+
case '=':
|
255
|
+
// = == ===
|
256
|
+
Advance();
|
257
|
+
if (c0_ == '=') {
|
258
|
+
token = Select('=', Token::EQ_STRICT, Token::EQ);
|
259
|
+
} else {
|
260
|
+
token = Token::ASSIGN;
|
261
|
+
}
|
262
|
+
break;
|
263
|
+
|
264
|
+
case '!':
|
265
|
+
// ! != !==
|
266
|
+
Advance();
|
267
|
+
if (c0_ == '=') {
|
268
|
+
token = Select('=', Token::NE_STRICT, Token::NE);
|
269
|
+
} else {
|
270
|
+
token = Token::NOT;
|
271
|
+
}
|
272
|
+
break;
|
273
|
+
|
274
|
+
case '+':
|
275
|
+
// + ++ +=
|
276
|
+
Advance();
|
277
|
+
if (c0_ == '+') {
|
278
|
+
token = Select(Token::INC);
|
279
|
+
} else if (c0_ == '=') {
|
280
|
+
token = Select(Token::ASSIGN_ADD);
|
281
|
+
} else {
|
282
|
+
token = Token::ADD;
|
283
|
+
}
|
284
|
+
break;
|
285
|
+
|
286
|
+
case '-':
|
287
|
+
// - -- --> -=
|
288
|
+
Advance();
|
289
|
+
if (c0_ == '-') {
|
290
|
+
Advance();
|
291
|
+
if (c0_ == '>' && has_line_terminator_before_next_) {
|
292
|
+
// For compatibility with SpiderMonkey, we skip lines that
|
293
|
+
// start with an HTML comment end '-->'.
|
294
|
+
token = SkipSingleLineComment();
|
295
|
+
} else {
|
296
|
+
token = Token::DEC;
|
297
|
+
}
|
298
|
+
} else if (c0_ == '=') {
|
299
|
+
token = Select(Token::ASSIGN_SUB);
|
300
|
+
} else {
|
301
|
+
token = Token::SUB;
|
302
|
+
}
|
303
|
+
break;
|
304
|
+
|
305
|
+
case '*':
|
306
|
+
// * *=
|
307
|
+
token = Select('=', Token::ASSIGN_MUL, Token::MUL);
|
308
|
+
break;
|
309
|
+
|
310
|
+
case '%':
|
311
|
+
// % %=
|
312
|
+
token = Select('=', Token::ASSIGN_MOD, Token::MOD);
|
313
|
+
break;
|
314
|
+
|
315
|
+
case '/':
|
316
|
+
// / // /* /=
|
317
|
+
Advance();
|
318
|
+
if (c0_ == '/') {
|
319
|
+
token = SkipSingleLineComment();
|
320
|
+
} else if (c0_ == '*') {
|
321
|
+
token = SkipMultiLineComment();
|
322
|
+
} else if (c0_ == '=') {
|
323
|
+
token = Select(Token::ASSIGN_DIV);
|
324
|
+
} else {
|
325
|
+
token = Token::DIV;
|
326
|
+
}
|
327
|
+
break;
|
328
|
+
|
329
|
+
case '&':
|
330
|
+
// & && &=
|
331
|
+
Advance();
|
332
|
+
if (c0_ == '&') {
|
333
|
+
token = Select(Token::AND);
|
334
|
+
} else if (c0_ == '=') {
|
335
|
+
token = Select(Token::ASSIGN_BIT_AND);
|
336
|
+
} else {
|
337
|
+
token = Token::BIT_AND;
|
338
|
+
}
|
339
|
+
break;
|
340
|
+
|
341
|
+
case '|':
|
342
|
+
// | || |=
|
343
|
+
Advance();
|
344
|
+
if (c0_ == '|') {
|
345
|
+
token = Select(Token::OR);
|
346
|
+
} else if (c0_ == '=') {
|
347
|
+
token = Select(Token::ASSIGN_BIT_OR);
|
348
|
+
} else {
|
349
|
+
token = Token::BIT_OR;
|
350
|
+
}
|
351
|
+
break;
|
352
|
+
|
353
|
+
case '^':
|
354
|
+
// ^ ^=
|
355
|
+
token = Select('=', Token::ASSIGN_BIT_XOR, Token::BIT_XOR);
|
356
|
+
break;
|
357
|
+
|
358
|
+
case '.':
|
359
|
+
// . Number
|
360
|
+
Advance();
|
361
|
+
if (IsDecimalDigit(c0_)) {
|
362
|
+
token = ScanNumber(true);
|
363
|
+
} else {
|
364
|
+
token = Token::PERIOD;
|
365
|
+
}
|
366
|
+
break;
|
367
|
+
|
368
|
+
case ':':
|
369
|
+
token = Select(Token::COLON);
|
370
|
+
break;
|
371
|
+
|
372
|
+
case ';':
|
373
|
+
token = Select(Token::SEMICOLON);
|
374
|
+
break;
|
375
|
+
|
376
|
+
case ',':
|
377
|
+
token = Select(Token::COMMA);
|
378
|
+
break;
|
379
|
+
|
380
|
+
case '(':
|
381
|
+
token = Select(Token::LPAREN);
|
382
|
+
break;
|
383
|
+
|
384
|
+
case ')':
|
385
|
+
token = Select(Token::RPAREN);
|
386
|
+
break;
|
387
|
+
|
388
|
+
case '[':
|
389
|
+
token = Select(Token::LBRACK);
|
390
|
+
break;
|
391
|
+
|
392
|
+
case ']':
|
393
|
+
token = Select(Token::RBRACK);
|
394
|
+
break;
|
395
|
+
|
396
|
+
case '{':
|
397
|
+
token = Select(Token::LBRACE);
|
398
|
+
break;
|
399
|
+
|
400
|
+
case '}':
|
401
|
+
token = Select(Token::RBRACE);
|
402
|
+
break;
|
403
|
+
|
404
|
+
case '?':
|
405
|
+
token = Select(Token::CONDITIONAL);
|
406
|
+
break;
|
407
|
+
|
408
|
+
case '~':
|
409
|
+
token = Select(Token::BIT_NOT);
|
410
|
+
break;
|
411
|
+
|
412
|
+
default:
|
413
|
+
if (unicode_cache_->IsIdentifierStart(c0_)) {
|
414
|
+
token = ScanIdentifierOrKeyword();
|
415
|
+
} else if (IsDecimalDigit(c0_)) {
|
416
|
+
token = ScanNumber(false);
|
417
|
+
} else if (SkipWhiteSpace()) {
|
418
|
+
token = Token::WHITESPACE;
|
419
|
+
} else if (c0_ < 0) {
|
420
|
+
token = Token::EOS;
|
421
|
+
} else {
|
422
|
+
token = Select(Token::ILLEGAL);
|
423
|
+
}
|
424
|
+
break;
|
425
|
+
}
|
426
|
+
|
427
|
+
// Continue scanning for tokens as long as we're just skipping
|
428
|
+
// whitespace.
|
429
|
+
} while (token == Token::WHITESPACE);
|
430
|
+
|
431
|
+
next_.location.end_pos = source_pos();
|
432
|
+
next_.token = token;
|
433
|
+
}
|
434
|
+
|
435
|
+
|
436
|
+
void JavaScriptScanner::SeekForward(int pos) {
|
437
|
+
// After this call, we will have the token at the given position as
|
438
|
+
// the "next" token. The "current" token will be invalid.
|
439
|
+
if (pos == next_.location.beg_pos) return;
|
440
|
+
int current_pos = source_pos();
|
441
|
+
ASSERT_EQ(next_.location.end_pos, current_pos);
|
442
|
+
// Positions inside the lookahead token aren't supported.
|
443
|
+
ASSERT(pos >= current_pos);
|
444
|
+
if (pos != current_pos) {
|
445
|
+
source_->SeekForward(pos - source_->pos());
|
446
|
+
Advance();
|
447
|
+
// This function is only called to seek to the location
|
448
|
+
// of the end of a function (at the "}" token). It doesn't matter
|
449
|
+
// whether there was a line terminator in the part we skip.
|
450
|
+
has_line_terminator_before_next_ = false;
|
451
|
+
}
|
452
|
+
Scan();
|
453
|
+
}
|
454
|
+
|
455
|
+
|
456
|
+
void JavaScriptScanner::ScanEscape() {
|
457
|
+
uc32 c = c0_;
|
458
|
+
Advance();
|
459
|
+
|
460
|
+
// Skip escaped newlines.
|
461
|
+
if (unicode_cache_->IsLineTerminator(c)) {
|
462
|
+
// Allow CR+LF newlines in multiline string literals.
|
463
|
+
if (IsCarriageReturn(c) && IsLineFeed(c0_)) Advance();
|
464
|
+
// Allow LF+CR newlines in multiline string literals.
|
465
|
+
if (IsLineFeed(c) && IsCarriageReturn(c0_)) Advance();
|
466
|
+
return;
|
467
|
+
}
|
468
|
+
|
469
|
+
switch (c) {
|
470
|
+
case '\'': // fall through
|
471
|
+
case '"' : // fall through
|
472
|
+
case '\\': break;
|
473
|
+
case 'b' : c = '\b'; break;
|
474
|
+
case 'f' : c = '\f'; break;
|
475
|
+
case 'n' : c = '\n'; break;
|
476
|
+
case 'r' : c = '\r'; break;
|
477
|
+
case 't' : c = '\t'; break;
|
478
|
+
case 'u' : c = ScanHexEscape(c, 4); break;
|
479
|
+
case 'v' : c = '\v'; break;
|
480
|
+
case 'x' : c = ScanHexEscape(c, 2); break;
|
481
|
+
case '0' : // fall through
|
482
|
+
case '1' : // fall through
|
483
|
+
case '2' : // fall through
|
484
|
+
case '3' : // fall through
|
485
|
+
case '4' : // fall through
|
486
|
+
case '5' : // fall through
|
487
|
+
case '6' : // fall through
|
488
|
+
case '7' : c = ScanOctalEscape(c, 2); break;
|
489
|
+
}
|
490
|
+
|
491
|
+
// According to ECMA-262, 3rd, 7.8.4 (p 18ff) these
|
492
|
+
// should be illegal, but they are commonly handled
|
493
|
+
// as non-escaped characters by JS VMs.
|
494
|
+
AddLiteralChar(c);
|
495
|
+
}
|
496
|
+
|
497
|
+
|
498
|
+
// Octal escapes of the forms '\0xx' and '\xxx' are not a part of
|
499
|
+
// ECMA-262. Other JS VMs support them.
|
500
|
+
uc32 JavaScriptScanner::ScanOctalEscape(uc32 c, int length) {
|
501
|
+
uc32 x = c - '0';
|
502
|
+
int i = 0;
|
503
|
+
for (; i < length; i++) {
|
504
|
+
int d = c0_ - '0';
|
505
|
+
if (d < 0 || d > 7) break;
|
506
|
+
int nx = x * 8 + d;
|
507
|
+
if (nx >= 256) break;
|
508
|
+
x = nx;
|
509
|
+
Advance();
|
510
|
+
}
|
511
|
+
// Anything except '\0' is an octal escape sequence, illegal in strict mode.
|
512
|
+
// Remember the position of octal escape sequences so that an error
|
513
|
+
// can be reported later (in strict mode).
|
514
|
+
// We don't report the error immediately, because the octal escape can
|
515
|
+
// occur before the "use strict" directive.
|
516
|
+
if (c != '0' || i > 0) {
|
517
|
+
octal_pos_ = Location(source_pos() - i - 1, source_pos() - 1);
|
518
|
+
}
|
519
|
+
return x;
|
520
|
+
}
|
521
|
+
|
522
|
+
|
523
|
+
Token::Value JavaScriptScanner::ScanString() {
|
524
|
+
uc32 quote = c0_;
|
525
|
+
Advance(); // consume quote
|
526
|
+
|
527
|
+
LiteralScope literal(this);
|
528
|
+
while (c0_ != quote && c0_ >= 0
|
529
|
+
&& !unicode_cache_->IsLineTerminator(c0_)) {
|
530
|
+
uc32 c = c0_;
|
531
|
+
Advance();
|
532
|
+
if (c == '\\') {
|
533
|
+
if (c0_ < 0) return Token::ILLEGAL;
|
534
|
+
ScanEscape();
|
535
|
+
} else {
|
536
|
+
AddLiteralChar(c);
|
537
|
+
}
|
538
|
+
}
|
539
|
+
if (c0_ != quote) return Token::ILLEGAL;
|
540
|
+
literal.Complete();
|
541
|
+
|
542
|
+
Advance(); // consume quote
|
543
|
+
return Token::STRING;
|
544
|
+
}
|
545
|
+
|
546
|
+
|
547
|
+
void JavaScriptScanner::ScanDecimalDigits() {
|
548
|
+
while (IsDecimalDigit(c0_))
|
549
|
+
AddLiteralCharAdvance();
|
550
|
+
}
|
551
|
+
|
552
|
+
|
553
|
+
Token::Value JavaScriptScanner::ScanNumber(bool seen_period) {
|
554
|
+
ASSERT(IsDecimalDigit(c0_)); // the first digit of the number or the fraction
|
555
|
+
|
556
|
+
enum { DECIMAL, HEX, OCTAL } kind = DECIMAL;
|
557
|
+
|
558
|
+
LiteralScope literal(this);
|
559
|
+
if (seen_period) {
|
560
|
+
// we have already seen a decimal point of the float
|
561
|
+
AddLiteralChar('.');
|
562
|
+
ScanDecimalDigits(); // we know we have at least one digit
|
563
|
+
|
564
|
+
} else {
|
565
|
+
// if the first character is '0' we must check for octals and hex
|
566
|
+
if (c0_ == '0') {
|
567
|
+
int start_pos = source_pos(); // For reporting octal positions.
|
568
|
+
AddLiteralCharAdvance();
|
569
|
+
|
570
|
+
// either 0, 0exxx, 0Exxx, 0.xxx, an octal number, or a hex number
|
571
|
+
if (c0_ == 'x' || c0_ == 'X') {
|
572
|
+
// hex number
|
573
|
+
kind = HEX;
|
574
|
+
AddLiteralCharAdvance();
|
575
|
+
if (!IsHexDigit(c0_)) {
|
576
|
+
// we must have at least one hex digit after 'x'/'X'
|
577
|
+
return Token::ILLEGAL;
|
578
|
+
}
|
579
|
+
while (IsHexDigit(c0_)) {
|
580
|
+
AddLiteralCharAdvance();
|
581
|
+
}
|
582
|
+
} else if ('0' <= c0_ && c0_ <= '7') {
|
583
|
+
// (possible) octal number
|
584
|
+
kind = OCTAL;
|
585
|
+
while (true) {
|
586
|
+
if (c0_ == '8' || c0_ == '9') {
|
587
|
+
kind = DECIMAL;
|
588
|
+
break;
|
589
|
+
}
|
590
|
+
if (c0_ < '0' || '7' < c0_) {
|
591
|
+
// Octal literal finished.
|
592
|
+
octal_pos_ = Location(start_pos, source_pos());
|
593
|
+
break;
|
594
|
+
}
|
595
|
+
AddLiteralCharAdvance();
|
596
|
+
}
|
597
|
+
}
|
598
|
+
}
|
599
|
+
|
600
|
+
// Parse decimal digits and allow trailing fractional part.
|
601
|
+
if (kind == DECIMAL) {
|
602
|
+
ScanDecimalDigits(); // optional
|
603
|
+
if (c0_ == '.') {
|
604
|
+
AddLiteralCharAdvance();
|
605
|
+
ScanDecimalDigits(); // optional
|
606
|
+
}
|
607
|
+
}
|
608
|
+
}
|
609
|
+
|
610
|
+
// scan exponent, if any
|
611
|
+
if (c0_ == 'e' || c0_ == 'E') {
|
612
|
+
ASSERT(kind != HEX); // 'e'/'E' must be scanned as part of the hex number
|
613
|
+
if (kind == OCTAL) return Token::ILLEGAL; // no exponent for octals allowed
|
614
|
+
// scan exponent
|
615
|
+
AddLiteralCharAdvance();
|
616
|
+
if (c0_ == '+' || c0_ == '-')
|
617
|
+
AddLiteralCharAdvance();
|
618
|
+
if (!IsDecimalDigit(c0_)) {
|
619
|
+
// we must have at least one decimal digit after 'e'/'E'
|
620
|
+
return Token::ILLEGAL;
|
621
|
+
}
|
622
|
+
ScanDecimalDigits();
|
623
|
+
}
|
624
|
+
|
625
|
+
// The source character immediately following a numeric literal must
|
626
|
+
// not be an identifier start or a decimal digit; see ECMA-262
|
627
|
+
// section 7.8.3, page 17 (note that we read only one decimal digit
|
628
|
+
// if the value is 0).
|
629
|
+
if (IsDecimalDigit(c0_) || unicode_cache_->IsIdentifierStart(c0_))
|
630
|
+
return Token::ILLEGAL;
|
631
|
+
|
632
|
+
literal.Complete();
|
633
|
+
|
634
|
+
return Token::NUMBER;
|
635
|
+
}
|
636
|
+
|
637
|
+
|
638
|
+
uc32 JavaScriptScanner::ScanIdentifierUnicodeEscape() {
|
639
|
+
Advance();
|
640
|
+
if (c0_ != 'u') return unibrow::Utf8::kBadChar;
|
641
|
+
Advance();
|
642
|
+
uc32 c = ScanHexEscape('u', 4);
|
643
|
+
// We do not allow a unicode escape sequence to start another
|
644
|
+
// unicode escape sequence.
|
645
|
+
if (c == '\\') return unibrow::Utf8::kBadChar;
|
646
|
+
return c;
|
647
|
+
}
|
648
|
+
|
649
|
+
|
650
|
+
Token::Value JavaScriptScanner::ScanIdentifierOrKeyword() {
|
651
|
+
ASSERT(unicode_cache_->IsIdentifierStart(c0_));
|
652
|
+
LiteralScope literal(this);
|
653
|
+
KeywordMatcher keyword_match;
|
654
|
+
// Scan identifier start character.
|
655
|
+
if (c0_ == '\\') {
|
656
|
+
uc32 c = ScanIdentifierUnicodeEscape();
|
657
|
+
// Only allow legal identifier start characters.
|
658
|
+
if (!unicode_cache_->IsIdentifierStart(c)) return Token::ILLEGAL;
|
659
|
+
AddLiteralChar(c);
|
660
|
+
return ScanIdentifierSuffix(&literal);
|
661
|
+
}
|
662
|
+
|
663
|
+
uc32 first_char = c0_;
|
664
|
+
Advance();
|
665
|
+
AddLiteralChar(first_char);
|
666
|
+
if (!keyword_match.AddChar(first_char)) {
|
667
|
+
return ScanIdentifierSuffix(&literal);
|
668
|
+
}
|
669
|
+
|
670
|
+
// Scan the rest of the identifier characters.
|
671
|
+
while (unicode_cache_->IsIdentifierPart(c0_)) {
|
672
|
+
if (c0_ != '\\') {
|
673
|
+
uc32 next_char = c0_;
|
674
|
+
Advance();
|
675
|
+
AddLiteralChar(next_char);
|
676
|
+
if (keyword_match.AddChar(next_char)) continue;
|
677
|
+
}
|
678
|
+
// Fallthrough if no loner able to complete keyword.
|
679
|
+
return ScanIdentifierSuffix(&literal);
|
680
|
+
}
|
681
|
+
literal.Complete();
|
682
|
+
|
683
|
+
return keyword_match.token();
|
684
|
+
}
|
685
|
+
|
686
|
+
|
687
|
+
Token::Value JavaScriptScanner::ScanIdentifierSuffix(LiteralScope* literal) {
|
688
|
+
// Scan the rest of the identifier characters.
|
689
|
+
while (unicode_cache_->IsIdentifierPart(c0_)) {
|
690
|
+
if (c0_ == '\\') {
|
691
|
+
uc32 c = ScanIdentifierUnicodeEscape();
|
692
|
+
// Only allow legal identifier part characters.
|
693
|
+
if (!unicode_cache_->IsIdentifierPart(c)) return Token::ILLEGAL;
|
694
|
+
AddLiteralChar(c);
|
695
|
+
} else {
|
696
|
+
AddLiteralChar(c0_);
|
697
|
+
Advance();
|
698
|
+
}
|
699
|
+
}
|
700
|
+
literal->Complete();
|
701
|
+
|
702
|
+
return Token::IDENTIFIER;
|
703
|
+
}
|
704
|
+
|
705
|
+
|
706
|
+
bool JavaScriptScanner::ScanRegExpPattern(bool seen_equal) {
|
707
|
+
// Scan: ('/' | '/=') RegularExpressionBody '/' RegularExpressionFlags
|
708
|
+
bool in_character_class = false;
|
709
|
+
|
710
|
+
// Previous token is either '/' or '/=', in the second case, the
|
711
|
+
// pattern starts at =.
|
712
|
+
next_.location.beg_pos = source_pos() - (seen_equal ? 2 : 1);
|
713
|
+
next_.location.end_pos = source_pos() - (seen_equal ? 1 : 0);
|
714
|
+
|
715
|
+
// Scan regular expression body: According to ECMA-262, 3rd, 7.8.5,
|
716
|
+
// the scanner should pass uninterpreted bodies to the RegExp
|
717
|
+
// constructor.
|
718
|
+
LiteralScope literal(this);
|
719
|
+
if (seen_equal)
|
720
|
+
AddLiteralChar('=');
|
721
|
+
|
722
|
+
while (c0_ != '/' || in_character_class) {
|
723
|
+
if (unicode_cache_->IsLineTerminator(c0_) || c0_ < 0) return false;
|
724
|
+
if (c0_ == '\\') { // Escape sequence.
|
725
|
+
AddLiteralCharAdvance();
|
726
|
+
if (unicode_cache_->IsLineTerminator(c0_) || c0_ < 0) return false;
|
727
|
+
AddLiteralCharAdvance();
|
728
|
+
// If the escape allows more characters, i.e., \x??, \u????, or \c?,
|
729
|
+
// only "safe" characters are allowed (letters, digits, underscore),
|
730
|
+
// otherwise the escape isn't valid and the invalid character has
|
731
|
+
// its normal meaning. I.e., we can just continue scanning without
|
732
|
+
// worrying whether the following characters are part of the escape
|
733
|
+
// or not, since any '/', '\\' or '[' is guaranteed to not be part
|
734
|
+
// of the escape sequence.
|
735
|
+
|
736
|
+
// TODO(896): At some point, parse RegExps more throughly to capture
|
737
|
+
// octal esacpes in strict mode.
|
738
|
+
} else { // Unescaped character.
|
739
|
+
if (c0_ == '[') in_character_class = true;
|
740
|
+
if (c0_ == ']') in_character_class = false;
|
741
|
+
AddLiteralCharAdvance();
|
742
|
+
}
|
743
|
+
}
|
744
|
+
Advance(); // consume '/'
|
745
|
+
|
746
|
+
literal.Complete();
|
747
|
+
|
748
|
+
return true;
|
749
|
+
}
|
750
|
+
|
751
|
+
|
752
|
+
bool JavaScriptScanner::ScanRegExpFlags() {
|
753
|
+
// Scan regular expression flags.
|
754
|
+
LiteralScope literal(this);
|
755
|
+
while (unicode_cache_->IsIdentifierPart(c0_)) {
|
756
|
+
if (c0_ == '\\') {
|
757
|
+
uc32 c = ScanIdentifierUnicodeEscape();
|
758
|
+
if (c != static_cast<uc32>(unibrow::Utf8::kBadChar)) {
|
759
|
+
// We allow any escaped character, unlike the restriction on
|
760
|
+
// IdentifierPart when it is used to build an IdentifierName.
|
761
|
+
AddLiteralChar(c);
|
762
|
+
continue;
|
763
|
+
}
|
764
|
+
}
|
765
|
+
AddLiteralCharAdvance();
|
766
|
+
}
|
767
|
+
literal.Complete();
|
768
|
+
|
769
|
+
next_.location.end_pos = source_pos() - 1;
|
770
|
+
return true;
|
771
|
+
}
|
772
|
+
|
773
|
+
// ----------------------------------------------------------------------------
|
774
|
+
// Keyword Matcher
|
775
|
+
|
776
|
+
KeywordMatcher::FirstState KeywordMatcher::first_states_[] = {
|
777
|
+
{ "break", KEYWORD_PREFIX, Token::BREAK },
|
778
|
+
{ NULL, C, Token::ILLEGAL },
|
779
|
+
{ NULL, D, Token::ILLEGAL },
|
780
|
+
{ NULL, E, Token::ILLEGAL },
|
781
|
+
{ NULL, F, Token::ILLEGAL },
|
782
|
+
{ NULL, UNMATCHABLE, Token::ILLEGAL },
|
783
|
+
{ NULL, UNMATCHABLE, Token::ILLEGAL },
|
784
|
+
{ NULL, I, Token::ILLEGAL },
|
785
|
+
{ NULL, UNMATCHABLE, Token::ILLEGAL },
|
786
|
+
{ NULL, UNMATCHABLE, Token::ILLEGAL },
|
787
|
+
{ "let", KEYWORD_PREFIX, Token::FUTURE_RESERVED_WORD },
|
788
|
+
{ NULL, UNMATCHABLE, Token::ILLEGAL },
|
789
|
+
{ NULL, N, Token::ILLEGAL },
|
790
|
+
{ NULL, UNMATCHABLE, Token::ILLEGAL },
|
791
|
+
{ NULL, P, Token::ILLEGAL },
|
792
|
+
{ NULL, UNMATCHABLE, Token::ILLEGAL },
|
793
|
+
{ "return", KEYWORD_PREFIX, Token::RETURN },
|
794
|
+
{ NULL, S, Token::ILLEGAL },
|
795
|
+
{ NULL, T, Token::ILLEGAL },
|
796
|
+
{ NULL, UNMATCHABLE, Token::ILLEGAL },
|
797
|
+
{ NULL, V, Token::ILLEGAL },
|
798
|
+
{ NULL, W, Token::ILLEGAL },
|
799
|
+
{ NULL, UNMATCHABLE, Token::ILLEGAL },
|
800
|
+
{ "yield", KEYWORD_PREFIX, Token::FUTURE_RESERVED_WORD }
|
801
|
+
};
|
802
|
+
|
803
|
+
|
804
|
+
void KeywordMatcher::Step(unibrow::uchar input) {
|
805
|
+
switch (state_) {
|
806
|
+
case INITIAL: {
|
807
|
+
// matching the first character is the only state with significant fanout.
|
808
|
+
// Match only lower-case letters in range 'b'..'y'.
|
809
|
+
unsigned int offset = input - kFirstCharRangeMin;
|
810
|
+
if (offset < kFirstCharRangeLength) {
|
811
|
+
state_ = first_states_[offset].state;
|
812
|
+
if (state_ == KEYWORD_PREFIX) {
|
813
|
+
keyword_ = first_states_[offset].keyword;
|
814
|
+
counter_ = 1;
|
815
|
+
keyword_token_ = first_states_[offset].token;
|
816
|
+
}
|
817
|
+
return;
|
818
|
+
}
|
819
|
+
break;
|
820
|
+
}
|
821
|
+
case KEYWORD_PREFIX:
|
822
|
+
if (static_cast<unibrow::uchar>(keyword_[counter_]) == input) {
|
823
|
+
counter_++;
|
824
|
+
if (keyword_[counter_] == '\0') {
|
825
|
+
state_ = KEYWORD_MATCHED;
|
826
|
+
token_ = keyword_token_;
|
827
|
+
}
|
828
|
+
return;
|
829
|
+
}
|
830
|
+
break;
|
831
|
+
case KEYWORD_MATCHED:
|
832
|
+
token_ = Token::IDENTIFIER;
|
833
|
+
break;
|
834
|
+
case C:
|
835
|
+
if (MatchState(input, 'a', CA)) return;
|
836
|
+
if (MatchKeywordStart(input, "class", 1,
|
837
|
+
Token::FUTURE_RESERVED_WORD)) return;
|
838
|
+
if (MatchState(input, 'o', CO)) return;
|
839
|
+
break;
|
840
|
+
case CA:
|
841
|
+
if (MatchKeywordStart(input, "case", 2, Token::CASE)) return;
|
842
|
+
if (MatchKeywordStart(input, "catch", 2, Token::CATCH)) return;
|
843
|
+
break;
|
844
|
+
case CO:
|
845
|
+
if (MatchState(input, 'n', CON)) return;
|
846
|
+
break;
|
847
|
+
case CON:
|
848
|
+
if (MatchKeywordStart(input, "const", 3, Token::CONST)) return;
|
849
|
+
if (MatchKeywordStart(input, "continue", 3, Token::CONTINUE)) return;
|
850
|
+
break;
|
851
|
+
case D:
|
852
|
+
if (MatchState(input, 'e', DE)) return;
|
853
|
+
if (MatchKeyword(input, 'o', KEYWORD_MATCHED, Token::DO)) return;
|
854
|
+
break;
|
855
|
+
case DE:
|
856
|
+
if (MatchKeywordStart(input, "debugger", 2, Token::DEBUGGER)) return;
|
857
|
+
if (MatchKeywordStart(input, "default", 2, Token::DEFAULT)) return;
|
858
|
+
if (MatchKeywordStart(input, "delete", 2, Token::DELETE)) return;
|
859
|
+
break;
|
860
|
+
case E:
|
861
|
+
if (MatchKeywordStart(input, "else", 1, Token::ELSE)) return;
|
862
|
+
if (MatchKeywordStart(input, "enum", 1,
|
863
|
+
Token::FUTURE_RESERVED_WORD)) return;
|
864
|
+
if (MatchState(input, 'x', EX)) return;
|
865
|
+
break;
|
866
|
+
case EX:
|
867
|
+
if (MatchKeywordStart(input, "export", 2,
|
868
|
+
Token::FUTURE_RESERVED_WORD)) return;
|
869
|
+
if (MatchKeywordStart(input, "extends", 2,
|
870
|
+
Token::FUTURE_RESERVED_WORD)) return;
|
871
|
+
break;
|
872
|
+
case F:
|
873
|
+
if (MatchKeywordStart(input, "false", 1, Token::FALSE_LITERAL)) return;
|
874
|
+
if (MatchKeywordStart(input, "finally", 1, Token::FINALLY)) return;
|
875
|
+
if (MatchKeywordStart(input, "for", 1, Token::FOR)) return;
|
876
|
+
if (MatchKeywordStart(input, "function", 1, Token::FUNCTION)) return;
|
877
|
+
break;
|
878
|
+
case I:
|
879
|
+
if (MatchKeyword(input, 'f', KEYWORD_MATCHED, Token::IF)) return;
|
880
|
+
if (MatchState(input, 'm', IM)) return;
|
881
|
+
if (MatchKeyword(input, 'n', IN, Token::IN)) return;
|
882
|
+
break;
|
883
|
+
case IM:
|
884
|
+
if (MatchState(input, 'p', IMP)) return;
|
885
|
+
break;
|
886
|
+
case IMP:
|
887
|
+
if (MatchKeywordStart(input, "implements", 3,
|
888
|
+
Token::FUTURE_RESERVED_WORD )) return;
|
889
|
+
if (MatchKeywordStart(input, "import", 3,
|
890
|
+
Token::FUTURE_RESERVED_WORD)) return;
|
891
|
+
break;
|
892
|
+
case IN:
|
893
|
+
token_ = Token::IDENTIFIER;
|
894
|
+
if (MatchKeywordStart(input, "interface", 2,
|
895
|
+
Token::FUTURE_RESERVED_WORD)) return;
|
896
|
+
if (MatchKeywordStart(input, "instanceof", 2, Token::INSTANCEOF)) return;
|
897
|
+
break;
|
898
|
+
case N:
|
899
|
+
if (MatchKeywordStart(input, "native", 1, Token::NATIVE)) return;
|
900
|
+
if (MatchKeywordStart(input, "new", 1, Token::NEW)) return;
|
901
|
+
if (MatchKeywordStart(input, "null", 1, Token::NULL_LITERAL)) return;
|
902
|
+
break;
|
903
|
+
case P:
|
904
|
+
if (MatchKeywordStart(input, "package", 1,
|
905
|
+
Token::FUTURE_RESERVED_WORD)) return;
|
906
|
+
if (MatchState(input, 'r', PR)) return;
|
907
|
+
if (MatchKeywordStart(input, "public", 1,
|
908
|
+
Token::FUTURE_RESERVED_WORD)) return;
|
909
|
+
break;
|
910
|
+
case PR:
|
911
|
+
if (MatchKeywordStart(input, "private", 2,
|
912
|
+
Token::FUTURE_RESERVED_WORD)) return;
|
913
|
+
if (MatchKeywordStart(input, "protected", 2,
|
914
|
+
Token::FUTURE_RESERVED_WORD)) return;
|
915
|
+
break;
|
916
|
+
case S:
|
917
|
+
if (MatchKeywordStart(input, "static", 1,
|
918
|
+
Token::FUTURE_RESERVED_WORD)) return;
|
919
|
+
if (MatchKeywordStart(input, "super", 1,
|
920
|
+
Token::FUTURE_RESERVED_WORD)) return;
|
921
|
+
if (MatchKeywordStart(input, "switch", 1,
|
922
|
+
Token::SWITCH)) return;
|
923
|
+
break;
|
924
|
+
case T:
|
925
|
+
if (MatchState(input, 'h', TH)) return;
|
926
|
+
if (MatchState(input, 'r', TR)) return;
|
927
|
+
if (MatchKeywordStart(input, "typeof", 1, Token::TYPEOF)) return;
|
928
|
+
break;
|
929
|
+
case TH:
|
930
|
+
if (MatchKeywordStart(input, "this", 2, Token::THIS)) return;
|
931
|
+
if (MatchKeywordStart(input, "throw", 2, Token::THROW)) return;
|
932
|
+
break;
|
933
|
+
case TR:
|
934
|
+
if (MatchKeywordStart(input, "true", 2, Token::TRUE_LITERAL)) return;
|
935
|
+
if (MatchKeyword(input, 'y', KEYWORD_MATCHED, Token::TRY)) return;
|
936
|
+
break;
|
937
|
+
case V:
|
938
|
+
if (MatchKeywordStart(input, "var", 1, Token::VAR)) return;
|
939
|
+
if (MatchKeywordStart(input, "void", 1, Token::VOID)) return;
|
940
|
+
break;
|
941
|
+
case W:
|
942
|
+
if (MatchKeywordStart(input, "while", 1, Token::WHILE)) return;
|
943
|
+
if (MatchKeywordStart(input, "with", 1, Token::WITH)) return;
|
944
|
+
break;
|
945
|
+
case UNMATCHABLE:
|
946
|
+
break;
|
947
|
+
}
|
948
|
+
// On fallthrough, it's a failure.
|
949
|
+
state_ = UNMATCHABLE;
|
950
|
+
}
|
951
|
+
|
952
|
+
} } // namespace v8::internal
|