libv8-freebsd 3.3.10.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (703) hide show
  1. data/.gitignore +9 -0
  2. data/.gitmodules +3 -0
  3. data/Gemfile +4 -0
  4. data/README.md +75 -0
  5. data/Rakefile +115 -0
  6. data/ext/libv8/extconf.rb +27 -0
  7. data/lib/libv8.rb +15 -0
  8. data/lib/libv8/Makefile +39 -0
  9. data/lib/libv8/detect_cpu.rb +27 -0
  10. data/lib/libv8/fpic-on-freebsd-amd64.patch +16 -0
  11. data/lib/libv8/fpic-on-linux-amd64.patch +13 -0
  12. data/lib/libv8/scons/CHANGES.txt +5541 -0
  13. data/lib/libv8/scons/LICENSE.txt +20 -0
  14. data/lib/libv8/scons/MANIFEST +200 -0
  15. data/lib/libv8/scons/PKG-INFO +13 -0
  16. data/lib/libv8/scons/README.txt +243 -0
  17. data/lib/libv8/scons/RELEASE.txt +100 -0
  18. data/lib/libv8/scons/engine/SCons/Action.py +1257 -0
  19. data/lib/libv8/scons/engine/SCons/Builder.py +877 -0
  20. data/lib/libv8/scons/engine/SCons/CacheDir.py +216 -0
  21. data/lib/libv8/scons/engine/SCons/Conftest.py +793 -0
  22. data/lib/libv8/scons/engine/SCons/Debug.py +220 -0
  23. data/lib/libv8/scons/engine/SCons/Defaults.py +494 -0
  24. data/lib/libv8/scons/engine/SCons/Environment.py +2417 -0
  25. data/lib/libv8/scons/engine/SCons/Errors.py +205 -0
  26. data/lib/libv8/scons/engine/SCons/Executor.py +633 -0
  27. data/lib/libv8/scons/engine/SCons/Job.py +435 -0
  28. data/lib/libv8/scons/engine/SCons/Memoize.py +244 -0
  29. data/lib/libv8/scons/engine/SCons/Node/Alias.py +152 -0
  30. data/lib/libv8/scons/engine/SCons/Node/FS.py +3302 -0
  31. data/lib/libv8/scons/engine/SCons/Node/Python.py +128 -0
  32. data/lib/libv8/scons/engine/SCons/Node/__init__.py +1329 -0
  33. data/lib/libv8/scons/engine/SCons/Options/BoolOption.py +50 -0
  34. data/lib/libv8/scons/engine/SCons/Options/EnumOption.py +50 -0
  35. data/lib/libv8/scons/engine/SCons/Options/ListOption.py +50 -0
  36. data/lib/libv8/scons/engine/SCons/Options/PackageOption.py +50 -0
  37. data/lib/libv8/scons/engine/SCons/Options/PathOption.py +76 -0
  38. data/lib/libv8/scons/engine/SCons/Options/__init__.py +67 -0
  39. data/lib/libv8/scons/engine/SCons/PathList.py +231 -0
  40. data/lib/libv8/scons/engine/SCons/Platform/__init__.py +241 -0
  41. data/lib/libv8/scons/engine/SCons/Platform/aix.py +69 -0
  42. data/lib/libv8/scons/engine/SCons/Platform/cygwin.py +55 -0
  43. data/lib/libv8/scons/engine/SCons/Platform/darwin.py +70 -0
  44. data/lib/libv8/scons/engine/SCons/Platform/hpux.py +46 -0
  45. data/lib/libv8/scons/engine/SCons/Platform/irix.py +44 -0
  46. data/lib/libv8/scons/engine/SCons/Platform/os2.py +58 -0
  47. data/lib/libv8/scons/engine/SCons/Platform/posix.py +263 -0
  48. data/lib/libv8/scons/engine/SCons/Platform/sunos.py +50 -0
  49. data/lib/libv8/scons/engine/SCons/Platform/win32.py +385 -0
  50. data/lib/libv8/scons/engine/SCons/SConf.py +1030 -0
  51. data/lib/libv8/scons/engine/SCons/SConsign.py +389 -0
  52. data/lib/libv8/scons/engine/SCons/Scanner/C.py +132 -0
  53. data/lib/libv8/scons/engine/SCons/Scanner/D.py +73 -0
  54. data/lib/libv8/scons/engine/SCons/Scanner/Dir.py +109 -0
  55. data/lib/libv8/scons/engine/SCons/Scanner/Fortran.py +316 -0
  56. data/lib/libv8/scons/engine/SCons/Scanner/IDL.py +48 -0
  57. data/lib/libv8/scons/engine/SCons/Scanner/LaTeX.py +387 -0
  58. data/lib/libv8/scons/engine/SCons/Scanner/Prog.py +101 -0
  59. data/lib/libv8/scons/engine/SCons/Scanner/RC.py +55 -0
  60. data/lib/libv8/scons/engine/SCons/Scanner/__init__.py +413 -0
  61. data/lib/libv8/scons/engine/SCons/Script/Interactive.py +384 -0
  62. data/lib/libv8/scons/engine/SCons/Script/Main.py +1405 -0
  63. data/lib/libv8/scons/engine/SCons/Script/SConsOptions.py +939 -0
  64. data/lib/libv8/scons/engine/SCons/Script/SConscript.py +640 -0
  65. data/lib/libv8/scons/engine/SCons/Script/__init__.py +412 -0
  66. data/lib/libv8/scons/engine/SCons/Sig.py +63 -0
  67. data/lib/libv8/scons/engine/SCons/Subst.py +904 -0
  68. data/lib/libv8/scons/engine/SCons/Taskmaster.py +1025 -0
  69. data/lib/libv8/scons/engine/SCons/Tool/386asm.py +61 -0
  70. data/lib/libv8/scons/engine/SCons/Tool/BitKeeper.py +67 -0
  71. data/lib/libv8/scons/engine/SCons/Tool/CVS.py +73 -0
  72. data/lib/libv8/scons/engine/SCons/Tool/FortranCommon.py +263 -0
  73. data/lib/libv8/scons/engine/SCons/Tool/JavaCommon.py +323 -0
  74. data/lib/libv8/scons/engine/SCons/Tool/MSCommon/__init__.py +56 -0
  75. data/lib/libv8/scons/engine/SCons/Tool/MSCommon/arch.py +61 -0
  76. data/lib/libv8/scons/engine/SCons/Tool/MSCommon/common.py +240 -0
  77. data/lib/libv8/scons/engine/SCons/Tool/MSCommon/netframework.py +82 -0
  78. data/lib/libv8/scons/engine/SCons/Tool/MSCommon/sdk.py +391 -0
  79. data/lib/libv8/scons/engine/SCons/Tool/MSCommon/vc.py +459 -0
  80. data/lib/libv8/scons/engine/SCons/Tool/MSCommon/vs.py +526 -0
  81. data/lib/libv8/scons/engine/SCons/Tool/Perforce.py +103 -0
  82. data/lib/libv8/scons/engine/SCons/Tool/PharLapCommon.py +137 -0
  83. data/lib/libv8/scons/engine/SCons/Tool/RCS.py +64 -0
  84. data/lib/libv8/scons/engine/SCons/Tool/SCCS.py +64 -0
  85. data/lib/libv8/scons/engine/SCons/Tool/Subversion.py +71 -0
  86. data/lib/libv8/scons/engine/SCons/Tool/__init__.py +681 -0
  87. data/lib/libv8/scons/engine/SCons/Tool/aixc++.py +82 -0
  88. data/lib/libv8/scons/engine/SCons/Tool/aixcc.py +74 -0
  89. data/lib/libv8/scons/engine/SCons/Tool/aixf77.py +80 -0
  90. data/lib/libv8/scons/engine/SCons/Tool/aixlink.py +76 -0
  91. data/lib/libv8/scons/engine/SCons/Tool/applelink.py +71 -0
  92. data/lib/libv8/scons/engine/SCons/Tool/ar.py +63 -0
  93. data/lib/libv8/scons/engine/SCons/Tool/as.py +78 -0
  94. data/lib/libv8/scons/engine/SCons/Tool/bcc32.py +81 -0
  95. data/lib/libv8/scons/engine/SCons/Tool/c++.py +99 -0
  96. data/lib/libv8/scons/engine/SCons/Tool/cc.py +102 -0
  97. data/lib/libv8/scons/engine/SCons/Tool/cvf.py +58 -0
  98. data/lib/libv8/scons/engine/SCons/Tool/default.py +50 -0
  99. data/lib/libv8/scons/engine/SCons/Tool/dmd.py +240 -0
  100. data/lib/libv8/scons/engine/SCons/Tool/dvi.py +64 -0
  101. data/lib/libv8/scons/engine/SCons/Tool/dvipdf.py +125 -0
  102. data/lib/libv8/scons/engine/SCons/Tool/dvips.py +95 -0
  103. data/lib/libv8/scons/engine/SCons/Tool/f03.py +63 -0
  104. data/lib/libv8/scons/engine/SCons/Tool/f77.py +62 -0
  105. data/lib/libv8/scons/engine/SCons/Tool/f90.py +62 -0
  106. data/lib/libv8/scons/engine/SCons/Tool/f95.py +63 -0
  107. data/lib/libv8/scons/engine/SCons/Tool/filesystem.py +98 -0
  108. data/lib/libv8/scons/engine/SCons/Tool/fortran.py +62 -0
  109. data/lib/libv8/scons/engine/SCons/Tool/g++.py +90 -0
  110. data/lib/libv8/scons/engine/SCons/Tool/g77.py +73 -0
  111. data/lib/libv8/scons/engine/SCons/Tool/gas.py +53 -0
  112. data/lib/libv8/scons/engine/SCons/Tool/gcc.py +80 -0
  113. data/lib/libv8/scons/engine/SCons/Tool/gfortran.py +64 -0
  114. data/lib/libv8/scons/engine/SCons/Tool/gnulink.py +62 -0
  115. data/lib/libv8/scons/engine/SCons/Tool/gs.py +81 -0
  116. data/lib/libv8/scons/engine/SCons/Tool/hpc++.py +84 -0
  117. data/lib/libv8/scons/engine/SCons/Tool/hpcc.py +53 -0
  118. data/lib/libv8/scons/engine/SCons/Tool/hplink.py +77 -0
  119. data/lib/libv8/scons/engine/SCons/Tool/icc.py +59 -0
  120. data/lib/libv8/scons/engine/SCons/Tool/icl.py +52 -0
  121. data/lib/libv8/scons/engine/SCons/Tool/ifl.py +72 -0
  122. data/lib/libv8/scons/engine/SCons/Tool/ifort.py +88 -0
  123. data/lib/libv8/scons/engine/SCons/Tool/ilink.py +59 -0
  124. data/lib/libv8/scons/engine/SCons/Tool/ilink32.py +60 -0
  125. data/lib/libv8/scons/engine/SCons/Tool/install.py +283 -0
  126. data/lib/libv8/scons/engine/SCons/Tool/intelc.py +522 -0
  127. data/lib/libv8/scons/engine/SCons/Tool/ipkg.py +67 -0
  128. data/lib/libv8/scons/engine/SCons/Tool/jar.py +116 -0
  129. data/lib/libv8/scons/engine/SCons/Tool/javac.py +230 -0
  130. data/lib/libv8/scons/engine/SCons/Tool/javah.py +137 -0
  131. data/lib/libv8/scons/engine/SCons/Tool/latex.py +80 -0
  132. data/lib/libv8/scons/engine/SCons/Tool/lex.py +97 -0
  133. data/lib/libv8/scons/engine/SCons/Tool/link.py +122 -0
  134. data/lib/libv8/scons/engine/SCons/Tool/linkloc.py +112 -0
  135. data/lib/libv8/scons/engine/SCons/Tool/m4.py +63 -0
  136. data/lib/libv8/scons/engine/SCons/Tool/masm.py +77 -0
  137. data/lib/libv8/scons/engine/SCons/Tool/midl.py +88 -0
  138. data/lib/libv8/scons/engine/SCons/Tool/mingw.py +179 -0
  139. data/lib/libv8/scons/engine/SCons/Tool/mslib.py +64 -0
  140. data/lib/libv8/scons/engine/SCons/Tool/mslink.py +318 -0
  141. data/lib/libv8/scons/engine/SCons/Tool/mssdk.py +50 -0
  142. data/lib/libv8/scons/engine/SCons/Tool/msvc.py +278 -0
  143. data/lib/libv8/scons/engine/SCons/Tool/msvs.py +1806 -0
  144. data/lib/libv8/scons/engine/SCons/Tool/mwcc.py +207 -0
  145. data/lib/libv8/scons/engine/SCons/Tool/mwld.py +107 -0
  146. data/lib/libv8/scons/engine/SCons/Tool/nasm.py +72 -0
  147. data/lib/libv8/scons/engine/SCons/Tool/packaging/__init__.py +312 -0
  148. data/lib/libv8/scons/engine/SCons/Tool/packaging/ipk.py +185 -0
  149. data/lib/libv8/scons/engine/SCons/Tool/packaging/msi.py +527 -0
  150. data/lib/libv8/scons/engine/SCons/Tool/packaging/rpm.py +365 -0
  151. data/lib/libv8/scons/engine/SCons/Tool/packaging/src_tarbz2.py +43 -0
  152. data/lib/libv8/scons/engine/SCons/Tool/packaging/src_targz.py +43 -0
  153. data/lib/libv8/scons/engine/SCons/Tool/packaging/src_zip.py +43 -0
  154. data/lib/libv8/scons/engine/SCons/Tool/packaging/tarbz2.py +44 -0
  155. data/lib/libv8/scons/engine/SCons/Tool/packaging/targz.py +44 -0
  156. data/lib/libv8/scons/engine/SCons/Tool/packaging/zip.py +44 -0
  157. data/lib/libv8/scons/engine/SCons/Tool/pdf.py +78 -0
  158. data/lib/libv8/scons/engine/SCons/Tool/pdflatex.py +84 -0
  159. data/lib/libv8/scons/engine/SCons/Tool/pdftex.py +109 -0
  160. data/lib/libv8/scons/engine/SCons/Tool/qt.py +336 -0
  161. data/lib/libv8/scons/engine/SCons/Tool/rmic.py +126 -0
  162. data/lib/libv8/scons/engine/SCons/Tool/rpcgen.py +70 -0
  163. data/lib/libv8/scons/engine/SCons/Tool/rpm.py +132 -0
  164. data/lib/libv8/scons/engine/SCons/Tool/sgiar.py +68 -0
  165. data/lib/libv8/scons/engine/SCons/Tool/sgic++.py +58 -0
  166. data/lib/libv8/scons/engine/SCons/Tool/sgicc.py +53 -0
  167. data/lib/libv8/scons/engine/SCons/Tool/sgilink.py +62 -0
  168. data/lib/libv8/scons/engine/SCons/Tool/sunar.py +67 -0
  169. data/lib/libv8/scons/engine/SCons/Tool/sunc++.py +142 -0
  170. data/lib/libv8/scons/engine/SCons/Tool/suncc.py +58 -0
  171. data/lib/libv8/scons/engine/SCons/Tool/sunf77.py +63 -0
  172. data/lib/libv8/scons/engine/SCons/Tool/sunf90.py +64 -0
  173. data/lib/libv8/scons/engine/SCons/Tool/sunf95.py +64 -0
  174. data/lib/libv8/scons/engine/SCons/Tool/sunlink.py +76 -0
  175. data/lib/libv8/scons/engine/SCons/Tool/swig.py +183 -0
  176. data/lib/libv8/scons/engine/SCons/Tool/tar.py +73 -0
  177. data/lib/libv8/scons/engine/SCons/Tool/tex.py +866 -0
  178. data/lib/libv8/scons/engine/SCons/Tool/textfile.py +175 -0
  179. data/lib/libv8/scons/engine/SCons/Tool/tlib.py +53 -0
  180. data/lib/libv8/scons/engine/SCons/Tool/wix.py +99 -0
  181. data/lib/libv8/scons/engine/SCons/Tool/yacc.py +140 -0
  182. data/lib/libv8/scons/engine/SCons/Tool/zip.py +99 -0
  183. data/lib/libv8/scons/engine/SCons/Util.py +1492 -0
  184. data/lib/libv8/scons/engine/SCons/Variables/BoolVariable.py +89 -0
  185. data/lib/libv8/scons/engine/SCons/Variables/EnumVariable.py +103 -0
  186. data/lib/libv8/scons/engine/SCons/Variables/ListVariable.py +135 -0
  187. data/lib/libv8/scons/engine/SCons/Variables/PackageVariable.py +106 -0
  188. data/lib/libv8/scons/engine/SCons/Variables/PathVariable.py +147 -0
  189. data/lib/libv8/scons/engine/SCons/Variables/__init__.py +312 -0
  190. data/lib/libv8/scons/engine/SCons/Warnings.py +246 -0
  191. data/lib/libv8/scons/engine/SCons/__init__.py +49 -0
  192. data/lib/libv8/scons/engine/SCons/compat/__init__.py +237 -0
  193. data/lib/libv8/scons/engine/SCons/compat/_scons_builtins.py +150 -0
  194. data/lib/libv8/scons/engine/SCons/compat/_scons_collections.py +45 -0
  195. data/lib/libv8/scons/engine/SCons/compat/_scons_dbm.py +45 -0
  196. data/lib/libv8/scons/engine/SCons/compat/_scons_hashlib.py +76 -0
  197. data/lib/libv8/scons/engine/SCons/compat/_scons_io.py +45 -0
  198. data/lib/libv8/scons/engine/SCons/compat/_scons_sets.py +563 -0
  199. data/lib/libv8/scons/engine/SCons/compat/_scons_subprocess.py +1281 -0
  200. data/lib/libv8/scons/engine/SCons/cpp.py +589 -0
  201. data/lib/libv8/scons/engine/SCons/dblite.py +254 -0
  202. data/lib/libv8/scons/engine/SCons/exitfuncs.py +77 -0
  203. data/lib/libv8/scons/os_spawnv_fix.diff +83 -0
  204. data/lib/libv8/scons/scons-time.1 +1017 -0
  205. data/lib/libv8/scons/scons.1 +15225 -0
  206. data/lib/libv8/scons/sconsign.1 +208 -0
  207. data/lib/libv8/scons/script/scons +196 -0
  208. data/lib/libv8/scons/script/scons-time +1544 -0
  209. data/lib/libv8/scons/script/scons.bat +34 -0
  210. data/lib/libv8/scons/script/sconsign +514 -0
  211. data/lib/libv8/scons/setup.cfg +5 -0
  212. data/lib/libv8/scons/setup.py +423 -0
  213. data/lib/libv8/v8/.gitignore +35 -0
  214. data/lib/libv8/v8/AUTHORS +44 -0
  215. data/lib/libv8/v8/ChangeLog +2839 -0
  216. data/lib/libv8/v8/LICENSE +52 -0
  217. data/lib/libv8/v8/LICENSE.strongtalk +29 -0
  218. data/lib/libv8/v8/LICENSE.v8 +26 -0
  219. data/lib/libv8/v8/LICENSE.valgrind +45 -0
  220. data/lib/libv8/v8/SConstruct +1478 -0
  221. data/lib/libv8/v8/build/README.txt +49 -0
  222. data/lib/libv8/v8/build/all.gyp +18 -0
  223. data/lib/libv8/v8/build/armu.gypi +32 -0
  224. data/lib/libv8/v8/build/common.gypi +144 -0
  225. data/lib/libv8/v8/build/gyp_v8 +145 -0
  226. data/lib/libv8/v8/include/v8-debug.h +395 -0
  227. data/lib/libv8/v8/include/v8-preparser.h +117 -0
  228. data/lib/libv8/v8/include/v8-profiler.h +505 -0
  229. data/lib/libv8/v8/include/v8-testing.h +104 -0
  230. data/lib/libv8/v8/include/v8.h +4124 -0
  231. data/lib/libv8/v8/include/v8stdint.h +53 -0
  232. data/lib/libv8/v8/preparser/SConscript +38 -0
  233. data/lib/libv8/v8/preparser/preparser-process.cc +379 -0
  234. data/lib/libv8/v8/src/SConscript +368 -0
  235. data/lib/libv8/v8/src/accessors.cc +767 -0
  236. data/lib/libv8/v8/src/accessors.h +123 -0
  237. data/lib/libv8/v8/src/allocation-inl.h +49 -0
  238. data/lib/libv8/v8/src/allocation.cc +122 -0
  239. data/lib/libv8/v8/src/allocation.h +143 -0
  240. data/lib/libv8/v8/src/api.cc +5845 -0
  241. data/lib/libv8/v8/src/api.h +574 -0
  242. data/lib/libv8/v8/src/apinatives.js +110 -0
  243. data/lib/libv8/v8/src/apiutils.h +73 -0
  244. data/lib/libv8/v8/src/arguments.h +118 -0
  245. data/lib/libv8/v8/src/arm/assembler-arm-inl.h +353 -0
  246. data/lib/libv8/v8/src/arm/assembler-arm.cc +2661 -0
  247. data/lib/libv8/v8/src/arm/assembler-arm.h +1375 -0
  248. data/lib/libv8/v8/src/arm/builtins-arm.cc +1658 -0
  249. data/lib/libv8/v8/src/arm/code-stubs-arm.cc +6398 -0
  250. data/lib/libv8/v8/src/arm/code-stubs-arm.h +673 -0
  251. data/lib/libv8/v8/src/arm/codegen-arm.cc +52 -0
  252. data/lib/libv8/v8/src/arm/codegen-arm.h +91 -0
  253. data/lib/libv8/v8/src/arm/constants-arm.cc +152 -0
  254. data/lib/libv8/v8/src/arm/constants-arm.h +775 -0
  255. data/lib/libv8/v8/src/arm/cpu-arm.cc +120 -0
  256. data/lib/libv8/v8/src/arm/debug-arm.cc +317 -0
  257. data/lib/libv8/v8/src/arm/deoptimizer-arm.cc +754 -0
  258. data/lib/libv8/v8/src/arm/disasm-arm.cc +1506 -0
  259. data/lib/libv8/v8/src/arm/frames-arm.cc +45 -0
  260. data/lib/libv8/v8/src/arm/frames-arm.h +168 -0
  261. data/lib/libv8/v8/src/arm/full-codegen-arm.cc +4375 -0
  262. data/lib/libv8/v8/src/arm/ic-arm.cc +1562 -0
  263. data/lib/libv8/v8/src/arm/lithium-arm.cc +2206 -0
  264. data/lib/libv8/v8/src/arm/lithium-arm.h +2348 -0
  265. data/lib/libv8/v8/src/arm/lithium-codegen-arm.cc +4526 -0
  266. data/lib/libv8/v8/src/arm/lithium-codegen-arm.h +403 -0
  267. data/lib/libv8/v8/src/arm/lithium-gap-resolver-arm.cc +305 -0
  268. data/lib/libv8/v8/src/arm/lithium-gap-resolver-arm.h +84 -0
  269. data/lib/libv8/v8/src/arm/macro-assembler-arm.cc +3163 -0
  270. data/lib/libv8/v8/src/arm/macro-assembler-arm.h +1126 -0
  271. data/lib/libv8/v8/src/arm/regexp-macro-assembler-arm.cc +1287 -0
  272. data/lib/libv8/v8/src/arm/regexp-macro-assembler-arm.h +253 -0
  273. data/lib/libv8/v8/src/arm/simulator-arm.cc +3424 -0
  274. data/lib/libv8/v8/src/arm/simulator-arm.h +431 -0
  275. data/lib/libv8/v8/src/arm/stub-cache-arm.cc +4243 -0
  276. data/lib/libv8/v8/src/array.js +1366 -0
  277. data/lib/libv8/v8/src/assembler.cc +1207 -0
  278. data/lib/libv8/v8/src/assembler.h +858 -0
  279. data/lib/libv8/v8/src/ast-inl.h +112 -0
  280. data/lib/libv8/v8/src/ast.cc +1146 -0
  281. data/lib/libv8/v8/src/ast.h +2188 -0
  282. data/lib/libv8/v8/src/atomicops.h +167 -0
  283. data/lib/libv8/v8/src/atomicops_internals_arm_gcc.h +145 -0
  284. data/lib/libv8/v8/src/atomicops_internals_mips_gcc.h +169 -0
  285. data/lib/libv8/v8/src/atomicops_internals_x86_gcc.cc +133 -0
  286. data/lib/libv8/v8/src/atomicops_internals_x86_gcc.h +287 -0
  287. data/lib/libv8/v8/src/atomicops_internals_x86_macosx.h +301 -0
  288. data/lib/libv8/v8/src/atomicops_internals_x86_msvc.h +203 -0
  289. data/lib/libv8/v8/src/bignum-dtoa.cc +655 -0
  290. data/lib/libv8/v8/src/bignum-dtoa.h +81 -0
  291. data/lib/libv8/v8/src/bignum.cc +768 -0
  292. data/lib/libv8/v8/src/bignum.h +140 -0
  293. data/lib/libv8/v8/src/bootstrapper.cc +2184 -0
  294. data/lib/libv8/v8/src/bootstrapper.h +188 -0
  295. data/lib/libv8/v8/src/builtins.cc +1707 -0
  296. data/lib/libv8/v8/src/builtins.h +371 -0
  297. data/lib/libv8/v8/src/bytecodes-irregexp.h +105 -0
  298. data/lib/libv8/v8/src/cached-powers.cc +177 -0
  299. data/lib/libv8/v8/src/cached-powers.h +65 -0
  300. data/lib/libv8/v8/src/char-predicates-inl.h +94 -0
  301. data/lib/libv8/v8/src/char-predicates.h +67 -0
  302. data/lib/libv8/v8/src/checks.cc +110 -0
  303. data/lib/libv8/v8/src/checks.h +296 -0
  304. data/lib/libv8/v8/src/circular-queue-inl.h +53 -0
  305. data/lib/libv8/v8/src/circular-queue.cc +122 -0
  306. data/lib/libv8/v8/src/circular-queue.h +103 -0
  307. data/lib/libv8/v8/src/code-stubs.cc +267 -0
  308. data/lib/libv8/v8/src/code-stubs.h +1011 -0
  309. data/lib/libv8/v8/src/code.h +70 -0
  310. data/lib/libv8/v8/src/codegen.cc +231 -0
  311. data/lib/libv8/v8/src/codegen.h +84 -0
  312. data/lib/libv8/v8/src/compilation-cache.cc +540 -0
  313. data/lib/libv8/v8/src/compilation-cache.h +287 -0
  314. data/lib/libv8/v8/src/compiler.cc +786 -0
  315. data/lib/libv8/v8/src/compiler.h +312 -0
  316. data/lib/libv8/v8/src/contexts.cc +347 -0
  317. data/lib/libv8/v8/src/contexts.h +391 -0
  318. data/lib/libv8/v8/src/conversions-inl.h +106 -0
  319. data/lib/libv8/v8/src/conversions.cc +1131 -0
  320. data/lib/libv8/v8/src/conversions.h +135 -0
  321. data/lib/libv8/v8/src/counters.cc +93 -0
  322. data/lib/libv8/v8/src/counters.h +254 -0
  323. data/lib/libv8/v8/src/cpu-profiler-inl.h +101 -0
  324. data/lib/libv8/v8/src/cpu-profiler.cc +609 -0
  325. data/lib/libv8/v8/src/cpu-profiler.h +302 -0
  326. data/lib/libv8/v8/src/cpu.h +69 -0
  327. data/lib/libv8/v8/src/d8-debug.cc +367 -0
  328. data/lib/libv8/v8/src/d8-debug.h +158 -0
  329. data/lib/libv8/v8/src/d8-posix.cc +695 -0
  330. data/lib/libv8/v8/src/d8-readline.cc +130 -0
  331. data/lib/libv8/v8/src/d8-windows.cc +42 -0
  332. data/lib/libv8/v8/src/d8.cc +803 -0
  333. data/lib/libv8/v8/src/d8.gyp +91 -0
  334. data/lib/libv8/v8/src/d8.h +235 -0
  335. data/lib/libv8/v8/src/d8.js +2798 -0
  336. data/lib/libv8/v8/src/data-flow.cc +66 -0
  337. data/lib/libv8/v8/src/data-flow.h +205 -0
  338. data/lib/libv8/v8/src/date.js +1103 -0
  339. data/lib/libv8/v8/src/dateparser-inl.h +127 -0
  340. data/lib/libv8/v8/src/dateparser.cc +178 -0
  341. data/lib/libv8/v8/src/dateparser.h +266 -0
  342. data/lib/libv8/v8/src/debug-agent.cc +447 -0
  343. data/lib/libv8/v8/src/debug-agent.h +129 -0
  344. data/lib/libv8/v8/src/debug-debugger.js +2569 -0
  345. data/lib/libv8/v8/src/debug.cc +3165 -0
  346. data/lib/libv8/v8/src/debug.h +1057 -0
  347. data/lib/libv8/v8/src/deoptimizer.cc +1256 -0
  348. data/lib/libv8/v8/src/deoptimizer.h +602 -0
  349. data/lib/libv8/v8/src/disasm.h +80 -0
  350. data/lib/libv8/v8/src/disassembler.cc +343 -0
  351. data/lib/libv8/v8/src/disassembler.h +58 -0
  352. data/lib/libv8/v8/src/diy-fp.cc +58 -0
  353. data/lib/libv8/v8/src/diy-fp.h +117 -0
  354. data/lib/libv8/v8/src/double.h +238 -0
  355. data/lib/libv8/v8/src/dtoa.cc +103 -0
  356. data/lib/libv8/v8/src/dtoa.h +85 -0
  357. data/lib/libv8/v8/src/execution.cc +849 -0
  358. data/lib/libv8/v8/src/execution.h +297 -0
  359. data/lib/libv8/v8/src/extensions/experimental/break-iterator.cc +250 -0
  360. data/lib/libv8/v8/src/extensions/experimental/break-iterator.h +89 -0
  361. data/lib/libv8/v8/src/extensions/experimental/collator.cc +218 -0
  362. data/lib/libv8/v8/src/extensions/experimental/collator.h +69 -0
  363. data/lib/libv8/v8/src/extensions/experimental/experimental.gyp +94 -0
  364. data/lib/libv8/v8/src/extensions/experimental/i18n-extension.cc +78 -0
  365. data/lib/libv8/v8/src/extensions/experimental/i18n-extension.h +54 -0
  366. data/lib/libv8/v8/src/extensions/experimental/i18n-locale.cc +112 -0
  367. data/lib/libv8/v8/src/extensions/experimental/i18n-locale.h +60 -0
  368. data/lib/libv8/v8/src/extensions/experimental/i18n-utils.cc +43 -0
  369. data/lib/libv8/v8/src/extensions/experimental/i18n-utils.h +49 -0
  370. data/lib/libv8/v8/src/extensions/experimental/i18n.js +180 -0
  371. data/lib/libv8/v8/src/extensions/experimental/language-matcher.cc +251 -0
  372. data/lib/libv8/v8/src/extensions/experimental/language-matcher.h +95 -0
  373. data/lib/libv8/v8/src/extensions/externalize-string-extension.cc +141 -0
  374. data/lib/libv8/v8/src/extensions/externalize-string-extension.h +50 -0
  375. data/lib/libv8/v8/src/extensions/gc-extension.cc +58 -0
  376. data/lib/libv8/v8/src/extensions/gc-extension.h +49 -0
  377. data/lib/libv8/v8/src/factory.cc +1222 -0
  378. data/lib/libv8/v8/src/factory.h +442 -0
  379. data/lib/libv8/v8/src/fast-dtoa.cc +736 -0
  380. data/lib/libv8/v8/src/fast-dtoa.h +83 -0
  381. data/lib/libv8/v8/src/fixed-dtoa.cc +405 -0
  382. data/lib/libv8/v8/src/fixed-dtoa.h +55 -0
  383. data/lib/libv8/v8/src/flag-definitions.h +560 -0
  384. data/lib/libv8/v8/src/flags.cc +551 -0
  385. data/lib/libv8/v8/src/flags.h +79 -0
  386. data/lib/libv8/v8/src/frames-inl.h +247 -0
  387. data/lib/libv8/v8/src/frames.cc +1243 -0
  388. data/lib/libv8/v8/src/frames.h +870 -0
  389. data/lib/libv8/v8/src/full-codegen.cc +1374 -0
  390. data/lib/libv8/v8/src/full-codegen.h +771 -0
  391. data/lib/libv8/v8/src/func-name-inferrer.cc +92 -0
  392. data/lib/libv8/v8/src/func-name-inferrer.h +111 -0
  393. data/lib/libv8/v8/src/gdb-jit.cc +1555 -0
  394. data/lib/libv8/v8/src/gdb-jit.h +143 -0
  395. data/lib/libv8/v8/src/global-handles.cc +665 -0
  396. data/lib/libv8/v8/src/global-handles.h +284 -0
  397. data/lib/libv8/v8/src/globals.h +325 -0
  398. data/lib/libv8/v8/src/handles-inl.h +177 -0
  399. data/lib/libv8/v8/src/handles.cc +987 -0
  400. data/lib/libv8/v8/src/handles.h +382 -0
  401. data/lib/libv8/v8/src/hashmap.cc +230 -0
  402. data/lib/libv8/v8/src/hashmap.h +123 -0
  403. data/lib/libv8/v8/src/heap-inl.h +704 -0
  404. data/lib/libv8/v8/src/heap-profiler.cc +1173 -0
  405. data/lib/libv8/v8/src/heap-profiler.h +397 -0
  406. data/lib/libv8/v8/src/heap.cc +5930 -0
  407. data/lib/libv8/v8/src/heap.h +2268 -0
  408. data/lib/libv8/v8/src/hydrogen-instructions.cc +1769 -0
  409. data/lib/libv8/v8/src/hydrogen-instructions.h +3971 -0
  410. data/lib/libv8/v8/src/hydrogen.cc +6239 -0
  411. data/lib/libv8/v8/src/hydrogen.h +1202 -0
  412. data/lib/libv8/v8/src/ia32/assembler-ia32-inl.h +446 -0
  413. data/lib/libv8/v8/src/ia32/assembler-ia32.cc +2487 -0
  414. data/lib/libv8/v8/src/ia32/assembler-ia32.h +1144 -0
  415. data/lib/libv8/v8/src/ia32/builtins-ia32.cc +1621 -0
  416. data/lib/libv8/v8/src/ia32/code-stubs-ia32.cc +6198 -0
  417. data/lib/libv8/v8/src/ia32/code-stubs-ia32.h +517 -0
  418. data/lib/libv8/v8/src/ia32/codegen-ia32.cc +265 -0
  419. data/lib/libv8/v8/src/ia32/codegen-ia32.h +79 -0
  420. data/lib/libv8/v8/src/ia32/cpu-ia32.cc +88 -0
  421. data/lib/libv8/v8/src/ia32/debug-ia32.cc +312 -0
  422. data/lib/libv8/v8/src/ia32/deoptimizer-ia32.cc +774 -0
  423. data/lib/libv8/v8/src/ia32/disasm-ia32.cc +1628 -0
  424. data/lib/libv8/v8/src/ia32/frames-ia32.cc +45 -0
  425. data/lib/libv8/v8/src/ia32/frames-ia32.h +142 -0
  426. data/lib/libv8/v8/src/ia32/full-codegen-ia32.cc +4338 -0
  427. data/lib/libv8/v8/src/ia32/ic-ia32.cc +1597 -0
  428. data/lib/libv8/v8/src/ia32/lithium-codegen-ia32.cc +4461 -0
  429. data/lib/libv8/v8/src/ia32/lithium-codegen-ia32.h +375 -0
  430. data/lib/libv8/v8/src/ia32/lithium-gap-resolver-ia32.cc +475 -0
  431. data/lib/libv8/v8/src/ia32/lithium-gap-resolver-ia32.h +110 -0
  432. data/lib/libv8/v8/src/ia32/lithium-ia32.cc +2261 -0
  433. data/lib/libv8/v8/src/ia32/lithium-ia32.h +2396 -0
  434. data/lib/libv8/v8/src/ia32/macro-assembler-ia32.cc +2136 -0
  435. data/lib/libv8/v8/src/ia32/macro-assembler-ia32.h +775 -0
  436. data/lib/libv8/v8/src/ia32/regexp-macro-assembler-ia32.cc +1263 -0
  437. data/lib/libv8/v8/src/ia32/regexp-macro-assembler-ia32.h +216 -0
  438. data/lib/libv8/v8/src/ia32/simulator-ia32.cc +30 -0
  439. data/lib/libv8/v8/src/ia32/simulator-ia32.h +74 -0
  440. data/lib/libv8/v8/src/ia32/stub-cache-ia32.cc +3847 -0
  441. data/lib/libv8/v8/src/ic-inl.h +130 -0
  442. data/lib/libv8/v8/src/ic.cc +2577 -0
  443. data/lib/libv8/v8/src/ic.h +736 -0
  444. data/lib/libv8/v8/src/inspector.cc +63 -0
  445. data/lib/libv8/v8/src/inspector.h +62 -0
  446. data/lib/libv8/v8/src/interpreter-irregexp.cc +659 -0
  447. data/lib/libv8/v8/src/interpreter-irregexp.h +49 -0
  448. data/lib/libv8/v8/src/isolate-inl.h +50 -0
  449. data/lib/libv8/v8/src/isolate.cc +1869 -0
  450. data/lib/libv8/v8/src/isolate.h +1382 -0
  451. data/lib/libv8/v8/src/json-parser.cc +504 -0
  452. data/lib/libv8/v8/src/json-parser.h +161 -0
  453. data/lib/libv8/v8/src/json.js +342 -0
  454. data/lib/libv8/v8/src/jsregexp.cc +5385 -0
  455. data/lib/libv8/v8/src/jsregexp.h +1492 -0
  456. data/lib/libv8/v8/src/list-inl.h +212 -0
  457. data/lib/libv8/v8/src/list.h +174 -0
  458. data/lib/libv8/v8/src/lithium-allocator-inl.h +142 -0
  459. data/lib/libv8/v8/src/lithium-allocator.cc +2123 -0
  460. data/lib/libv8/v8/src/lithium-allocator.h +630 -0
  461. data/lib/libv8/v8/src/lithium.cc +190 -0
  462. data/lib/libv8/v8/src/lithium.h +597 -0
  463. data/lib/libv8/v8/src/liveedit-debugger.js +1082 -0
  464. data/lib/libv8/v8/src/liveedit.cc +1691 -0
  465. data/lib/libv8/v8/src/liveedit.h +180 -0
  466. data/lib/libv8/v8/src/liveobjectlist-inl.h +126 -0
  467. data/lib/libv8/v8/src/liveobjectlist.cc +2589 -0
  468. data/lib/libv8/v8/src/liveobjectlist.h +322 -0
  469. data/lib/libv8/v8/src/log-inl.h +59 -0
  470. data/lib/libv8/v8/src/log-utils.cc +428 -0
  471. data/lib/libv8/v8/src/log-utils.h +231 -0
  472. data/lib/libv8/v8/src/log.cc +1993 -0
  473. data/lib/libv8/v8/src/log.h +476 -0
  474. data/lib/libv8/v8/src/macro-assembler.h +120 -0
  475. data/lib/libv8/v8/src/macros.py +178 -0
  476. data/lib/libv8/v8/src/mark-compact.cc +3143 -0
  477. data/lib/libv8/v8/src/mark-compact.h +506 -0
  478. data/lib/libv8/v8/src/math.js +264 -0
  479. data/lib/libv8/v8/src/messages.cc +179 -0
  480. data/lib/libv8/v8/src/messages.h +113 -0
  481. data/lib/libv8/v8/src/messages.js +1096 -0
  482. data/lib/libv8/v8/src/mips/assembler-mips-inl.h +312 -0
  483. data/lib/libv8/v8/src/mips/assembler-mips.cc +1960 -0
  484. data/lib/libv8/v8/src/mips/assembler-mips.h +1138 -0
  485. data/lib/libv8/v8/src/mips/builtins-mips.cc +1628 -0
  486. data/lib/libv8/v8/src/mips/code-stubs-mips.cc +6656 -0
  487. data/lib/libv8/v8/src/mips/code-stubs-mips.h +682 -0
  488. data/lib/libv8/v8/src/mips/codegen-mips.cc +52 -0
  489. data/lib/libv8/v8/src/mips/codegen-mips.h +98 -0
  490. data/lib/libv8/v8/src/mips/constants-mips.cc +352 -0
  491. data/lib/libv8/v8/src/mips/constants-mips.h +739 -0
  492. data/lib/libv8/v8/src/mips/cpu-mips.cc +96 -0
  493. data/lib/libv8/v8/src/mips/debug-mips.cc +308 -0
  494. data/lib/libv8/v8/src/mips/deoptimizer-mips.cc +91 -0
  495. data/lib/libv8/v8/src/mips/disasm-mips.cc +1050 -0
  496. data/lib/libv8/v8/src/mips/frames-mips.cc +47 -0
  497. data/lib/libv8/v8/src/mips/frames-mips.h +219 -0
  498. data/lib/libv8/v8/src/mips/full-codegen-mips.cc +4388 -0
  499. data/lib/libv8/v8/src/mips/ic-mips.cc +1580 -0
  500. data/lib/libv8/v8/src/mips/lithium-codegen-mips.h +65 -0
  501. data/lib/libv8/v8/src/mips/lithium-mips.h +307 -0
  502. data/lib/libv8/v8/src/mips/macro-assembler-mips.cc +4056 -0
  503. data/lib/libv8/v8/src/mips/macro-assembler-mips.h +1214 -0
  504. data/lib/libv8/v8/src/mips/regexp-macro-assembler-mips.cc +1251 -0
  505. data/lib/libv8/v8/src/mips/regexp-macro-assembler-mips.h +252 -0
  506. data/lib/libv8/v8/src/mips/simulator-mips.cc +2621 -0
  507. data/lib/libv8/v8/src/mips/simulator-mips.h +401 -0
  508. data/lib/libv8/v8/src/mips/stub-cache-mips.cc +4285 -0
  509. data/lib/libv8/v8/src/mirror-debugger.js +2382 -0
  510. data/lib/libv8/v8/src/mksnapshot.cc +328 -0
  511. data/lib/libv8/v8/src/natives.h +64 -0
  512. data/lib/libv8/v8/src/objects-debug.cc +738 -0
  513. data/lib/libv8/v8/src/objects-inl.h +4323 -0
  514. data/lib/libv8/v8/src/objects-printer.cc +829 -0
  515. data/lib/libv8/v8/src/objects-visiting.cc +148 -0
  516. data/lib/libv8/v8/src/objects-visiting.h +424 -0
  517. data/lib/libv8/v8/src/objects.cc +10585 -0
  518. data/lib/libv8/v8/src/objects.h +6838 -0
  519. data/lib/libv8/v8/src/parser.cc +4997 -0
  520. data/lib/libv8/v8/src/parser.h +765 -0
  521. data/lib/libv8/v8/src/platform-cygwin.cc +779 -0
  522. data/lib/libv8/v8/src/platform-freebsd.cc +826 -0
  523. data/lib/libv8/v8/src/platform-linux.cc +1149 -0
  524. data/lib/libv8/v8/src/platform-macos.cc +830 -0
  525. data/lib/libv8/v8/src/platform-nullos.cc +479 -0
  526. data/lib/libv8/v8/src/platform-openbsd.cc +640 -0
  527. data/lib/libv8/v8/src/platform-posix.cc +424 -0
  528. data/lib/libv8/v8/src/platform-solaris.cc +762 -0
  529. data/lib/libv8/v8/src/platform-tls-mac.h +62 -0
  530. data/lib/libv8/v8/src/platform-tls-win32.h +62 -0
  531. data/lib/libv8/v8/src/platform-tls.h +50 -0
  532. data/lib/libv8/v8/src/platform-win32.cc +2021 -0
  533. data/lib/libv8/v8/src/platform.h +667 -0
  534. data/lib/libv8/v8/src/preparse-data-format.h +62 -0
  535. data/lib/libv8/v8/src/preparse-data.cc +183 -0
  536. data/lib/libv8/v8/src/preparse-data.h +225 -0
  537. data/lib/libv8/v8/src/preparser-api.cc +220 -0
  538. data/lib/libv8/v8/src/preparser.cc +1450 -0
  539. data/lib/libv8/v8/src/preparser.h +493 -0
  540. data/lib/libv8/v8/src/prettyprinter.cc +1493 -0
  541. data/lib/libv8/v8/src/prettyprinter.h +223 -0
  542. data/lib/libv8/v8/src/profile-generator-inl.h +128 -0
  543. data/lib/libv8/v8/src/profile-generator.cc +3098 -0
  544. data/lib/libv8/v8/src/profile-generator.h +1126 -0
  545. data/lib/libv8/v8/src/property.cc +105 -0
  546. data/lib/libv8/v8/src/property.h +365 -0
  547. data/lib/libv8/v8/src/proxy.js +83 -0
  548. data/lib/libv8/v8/src/regexp-macro-assembler-irregexp-inl.h +78 -0
  549. data/lib/libv8/v8/src/regexp-macro-assembler-irregexp.cc +471 -0
  550. data/lib/libv8/v8/src/regexp-macro-assembler-irregexp.h +142 -0
  551. data/lib/libv8/v8/src/regexp-macro-assembler-tracer.cc +373 -0
  552. data/lib/libv8/v8/src/regexp-macro-assembler-tracer.h +104 -0
  553. data/lib/libv8/v8/src/regexp-macro-assembler.cc +267 -0
  554. data/lib/libv8/v8/src/regexp-macro-assembler.h +243 -0
  555. data/lib/libv8/v8/src/regexp-stack.cc +111 -0
  556. data/lib/libv8/v8/src/regexp-stack.h +147 -0
  557. data/lib/libv8/v8/src/regexp.js +483 -0
  558. data/lib/libv8/v8/src/rewriter.cc +360 -0
  559. data/lib/libv8/v8/src/rewriter.h +50 -0
  560. data/lib/libv8/v8/src/runtime-profiler.cc +489 -0
  561. data/lib/libv8/v8/src/runtime-profiler.h +201 -0
  562. data/lib/libv8/v8/src/runtime.cc +12227 -0
  563. data/lib/libv8/v8/src/runtime.h +652 -0
  564. data/lib/libv8/v8/src/runtime.js +649 -0
  565. data/lib/libv8/v8/src/safepoint-table.cc +256 -0
  566. data/lib/libv8/v8/src/safepoint-table.h +270 -0
  567. data/lib/libv8/v8/src/scanner-base.cc +952 -0
  568. data/lib/libv8/v8/src/scanner-base.h +670 -0
  569. data/lib/libv8/v8/src/scanner.cc +345 -0
  570. data/lib/libv8/v8/src/scanner.h +146 -0
  571. data/lib/libv8/v8/src/scopeinfo.cc +646 -0
  572. data/lib/libv8/v8/src/scopeinfo.h +254 -0
  573. data/lib/libv8/v8/src/scopes.cc +1150 -0
  574. data/lib/libv8/v8/src/scopes.h +507 -0
  575. data/lib/libv8/v8/src/serialize.cc +1574 -0
  576. data/lib/libv8/v8/src/serialize.h +589 -0
  577. data/lib/libv8/v8/src/shell.h +55 -0
  578. data/lib/libv8/v8/src/simulator.h +43 -0
  579. data/lib/libv8/v8/src/small-pointer-list.h +163 -0
  580. data/lib/libv8/v8/src/smart-pointer.h +109 -0
  581. data/lib/libv8/v8/src/snapshot-common.cc +83 -0
  582. data/lib/libv8/v8/src/snapshot-empty.cc +54 -0
  583. data/lib/libv8/v8/src/snapshot.h +91 -0
  584. data/lib/libv8/v8/src/spaces-inl.h +529 -0
  585. data/lib/libv8/v8/src/spaces.cc +3145 -0
  586. data/lib/libv8/v8/src/spaces.h +2369 -0
  587. data/lib/libv8/v8/src/splay-tree-inl.h +310 -0
  588. data/lib/libv8/v8/src/splay-tree.h +205 -0
  589. data/lib/libv8/v8/src/string-search.cc +41 -0
  590. data/lib/libv8/v8/src/string-search.h +568 -0
  591. data/lib/libv8/v8/src/string-stream.cc +592 -0
  592. data/lib/libv8/v8/src/string-stream.h +191 -0
  593. data/lib/libv8/v8/src/string.js +994 -0
  594. data/lib/libv8/v8/src/strtod.cc +440 -0
  595. data/lib/libv8/v8/src/strtod.h +40 -0
  596. data/lib/libv8/v8/src/stub-cache.cc +1965 -0
  597. data/lib/libv8/v8/src/stub-cache.h +924 -0
  598. data/lib/libv8/v8/src/third_party/valgrind/valgrind.h +3925 -0
  599. data/lib/libv8/v8/src/token.cc +63 -0
  600. data/lib/libv8/v8/src/token.h +288 -0
  601. data/lib/libv8/v8/src/type-info.cc +507 -0
  602. data/lib/libv8/v8/src/type-info.h +272 -0
  603. data/lib/libv8/v8/src/unbound-queue-inl.h +95 -0
  604. data/lib/libv8/v8/src/unbound-queue.h +69 -0
  605. data/lib/libv8/v8/src/unicode-inl.h +238 -0
  606. data/lib/libv8/v8/src/unicode.cc +1624 -0
  607. data/lib/libv8/v8/src/unicode.h +280 -0
  608. data/lib/libv8/v8/src/uri.js +408 -0
  609. data/lib/libv8/v8/src/utils-inl.h +48 -0
  610. data/lib/libv8/v8/src/utils.cc +371 -0
  611. data/lib/libv8/v8/src/utils.h +800 -0
  612. data/lib/libv8/v8/src/v8-counters.cc +62 -0
  613. data/lib/libv8/v8/src/v8-counters.h +314 -0
  614. data/lib/libv8/v8/src/v8.cc +213 -0
  615. data/lib/libv8/v8/src/v8.h +131 -0
  616. data/lib/libv8/v8/src/v8checks.h +64 -0
  617. data/lib/libv8/v8/src/v8dll-main.cc +44 -0
  618. data/lib/libv8/v8/src/v8globals.h +512 -0
  619. data/lib/libv8/v8/src/v8memory.h +82 -0
  620. data/lib/libv8/v8/src/v8natives.js +1310 -0
  621. data/lib/libv8/v8/src/v8preparserdll-main.cc +39 -0
  622. data/lib/libv8/v8/src/v8threads.cc +464 -0
  623. data/lib/libv8/v8/src/v8threads.h +165 -0
  624. data/lib/libv8/v8/src/v8utils.h +319 -0
  625. data/lib/libv8/v8/src/variables.cc +114 -0
  626. data/lib/libv8/v8/src/variables.h +167 -0
  627. data/lib/libv8/v8/src/version.cc +116 -0
  628. data/lib/libv8/v8/src/version.h +68 -0
  629. data/lib/libv8/v8/src/vm-state-inl.h +138 -0
  630. data/lib/libv8/v8/src/vm-state.h +71 -0
  631. data/lib/libv8/v8/src/win32-headers.h +96 -0
  632. data/lib/libv8/v8/src/x64/assembler-x64-inl.h +462 -0
  633. data/lib/libv8/v8/src/x64/assembler-x64.cc +3027 -0
  634. data/lib/libv8/v8/src/x64/assembler-x64.h +1633 -0
  635. data/lib/libv8/v8/src/x64/builtins-x64.cc +1520 -0
  636. data/lib/libv8/v8/src/x64/code-stubs-x64.cc +5132 -0
  637. data/lib/libv8/v8/src/x64/code-stubs-x64.h +514 -0
  638. data/lib/libv8/v8/src/x64/codegen-x64.cc +146 -0
  639. data/lib/libv8/v8/src/x64/codegen-x64.h +76 -0
  640. data/lib/libv8/v8/src/x64/cpu-x64.cc +88 -0
  641. data/lib/libv8/v8/src/x64/debug-x64.cc +319 -0
  642. data/lib/libv8/v8/src/x64/deoptimizer-x64.cc +815 -0
  643. data/lib/libv8/v8/src/x64/disasm-x64.cc +1832 -0
  644. data/lib/libv8/v8/src/x64/frames-x64.cc +45 -0
  645. data/lib/libv8/v8/src/x64/frames-x64.h +130 -0
  646. data/lib/libv8/v8/src/x64/full-codegen-x64.cc +4318 -0
  647. data/lib/libv8/v8/src/x64/ic-x64.cc +1608 -0
  648. data/lib/libv8/v8/src/x64/lithium-codegen-x64.cc +4267 -0
  649. data/lib/libv8/v8/src/x64/lithium-codegen-x64.h +367 -0
  650. data/lib/libv8/v8/src/x64/lithium-gap-resolver-x64.cc +320 -0
  651. data/lib/libv8/v8/src/x64/lithium-gap-resolver-x64.h +74 -0
  652. data/lib/libv8/v8/src/x64/lithium-x64.cc +2202 -0
  653. data/lib/libv8/v8/src/x64/lithium-x64.h +2333 -0
  654. data/lib/libv8/v8/src/x64/macro-assembler-x64.cc +3745 -0
  655. data/lib/libv8/v8/src/x64/macro-assembler-x64.h +1290 -0
  656. data/lib/libv8/v8/src/x64/regexp-macro-assembler-x64.cc +1398 -0
  657. data/lib/libv8/v8/src/x64/regexp-macro-assembler-x64.h +282 -0
  658. data/lib/libv8/v8/src/x64/simulator-x64.cc +27 -0
  659. data/lib/libv8/v8/src/x64/simulator-x64.h +72 -0
  660. data/lib/libv8/v8/src/x64/stub-cache-x64.cc +3610 -0
  661. data/lib/libv8/v8/src/zone-inl.h +140 -0
  662. data/lib/libv8/v8/src/zone.cc +196 -0
  663. data/lib/libv8/v8/src/zone.h +240 -0
  664. data/lib/libv8/v8/tools/codemap.js +265 -0
  665. data/lib/libv8/v8/tools/consarray.js +93 -0
  666. data/lib/libv8/v8/tools/csvparser.js +78 -0
  667. data/lib/libv8/v8/tools/disasm.py +92 -0
  668. data/lib/libv8/v8/tools/freebsd-tick-processor +10 -0
  669. data/lib/libv8/v8/tools/gc-nvp-trace-processor.py +342 -0
  670. data/lib/libv8/v8/tools/gcmole/README +62 -0
  671. data/lib/libv8/v8/tools/gcmole/gccause.lua +60 -0
  672. data/lib/libv8/v8/tools/gcmole/gcmole.cc +1261 -0
  673. data/lib/libv8/v8/tools/gcmole/gcmole.lua +378 -0
  674. data/lib/libv8/v8/tools/generate-ten-powers.scm +286 -0
  675. data/lib/libv8/v8/tools/grokdump.py +841 -0
  676. data/lib/libv8/v8/tools/gyp/v8.gyp +995 -0
  677. data/lib/libv8/v8/tools/js2c.py +364 -0
  678. data/lib/libv8/v8/tools/jsmin.py +280 -0
  679. data/lib/libv8/v8/tools/linux-tick-processor +35 -0
  680. data/lib/libv8/v8/tools/ll_prof.py +942 -0
  681. data/lib/libv8/v8/tools/logreader.js +185 -0
  682. data/lib/libv8/v8/tools/mac-nm +18 -0
  683. data/lib/libv8/v8/tools/mac-tick-processor +6 -0
  684. data/lib/libv8/v8/tools/oom_dump/README +31 -0
  685. data/lib/libv8/v8/tools/oom_dump/SConstruct +42 -0
  686. data/lib/libv8/v8/tools/oom_dump/oom_dump.cc +288 -0
  687. data/lib/libv8/v8/tools/presubmit.py +305 -0
  688. data/lib/libv8/v8/tools/process-heap-prof.py +120 -0
  689. data/lib/libv8/v8/tools/profile.js +751 -0
  690. data/lib/libv8/v8/tools/profile_view.js +219 -0
  691. data/lib/libv8/v8/tools/run-valgrind.py +77 -0
  692. data/lib/libv8/v8/tools/splaytree.js +316 -0
  693. data/lib/libv8/v8/tools/stats-viewer.py +468 -0
  694. data/lib/libv8/v8/tools/test.py +1510 -0
  695. data/lib/libv8/v8/tools/tickprocessor-driver.js +59 -0
  696. data/lib/libv8/v8/tools/tickprocessor.js +877 -0
  697. data/lib/libv8/v8/tools/utils.py +96 -0
  698. data/lib/libv8/v8/tools/visual_studio/README.txt +12 -0
  699. data/lib/libv8/v8/tools/windows-tick-processor.bat +30 -0
  700. data/lib/libv8/version.rb +6 -0
  701. data/libv8.gemspec +36 -0
  702. data/thefrontside.png +0 -0
  703. metadata +776 -0
@@ -0,0 +1,130 @@
1
+ // Copyright 2008 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
+
29
+ #include <cstdio> // NOLINT
30
+ #include <readline/readline.h> // NOLINT
31
+ #include <readline/history.h> // NOLINT
32
+
33
+ // The readline includes leaves RETURN defined which breaks V8 compilation.
34
+ #undef RETURN
35
+
36
+ #include "d8.h"
37
+
38
+
39
+ // There are incompatibilities between different versions and different
40
+ // implementations of readline. This smooths out one known incompatibility.
41
+ #if RL_READLINE_VERSION >= 0x0500
42
+ #define completion_matches rl_completion_matches
43
+ #endif
44
+
45
+
46
+ namespace v8 {
47
+
48
+
49
+ class ReadLineEditor: public LineEditor {
50
+ public:
51
+ ReadLineEditor() : LineEditor(LineEditor::READLINE, "readline") { }
52
+ virtual i::SmartPointer<char> Prompt(const char* prompt);
53
+ virtual bool Open();
54
+ virtual bool Close();
55
+ virtual void AddHistory(const char* str);
56
+ private:
57
+ static char** AttemptedCompletion(const char* text, int start, int end);
58
+ static char* CompletionGenerator(const char* text, int state);
59
+ static char kWordBreakCharacters[];
60
+ };
61
+
62
+
63
+ static ReadLineEditor read_line_editor;
64
+ char ReadLineEditor::kWordBreakCharacters[] = {' ', '\t', '\n', '"',
65
+ '\\', '\'', '`', '@', '.', '>', '<', '=', ';', '|', '&', '{', '(',
66
+ '\0'};
67
+
68
+
69
+ bool ReadLineEditor::Open() {
70
+ rl_initialize();
71
+ rl_attempted_completion_function = AttemptedCompletion;
72
+ rl_completer_word_break_characters = kWordBreakCharacters;
73
+ rl_bind_key('\t', rl_complete);
74
+ using_history();
75
+ return read_history(Shell::kHistoryFileName) == 0;
76
+ }
77
+
78
+
79
+ bool ReadLineEditor::Close() {
80
+ return write_history(Shell::kHistoryFileName) == 0;
81
+ }
82
+
83
+
84
+ i::SmartPointer<char> ReadLineEditor::Prompt(const char* prompt) {
85
+ char* result = readline(prompt);
86
+ return i::SmartPointer<char>(result);
87
+ }
88
+
89
+
90
+ void ReadLineEditor::AddHistory(const char* str) {
91
+ add_history(str);
92
+ }
93
+
94
+
95
+ char** ReadLineEditor::AttemptedCompletion(const char* text,
96
+ int start,
97
+ int end) {
98
+ char** result = completion_matches(text, CompletionGenerator);
99
+ rl_attempted_completion_over = true;
100
+ return result;
101
+ }
102
+
103
+
104
+ char* ReadLineEditor::CompletionGenerator(const char* text, int state) {
105
+ static unsigned current_index;
106
+ static Persistent<Array> current_completions;
107
+ if (state == 0) {
108
+ i::SmartPointer<char> full_text(i::StrNDup(rl_line_buffer, rl_point));
109
+ HandleScope scope;
110
+ Handle<Array> completions =
111
+ Shell::GetCompletions(String::New(text), String::New(*full_text));
112
+ current_completions = Persistent<Array>::New(completions);
113
+ current_index = 0;
114
+ }
115
+ if (current_index < current_completions->Length()) {
116
+ HandleScope scope;
117
+ Handle<Integer> index = Integer::New(current_index);
118
+ Handle<Value> str_obj = current_completions->Get(index);
119
+ current_index++;
120
+ String::Utf8Value str(str_obj);
121
+ return strdup(*str);
122
+ } else {
123
+ current_completions.Dispose();
124
+ current_completions.Clear();
125
+ return NULL;
126
+ }
127
+ }
128
+
129
+
130
+ } // namespace v8
@@ -0,0 +1,42 @@
1
+ // Copyright 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
+
29
+ #include "d8.h"
30
+ #include "d8-debug.h"
31
+ #include "debug.h"
32
+ #include "api.h"
33
+
34
+
35
+ namespace v8 {
36
+
37
+
38
+ void Shell::AddOSMethods(Handle<ObjectTemplate> os_templ) {
39
+ }
40
+
41
+
42
+ } // namespace v8
@@ -0,0 +1,803 @@
1
+ // Copyright 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
+
29
+ #include <stdlib.h>
30
+ #include <errno.h>
31
+
32
+ #include "v8.h"
33
+
34
+ #include "d8.h"
35
+ #include "d8-debug.h"
36
+ #include "debug.h"
37
+ #include "api.h"
38
+ #include "natives.h"
39
+ #include "platform.h"
40
+
41
+
42
+ namespace v8 {
43
+
44
+
45
+ const char* Shell::kHistoryFileName = ".d8_history";
46
+ const char* Shell::kPrompt = "d8> ";
47
+
48
+
49
+ LineEditor *LineEditor::first_ = NULL;
50
+
51
+
52
+ LineEditor::LineEditor(Type type, const char* name)
53
+ : type_(type),
54
+ name_(name),
55
+ next_(first_) {
56
+ first_ = this;
57
+ }
58
+
59
+
60
+ LineEditor* LineEditor::Get() {
61
+ LineEditor* current = first_;
62
+ LineEditor* best = current;
63
+ while (current != NULL) {
64
+ if (current->type_ > best->type_)
65
+ best = current;
66
+ current = current->next_;
67
+ }
68
+ return best;
69
+ }
70
+
71
+
72
+ class DumbLineEditor: public LineEditor {
73
+ public:
74
+ DumbLineEditor() : LineEditor(LineEditor::DUMB, "dumb") { }
75
+ virtual i::SmartPointer<char> Prompt(const char* prompt);
76
+ };
77
+
78
+
79
+ static DumbLineEditor dumb_line_editor;
80
+
81
+
82
+ i::SmartPointer<char> DumbLineEditor::Prompt(const char* prompt) {
83
+ static const int kBufferSize = 256;
84
+ char buffer[kBufferSize];
85
+ printf("%s", prompt);
86
+ char* str = fgets(buffer, kBufferSize, stdin);
87
+ return i::SmartPointer<char>(str ? i::StrDup(str) : str);
88
+ }
89
+
90
+
91
+ CounterMap* Shell::counter_map_;
92
+ i::OS::MemoryMappedFile* Shell::counters_file_ = NULL;
93
+ CounterCollection Shell::local_counters_;
94
+ CounterCollection* Shell::counters_ = &local_counters_;
95
+ Persistent<Context> Shell::utility_context_;
96
+ Persistent<Context> Shell::evaluation_context_;
97
+
98
+
99
+ bool CounterMap::Match(void* key1, void* key2) {
100
+ const char* name1 = reinterpret_cast<const char*>(key1);
101
+ const char* name2 = reinterpret_cast<const char*>(key2);
102
+ return strcmp(name1, name2) == 0;
103
+ }
104
+
105
+
106
+ // Converts a V8 value to a C string.
107
+ const char* Shell::ToCString(const v8::String::Utf8Value& value) {
108
+ return *value ? *value : "<string conversion failed>";
109
+ }
110
+
111
+
112
+ // Executes a string within the current v8 context.
113
+ bool Shell::ExecuteString(Handle<String> source,
114
+ Handle<Value> name,
115
+ bool print_result,
116
+ bool report_exceptions) {
117
+ HandleScope handle_scope;
118
+ TryCatch try_catch;
119
+ if (i::FLAG_debugger) {
120
+ // When debugging make exceptions appear to be uncaught.
121
+ try_catch.SetVerbose(true);
122
+ }
123
+ Handle<Script> script = Script::Compile(source, name);
124
+ if (script.IsEmpty()) {
125
+ // Print errors that happened during compilation.
126
+ if (report_exceptions && !i::FLAG_debugger)
127
+ ReportException(&try_catch);
128
+ return false;
129
+ } else {
130
+ Handle<Value> result = script->Run();
131
+ if (result.IsEmpty()) {
132
+ ASSERT(try_catch.HasCaught());
133
+ // Print errors that happened during execution.
134
+ if (report_exceptions && !i::FLAG_debugger)
135
+ ReportException(&try_catch);
136
+ return false;
137
+ } else {
138
+ ASSERT(!try_catch.HasCaught());
139
+ if (print_result && !result->IsUndefined()) {
140
+ // If all went well and the result wasn't undefined then print
141
+ // the returned value.
142
+ v8::String::Utf8Value str(result);
143
+ const char* cstr = ToCString(str);
144
+ printf("%s\n", cstr);
145
+ }
146
+ return true;
147
+ }
148
+ }
149
+ }
150
+
151
+
152
+ Handle<Value> Shell::Print(const Arguments& args) {
153
+ Handle<Value> val = Write(args);
154
+ printf("\n");
155
+ return val;
156
+ }
157
+
158
+
159
+ Handle<Value> Shell::Write(const Arguments& args) {
160
+ for (int i = 0; i < args.Length(); i++) {
161
+ HandleScope handle_scope;
162
+ if (i != 0) {
163
+ printf(" ");
164
+ }
165
+ v8::String::Utf8Value str(args[i]);
166
+ int n = fwrite(*str, sizeof(**str), str.length(), stdout);
167
+ if (n != str.length()) {
168
+ printf("Error in fwrite\n");
169
+ exit(1);
170
+ }
171
+ }
172
+ return Undefined();
173
+ }
174
+
175
+
176
+ Handle<Value> Shell::Read(const Arguments& args) {
177
+ String::Utf8Value file(args[0]);
178
+ if (*file == NULL) {
179
+ return ThrowException(String::New("Error loading file"));
180
+ }
181
+ Handle<String> source = ReadFile(*file);
182
+ if (source.IsEmpty()) {
183
+ return ThrowException(String::New("Error loading file"));
184
+ }
185
+ return source;
186
+ }
187
+
188
+
189
+ Handle<Value> Shell::ReadLine(const Arguments& args) {
190
+ i::SmartPointer<char> line(i::ReadLine(""));
191
+ if (*line == NULL) {
192
+ return Null();
193
+ }
194
+ size_t len = strlen(*line);
195
+ if (len > 0 && line[len - 1] == '\n') {
196
+ --len;
197
+ }
198
+ return String::New(*line, len);
199
+ }
200
+
201
+
202
+ Handle<Value> Shell::Load(const Arguments& args) {
203
+ for (int i = 0; i < args.Length(); i++) {
204
+ HandleScope handle_scope;
205
+ String::Utf8Value file(args[i]);
206
+ if (*file == NULL) {
207
+ return ThrowException(String::New("Error loading file"));
208
+ }
209
+ Handle<String> source = ReadFile(*file);
210
+ if (source.IsEmpty()) {
211
+ return ThrowException(String::New("Error loading file"));
212
+ }
213
+ if (!ExecuteString(source, String::New(*file), false, false)) {
214
+ return ThrowException(String::New("Error executing file"));
215
+ }
216
+ }
217
+ return Undefined();
218
+ }
219
+
220
+
221
+ Handle<Value> Shell::Yield(const Arguments& args) {
222
+ v8::Unlocker unlocker;
223
+ return Undefined();
224
+ }
225
+
226
+
227
+ Handle<Value> Shell::Quit(const Arguments& args) {
228
+ int exit_code = args[0]->Int32Value();
229
+ OnExit();
230
+ exit(exit_code);
231
+ return Undefined();
232
+ }
233
+
234
+
235
+ Handle<Value> Shell::Version(const Arguments& args) {
236
+ return String::New(V8::GetVersion());
237
+ }
238
+
239
+
240
+ void Shell::ReportException(v8::TryCatch* try_catch) {
241
+ HandleScope handle_scope;
242
+ v8::String::Utf8Value exception(try_catch->Exception());
243
+ const char* exception_string = ToCString(exception);
244
+ Handle<Message> message = try_catch->Message();
245
+ if (message.IsEmpty()) {
246
+ // V8 didn't provide any extra information about this error; just
247
+ // print the exception.
248
+ printf("%s\n", exception_string);
249
+ } else {
250
+ // Print (filename):(line number): (message).
251
+ v8::String::Utf8Value filename(message->GetScriptResourceName());
252
+ const char* filename_string = ToCString(filename);
253
+ int linenum = message->GetLineNumber();
254
+ printf("%s:%i: %s\n", filename_string, linenum, exception_string);
255
+ // Print line of source code.
256
+ v8::String::Utf8Value sourceline(message->GetSourceLine());
257
+ const char* sourceline_string = ToCString(sourceline);
258
+ printf("%s\n", sourceline_string);
259
+ // Print wavy underline (GetUnderline is deprecated).
260
+ int start = message->GetStartColumn();
261
+ for (int i = 0; i < start; i++) {
262
+ printf(" ");
263
+ }
264
+ int end = message->GetEndColumn();
265
+ for (int i = start; i < end; i++) {
266
+ printf("^");
267
+ }
268
+ printf("\n");
269
+ v8::String::Utf8Value stack_trace(try_catch->StackTrace());
270
+ if (stack_trace.length() > 0) {
271
+ const char* stack_trace_string = ToCString(stack_trace);
272
+ printf("%s\n", stack_trace_string);
273
+ }
274
+ }
275
+ }
276
+
277
+
278
+ Handle<Array> Shell::GetCompletions(Handle<String> text, Handle<String> full) {
279
+ HandleScope handle_scope;
280
+ Context::Scope context_scope(utility_context_);
281
+ Handle<Object> global = utility_context_->Global();
282
+ Handle<Value> fun = global->Get(String::New("GetCompletions"));
283
+ static const int kArgc = 3;
284
+ Handle<Value> argv[kArgc] = { evaluation_context_->Global(), text, full };
285
+ Handle<Value> val = Handle<Function>::Cast(fun)->Call(global, kArgc, argv);
286
+ return handle_scope.Close(Handle<Array>::Cast(val));
287
+ }
288
+
289
+
290
+ #ifdef ENABLE_DEBUGGER_SUPPORT
291
+ Handle<Object> Shell::DebugMessageDetails(Handle<String> message) {
292
+ Context::Scope context_scope(utility_context_);
293
+ Handle<Object> global = utility_context_->Global();
294
+ Handle<Value> fun = global->Get(String::New("DebugMessageDetails"));
295
+ static const int kArgc = 1;
296
+ Handle<Value> argv[kArgc] = { message };
297
+ Handle<Value> val = Handle<Function>::Cast(fun)->Call(global, kArgc, argv);
298
+ return Handle<Object>::Cast(val);
299
+ }
300
+
301
+
302
+ Handle<Value> Shell::DebugCommandToJSONRequest(Handle<String> command) {
303
+ Context::Scope context_scope(utility_context_);
304
+ Handle<Object> global = utility_context_->Global();
305
+ Handle<Value> fun = global->Get(String::New("DebugCommandToJSONRequest"));
306
+ static const int kArgc = 1;
307
+ Handle<Value> argv[kArgc] = { command };
308
+ Handle<Value> val = Handle<Function>::Cast(fun)->Call(global, kArgc, argv);
309
+ return val;
310
+ }
311
+ #endif
312
+
313
+
314
+ int32_t* Counter::Bind(const char* name, bool is_histogram) {
315
+ int i;
316
+ for (i = 0; i < kMaxNameSize - 1 && name[i]; i++)
317
+ name_[i] = static_cast<char>(name[i]);
318
+ name_[i] = '\0';
319
+ is_histogram_ = is_histogram;
320
+ return ptr();
321
+ }
322
+
323
+
324
+ void Counter::AddSample(int32_t sample) {
325
+ count_++;
326
+ sample_total_ += sample;
327
+ }
328
+
329
+
330
+ CounterCollection::CounterCollection() {
331
+ magic_number_ = 0xDEADFACE;
332
+ max_counters_ = kMaxCounters;
333
+ max_name_size_ = Counter::kMaxNameSize;
334
+ counters_in_use_ = 0;
335
+ }
336
+
337
+
338
+ Counter* CounterCollection::GetNextCounter() {
339
+ if (counters_in_use_ == kMaxCounters) return NULL;
340
+ return &counters_[counters_in_use_++];
341
+ }
342
+
343
+
344
+ void Shell::MapCounters(const char* name) {
345
+ counters_file_ = i::OS::MemoryMappedFile::create(name,
346
+ sizeof(CounterCollection), &local_counters_);
347
+ void* memory = (counters_file_ == NULL) ?
348
+ NULL : counters_file_->memory();
349
+ if (memory == NULL) {
350
+ printf("Could not map counters file %s\n", name);
351
+ exit(1);
352
+ }
353
+ counters_ = static_cast<CounterCollection*>(memory);
354
+ V8::SetCounterFunction(LookupCounter);
355
+ V8::SetCreateHistogramFunction(CreateHistogram);
356
+ V8::SetAddHistogramSampleFunction(AddHistogramSample);
357
+ }
358
+
359
+
360
+ int CounterMap::Hash(const char* name) {
361
+ int h = 0;
362
+ int c;
363
+ while ((c = *name++) != 0) {
364
+ h += h << 5;
365
+ h += c;
366
+ }
367
+ return h;
368
+ }
369
+
370
+
371
+ Counter* Shell::GetCounter(const char* name, bool is_histogram) {
372
+ Counter* counter = counter_map_->Lookup(name);
373
+
374
+ if (counter == NULL) {
375
+ counter = counters_->GetNextCounter();
376
+ if (counter != NULL) {
377
+ counter_map_->Set(name, counter);
378
+ counter->Bind(name, is_histogram);
379
+ }
380
+ } else {
381
+ ASSERT(counter->is_histogram() == is_histogram);
382
+ }
383
+ return counter;
384
+ }
385
+
386
+
387
+ int* Shell::LookupCounter(const char* name) {
388
+ Counter* counter = GetCounter(name, false);
389
+
390
+ if (counter != NULL) {
391
+ return counter->ptr();
392
+ } else {
393
+ return NULL;
394
+ }
395
+ }
396
+
397
+
398
+ void* Shell::CreateHistogram(const char* name,
399
+ int min,
400
+ int max,
401
+ size_t buckets) {
402
+ return GetCounter(name, true);
403
+ }
404
+
405
+
406
+ void Shell::AddHistogramSample(void* histogram, int sample) {
407
+ Counter* counter = reinterpret_cast<Counter*>(histogram);
408
+ counter->AddSample(sample);
409
+ }
410
+
411
+
412
+ void Shell::Initialize() {
413
+ Shell::counter_map_ = new CounterMap();
414
+ // Set up counters
415
+ if (i::StrLength(i::FLAG_map_counters) != 0)
416
+ MapCounters(i::FLAG_map_counters);
417
+ if (i::FLAG_dump_counters) {
418
+ V8::SetCounterFunction(LookupCounter);
419
+ V8::SetCreateHistogramFunction(CreateHistogram);
420
+ V8::SetAddHistogramSampleFunction(AddHistogramSample);
421
+ }
422
+
423
+ // Initialize the global objects
424
+ HandleScope scope;
425
+ Handle<ObjectTemplate> global_template = ObjectTemplate::New();
426
+ global_template->Set(String::New("print"), FunctionTemplate::New(Print));
427
+ global_template->Set(String::New("write"), FunctionTemplate::New(Write));
428
+ global_template->Set(String::New("read"), FunctionTemplate::New(Read));
429
+ global_template->Set(String::New("readline"),
430
+ FunctionTemplate::New(ReadLine));
431
+ global_template->Set(String::New("load"), FunctionTemplate::New(Load));
432
+ global_template->Set(String::New("quit"), FunctionTemplate::New(Quit));
433
+ global_template->Set(String::New("version"), FunctionTemplate::New(Version));
434
+
435
+ #ifdef LIVE_OBJECT_LIST
436
+ global_template->Set(String::New("lol_is_enabled"), Boolean::New(true));
437
+ #else
438
+ global_template->Set(String::New("lol_is_enabled"), Boolean::New(false));
439
+ #endif
440
+
441
+ Handle<ObjectTemplate> os_templ = ObjectTemplate::New();
442
+ AddOSMethods(os_templ);
443
+ global_template->Set(String::New("os"), os_templ);
444
+
445
+ utility_context_ = Context::New(NULL, global_template);
446
+ utility_context_->SetSecurityToken(Undefined());
447
+ Context::Scope utility_scope(utility_context_);
448
+
449
+ i::JSArguments js_args = i::FLAG_js_arguments;
450
+ i::Handle<i::FixedArray> arguments_array =
451
+ FACTORY->NewFixedArray(js_args.argc());
452
+ for (int j = 0; j < js_args.argc(); j++) {
453
+ i::Handle<i::String> arg =
454
+ FACTORY->NewStringFromUtf8(i::CStrVector(js_args[j]));
455
+ arguments_array->set(j, *arg);
456
+ }
457
+ i::Handle<i::JSArray> arguments_jsarray =
458
+ FACTORY->NewJSArrayWithElements(arguments_array);
459
+ global_template->Set(String::New("arguments"),
460
+ Utils::ToLocal(arguments_jsarray));
461
+
462
+ #ifdef ENABLE_DEBUGGER_SUPPORT
463
+ // Install the debugger object in the utility scope
464
+ i::Debug* debug = i::Isolate::Current()->debug();
465
+ debug->Load();
466
+ i::Handle<i::JSObject> js_debug
467
+ = i::Handle<i::JSObject>(debug->debug_context()->global());
468
+ utility_context_->Global()->Set(String::New("$debug"),
469
+ Utils::ToLocal(js_debug));
470
+ #endif
471
+
472
+ // Run the d8 shell utility script in the utility context
473
+ int source_index = i::NativesCollection<i::D8>::GetIndex("d8");
474
+ i::Vector<const char> shell_source
475
+ = i::NativesCollection<i::D8>::GetScriptSource(source_index);
476
+ i::Vector<const char> shell_source_name
477
+ = i::NativesCollection<i::D8>::GetScriptName(source_index);
478
+ Handle<String> source = String::New(shell_source.start(),
479
+ shell_source.length());
480
+ Handle<String> name = String::New(shell_source_name.start(),
481
+ shell_source_name.length());
482
+ Handle<Script> script = Script::Compile(source, name);
483
+ script->Run();
484
+
485
+ // Mark the d8 shell script as native to avoid it showing up as normal source
486
+ // in the debugger.
487
+ i::Handle<i::Object> compiled_script = Utils::OpenHandle(*script);
488
+ i::Handle<i::Script> script_object = compiled_script->IsJSFunction()
489
+ ? i::Handle<i::Script>(i::Script::cast(
490
+ i::JSFunction::cast(*compiled_script)->shared()->script()))
491
+ : i::Handle<i::Script>(i::Script::cast(
492
+ i::SharedFunctionInfo::cast(*compiled_script)->script()));
493
+ script_object->set_type(i::Smi::FromInt(i::Script::TYPE_NATIVE));
494
+
495
+ // Create the evaluation context
496
+ evaluation_context_ = Context::New(NULL, global_template);
497
+ evaluation_context_->SetSecurityToken(Undefined());
498
+
499
+ #ifdef ENABLE_DEBUGGER_SUPPORT
500
+ // Set the security token of the debug context to allow access.
501
+ debug->debug_context()->set_security_token(HEAP->undefined_value());
502
+
503
+ // Start the debugger agent if requested.
504
+ if (i::FLAG_debugger_agent) {
505
+ v8::Debug::EnableAgent("d8 shell", i::FLAG_debugger_port, true);
506
+ }
507
+
508
+ // Start the in-process debugger if requested.
509
+ if (i::FLAG_debugger && !i::FLAG_debugger_agent) {
510
+ v8::Debug::SetDebugEventListener(HandleDebugEvent);
511
+ }
512
+ #endif
513
+ }
514
+
515
+
516
+ void Shell::OnExit() {
517
+ if (i::FLAG_dump_counters) {
518
+ ::printf("+----------------------------------------+-------------+\n");
519
+ ::printf("| Name | Value |\n");
520
+ ::printf("+----------------------------------------+-------------+\n");
521
+ for (CounterMap::Iterator i(counter_map_); i.More(); i.Next()) {
522
+ Counter* counter = i.CurrentValue();
523
+ if (counter->is_histogram()) {
524
+ ::printf("| c:%-36s | %11i |\n", i.CurrentKey(), counter->count());
525
+ ::printf("| t:%-36s | %11i |\n",
526
+ i.CurrentKey(),
527
+ counter->sample_total());
528
+ } else {
529
+ ::printf("| %-38s | %11i |\n", i.CurrentKey(), counter->count());
530
+ }
531
+ }
532
+ ::printf("+----------------------------------------+-------------+\n");
533
+ }
534
+ if (counters_file_ != NULL)
535
+ delete counters_file_;
536
+ }
537
+
538
+
539
+ static char* ReadChars(const char* name, int* size_out) {
540
+ v8::Unlocker unlocker; // Release the V8 lock while reading files.
541
+ FILE* file = i::OS::FOpen(name, "rb");
542
+ if (file == NULL) return NULL;
543
+
544
+ fseek(file, 0, SEEK_END);
545
+ int size = ftell(file);
546
+ rewind(file);
547
+
548
+ char* chars = new char[size + 1];
549
+ chars[size] = '\0';
550
+ for (int i = 0; i < size;) {
551
+ int read = fread(&chars[i], 1, size - i, file);
552
+ i += read;
553
+ }
554
+ fclose(file);
555
+ *size_out = size;
556
+ return chars;
557
+ }
558
+
559
+
560
+ static char* ReadToken(char* data, char token) {
561
+ char* next = i::OS::StrChr(data, token);
562
+ if (next != NULL) {
563
+ *next = '\0';
564
+ return (next + 1);
565
+ }
566
+
567
+ return NULL;
568
+ }
569
+
570
+
571
+ static char* ReadLine(char* data) {
572
+ return ReadToken(data, '\n');
573
+ }
574
+
575
+
576
+ static char* ReadWord(char* data) {
577
+ return ReadToken(data, ' ');
578
+ }
579
+
580
+
581
+ // Reads a file into a v8 string.
582
+ Handle<String> Shell::ReadFile(const char* name) {
583
+ int size = 0;
584
+ char* chars = ReadChars(name, &size);
585
+ if (chars == NULL) return Handle<String>();
586
+ Handle<String> result = String::New(chars);
587
+ delete[] chars;
588
+ return result;
589
+ }
590
+
591
+
592
+ void Shell::RunShell() {
593
+ LineEditor* editor = LineEditor::Get();
594
+ printf("V8 version %s [console: %s]\n", V8::GetVersion(), editor->name());
595
+ if (i::FLAG_debugger) {
596
+ printf("JavaScript debugger enabled\n");
597
+ }
598
+ editor->Open();
599
+ while (true) {
600
+ Locker locker;
601
+ HandleScope handle_scope;
602
+ Context::Scope context_scope(evaluation_context_);
603
+ i::SmartPointer<char> input = editor->Prompt(Shell::kPrompt);
604
+ if (input.is_empty())
605
+ break;
606
+ editor->AddHistory(*input);
607
+ Handle<String> name = String::New("(d8)");
608
+ ExecuteString(String::New(*input), name, true, true);
609
+ }
610
+ editor->Close();
611
+ printf("\n");
612
+ }
613
+
614
+
615
+ class ShellThread : public i::Thread {
616
+ public:
617
+ ShellThread(i::Isolate* isolate, int no, i::Vector<const char> files)
618
+ : Thread(isolate, "d8:ShellThread"),
619
+ no_(no), files_(files) { }
620
+ virtual void Run();
621
+ private:
622
+ int no_;
623
+ i::Vector<const char> files_;
624
+ };
625
+
626
+
627
+ void ShellThread::Run() {
628
+ // Prepare the context for this thread.
629
+ Locker locker;
630
+ HandleScope scope;
631
+ Handle<ObjectTemplate> global_template = ObjectTemplate::New();
632
+ global_template->Set(String::New("print"),
633
+ FunctionTemplate::New(Shell::Print));
634
+ global_template->Set(String::New("write"),
635
+ FunctionTemplate::New(Shell::Write));
636
+ global_template->Set(String::New("read"),
637
+ FunctionTemplate::New(Shell::Read));
638
+ global_template->Set(String::New("readline"),
639
+ FunctionTemplate::New(Shell::ReadLine));
640
+ global_template->Set(String::New("load"),
641
+ FunctionTemplate::New(Shell::Load));
642
+ global_template->Set(String::New("yield"),
643
+ FunctionTemplate::New(Shell::Yield));
644
+ global_template->Set(String::New("version"),
645
+ FunctionTemplate::New(Shell::Version));
646
+
647
+ char* ptr = const_cast<char*>(files_.start());
648
+ while ((ptr != NULL) && (*ptr != '\0')) {
649
+ // For each newline-separated line.
650
+ char* next_line = ReadLine(ptr);
651
+
652
+ if (*ptr == '#') {
653
+ // Skip comment lines.
654
+ ptr = next_line;
655
+ continue;
656
+ }
657
+
658
+ Persistent<Context> thread_context = Context::New(NULL, global_template);
659
+ thread_context->SetSecurityToken(Undefined());
660
+ Context::Scope context_scope(thread_context);
661
+
662
+ while ((ptr != NULL) && (*ptr != '\0')) {
663
+ char* filename = ptr;
664
+ ptr = ReadWord(ptr);
665
+
666
+ // Skip empty strings.
667
+ if (strlen(filename) == 0) {
668
+ break;
669
+ }
670
+
671
+ Handle<String> str = Shell::ReadFile(filename);
672
+ if (str.IsEmpty()) {
673
+ printf("WARNING: %s not found\n", filename);
674
+ break;
675
+ }
676
+
677
+ Shell::ExecuteString(str, String::New(filename), false, false);
678
+ }
679
+
680
+ thread_context.Dispose();
681
+ ptr = next_line;
682
+ }
683
+ }
684
+
685
+
686
+ int Shell::Main(int argc, char* argv[]) {
687
+ i::FlagList::SetFlagsFromCommandLine(&argc, argv, true);
688
+ if (i::FLAG_help) {
689
+ return 1;
690
+ }
691
+ Initialize();
692
+ bool run_shell = (argc == 1);
693
+
694
+ // Default use preemption if threads are created.
695
+ bool use_preemption = true;
696
+
697
+ // Default to use lowest possible thread preemption interval to test as many
698
+ // edgecases as possible.
699
+ int preemption_interval = 1;
700
+
701
+ i::List<i::Thread*> threads(1);
702
+
703
+ {
704
+ // Acquire the V8 lock once initialization has finished. Since the thread
705
+ // below may spawn new threads accessing V8 holding the V8 lock here is
706
+ // mandatory.
707
+ Locker locker;
708
+ Context::Scope context_scope(evaluation_context_);
709
+ for (int i = 1; i < argc; i++) {
710
+ char* str = argv[i];
711
+ if (strcmp(str, "--shell") == 0) {
712
+ run_shell = true;
713
+ } else if (strcmp(str, "--preemption") == 0) {
714
+ use_preemption = true;
715
+ } else if (strcmp(str, "--no-preemption") == 0) {
716
+ use_preemption = false;
717
+ } else if (strcmp(str, "--preemption-interval") == 0) {
718
+ if (i + 1 < argc) {
719
+ char* end = NULL;
720
+ preemption_interval = strtol(argv[++i], &end, 10); // NOLINT
721
+ if (preemption_interval <= 0 || *end != '\0' || errno == ERANGE) {
722
+ printf("Invalid value for --preemption-interval '%s'\n", argv[i]);
723
+ return 1;
724
+ }
725
+ } else {
726
+ printf("Missing value for --preemption-interval\n");
727
+ return 1;
728
+ }
729
+ } else if (strcmp(str, "-f") == 0) {
730
+ // Ignore any -f flags for compatibility with other stand-alone
731
+ // JavaScript engines.
732
+ continue;
733
+ } else if (strncmp(str, "--", 2) == 0) {
734
+ printf("Warning: unknown flag %s.\nTry --help for options\n", str);
735
+ } else if (strcmp(str, "-e") == 0 && i + 1 < argc) {
736
+ // Execute argument given to -e option directly.
737
+ v8::HandleScope handle_scope;
738
+ v8::Handle<v8::String> file_name = v8::String::New("unnamed");
739
+ v8::Handle<v8::String> source = v8::String::New(argv[i + 1]);
740
+ if (!ExecuteString(source, file_name, false, true)) {
741
+ OnExit();
742
+ return 1;
743
+ }
744
+ i++;
745
+ } else if (strcmp(str, "-p") == 0 && i + 1 < argc) {
746
+ int size = 0;
747
+ const char* files = ReadChars(argv[++i], &size);
748
+ if (files == NULL) return 1;
749
+ ShellThread* thread =
750
+ new ShellThread(i::Isolate::Current(),
751
+ threads.length(),
752
+ i::Vector<const char>(files, size));
753
+ thread->Start();
754
+ threads.Add(thread);
755
+ } else {
756
+ // Use all other arguments as names of files to load and run.
757
+ HandleScope handle_scope;
758
+ Handle<String> file_name = v8::String::New(str);
759
+ Handle<String> source = ReadFile(str);
760
+ if (source.IsEmpty()) {
761
+ printf("Error reading '%s'\n", str);
762
+ return 1;
763
+ }
764
+ if (!ExecuteString(source, file_name, false, true)) {
765
+ OnExit();
766
+ return 1;
767
+ }
768
+ }
769
+ }
770
+
771
+ // Start preemption if threads have been created and preemption is enabled.
772
+ if (threads.length() > 0 && use_preemption) {
773
+ Locker::StartPreemption(preemption_interval);
774
+ }
775
+
776
+ #ifdef ENABLE_DEBUGGER_SUPPORT
777
+ // Run the remote debugger if requested.
778
+ if (i::FLAG_remote_debugger) {
779
+ RunRemoteDebugger(i::FLAG_debugger_port);
780
+ return 0;
781
+ }
782
+ #endif
783
+ }
784
+ if (run_shell)
785
+ RunShell();
786
+ for (int i = 0; i < threads.length(); i++) {
787
+ i::Thread* thread = threads[i];
788
+ thread->Join();
789
+ delete thread;
790
+ }
791
+ OnExit();
792
+ return 0;
793
+ }
794
+
795
+
796
+ } // namespace v8
797
+
798
+
799
+ #ifndef GOOGLE3
800
+ int main(int argc, char* argv[]) {
801
+ return v8::Shell::Main(argc, argv);
802
+ }
803
+ #endif