mustang 0.0.1 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (560) hide show
  1. data/.rspec +1 -0
  2. data/Isolate +9 -0
  3. data/README.md +6 -12
  4. data/Rakefile +30 -4
  5. data/TODO.md +9 -0
  6. data/ext/v8/extconf.rb +56 -0
  7. data/ext/v8/v8.cpp +37 -0
  8. data/ext/v8/v8_array.cpp +161 -0
  9. data/ext/v8/v8_array.h +17 -0
  10. data/ext/v8/v8_base.cpp +147 -0
  11. data/ext/v8/v8_base.h +23 -0
  12. data/ext/v8/v8_cast.cpp +151 -0
  13. data/ext/v8/v8_cast.h +64 -0
  14. data/ext/v8/v8_context.cpp +174 -0
  15. data/ext/v8/v8_context.h +12 -0
  16. data/ext/v8/v8_date.cpp +61 -0
  17. data/ext/v8/v8_date.h +16 -0
  18. data/ext/v8/v8_errors.cpp +147 -0
  19. data/ext/v8/v8_errors.h +19 -0
  20. data/ext/v8/v8_external.cpp +66 -0
  21. data/ext/v8/v8_external.h +16 -0
  22. data/ext/v8/v8_function.cpp +182 -0
  23. data/ext/v8/v8_function.h +14 -0
  24. data/ext/v8/v8_integer.cpp +70 -0
  25. data/ext/v8/v8_integer.h +16 -0
  26. data/ext/v8/v8_macros.h +30 -0
  27. data/ext/v8/v8_main.cpp +53 -0
  28. data/ext/v8/v8_main.h +13 -0
  29. data/ext/v8/v8_number.cpp +62 -0
  30. data/ext/v8/v8_number.h +16 -0
  31. data/ext/v8/v8_object.cpp +172 -0
  32. data/ext/v8/v8_object.h +17 -0
  33. data/ext/v8/v8_ref.cpp +72 -0
  34. data/ext/v8/v8_ref.h +43 -0
  35. data/ext/v8/v8_regexp.cpp +148 -0
  36. data/ext/v8/v8_regexp.h +16 -0
  37. data/ext/v8/v8_string.cpp +78 -0
  38. data/ext/v8/v8_string.h +16 -0
  39. data/ext/v8/v8_value.cpp +370 -0
  40. data/ext/v8/v8_value.h +19 -0
  41. data/gemspec.yml +2 -1
  42. data/lib/core_ext/class.rb +14 -0
  43. data/lib/core_ext/object.rb +12 -0
  44. data/lib/core_ext/symbol.rb +23 -0
  45. data/lib/mustang.rb +44 -0
  46. data/lib/mustang/context.rb +69 -0
  47. data/lib/mustang/errors.rb +36 -0
  48. data/lib/support/delegated.rb +25 -0
  49. data/lib/v8/array.rb +21 -0
  50. data/lib/v8/context.rb +13 -0
  51. data/lib/v8/date.rb +20 -0
  52. data/lib/v8/error.rb +15 -0
  53. data/lib/v8/external.rb +16 -0
  54. data/lib/v8/function.rb +11 -0
  55. data/lib/v8/integer.rb +16 -0
  56. data/lib/v8/number.rb +16 -0
  57. data/lib/v8/object.rb +66 -0
  58. data/lib/v8/regexp.rb +23 -0
  59. data/lib/v8/string.rb +27 -0
  60. data/mustang.gemspec +3 -0
  61. data/spec/core_ext/class_spec.rb +19 -0
  62. data/spec/core_ext/object_spec.rb +19 -0
  63. data/spec/core_ext/symbol_spec.rb +27 -0
  64. data/spec/fixtures/test1.js +2 -0
  65. data/spec/fixtures/test2.js +2 -0
  66. data/spec/spec_helper.rb +20 -0
  67. data/spec/v8/array_spec.rb +88 -0
  68. data/spec/v8/cast_spec.rb +151 -0
  69. data/spec/v8/context_spec.rb +78 -0
  70. data/spec/v8/data_spec.rb +39 -0
  71. data/spec/v8/date_spec.rb +45 -0
  72. data/spec/v8/empty_spec.rb +27 -0
  73. data/spec/v8/errors_spec.rb +142 -0
  74. data/spec/v8/external_spec.rb +44 -0
  75. data/spec/v8/function_spec.rb +170 -0
  76. data/spec/v8/integer_spec.rb +41 -0
  77. data/spec/v8/main_spec.rb +18 -0
  78. data/spec/v8/null_spec.rb +27 -0
  79. data/spec/v8/number_spec.rb +40 -0
  80. data/spec/v8/object_spec.rb +79 -0
  81. data/spec/v8/primitive_spec.rb +9 -0
  82. data/spec/v8/regexp_spec.rb +65 -0
  83. data/spec/v8/string_spec.rb +48 -0
  84. data/spec/v8/undefined_spec.rb +27 -0
  85. data/spec/v8/value_spec.rb +215 -0
  86. data/vendor/v8/.gitignore +2 -0
  87. data/vendor/v8/AUTHORS +3 -1
  88. data/vendor/v8/ChangeLog +117 -0
  89. data/vendor/v8/SConstruct +334 -53
  90. data/vendor/v8/include/v8-debug.h +21 -11
  91. data/vendor/v8/include/v8-preparser.h +1 -1
  92. data/vendor/v8/include/v8-profiler.h +122 -43
  93. data/vendor/v8/include/v8-testing.h +5 -0
  94. data/vendor/v8/include/v8.h +171 -17
  95. data/vendor/v8/preparser/SConscript +38 -0
  96. data/vendor/v8/preparser/preparser-process.cc +77 -114
  97. data/vendor/v8/samples/shell.cc +232 -46
  98. data/vendor/v8/src/SConscript +29 -5
  99. data/vendor/v8/src/accessors.cc +70 -211
  100. data/vendor/v8/{test/cctest/test-mips.cc → src/allocation-inl.h} +15 -18
  101. data/vendor/v8/src/allocation.cc +0 -82
  102. data/vendor/v8/src/allocation.h +9 -42
  103. data/vendor/v8/src/api.cc +1645 -1156
  104. data/vendor/v8/src/api.h +76 -12
  105. data/vendor/v8/src/apiutils.h +0 -7
  106. data/vendor/v8/src/arguments.h +15 -4
  107. data/vendor/v8/src/arm/assembler-arm-inl.h +10 -9
  108. data/vendor/v8/src/arm/assembler-arm.cc +62 -23
  109. data/vendor/v8/src/arm/assembler-arm.h +76 -11
  110. data/vendor/v8/src/arm/builtins-arm.cc +39 -33
  111. data/vendor/v8/src/arm/code-stubs-arm.cc +1182 -402
  112. data/vendor/v8/src/arm/code-stubs-arm.h +20 -54
  113. data/vendor/v8/src/arm/codegen-arm.cc +159 -106
  114. data/vendor/v8/src/arm/codegen-arm.h +6 -6
  115. data/vendor/v8/src/arm/constants-arm.h +16 -1
  116. data/vendor/v8/src/arm/cpu-arm.cc +7 -5
  117. data/vendor/v8/src/arm/debug-arm.cc +6 -4
  118. data/vendor/v8/src/arm/deoptimizer-arm.cc +51 -14
  119. data/vendor/v8/src/arm/disasm-arm.cc +47 -15
  120. data/vendor/v8/src/arm/frames-arm.h +1 -1
  121. data/vendor/v8/src/arm/full-codegen-arm.cc +724 -408
  122. data/vendor/v8/src/arm/ic-arm.cc +90 -85
  123. data/vendor/v8/src/arm/lithium-arm.cc +140 -69
  124. data/vendor/v8/src/arm/lithium-arm.h +161 -46
  125. data/vendor/v8/src/arm/lithium-codegen-arm.cc +567 -297
  126. data/vendor/v8/src/arm/lithium-codegen-arm.h +21 -9
  127. data/vendor/v8/src/arm/lithium-gap-resolver-arm.cc +2 -0
  128. data/vendor/v8/src/arm/macro-assembler-arm.cc +457 -96
  129. data/vendor/v8/src/arm/macro-assembler-arm.h +115 -18
  130. data/vendor/v8/src/arm/regexp-macro-assembler-arm.cc +20 -13
  131. data/vendor/v8/src/arm/regexp-macro-assembler-arm.h +1 -0
  132. data/vendor/v8/src/arm/simulator-arm.cc +184 -101
  133. data/vendor/v8/src/arm/simulator-arm.h +26 -21
  134. data/vendor/v8/src/arm/stub-cache-arm.cc +450 -467
  135. data/vendor/v8/src/arm/virtual-frame-arm.cc +14 -12
  136. data/vendor/v8/src/arm/virtual-frame-arm.h +11 -8
  137. data/vendor/v8/src/array.js +35 -18
  138. data/vendor/v8/src/assembler.cc +186 -92
  139. data/vendor/v8/src/assembler.h +106 -69
  140. data/vendor/v8/src/ast-inl.h +5 -0
  141. data/vendor/v8/src/ast.cc +46 -35
  142. data/vendor/v8/src/ast.h +107 -50
  143. data/vendor/v8/src/atomicops.h +2 -0
  144. data/vendor/v8/src/atomicops_internals_mips_gcc.h +169 -0
  145. data/vendor/v8/src/bootstrapper.cc +649 -399
  146. data/vendor/v8/src/bootstrapper.h +94 -27
  147. data/vendor/v8/src/builtins.cc +359 -227
  148. data/vendor/v8/src/builtins.h +157 -123
  149. data/vendor/v8/src/checks.cc +2 -2
  150. data/vendor/v8/src/checks.h +4 -0
  151. data/vendor/v8/src/code-stubs.cc +27 -17
  152. data/vendor/v8/src/code-stubs.h +38 -17
  153. data/vendor/v8/src/codegen-inl.h +5 -1
  154. data/vendor/v8/src/codegen.cc +27 -17
  155. data/vendor/v8/src/codegen.h +9 -9
  156. data/vendor/v8/src/compilation-cache.cc +92 -206
  157. data/vendor/v8/src/compilation-cache.h +205 -30
  158. data/vendor/v8/src/compiler.cc +107 -120
  159. data/vendor/v8/src/compiler.h +17 -2
  160. data/vendor/v8/src/contexts.cc +22 -15
  161. data/vendor/v8/src/contexts.h +14 -8
  162. data/vendor/v8/src/conversions.cc +86 -30
  163. data/vendor/v8/src/counters.cc +19 -4
  164. data/vendor/v8/src/counters.h +28 -16
  165. data/vendor/v8/src/cpu-profiler-inl.h +4 -3
  166. data/vendor/v8/src/cpu-profiler.cc +123 -72
  167. data/vendor/v8/src/cpu-profiler.h +33 -19
  168. data/vendor/v8/src/cpu.h +2 -0
  169. data/vendor/v8/src/d8-debug.cc +3 -3
  170. data/vendor/v8/src/d8-debug.h +7 -6
  171. data/vendor/v8/src/d8-posix.cc +2 -0
  172. data/vendor/v8/src/d8.cc +22 -12
  173. data/vendor/v8/src/d8.gyp +3 -0
  174. data/vendor/v8/src/d8.js +618 -0
  175. data/vendor/v8/src/data-flow.h +3 -3
  176. data/vendor/v8/src/dateparser.h +4 -2
  177. data/vendor/v8/src/debug-agent.cc +10 -9
  178. data/vendor/v8/src/debug-agent.h +9 -11
  179. data/vendor/v8/src/debug-debugger.js +121 -0
  180. data/vendor/v8/src/debug.cc +331 -227
  181. data/vendor/v8/src/debug.h +248 -219
  182. data/vendor/v8/src/deoptimizer.cc +173 -62
  183. data/vendor/v8/src/deoptimizer.h +119 -19
  184. data/vendor/v8/src/disasm.h +3 -0
  185. data/vendor/v8/src/disassembler.cc +10 -9
  186. data/vendor/v8/src/execution.cc +185 -129
  187. data/vendor/v8/src/execution.h +47 -78
  188. data/vendor/v8/src/extensions/experimental/break-iterator.cc +250 -0
  189. data/vendor/v8/src/extensions/experimental/break-iterator.h +89 -0
  190. data/vendor/v8/src/extensions/experimental/experimental.gyp +2 -0
  191. data/vendor/v8/src/extensions/experimental/i18n-extension.cc +22 -2
  192. data/vendor/v8/src/extensions/externalize-string-extension.cc +2 -2
  193. data/vendor/v8/src/extensions/gc-extension.cc +1 -1
  194. data/vendor/v8/src/factory.cc +261 -154
  195. data/vendor/v8/src/factory.h +162 -158
  196. data/vendor/v8/src/flag-definitions.h +17 -11
  197. data/vendor/v8/src/frame-element.cc +0 -5
  198. data/vendor/v8/src/frame-element.h +9 -13
  199. data/vendor/v8/src/frames-inl.h +7 -0
  200. data/vendor/v8/src/frames.cc +56 -46
  201. data/vendor/v8/src/frames.h +36 -25
  202. data/vendor/v8/src/full-codegen.cc +15 -24
  203. data/vendor/v8/src/full-codegen.h +13 -41
  204. data/vendor/v8/src/func-name-inferrer.cc +7 -6
  205. data/vendor/v8/src/func-name-inferrer.h +1 -1
  206. data/vendor/v8/src/gdb-jit.cc +1 -0
  207. data/vendor/v8/src/global-handles.cc +118 -56
  208. data/vendor/v8/src/global-handles.h +98 -40
  209. data/vendor/v8/src/globals.h +2 -2
  210. data/vendor/v8/src/handles-inl.h +106 -9
  211. data/vendor/v8/src/handles.cc +220 -157
  212. data/vendor/v8/src/handles.h +38 -59
  213. data/vendor/v8/src/hashmap.h +3 -3
  214. data/vendor/v8/src/heap-inl.h +141 -25
  215. data/vendor/v8/src/heap-profiler.cc +117 -63
  216. data/vendor/v8/src/heap-profiler.h +38 -21
  217. data/vendor/v8/src/heap.cc +805 -564
  218. data/vendor/v8/src/heap.h +640 -594
  219. data/vendor/v8/src/hydrogen-instructions.cc +216 -73
  220. data/vendor/v8/src/hydrogen-instructions.h +259 -124
  221. data/vendor/v8/src/hydrogen.cc +996 -1171
  222. data/vendor/v8/src/hydrogen.h +163 -144
  223. data/vendor/v8/src/ia32/assembler-ia32-inl.h +12 -11
  224. data/vendor/v8/src/ia32/assembler-ia32.cc +85 -39
  225. data/vendor/v8/src/ia32/assembler-ia32.h +82 -16
  226. data/vendor/v8/src/ia32/builtins-ia32.cc +64 -58
  227. data/vendor/v8/src/ia32/code-stubs-ia32.cc +248 -324
  228. data/vendor/v8/src/ia32/code-stubs-ia32.h +3 -44
  229. data/vendor/v8/src/ia32/codegen-ia32.cc +217 -165
  230. data/vendor/v8/src/ia32/codegen-ia32.h +3 -0
  231. data/vendor/v8/src/ia32/cpu-ia32.cc +6 -5
  232. data/vendor/v8/src/ia32/debug-ia32.cc +8 -5
  233. data/vendor/v8/src/ia32/deoptimizer-ia32.cc +124 -14
  234. data/vendor/v8/src/ia32/disasm-ia32.cc +85 -62
  235. data/vendor/v8/src/ia32/frames-ia32.h +1 -1
  236. data/vendor/v8/src/ia32/full-codegen-ia32.cc +348 -435
  237. data/vendor/v8/src/ia32/ic-ia32.cc +91 -91
  238. data/vendor/v8/src/ia32/lithium-codegen-ia32.cc +500 -255
  239. data/vendor/v8/src/ia32/lithium-codegen-ia32.h +13 -4
  240. data/vendor/v8/src/ia32/lithium-gap-resolver-ia32.cc +6 -0
  241. data/vendor/v8/src/ia32/lithium-ia32.cc +122 -45
  242. data/vendor/v8/src/ia32/lithium-ia32.h +128 -41
  243. data/vendor/v8/src/ia32/macro-assembler-ia32.cc +109 -84
  244. data/vendor/v8/src/ia32/macro-assembler-ia32.h +18 -9
  245. data/vendor/v8/src/ia32/regexp-macro-assembler-ia32.cc +26 -15
  246. data/vendor/v8/src/ia32/regexp-macro-assembler-ia32.h +1 -0
  247. data/vendor/v8/src/ia32/register-allocator-ia32.cc +30 -30
  248. data/vendor/v8/src/ia32/simulator-ia32.h +4 -4
  249. data/vendor/v8/src/ia32/stub-cache-ia32.cc +383 -400
  250. data/vendor/v8/src/ia32/virtual-frame-ia32.cc +36 -13
  251. data/vendor/v8/src/ia32/virtual-frame-ia32.h +11 -5
  252. data/vendor/v8/src/ic-inl.h +12 -2
  253. data/vendor/v8/src/ic.cc +304 -221
  254. data/vendor/v8/src/ic.h +115 -58
  255. data/vendor/v8/src/interpreter-irregexp.cc +25 -21
  256. data/vendor/v8/src/interpreter-irregexp.h +2 -1
  257. data/vendor/v8/src/isolate.cc +883 -0
  258. data/vendor/v8/src/isolate.h +1304 -0
  259. data/vendor/v8/src/json.js +10 -10
  260. data/vendor/v8/src/jsregexp.cc +111 -80
  261. data/vendor/v8/src/jsregexp.h +6 -7
  262. data/vendor/v8/src/jump-target-heavy.cc +5 -8
  263. data/vendor/v8/src/jump-target-heavy.h +0 -6
  264. data/vendor/v8/src/jump-target-inl.h +1 -1
  265. data/vendor/v8/src/jump-target-light.cc +3 -3
  266. data/vendor/v8/src/lithium-allocator-inl.h +2 -0
  267. data/vendor/v8/src/lithium-allocator.cc +42 -30
  268. data/vendor/v8/src/lithium-allocator.h +8 -22
  269. data/vendor/v8/src/lithium.cc +1 -0
  270. data/vendor/v8/src/liveedit.cc +141 -99
  271. data/vendor/v8/src/liveedit.h +7 -2
  272. data/vendor/v8/src/liveobjectlist-inl.h +90 -0
  273. data/vendor/v8/src/liveobjectlist.cc +2537 -1
  274. data/vendor/v8/src/liveobjectlist.h +245 -35
  275. data/vendor/v8/src/log-utils.cc +122 -35
  276. data/vendor/v8/src/log-utils.h +33 -36
  277. data/vendor/v8/src/log.cc +299 -241
  278. data/vendor/v8/src/log.h +177 -110
  279. data/vendor/v8/src/mark-compact.cc +612 -470
  280. data/vendor/v8/src/mark-compact.h +153 -80
  281. data/vendor/v8/src/messages.cc +16 -14
  282. data/vendor/v8/src/messages.js +30 -7
  283. data/vendor/v8/src/mips/assembler-mips-inl.h +155 -35
  284. data/vendor/v8/src/mips/assembler-mips.cc +1093 -219
  285. data/vendor/v8/src/mips/assembler-mips.h +552 -153
  286. data/vendor/v8/src/mips/builtins-mips.cc +43 -100
  287. data/vendor/v8/src/mips/code-stubs-mips.cc +752 -0
  288. data/vendor/v8/src/mips/code-stubs-mips.h +511 -0
  289. data/vendor/v8/src/mips/codegen-mips-inl.h +8 -14
  290. data/vendor/v8/src/mips/codegen-mips.cc +672 -896
  291. data/vendor/v8/src/mips/codegen-mips.h +271 -69
  292. data/vendor/v8/src/mips/constants-mips.cc +44 -20
  293. data/vendor/v8/src/mips/constants-mips.h +238 -40
  294. data/vendor/v8/src/mips/cpu-mips.cc +20 -3
  295. data/vendor/v8/src/mips/debug-mips.cc +35 -7
  296. data/vendor/v8/src/mips/deoptimizer-mips.cc +91 -0
  297. data/vendor/v8/src/mips/disasm-mips.cc +329 -93
  298. data/vendor/v8/src/mips/frames-mips.cc +2 -50
  299. data/vendor/v8/src/mips/frames-mips.h +24 -9
  300. data/vendor/v8/src/mips/full-codegen-mips.cc +473 -23
  301. data/vendor/v8/src/mips/ic-mips.cc +81 -45
  302. data/vendor/v8/src/mips/jump-target-mips.cc +11 -106
  303. data/vendor/v8/src/mips/lithium-codegen-mips.h +65 -0
  304. data/vendor/v8/src/mips/lithium-mips.h +304 -0
  305. data/vendor/v8/src/mips/macro-assembler-mips.cc +2391 -390
  306. data/vendor/v8/src/mips/macro-assembler-mips.h +718 -121
  307. data/vendor/v8/src/mips/regexp-macro-assembler-mips.cc +478 -0
  308. data/vendor/v8/src/mips/regexp-macro-assembler-mips.h +250 -0
  309. data/vendor/v8/src/mips/register-allocator-mips-inl.h +0 -3
  310. data/vendor/v8/src/mips/register-allocator-mips.h +3 -2
  311. data/vendor/v8/src/mips/simulator-mips.cc +1009 -221
  312. data/vendor/v8/src/mips/simulator-mips.h +119 -36
  313. data/vendor/v8/src/mips/stub-cache-mips.cc +331 -148
  314. data/vendor/v8/src/mips/{fast-codegen-mips.cc → virtual-frame-mips-inl.h} +11 -30
  315. data/vendor/v8/src/mips/virtual-frame-mips.cc +137 -149
  316. data/vendor/v8/src/mips/virtual-frame-mips.h +294 -312
  317. data/vendor/v8/src/mirror-debugger.js +9 -8
  318. data/vendor/v8/src/mksnapshot.cc +2 -2
  319. data/vendor/v8/src/objects-debug.cc +16 -16
  320. data/vendor/v8/src/objects-inl.h +421 -195
  321. data/vendor/v8/src/objects-printer.cc +7 -7
  322. data/vendor/v8/src/objects-visiting.cc +1 -1
  323. data/vendor/v8/src/objects-visiting.h +33 -12
  324. data/vendor/v8/src/objects.cc +935 -658
  325. data/vendor/v8/src/objects.h +234 -139
  326. data/vendor/v8/src/parser.cc +484 -439
  327. data/vendor/v8/src/parser.h +35 -14
  328. data/vendor/v8/src/platform-cygwin.cc +173 -107
  329. data/vendor/v8/src/platform-freebsd.cc +224 -72
  330. data/vendor/v8/src/platform-linux.cc +234 -95
  331. data/vendor/v8/src/platform-macos.cc +215 -82
  332. data/vendor/v8/src/platform-nullos.cc +9 -3
  333. data/vendor/v8/src/platform-openbsd.cc +22 -7
  334. data/vendor/v8/src/platform-posix.cc +30 -5
  335. data/vendor/v8/src/platform-solaris.cc +120 -38
  336. data/vendor/v8/src/platform-tls-mac.h +62 -0
  337. data/vendor/v8/src/platform-tls-win32.h +62 -0
  338. data/vendor/v8/src/platform-tls.h +50 -0
  339. data/vendor/v8/src/platform-win32.cc +195 -97
  340. data/vendor/v8/src/platform.h +72 -15
  341. data/vendor/v8/src/preparse-data.cc +2 -0
  342. data/vendor/v8/src/preparser-api.cc +8 -2
  343. data/vendor/v8/src/preparser.cc +1 -1
  344. data/vendor/v8/src/prettyprinter.cc +43 -52
  345. data/vendor/v8/src/prettyprinter.h +1 -1
  346. data/vendor/v8/src/profile-generator-inl.h +0 -28
  347. data/vendor/v8/src/profile-generator.cc +942 -685
  348. data/vendor/v8/src/profile-generator.h +210 -176
  349. data/vendor/v8/src/property.cc +6 -0
  350. data/vendor/v8/src/property.h +14 -3
  351. data/vendor/v8/src/regexp-macro-assembler-irregexp.cc +1 -1
  352. data/vendor/v8/src/regexp-macro-assembler.cc +28 -19
  353. data/vendor/v8/src/regexp-macro-assembler.h +11 -6
  354. data/vendor/v8/src/regexp-stack.cc +18 -10
  355. data/vendor/v8/src/regexp-stack.h +45 -21
  356. data/vendor/v8/src/regexp.js +3 -3
  357. data/vendor/v8/src/register-allocator-inl.h +3 -3
  358. data/vendor/v8/src/register-allocator.cc +1 -7
  359. data/vendor/v8/src/register-allocator.h +5 -15
  360. data/vendor/v8/src/rewriter.cc +2 -1
  361. data/vendor/v8/src/runtime-profiler.cc +158 -128
  362. data/vendor/v8/src/runtime-profiler.h +131 -15
  363. data/vendor/v8/src/runtime.cc +2409 -1692
  364. data/vendor/v8/src/runtime.h +93 -17
  365. data/vendor/v8/src/safepoint-table.cc +3 -0
  366. data/vendor/v8/src/safepoint-table.h +9 -3
  367. data/vendor/v8/src/scanner-base.cc +21 -28
  368. data/vendor/v8/src/scanner-base.h +22 -11
  369. data/vendor/v8/src/scanner.cc +3 -5
  370. data/vendor/v8/src/scanner.h +4 -2
  371. data/vendor/v8/src/scopeinfo.cc +11 -16
  372. data/vendor/v8/src/scopeinfo.h +26 -15
  373. data/vendor/v8/src/scopes.cc +67 -37
  374. data/vendor/v8/src/scopes.h +26 -12
  375. data/vendor/v8/src/serialize.cc +193 -154
  376. data/vendor/v8/src/serialize.h +41 -36
  377. data/vendor/v8/src/small-pointer-list.h +163 -0
  378. data/vendor/v8/src/snapshot-common.cc +1 -1
  379. data/vendor/v8/src/snapshot.h +3 -1
  380. data/vendor/v8/src/spaces-inl.h +30 -25
  381. data/vendor/v8/src/spaces.cc +263 -370
  382. data/vendor/v8/src/spaces.h +178 -166
  383. data/vendor/v8/src/string-search.cc +4 -3
  384. data/vendor/v8/src/string-search.h +21 -20
  385. data/vendor/v8/src/string-stream.cc +32 -24
  386. data/vendor/v8/src/string.js +7 -7
  387. data/vendor/v8/src/stub-cache.cc +324 -248
  388. data/vendor/v8/src/stub-cache.h +181 -155
  389. data/vendor/v8/src/token.cc +3 -3
  390. data/vendor/v8/src/token.h +3 -3
  391. data/vendor/v8/src/top.cc +218 -390
  392. data/vendor/v8/src/type-info.cc +98 -32
  393. data/vendor/v8/src/type-info.h +10 -3
  394. data/vendor/v8/src/unicode.cc +1 -1
  395. data/vendor/v8/src/unicode.h +1 -1
  396. data/vendor/v8/src/utils.h +3 -0
  397. data/vendor/v8/src/v8-counters.cc +18 -11
  398. data/vendor/v8/src/v8-counters.h +34 -13
  399. data/vendor/v8/src/v8.cc +66 -121
  400. data/vendor/v8/src/v8.h +7 -4
  401. data/vendor/v8/src/v8globals.h +18 -12
  402. data/vendor/v8/src/{memory.h → v8memory.h} +0 -0
  403. data/vendor/v8/src/v8natives.js +59 -18
  404. data/vendor/v8/src/v8threads.cc +127 -114
  405. data/vendor/v8/src/v8threads.h +42 -35
  406. data/vendor/v8/src/v8utils.h +2 -39
  407. data/vendor/v8/src/variables.h +1 -1
  408. data/vendor/v8/src/version.cc +26 -5
  409. data/vendor/v8/src/version.h +4 -0
  410. data/vendor/v8/src/virtual-frame-heavy-inl.h +2 -4
  411. data/vendor/v8/src/virtual-frame-light-inl.h +5 -4
  412. data/vendor/v8/src/vm-state-inl.h +21 -17
  413. data/vendor/v8/src/vm-state.h +7 -5
  414. data/vendor/v8/src/win32-headers.h +1 -0
  415. data/vendor/v8/src/x64/assembler-x64-inl.h +12 -11
  416. data/vendor/v8/src/x64/assembler-x64.cc +80 -40
  417. data/vendor/v8/src/x64/assembler-x64.h +67 -17
  418. data/vendor/v8/src/x64/builtins-x64.cc +34 -33
  419. data/vendor/v8/src/x64/code-stubs-x64.cc +636 -377
  420. data/vendor/v8/src/x64/code-stubs-x64.h +14 -48
  421. data/vendor/v8/src/x64/codegen-x64-inl.h +1 -1
  422. data/vendor/v8/src/x64/codegen-x64.cc +158 -136
  423. data/vendor/v8/src/x64/codegen-x64.h +4 -1
  424. data/vendor/v8/src/x64/cpu-x64.cc +7 -5
  425. data/vendor/v8/src/x64/debug-x64.cc +8 -6
  426. data/vendor/v8/src/x64/deoptimizer-x64.cc +195 -20
  427. data/vendor/v8/src/x64/disasm-x64.cc +42 -23
  428. data/vendor/v8/src/x64/frames-x64.cc +1 -1
  429. data/vendor/v8/src/x64/frames-x64.h +2 -2
  430. data/vendor/v8/src/x64/full-codegen-x64.cc +780 -218
  431. data/vendor/v8/src/x64/ic-x64.cc +77 -79
  432. data/vendor/v8/src/x64/jump-target-x64.cc +1 -1
  433. data/vendor/v8/src/x64/lithium-codegen-x64.cc +698 -181
  434. data/vendor/v8/src/x64/lithium-codegen-x64.h +31 -6
  435. data/vendor/v8/src/x64/lithium-x64.cc +136 -54
  436. data/vendor/v8/src/x64/lithium-x64.h +142 -51
  437. data/vendor/v8/src/x64/macro-assembler-x64.cc +456 -187
  438. data/vendor/v8/src/x64/macro-assembler-x64.h +166 -34
  439. data/vendor/v8/src/x64/regexp-macro-assembler-x64.cc +44 -28
  440. data/vendor/v8/src/x64/regexp-macro-assembler-x64.h +8 -4
  441. data/vendor/v8/src/x64/register-allocator-x64-inl.h +3 -3
  442. data/vendor/v8/src/x64/register-allocator-x64.cc +12 -8
  443. data/vendor/v8/src/x64/simulator-x64.h +5 -5
  444. data/vendor/v8/src/x64/stub-cache-x64.cc +299 -344
  445. data/vendor/v8/src/x64/virtual-frame-x64.cc +37 -13
  446. data/vendor/v8/src/x64/virtual-frame-x64.h +13 -7
  447. data/vendor/v8/src/zone-inl.h +49 -3
  448. data/vendor/v8/src/zone.cc +42 -41
  449. data/vendor/v8/src/zone.h +37 -34
  450. data/vendor/v8/test/benchmarks/testcfg.py +100 -0
  451. data/vendor/v8/test/cctest/SConscript +5 -4
  452. data/vendor/v8/test/cctest/cctest.h +3 -2
  453. data/vendor/v8/test/cctest/cctest.status +6 -11
  454. data/vendor/v8/test/cctest/test-accessors.cc +3 -3
  455. data/vendor/v8/test/cctest/test-alloc.cc +39 -33
  456. data/vendor/v8/test/cctest/test-api.cc +1092 -205
  457. data/vendor/v8/test/cctest/test-assembler-arm.cc +39 -25
  458. data/vendor/v8/test/cctest/test-assembler-ia32.cc +36 -37
  459. data/vendor/v8/test/cctest/test-assembler-mips.cc +1098 -40
  460. data/vendor/v8/test/cctest/test-assembler-x64.cc +32 -25
  461. data/vendor/v8/test/cctest/test-ast.cc +1 -0
  462. data/vendor/v8/test/cctest/test-circular-queue.cc +8 -5
  463. data/vendor/v8/test/cctest/test-compiler.cc +24 -24
  464. data/vendor/v8/test/cctest/test-cpu-profiler.cc +140 -5
  465. data/vendor/v8/test/cctest/test-dataflow.cc +1 -0
  466. data/vendor/v8/test/cctest/test-debug.cc +136 -77
  467. data/vendor/v8/test/cctest/test-decls.cc +1 -1
  468. data/vendor/v8/test/cctest/test-deoptimization.cc +25 -24
  469. data/vendor/v8/test/cctest/test-disasm-arm.cc +9 -4
  470. data/vendor/v8/test/cctest/test-disasm-ia32.cc +10 -8
  471. data/vendor/v8/test/cctest/test-func-name-inference.cc +10 -4
  472. data/vendor/v8/test/cctest/test-heap-profiler.cc +226 -164
  473. data/vendor/v8/test/cctest/test-heap.cc +240 -217
  474. data/vendor/v8/test/cctest/test-liveedit.cc +1 -0
  475. data/vendor/v8/test/cctest/test-log-stack-tracer.cc +18 -20
  476. data/vendor/v8/test/cctest/test-log.cc +114 -108
  477. data/vendor/v8/test/cctest/test-macro-assembler-x64.cc +247 -177
  478. data/vendor/v8/test/cctest/test-mark-compact.cc +129 -90
  479. data/vendor/v8/test/cctest/test-parsing.cc +15 -14
  480. data/vendor/v8/test/cctest/test-platform-linux.cc +1 -0
  481. data/vendor/v8/test/cctest/test-platform-tls.cc +66 -0
  482. data/vendor/v8/test/cctest/test-platform-win32.cc +1 -0
  483. data/vendor/v8/test/cctest/test-profile-generator.cc +1 -1
  484. data/vendor/v8/test/cctest/test-regexp.cc +53 -41
  485. data/vendor/v8/test/cctest/test-reloc-info.cc +18 -11
  486. data/vendor/v8/test/cctest/test-serialize.cc +44 -43
  487. data/vendor/v8/test/cctest/test-sockets.cc +8 -3
  488. data/vendor/v8/test/cctest/test-spaces.cc +47 -29
  489. data/vendor/v8/test/cctest/test-strings.cc +20 -20
  490. data/vendor/v8/test/cctest/test-thread-termination.cc +8 -3
  491. data/vendor/v8/test/cctest/test-threads.cc +5 -3
  492. data/vendor/v8/test/cctest/test-utils.cc +5 -4
  493. data/vendor/v8/test/cctest/testcfg.py +7 -3
  494. data/vendor/v8/test/es5conform/es5conform.status +2 -77
  495. data/vendor/v8/test/es5conform/testcfg.py +1 -1
  496. data/vendor/v8/test/message/testcfg.py +1 -1
  497. data/vendor/v8/test/mjsunit/accessors-on-global-object.js +3 -3
  498. data/vendor/v8/test/mjsunit/array-concat.js +43 -1
  499. data/vendor/v8/test/mjsunit/array-join.js +25 -0
  500. data/vendor/v8/test/mjsunit/bitops-info.js +7 -1
  501. data/vendor/v8/test/mjsunit/compiler/array-length.js +2 -2
  502. data/vendor/v8/test/mjsunit/compiler/global-accessors.js +47 -0
  503. data/vendor/v8/test/mjsunit/compiler/pic.js +1 -1
  504. data/vendor/v8/test/mjsunit/compiler/regress-loadfield.js +65 -0
  505. data/vendor/v8/test/mjsunit/math-sqrt.js +5 -1
  506. data/vendor/v8/test/mjsunit/mjsunit.js +59 -8
  507. data/vendor/v8/test/mjsunit/mjsunit.status +0 -12
  508. data/vendor/v8/test/mjsunit/mul-exhaustive.js +129 -11
  509. data/vendor/v8/test/mjsunit/negate-zero.js +1 -1
  510. data/vendor/v8/test/mjsunit/object-freeze.js +5 -13
  511. data/vendor/v8/test/mjsunit/object-prevent-extensions.js +9 -50
  512. data/vendor/v8/test/mjsunit/object-seal.js +4 -13
  513. data/vendor/v8/test/mjsunit/override-eval-with-non-function.js +36 -0
  514. data/vendor/v8/test/mjsunit/regress/regress-1145.js +54 -0
  515. data/vendor/v8/test/mjsunit/regress/regress-1172-bis.js +37 -0
  516. data/vendor/v8/test/mjsunit/regress/regress-1181.js +54 -0
  517. data/vendor/v8/test/mjsunit/regress/regress-1207.js +35 -0
  518. data/vendor/v8/test/mjsunit/regress/regress-1209.js +34 -0
  519. data/vendor/v8/test/mjsunit/regress/regress-1210.js +48 -0
  520. data/vendor/v8/test/mjsunit/regress/regress-1213.js +43 -0
  521. data/vendor/v8/test/mjsunit/regress/regress-1218.js +29 -0
  522. data/vendor/v8/test/mjsunit/regress/regress-1229.js +79 -0
  523. data/vendor/v8/test/mjsunit/regress/regress-1233.js +47 -0
  524. data/vendor/v8/test/mjsunit/regress/regress-1236.js +34 -0
  525. data/vendor/v8/test/mjsunit/regress/regress-1237.js +36 -0
  526. data/vendor/v8/test/mjsunit/regress/regress-1240.js +39 -0
  527. data/vendor/v8/test/mjsunit/regress/regress-1257.js +58 -0
  528. data/vendor/v8/test/mjsunit/regress/regress-1278.js +69 -0
  529. data/vendor/v8/test/mjsunit/regress/regress-create-exception.js +1 -0
  530. data/vendor/v8/test/mjsunit/regress/regress-lazy-deopt-reloc.js +52 -0
  531. data/vendor/v8/test/mjsunit/sin-cos.js +15 -10
  532. data/vendor/v8/test/mjsunit/smi-negative-zero.js +2 -2
  533. data/vendor/v8/test/mjsunit/str-to-num.js +1 -1
  534. data/vendor/v8/test/mjsunit/strict-mode.js +435 -0
  535. data/vendor/v8/test/mjsunit/testcfg.py +23 -6
  536. data/vendor/v8/test/mozilla/mozilla.status +0 -2
  537. data/vendor/v8/test/mozilla/testcfg.py +1 -1
  538. data/vendor/v8/test/preparser/empty.js +28 -0
  539. data/vendor/v8/test/preparser/functions-only.js +38 -0
  540. data/vendor/v8/test/preparser/non-alphanum.js +34 -0
  541. data/vendor/v8/test/preparser/symbols-only.js +49 -0
  542. data/vendor/v8/test/preparser/testcfg.py +90 -0
  543. data/vendor/v8/test/sputnik/testcfg.py +1 -1
  544. data/vendor/v8/test/test262/README +16 -0
  545. data/vendor/v8/test/test262/harness-adapt.js +80 -0
  546. data/vendor/v8/test/test262/test262.status +1506 -0
  547. data/vendor/v8/test/test262/testcfg.py +123 -0
  548. data/vendor/v8/tools/freebsd-tick-processor +10 -0
  549. data/vendor/v8/tools/gyp/v8.gyp +8 -33
  550. data/vendor/v8/tools/linux-tick-processor +5 -3
  551. data/vendor/v8/tools/test.py +37 -14
  552. data/vendor/v8/tools/tickprocessor.js +22 -8
  553. data/vendor/v8/tools/visual_studio/v8_base.vcproj +13 -1
  554. data/vendor/v8/tools/visual_studio/v8_base_arm.vcproj +5 -1
  555. data/vendor/v8/tools/visual_studio/v8_base_x64.vcproj +5 -1
  556. data/vendor/v8/tools/visual_studio/x64.vsprops +1 -0
  557. metadata +1495 -1341
  558. data/ext/extconf.rb +0 -22
  559. data/ext/mustang.cpp +0 -58
  560. data/vendor/v8/src/top.h +0 -608
@@ -0,0 +1,1304 @@
1
+ // Copyright 2010 the V8 project authors. All rights reserved.
2
+ // Redistribution and use in source and binary forms, with or without
3
+ // modification, are permitted provided that the following conditions are
4
+ // met:
5
+ //
6
+ // * Redistributions of source code must retain the above copyright
7
+ // notice, this list of conditions and the following disclaimer.
8
+ // * Redistributions in binary form must reproduce the above
9
+ // copyright notice, this list of conditions and the following
10
+ // disclaimer in the documentation and/or other materials provided
11
+ // with the distribution.
12
+ // * Neither the name of Google Inc. nor the names of its
13
+ // contributors may be used to endorse or promote products derived
14
+ // from this software without specific prior written permission.
15
+ //
16
+ // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17
+ // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18
+ // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19
+ // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20
+ // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
+ // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
+ // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
+ // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
+ // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
+ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
+ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
+
28
+ #ifndef V8_ISOLATE_H_
29
+ #define V8_ISOLATE_H_
30
+
31
+ #include "../include/v8-debug.h"
32
+ #include "allocation.h"
33
+ #include "apiutils.h"
34
+ #include "atomicops.h"
35
+ #include "builtins.h"
36
+ #include "contexts.h"
37
+ #include "execution.h"
38
+ #include "frames.h"
39
+ #include "global-handles.h"
40
+ #include "handles.h"
41
+ #include "heap.h"
42
+ #include "regexp-stack.h"
43
+ #include "runtime-profiler.h"
44
+ #include "runtime.h"
45
+ #include "zone.h"
46
+
47
+ namespace v8 {
48
+ namespace internal {
49
+
50
+ class AstSentinels;
51
+ class Bootstrapper;
52
+ class CodeGenerator;
53
+ class CodeRange;
54
+ class CompilationCache;
55
+ class ContextSlotCache;
56
+ class ContextSwitcher;
57
+ class Counters;
58
+ class CpuFeatures;
59
+ class CpuProfiler;
60
+ class DeoptimizerData;
61
+ class Deserializer;
62
+ class EmptyStatement;
63
+ class ExternalReferenceTable;
64
+ class Factory;
65
+ class FunctionInfoListener;
66
+ class HandleScopeImplementer;
67
+ class HeapProfiler;
68
+ class InlineRuntimeFunctionsTable;
69
+ class NoAllocationStringAllocator;
70
+ class PcToCodeCache;
71
+ class PreallocatedMemoryThread;
72
+ class ProducerHeapProfile;
73
+ class RegExpStack;
74
+ class SaveContext;
75
+ class ScannerConstants;
76
+ class StringInputBuffer;
77
+ class StringTracker;
78
+ class StubCache;
79
+ class ThreadManager;
80
+ class ThreadState;
81
+ class ThreadVisitor; // Defined in v8threads.h
82
+ class VMState;
83
+
84
+ // 'void function pointer', used to roundtrip the
85
+ // ExternalReference::ExternalReferenceRedirector since we can not include
86
+ // assembler.h, where it is defined, here.
87
+ typedef void* ExternalReferenceRedirectorPointer();
88
+
89
+
90
+ #ifdef ENABLE_DEBUGGER_SUPPORT
91
+ class Debug;
92
+ class Debugger;
93
+ class DebuggerAgent;
94
+ #endif
95
+
96
+ #if !defined(__arm__) && defined(V8_TARGET_ARCH_ARM) || \
97
+ !defined(__mips__) && defined(V8_TARGET_ARCH_MIPS)
98
+ class Redirection;
99
+ class Simulator;
100
+ #endif
101
+
102
+
103
+ // Static indirection table for handles to constants. If a frame
104
+ // element represents a constant, the data contains an index into
105
+ // this table of handles to the actual constants.
106
+ // Static indirection table for handles to constants. If a Result
107
+ // represents a constant, the data contains an index into this table
108
+ // of handles to the actual constants.
109
+ typedef ZoneList<Handle<Object> > ZoneObjectList;
110
+
111
+ #define RETURN_IF_SCHEDULED_EXCEPTION(isolate) \
112
+ if (isolate->has_scheduled_exception()) \
113
+ return isolate->PromoteScheduledException()
114
+
115
+ #define RETURN_IF_EMPTY_HANDLE_VALUE(isolate, call, value) \
116
+ if (call.is_null()) { \
117
+ ASSERT(isolate->has_pending_exception()); \
118
+ return value; \
119
+ }
120
+
121
+ #define RETURN_IF_EMPTY_HANDLE(isolate, call) \
122
+ RETURN_IF_EMPTY_HANDLE_VALUE(isolate, call, Failure::Exception())
123
+
124
+ #define ISOLATE_ADDRESS_LIST(C) \
125
+ C(handler_address) \
126
+ C(c_entry_fp_address) \
127
+ C(context_address) \
128
+ C(pending_exception_address) \
129
+ C(external_caught_exception_address)
130
+
131
+ #ifdef ENABLE_LOGGING_AND_PROFILING
132
+ #define ISOLATE_ADDRESS_LIST_PROF(C) \
133
+ C(js_entry_sp_address)
134
+ #else
135
+ #define ISOLATE_ADDRESS_LIST_PROF(C)
136
+ #endif
137
+
138
+
139
+ class ThreadLocalTop BASE_EMBEDDED {
140
+ public:
141
+ // Initialize the thread data.
142
+ void Initialize();
143
+
144
+ // Get the top C++ try catch handler or NULL if none are registered.
145
+ //
146
+ // This method is not guarenteed to return an address that can be
147
+ // used for comparison with addresses into the JS stack. If such an
148
+ // address is needed, use try_catch_handler_address.
149
+ v8::TryCatch* TryCatchHandler();
150
+
151
+ // Get the address of the top C++ try catch handler or NULL if
152
+ // none are registered.
153
+ //
154
+ // This method always returns an address that can be compared to
155
+ // pointers into the JavaScript stack. When running on actual
156
+ // hardware, try_catch_handler_address and TryCatchHandler return
157
+ // the same pointer. When running on a simulator with a separate JS
158
+ // stack, try_catch_handler_address returns a JS stack address that
159
+ // corresponds to the place on the JS stack where the C++ handler
160
+ // would have been if the stack were not separate.
161
+ inline Address try_catch_handler_address() {
162
+ return try_catch_handler_address_;
163
+ }
164
+
165
+ // Set the address of the top C++ try catch handler.
166
+ inline void set_try_catch_handler_address(Address address) {
167
+ try_catch_handler_address_ = address;
168
+ }
169
+
170
+ void Free() {
171
+ ASSERT(!has_pending_message_);
172
+ ASSERT(!external_caught_exception_);
173
+ ASSERT(try_catch_handler_address_ == NULL);
174
+ }
175
+
176
+ // The context where the current execution method is created and for variable
177
+ // lookups.
178
+ Context* context_;
179
+ int thread_id_;
180
+ MaybeObject* pending_exception_;
181
+ bool has_pending_message_;
182
+ const char* pending_message_;
183
+ Object* pending_message_obj_;
184
+ Script* pending_message_script_;
185
+ int pending_message_start_pos_;
186
+ int pending_message_end_pos_;
187
+ // Use a separate value for scheduled exceptions to preserve the
188
+ // invariants that hold about pending_exception. We may want to
189
+ // unify them later.
190
+ MaybeObject* scheduled_exception_;
191
+ bool external_caught_exception_;
192
+ SaveContext* save_context_;
193
+ v8::TryCatch* catcher_;
194
+
195
+ // Stack.
196
+ Address c_entry_fp_; // the frame pointer of the top c entry frame
197
+ Address handler_; // try-blocks are chained through the stack
198
+
199
+ #ifdef USE_SIMULATOR
200
+ #if defined(V8_TARGET_ARCH_ARM) || defined(V8_TARGET_ARCH_MIPS)
201
+ Simulator* simulator_;
202
+ #endif
203
+ #endif // USE_SIMULATOR
204
+
205
+ #ifdef ENABLE_LOGGING_AND_PROFILING
206
+ Address js_entry_sp_; // the stack pointer of the bottom js entry frame
207
+ Address external_callback_; // the external callback we're currently in
208
+ #endif
209
+
210
+ #ifdef ENABLE_VMSTATE_TRACKING
211
+ StateTag current_vm_state_;
212
+ #endif
213
+
214
+ // Generated code scratch locations.
215
+ int32_t formal_count_;
216
+
217
+ // Call back function to report unsafe JS accesses.
218
+ v8::FailedAccessCheckCallback failed_access_check_callback_;
219
+
220
+ private:
221
+ Address try_catch_handler_address_;
222
+ };
223
+
224
+ #if defined(V8_TARGET_ARCH_ARM) || defined(V8_TARGET_ARCH_MIPS)
225
+
226
+ #define ISOLATE_PLATFORM_INIT_LIST(V) \
227
+ /* VirtualFrame::SpilledScope state */ \
228
+ V(bool, is_virtual_frame_in_spilled_scope, false) \
229
+ /* CodeGenerator::EmitNamedStore state */ \
230
+ V(int, inlined_write_barrier_size, -1)
231
+
232
+ #if !defined(__arm__) && !defined(__mips__)
233
+ class HashMap;
234
+ #endif
235
+
236
+ #else
237
+
238
+ #define ISOLATE_PLATFORM_INIT_LIST(V)
239
+
240
+ #endif
241
+
242
+ #ifdef ENABLE_DEBUGGER_SUPPORT
243
+
244
+ #define ISOLATE_DEBUGGER_INIT_LIST(V) \
245
+ V(uint64_t, enabled_cpu_features, 0) \
246
+ V(v8::Debug::EventCallback, debug_event_callback, NULL) \
247
+ V(DebuggerAgent*, debugger_agent_instance, NULL)
248
+ #else
249
+
250
+ #define ISOLATE_DEBUGGER_INIT_LIST(V)
251
+
252
+ #endif
253
+
254
+ #ifdef DEBUG
255
+
256
+ #define ISOLATE_INIT_DEBUG_ARRAY_LIST(V) \
257
+ V(CommentStatistic, paged_space_comments_statistics, \
258
+ CommentStatistic::kMaxComments + 1)
259
+ #else
260
+
261
+ #define ISOLATE_INIT_DEBUG_ARRAY_LIST(V)
262
+
263
+ #endif
264
+
265
+ #ifdef ENABLE_LOGGING_AND_PROFILING
266
+
267
+ #define ISOLATE_LOGGING_INIT_LIST(V) \
268
+ V(CpuProfiler*, cpu_profiler, NULL) \
269
+ V(HeapProfiler*, heap_profiler, NULL)
270
+
271
+ #else
272
+
273
+ #define ISOLATE_LOGGING_INIT_LIST(V)
274
+
275
+ #endif
276
+
277
+ #define ISOLATE_INIT_ARRAY_LIST(V) \
278
+ /* SerializerDeserializer state. */ \
279
+ V(Object*, serialize_partial_snapshot_cache, kPartialSnapshotCacheCapacity) \
280
+ V(int, jsregexp_static_offsets_vector, kJSRegexpStaticOffsetsVectorSize) \
281
+ V(int, bad_char_shift_table, kUC16AlphabetSize) \
282
+ V(int, good_suffix_shift_table, (kBMMaxShift + 1)) \
283
+ V(int, suffix_table, (kBMMaxShift + 1)) \
284
+ ISOLATE_INIT_DEBUG_ARRAY_LIST(V)
285
+
286
+ typedef List<HeapObject*, PreallocatedStorage> DebugObjectCache;
287
+
288
+ #define ISOLATE_INIT_LIST(V) \
289
+ /* AssertNoZoneAllocation state. */ \
290
+ V(bool, zone_allow_allocation, true) \
291
+ /* SerializerDeserializer state. */ \
292
+ V(int, serialize_partial_snapshot_cache_length, 0) \
293
+ /* Assembler state. */ \
294
+ /* A previously allocated buffer of kMinimalBufferSize bytes, or NULL. */ \
295
+ V(byte*, assembler_spare_buffer, NULL) \
296
+ V(FatalErrorCallback, exception_behavior, NULL) \
297
+ V(v8::Debug::MessageHandler, message_handler, NULL) \
298
+ /* To distinguish the function templates, so that we can find them in the */ \
299
+ /* function cache of the global context. */ \
300
+ V(int, next_serial_number, 0) \
301
+ V(ExternalReferenceRedirectorPointer*, external_reference_redirector, NULL) \
302
+ V(bool, always_allow_natives_syntax, false) \
303
+ /* Part of the state of liveedit. */ \
304
+ V(FunctionInfoListener*, active_function_info_listener, NULL) \
305
+ /* State for Relocatable. */ \
306
+ V(Relocatable*, relocatable_top, NULL) \
307
+ /* State for CodeEntry in profile-generator. */ \
308
+ V(CodeGenerator*, current_code_generator, NULL) \
309
+ V(bool, jump_target_compiling_deferred_code, false) \
310
+ V(DebugObjectCache*, string_stream_debug_object_cache, NULL) \
311
+ V(Object*, string_stream_current_security_token, NULL) \
312
+ /* TODO(isolates): Release this on destruction? */ \
313
+ V(int*, irregexp_interpreter_backtrack_stack_cache, NULL) \
314
+ /* Serializer state. */ \
315
+ V(ExternalReferenceTable*, external_reference_table, NULL) \
316
+ /* AstNode state. */ \
317
+ V(unsigned, ast_node_id, 0) \
318
+ V(unsigned, ast_node_count, 0) \
319
+ ISOLATE_PLATFORM_INIT_LIST(V) \
320
+ ISOLATE_LOGGING_INIT_LIST(V) \
321
+ ISOLATE_DEBUGGER_INIT_LIST(V)
322
+
323
+ class Isolate {
324
+ // These forward declarations are required to make the friend declarations in
325
+ // PerIsolateThreadData work on some older versions of gcc.
326
+ class ThreadDataTable;
327
+ class EntryStackItem;
328
+ public:
329
+ ~Isolate();
330
+
331
+ typedef int ThreadId;
332
+
333
+ // A thread has a PerIsolateThreadData instance for each isolate that it has
334
+ // entered. That instance is allocated when the isolate is initially entered
335
+ // and reused on subsequent entries.
336
+ class PerIsolateThreadData {
337
+ public:
338
+ PerIsolateThreadData(Isolate* isolate, ThreadId thread_id)
339
+ : isolate_(isolate),
340
+ thread_id_(thread_id),
341
+ stack_limit_(0),
342
+ thread_state_(NULL),
343
+ #if !defined(__arm__) && defined(V8_TARGET_ARCH_ARM) || \
344
+ !defined(__mips__) && defined(V8_TARGET_ARCH_MIPS)
345
+ simulator_(NULL),
346
+ #endif
347
+ next_(NULL),
348
+ prev_(NULL) { }
349
+ Isolate* isolate() const { return isolate_; }
350
+ ThreadId thread_id() const { return thread_id_; }
351
+ void set_stack_limit(uintptr_t value) { stack_limit_ = value; }
352
+ uintptr_t stack_limit() const { return stack_limit_; }
353
+ ThreadState* thread_state() const { return thread_state_; }
354
+ void set_thread_state(ThreadState* value) { thread_state_ = value; }
355
+
356
+ #if !defined(__arm__) && defined(V8_TARGET_ARCH_ARM) || \
357
+ !defined(__mips__) && defined(V8_TARGET_ARCH_MIPS)
358
+ Simulator* simulator() const { return simulator_; }
359
+ void set_simulator(Simulator* simulator) {
360
+ simulator_ = simulator;
361
+ }
362
+ #endif
363
+
364
+ bool Matches(Isolate* isolate, ThreadId thread_id) const {
365
+ return isolate_ == isolate && thread_id_ == thread_id;
366
+ }
367
+
368
+ private:
369
+ Isolate* isolate_;
370
+ ThreadId thread_id_;
371
+ uintptr_t stack_limit_;
372
+ ThreadState* thread_state_;
373
+
374
+ #if !defined(__arm__) && defined(V8_TARGET_ARCH_ARM) || \
375
+ !defined(__mips__) && defined(V8_TARGET_ARCH_MIPS)
376
+ Simulator* simulator_;
377
+ #endif
378
+
379
+ PerIsolateThreadData* next_;
380
+ PerIsolateThreadData* prev_;
381
+
382
+ friend class Isolate;
383
+ friend class ThreadDataTable;
384
+ friend class EntryStackItem;
385
+
386
+ DISALLOW_COPY_AND_ASSIGN(PerIsolateThreadData);
387
+ };
388
+
389
+
390
+ enum AddressId {
391
+ #define C(name) k_##name,
392
+ ISOLATE_ADDRESS_LIST(C)
393
+ ISOLATE_ADDRESS_LIST_PROF(C)
394
+ #undef C
395
+ k_isolate_address_count
396
+ };
397
+
398
+ // Returns the PerIsolateThreadData for the current thread (or NULL if one is
399
+ // not currently set).
400
+ static PerIsolateThreadData* CurrentPerIsolateThreadData() {
401
+ return reinterpret_cast<PerIsolateThreadData*>(
402
+ Thread::GetThreadLocal(per_isolate_thread_data_key_));
403
+ }
404
+
405
+ // Returns the isolate inside which the current thread is running.
406
+ INLINE(static Isolate* Current()) {
407
+ Isolate* isolate = reinterpret_cast<Isolate*>(
408
+ Thread::GetExistingThreadLocal(isolate_key_));
409
+ ASSERT(isolate != NULL);
410
+ return isolate;
411
+ }
412
+
413
+ INLINE(static Isolate* UncheckedCurrent()) {
414
+ return reinterpret_cast<Isolate*>(Thread::GetThreadLocal(isolate_key_));
415
+ }
416
+
417
+ bool Init(Deserializer* des);
418
+
419
+ bool IsInitialized() { return state_ == INITIALIZED; }
420
+
421
+ // True if at least one thread Enter'ed this isolate.
422
+ bool IsInUse() { return entry_stack_ != NULL; }
423
+
424
+ // Destroys the non-default isolates.
425
+ // Sets default isolate into "has_been_disposed" state rather then destroying,
426
+ // for legacy API reasons.
427
+ void TearDown();
428
+
429
+ bool IsDefaultIsolate() const { return this == default_isolate_; }
430
+
431
+ // Ensures that process-wide resources and the default isolate have been
432
+ // allocated. It is only necessary to call this method in rare casses, for
433
+ // example if you are using V8 from within the body of a static initializer.
434
+ // Safe to call multiple times.
435
+ static void EnsureDefaultIsolate();
436
+
437
+ // Get the debugger from the default isolate. Preinitializes the
438
+ // default isolate if needed.
439
+ static Debugger* GetDefaultIsolateDebugger();
440
+
441
+ // Get the stack guard from the default isolate. Preinitializes the
442
+ // default isolate if needed.
443
+ static StackGuard* GetDefaultIsolateStackGuard();
444
+
445
+ // Returns the key used to store the pointer to the current isolate.
446
+ // Used internally for V8 threads that do not execute JavaScript but still
447
+ // are part of the domain of an isolate (like the context switcher).
448
+ static Thread::LocalStorageKey isolate_key() {
449
+ return isolate_key_;
450
+ }
451
+
452
+ // Returns the key used to store process-wide thread IDs.
453
+ static Thread::LocalStorageKey thread_id_key() {
454
+ return thread_id_key_;
455
+ }
456
+
457
+ // Atomically allocates a new thread ID.
458
+ static ThreadId AllocateThreadId();
459
+
460
+ // If a client attempts to create a Locker without specifying an isolate,
461
+ // we assume that the client is using legacy behavior. Set up the current
462
+ // thread to be inside the implicit isolate (or fail a check if we have
463
+ // switched to non-legacy behavior).
464
+ static void EnterDefaultIsolate();
465
+
466
+ // Debug.
467
+ // Mutex for serializing access to break control structures.
468
+ Mutex* break_access() { return break_access_; }
469
+
470
+ Address get_address_from_id(AddressId id);
471
+
472
+ // Access to top context (where the current function object was created).
473
+ Context* context() { return thread_local_top_.context_; }
474
+ void set_context(Context* context) {
475
+ thread_local_top_.context_ = context;
476
+ }
477
+ Context** context_address() { return &thread_local_top_.context_; }
478
+
479
+ SaveContext* save_context() {return thread_local_top_.save_context_; }
480
+ void set_save_context(SaveContext* save) {
481
+ thread_local_top_.save_context_ = save;
482
+ }
483
+
484
+ // Access to current thread id.
485
+ int thread_id() { return thread_local_top_.thread_id_; }
486
+ void set_thread_id(int id) { thread_local_top_.thread_id_ = id; }
487
+
488
+ // Interface to pending exception.
489
+ MaybeObject* pending_exception() {
490
+ ASSERT(has_pending_exception());
491
+ return thread_local_top_.pending_exception_;
492
+ }
493
+ bool external_caught_exception() {
494
+ return thread_local_top_.external_caught_exception_;
495
+ }
496
+ void set_pending_exception(MaybeObject* exception) {
497
+ thread_local_top_.pending_exception_ = exception;
498
+ }
499
+ void clear_pending_exception() {
500
+ thread_local_top_.pending_exception_ = heap_.the_hole_value();
501
+ }
502
+ MaybeObject** pending_exception_address() {
503
+ return &thread_local_top_.pending_exception_;
504
+ }
505
+ bool has_pending_exception() {
506
+ return !thread_local_top_.pending_exception_->IsTheHole();
507
+ }
508
+ void clear_pending_message() {
509
+ thread_local_top_.has_pending_message_ = false;
510
+ thread_local_top_.pending_message_ = NULL;
511
+ thread_local_top_.pending_message_obj_ = heap_.the_hole_value();
512
+ thread_local_top_.pending_message_script_ = NULL;
513
+ }
514
+ v8::TryCatch* try_catch_handler() {
515
+ return thread_local_top_.TryCatchHandler();
516
+ }
517
+ Address try_catch_handler_address() {
518
+ return thread_local_top_.try_catch_handler_address();
519
+ }
520
+ bool* external_caught_exception_address() {
521
+ return &thread_local_top_.external_caught_exception_;
522
+ }
523
+
524
+ MaybeObject** scheduled_exception_address() {
525
+ return &thread_local_top_.scheduled_exception_;
526
+ }
527
+ MaybeObject* scheduled_exception() {
528
+ ASSERT(has_scheduled_exception());
529
+ return thread_local_top_.scheduled_exception_;
530
+ }
531
+ bool has_scheduled_exception() {
532
+ return !thread_local_top_.scheduled_exception_->IsTheHole();
533
+ }
534
+ void clear_scheduled_exception() {
535
+ thread_local_top_.scheduled_exception_ = heap_.the_hole_value();
536
+ }
537
+
538
+ bool IsExternallyCaught();
539
+
540
+ bool is_catchable_by_javascript(MaybeObject* exception) {
541
+ return (exception != Failure::OutOfMemoryException()) &&
542
+ (exception != heap()->termination_exception());
543
+ }
544
+
545
+ // JS execution stack (see frames.h).
546
+ static Address c_entry_fp(ThreadLocalTop* thread) {
547
+ return thread->c_entry_fp_;
548
+ }
549
+ static Address handler(ThreadLocalTop* thread) { return thread->handler_; }
550
+
551
+ inline Address* c_entry_fp_address() {
552
+ return &thread_local_top_.c_entry_fp_;
553
+ }
554
+ inline Address* handler_address() { return &thread_local_top_.handler_; }
555
+
556
+ #ifdef ENABLE_LOGGING_AND_PROFILING
557
+ // Bottom JS entry (see StackTracer::Trace in log.cc).
558
+ static Address js_entry_sp(ThreadLocalTop* thread) {
559
+ return thread->js_entry_sp_;
560
+ }
561
+ inline Address* js_entry_sp_address() {
562
+ return &thread_local_top_.js_entry_sp_;
563
+ }
564
+ #endif
565
+
566
+ // Generated code scratch locations.
567
+ void* formal_count_address() { return &thread_local_top_.formal_count_; }
568
+
569
+ // Returns the global object of the current context. It could be
570
+ // a builtin object, or a js global object.
571
+ Handle<GlobalObject> global() {
572
+ return Handle<GlobalObject>(context()->global());
573
+ }
574
+
575
+ // Returns the global proxy object of the current context.
576
+ Object* global_proxy() {
577
+ return context()->global_proxy();
578
+ }
579
+
580
+ Handle<JSBuiltinsObject> js_builtins_object() {
581
+ return Handle<JSBuiltinsObject>(thread_local_top_.context_->builtins());
582
+ }
583
+
584
+ static int ArchiveSpacePerThread() { return sizeof(ThreadLocalTop); }
585
+ void FreeThreadResources() { thread_local_top_.Free(); }
586
+
587
+ // This method is called by the api after operations that may throw
588
+ // exceptions. If an exception was thrown and not handled by an external
589
+ // handler the exception is scheduled to be rethrown when we return to running
590
+ // JavaScript code. If an exception is scheduled true is returned.
591
+ bool OptionalRescheduleException(bool is_bottom_call);
592
+
593
+ void SetCaptureStackTraceForUncaughtExceptions(
594
+ bool capture,
595
+ int frame_limit,
596
+ StackTrace::StackTraceOptions options);
597
+
598
+ // Tells whether the current context has experienced an out of memory
599
+ // exception.
600
+ bool is_out_of_memory();
601
+
602
+ void PrintCurrentStackTrace(FILE* out);
603
+ void PrintStackTrace(FILE* out, char* thread_data);
604
+ void PrintStack(StringStream* accumulator);
605
+ void PrintStack();
606
+ Handle<String> StackTraceString();
607
+ Handle<JSArray> CaptureCurrentStackTrace(
608
+ int frame_limit,
609
+ StackTrace::StackTraceOptions options);
610
+
611
+ // Returns if the top context may access the given global object. If
612
+ // the result is false, the pending exception is guaranteed to be
613
+ // set.
614
+ bool MayNamedAccess(JSObject* receiver,
615
+ Object* key,
616
+ v8::AccessType type);
617
+ bool MayIndexedAccess(JSObject* receiver,
618
+ uint32_t index,
619
+ v8::AccessType type);
620
+
621
+ void SetFailedAccessCheckCallback(v8::FailedAccessCheckCallback callback);
622
+ void ReportFailedAccessCheck(JSObject* receiver, v8::AccessType type);
623
+
624
+ // Exception throwing support. The caller should use the result
625
+ // of Throw() as its return value.
626
+ Failure* Throw(Object* exception, MessageLocation* location = NULL);
627
+ // Re-throw an exception. This involves no error reporting since
628
+ // error reporting was handled when the exception was thrown
629
+ // originally.
630
+ Failure* ReThrow(MaybeObject* exception, MessageLocation* location = NULL);
631
+ void ScheduleThrow(Object* exception);
632
+ void ReportPendingMessages();
633
+ Failure* ThrowIllegalOperation();
634
+
635
+ // Promote a scheduled exception to pending. Asserts has_scheduled_exception.
636
+ Failure* PromoteScheduledException();
637
+ void DoThrow(MaybeObject* exception,
638
+ MessageLocation* location,
639
+ const char* message);
640
+ // Checks if exception should be reported and finds out if it's
641
+ // caught externally.
642
+ bool ShouldReportException(bool* can_be_caught_externally,
643
+ bool catchable_by_javascript);
644
+
645
+ // Attempts to compute the current source location, storing the
646
+ // result in the target out parameter.
647
+ void ComputeLocation(MessageLocation* target);
648
+
649
+ // Override command line flag.
650
+ void TraceException(bool flag);
651
+
652
+ // Out of resource exception helpers.
653
+ Failure* StackOverflow();
654
+ Failure* TerminateExecution();
655
+
656
+ // Administration
657
+ void Iterate(ObjectVisitor* v);
658
+ void Iterate(ObjectVisitor* v, ThreadLocalTop* t);
659
+ char* Iterate(ObjectVisitor* v, char* t);
660
+ void IterateThread(ThreadVisitor* v);
661
+ void IterateThread(ThreadVisitor* v, char* t);
662
+
663
+
664
+ // Returns the current global context.
665
+ Handle<Context> global_context();
666
+
667
+ // Returns the global context of the calling JavaScript code. That
668
+ // is, the global context of the top-most JavaScript frame.
669
+ Handle<Context> GetCallingGlobalContext();
670
+
671
+ void RegisterTryCatchHandler(v8::TryCatch* that);
672
+ void UnregisterTryCatchHandler(v8::TryCatch* that);
673
+
674
+ char* ArchiveThread(char* to);
675
+ char* RestoreThread(char* from);
676
+
677
+ static const char* const kStackOverflowMessage;
678
+
679
+ static const int kUC16AlphabetSize = 256; // See StringSearchBase.
680
+ static const int kBMMaxShift = 250; // See StringSearchBase.
681
+
682
+ // Accessors.
683
+ #define GLOBAL_ACCESSOR(type, name, initialvalue) \
684
+ inline type name() const { \
685
+ ASSERT(OFFSET_OF(Isolate, name##_) == name##_debug_offset_); \
686
+ return name##_; \
687
+ } \
688
+ inline void set_##name(type value) { \
689
+ ASSERT(OFFSET_OF(Isolate, name##_) == name##_debug_offset_); \
690
+ name##_ = value; \
691
+ }
692
+ ISOLATE_INIT_LIST(GLOBAL_ACCESSOR)
693
+ #undef GLOBAL_ACCESSOR
694
+
695
+ #define GLOBAL_ARRAY_ACCESSOR(type, name, length) \
696
+ inline type* name() { \
697
+ ASSERT(OFFSET_OF(Isolate, name##_) == name##_debug_offset_); \
698
+ return &(name##_)[0]; \
699
+ }
700
+ ISOLATE_INIT_ARRAY_LIST(GLOBAL_ARRAY_ACCESSOR)
701
+ #undef GLOBAL_ARRAY_ACCESSOR
702
+
703
+ #define GLOBAL_CONTEXT_FIELD_ACCESSOR(index, type, name) \
704
+ Handle<type> name() { \
705
+ return Handle<type>(context()->global_context()->name()); \
706
+ }
707
+ GLOBAL_CONTEXT_FIELDS(GLOBAL_CONTEXT_FIELD_ACCESSOR)
708
+ #undef GLOBAL_CONTEXT_FIELD_ACCESSOR
709
+
710
+ Bootstrapper* bootstrapper() { return bootstrapper_; }
711
+ Counters* counters() { return counters_; }
712
+ CodeRange* code_range() { return code_range_; }
713
+ RuntimeProfiler* runtime_profiler() { return runtime_profiler_; }
714
+ CompilationCache* compilation_cache() { return compilation_cache_; }
715
+ Logger* logger() { return logger_; }
716
+ StackGuard* stack_guard() { return &stack_guard_; }
717
+ Heap* heap() { return &heap_; }
718
+ StatsTable* stats_table() { return stats_table_; }
719
+ StubCache* stub_cache() { return stub_cache_; }
720
+ DeoptimizerData* deoptimizer_data() { return deoptimizer_data_; }
721
+ ThreadLocalTop* thread_local_top() { return &thread_local_top_; }
722
+
723
+ TranscendentalCache* transcendental_cache() const {
724
+ return transcendental_cache_;
725
+ }
726
+
727
+ MemoryAllocator* memory_allocator() {
728
+ return memory_allocator_;
729
+ }
730
+
731
+ KeyedLookupCache* keyed_lookup_cache() {
732
+ return keyed_lookup_cache_;
733
+ }
734
+
735
+ ContextSlotCache* context_slot_cache() {
736
+ return context_slot_cache_;
737
+ }
738
+
739
+ DescriptorLookupCache* descriptor_lookup_cache() {
740
+ return descriptor_lookup_cache_;
741
+ }
742
+
743
+ v8::ImplementationUtilities::HandleScopeData* handle_scope_data() {
744
+ return &handle_scope_data_;
745
+ }
746
+ HandleScopeImplementer* handle_scope_implementer() {
747
+ ASSERT(handle_scope_implementer_);
748
+ return handle_scope_implementer_;
749
+ }
750
+ Zone* zone() { return &zone_; }
751
+
752
+ ScannerConstants* scanner_constants() {
753
+ return scanner_constants_;
754
+ }
755
+
756
+ PcToCodeCache* pc_to_code_cache() { return pc_to_code_cache_; }
757
+
758
+ StringInputBuffer* write_input_buffer() { return write_input_buffer_; }
759
+
760
+ GlobalHandles* global_handles() { return global_handles_; }
761
+
762
+ ThreadManager* thread_manager() { return thread_manager_; }
763
+
764
+ ContextSwitcher* context_switcher() { return context_switcher_; }
765
+
766
+ void set_context_switcher(ContextSwitcher* switcher) {
767
+ context_switcher_ = switcher;
768
+ }
769
+
770
+ StringTracker* string_tracker() { return string_tracker_; }
771
+
772
+ unibrow::Mapping<unibrow::Ecma262UnCanonicalize>* jsregexp_uncanonicalize() {
773
+ return &jsregexp_uncanonicalize_;
774
+ }
775
+
776
+ unibrow::Mapping<unibrow::CanonicalizationRange>* jsregexp_canonrange() {
777
+ return &jsregexp_canonrange_;
778
+ }
779
+
780
+ StringInputBuffer* objects_string_compare_buffer_a() {
781
+ return &objects_string_compare_buffer_a_;
782
+ }
783
+
784
+ StringInputBuffer* objects_string_compare_buffer_b() {
785
+ return &objects_string_compare_buffer_b_;
786
+ }
787
+
788
+ StaticResource<StringInputBuffer>* objects_string_input_buffer() {
789
+ return &objects_string_input_buffer_;
790
+ }
791
+
792
+ AstSentinels* ast_sentinels() { return ast_sentinels_; }
793
+
794
+ RuntimeState* runtime_state() { return &runtime_state_; }
795
+
796
+ StringInputBuffer* liveedit_compare_substrings_buf1() {
797
+ return &liveedit_compare_substrings_buf1_;
798
+ }
799
+
800
+ StringInputBuffer* liveedit_compare_substrings_buf2() {
801
+ return &liveedit_compare_substrings_buf2_;
802
+ }
803
+
804
+ StaticResource<SafeStringInputBuffer>* compiler_safe_string_input_buffer() {
805
+ return &compiler_safe_string_input_buffer_;
806
+ }
807
+
808
+ Builtins* builtins() { return &builtins_; }
809
+
810
+ unibrow::Mapping<unibrow::Ecma262Canonicalize>*
811
+ regexp_macro_assembler_canonicalize() {
812
+ return &regexp_macro_assembler_canonicalize_;
813
+ }
814
+
815
+ RegExpStack* regexp_stack() { return regexp_stack_; }
816
+
817
+ unibrow::Mapping<unibrow::Ecma262Canonicalize>*
818
+ interp_canonicalize_mapping() {
819
+ return &interp_canonicalize_mapping_;
820
+ }
821
+
822
+ ZoneObjectList* frame_element_constant_list() {
823
+ return &frame_element_constant_list_;
824
+ }
825
+
826
+ ZoneObjectList* result_constant_list() {
827
+ return &result_constant_list_;
828
+ }
829
+
830
+ void* PreallocatedStorageNew(size_t size);
831
+ void PreallocatedStorageDelete(void* p);
832
+ void PreallocatedStorageInit(size_t size);
833
+
834
+ #ifdef ENABLE_DEBUGGER_SUPPORT
835
+ Debugger* debugger() { return debugger_; }
836
+ Debug* debug() { return debug_; }
837
+ #endif
838
+
839
+ #ifdef ENABLE_LOGGING_AND_PROFILING
840
+ ProducerHeapProfile* producer_heap_profile() {
841
+ return producer_heap_profile_;
842
+ }
843
+ #endif
844
+
845
+ #ifdef DEBUG
846
+ HistogramInfo* heap_histograms() { return heap_histograms_; }
847
+
848
+ JSObject::SpillInformation* js_spill_information() {
849
+ return &js_spill_information_;
850
+ }
851
+
852
+ int* code_kind_statistics() { return code_kind_statistics_; }
853
+ #endif
854
+
855
+ #if defined(V8_TARGET_ARCH_ARM) && !defined(__arm__) || \
856
+ defined(V8_TARGET_ARCH_MIPS) && !defined(__mips__)
857
+ bool simulator_initialized() { return simulator_initialized_; }
858
+ void set_simulator_initialized(bool initialized) {
859
+ simulator_initialized_ = initialized;
860
+ }
861
+
862
+ HashMap* simulator_i_cache() { return simulator_i_cache_; }
863
+ void set_simulator_i_cache(HashMap* hash_map) {
864
+ simulator_i_cache_ = hash_map;
865
+ }
866
+
867
+ Redirection* simulator_redirection() {
868
+ return simulator_redirection_;
869
+ }
870
+ void set_simulator_redirection(Redirection* redirection) {
871
+ simulator_redirection_ = redirection;
872
+ }
873
+ #endif
874
+
875
+ Factory* factory() { return reinterpret_cast<Factory*>(this); }
876
+
877
+ // SerializerDeserializer state.
878
+ static const int kPartialSnapshotCacheCapacity = 1400;
879
+
880
+ static const int kJSRegexpStaticOffsetsVectorSize = 50;
881
+
882
+ #ifdef ENABLE_LOGGING_AND_PROFILING
883
+ Address external_callback() {
884
+ return thread_local_top_.external_callback_;
885
+ }
886
+ void set_external_callback(Address callback) {
887
+ thread_local_top_.external_callback_ = callback;
888
+ }
889
+ #endif
890
+
891
+ #ifdef ENABLE_VMSTATE_TRACKING
892
+ StateTag current_vm_state() {
893
+ return thread_local_top_.current_vm_state_;
894
+ }
895
+
896
+ void SetCurrentVMState(StateTag state) {
897
+ if (RuntimeProfiler::IsEnabled()) {
898
+ if (state == JS) {
899
+ // JS or non-JS -> JS transition.
900
+ RuntimeProfiler::IsolateEnteredJS(this);
901
+ } else if (thread_local_top_.current_vm_state_ == JS) {
902
+ // JS -> non-JS transition.
903
+ ASSERT(RuntimeProfiler::IsSomeIsolateInJS());
904
+ RuntimeProfiler::IsolateExitedJS(this);
905
+ }
906
+ }
907
+ thread_local_top_.current_vm_state_ = state;
908
+ }
909
+ #endif
910
+
911
+ void ResetEagerOptimizingData();
912
+
913
+ private:
914
+ Isolate();
915
+
916
+ // The per-process lock should be acquired before the ThreadDataTable is
917
+ // modified.
918
+ class ThreadDataTable {
919
+ public:
920
+ ThreadDataTable();
921
+ ~ThreadDataTable();
922
+
923
+ PerIsolateThreadData* Lookup(Isolate* isolate, ThreadId thread_id);
924
+ void Insert(PerIsolateThreadData* data);
925
+ void Remove(Isolate* isolate, ThreadId thread_id);
926
+ void Remove(PerIsolateThreadData* data);
927
+
928
+ private:
929
+ PerIsolateThreadData* list_;
930
+ };
931
+
932
+ // These items form a stack synchronously with threads Enter'ing and Exit'ing
933
+ // the Isolate. The top of the stack points to a thread which is currently
934
+ // running the Isolate. When the stack is empty, the Isolate is considered
935
+ // not entered by any thread and can be Disposed.
936
+ // If the same thread enters the Isolate more then once, the entry_count_
937
+ // is incremented rather then a new item pushed to the stack.
938
+ class EntryStackItem {
939
+ public:
940
+ EntryStackItem(PerIsolateThreadData* previous_thread_data,
941
+ Isolate* previous_isolate,
942
+ EntryStackItem* previous_item)
943
+ : entry_count(1),
944
+ previous_thread_data(previous_thread_data),
945
+ previous_isolate(previous_isolate),
946
+ previous_item(previous_item) { }
947
+
948
+ int entry_count;
949
+ PerIsolateThreadData* previous_thread_data;
950
+ Isolate* previous_isolate;
951
+ EntryStackItem* previous_item;
952
+
953
+ DISALLOW_COPY_AND_ASSIGN(EntryStackItem);
954
+ };
955
+
956
+ // This mutex protects highest_thread_id_, thread_data_table_ and
957
+ // default_isolate_.
958
+ static Mutex* process_wide_mutex_;
959
+
960
+ static Thread::LocalStorageKey per_isolate_thread_data_key_;
961
+ static Thread::LocalStorageKey isolate_key_;
962
+ static Thread::LocalStorageKey thread_id_key_;
963
+ static Isolate* default_isolate_;
964
+ static ThreadDataTable* thread_data_table_;
965
+ static ThreadId highest_thread_id_;
966
+
967
+ bool PreInit();
968
+
969
+ void Deinit();
970
+
971
+ static void SetIsolateThreadLocals(Isolate* isolate,
972
+ PerIsolateThreadData* data);
973
+
974
+ enum State {
975
+ UNINITIALIZED, // Some components may not have been allocated.
976
+ PREINITIALIZED, // Components have been allocated but not initialized.
977
+ INITIALIZED // All components are fully initialized.
978
+ };
979
+
980
+ State state_;
981
+ EntryStackItem* entry_stack_;
982
+
983
+ // Allocate and insert PerIsolateThreadData into the ThreadDataTable
984
+ // (regardless of whether such data already exists).
985
+ PerIsolateThreadData* AllocatePerIsolateThreadData(ThreadId thread_id);
986
+
987
+ // Find the PerThread for this particular (isolate, thread) combination.
988
+ // If one does not yet exist, allocate a new one.
989
+ PerIsolateThreadData* FindOrAllocatePerThreadDataForThisThread();
990
+
991
+ // PreInits and returns a default isolate. Needed when a new thread tries
992
+ // to create a Locker for the first time (the lock itself is in the isolate).
993
+ static Isolate* GetDefaultIsolateForLocking();
994
+
995
+ // Initializes the current thread to run this Isolate.
996
+ // Not thread-safe. Multiple threads should not Enter/Exit the same isolate
997
+ // at the same time, this should be prevented using external locking.
998
+ void Enter();
999
+
1000
+ // Exits the current thread. The previosuly entered Isolate is restored
1001
+ // for the thread.
1002
+ // Not thread-safe. Multiple threads should not Enter/Exit the same isolate
1003
+ // at the same time, this should be prevented using external locking.
1004
+ void Exit();
1005
+
1006
+ void PreallocatedMemoryThreadStart();
1007
+ void PreallocatedMemoryThreadStop();
1008
+ void InitializeThreadLocal();
1009
+
1010
+ void PrintStackTrace(FILE* out, ThreadLocalTop* thread);
1011
+ void MarkCompactPrologue(bool is_compacting,
1012
+ ThreadLocalTop* archived_thread_data);
1013
+ void MarkCompactEpilogue(bool is_compacting,
1014
+ ThreadLocalTop* archived_thread_data);
1015
+
1016
+ void FillCache();
1017
+
1018
+ int stack_trace_nesting_level_;
1019
+ StringStream* incomplete_message_;
1020
+ // The preallocated memory thread singleton.
1021
+ PreallocatedMemoryThread* preallocated_memory_thread_;
1022
+ Address isolate_addresses_[k_isolate_address_count + 1]; // NOLINT
1023
+ NoAllocationStringAllocator* preallocated_message_space_;
1024
+
1025
+ Bootstrapper* bootstrapper_;
1026
+ RuntimeProfiler* runtime_profiler_;
1027
+ CompilationCache* compilation_cache_;
1028
+ Counters* counters_;
1029
+ CodeRange* code_range_;
1030
+ Mutex* break_access_;
1031
+ Heap heap_;
1032
+ Logger* logger_;
1033
+ StackGuard stack_guard_;
1034
+ StatsTable* stats_table_;
1035
+ StubCache* stub_cache_;
1036
+ DeoptimizerData* deoptimizer_data_;
1037
+ ThreadLocalTop thread_local_top_;
1038
+ bool capture_stack_trace_for_uncaught_exceptions_;
1039
+ int stack_trace_for_uncaught_exceptions_frame_limit_;
1040
+ StackTrace::StackTraceOptions stack_trace_for_uncaught_exceptions_options_;
1041
+ TranscendentalCache* transcendental_cache_;
1042
+ MemoryAllocator* memory_allocator_;
1043
+ KeyedLookupCache* keyed_lookup_cache_;
1044
+ ContextSlotCache* context_slot_cache_;
1045
+ DescriptorLookupCache* descriptor_lookup_cache_;
1046
+ v8::ImplementationUtilities::HandleScopeData handle_scope_data_;
1047
+ HandleScopeImplementer* handle_scope_implementer_;
1048
+ ScannerConstants* scanner_constants_;
1049
+ Zone zone_;
1050
+ PreallocatedStorage in_use_list_;
1051
+ PreallocatedStorage free_list_;
1052
+ bool preallocated_storage_preallocated_;
1053
+ PcToCodeCache* pc_to_code_cache_;
1054
+ StringInputBuffer* write_input_buffer_;
1055
+ GlobalHandles* global_handles_;
1056
+ ContextSwitcher* context_switcher_;
1057
+ ThreadManager* thread_manager_;
1058
+ AstSentinels* ast_sentinels_;
1059
+ RuntimeState runtime_state_;
1060
+ StringInputBuffer liveedit_compare_substrings_buf1_;
1061
+ StringInputBuffer liveedit_compare_substrings_buf2_;
1062
+ StaticResource<SafeStringInputBuffer> compiler_safe_string_input_buffer_;
1063
+ Builtins builtins_;
1064
+ StringTracker* string_tracker_;
1065
+ unibrow::Mapping<unibrow::Ecma262UnCanonicalize> jsregexp_uncanonicalize_;
1066
+ unibrow::Mapping<unibrow::CanonicalizationRange> jsregexp_canonrange_;
1067
+ StringInputBuffer objects_string_compare_buffer_a_;
1068
+ StringInputBuffer objects_string_compare_buffer_b_;
1069
+ StaticResource<StringInputBuffer> objects_string_input_buffer_;
1070
+ unibrow::Mapping<unibrow::Ecma262Canonicalize>
1071
+ regexp_macro_assembler_canonicalize_;
1072
+ RegExpStack* regexp_stack_;
1073
+ unibrow::Mapping<unibrow::Ecma262Canonicalize> interp_canonicalize_mapping_;
1074
+ ZoneObjectList frame_element_constant_list_;
1075
+ ZoneObjectList result_constant_list_;
1076
+
1077
+ #if defined(V8_TARGET_ARCH_ARM) && !defined(__arm__) || \
1078
+ defined(V8_TARGET_ARCH_MIPS) && !defined(__mips__)
1079
+ bool simulator_initialized_;
1080
+ HashMap* simulator_i_cache_;
1081
+ Redirection* simulator_redirection_;
1082
+ #endif
1083
+
1084
+ #ifdef DEBUG
1085
+ // A static array of histogram info for each type.
1086
+ HistogramInfo heap_histograms_[LAST_TYPE + 1];
1087
+ JSObject::SpillInformation js_spill_information_;
1088
+ int code_kind_statistics_[Code::NUMBER_OF_KINDS];
1089
+ #endif
1090
+
1091
+ #ifdef ENABLE_DEBUGGER_SUPPORT
1092
+ Debugger* debugger_;
1093
+ Debug* debug_;
1094
+ #endif
1095
+
1096
+ #ifdef ENABLE_LOGGING_AND_PROFILING
1097
+ ProducerHeapProfile* producer_heap_profile_;
1098
+ #endif
1099
+
1100
+ #define GLOBAL_BACKING_STORE(type, name, initialvalue) \
1101
+ type name##_;
1102
+ ISOLATE_INIT_LIST(GLOBAL_BACKING_STORE)
1103
+ #undef GLOBAL_BACKING_STORE
1104
+
1105
+ #define GLOBAL_ARRAY_BACKING_STORE(type, name, length) \
1106
+ type name##_[length];
1107
+ ISOLATE_INIT_ARRAY_LIST(GLOBAL_ARRAY_BACKING_STORE)
1108
+ #undef GLOBAL_ARRAY_BACKING_STORE
1109
+
1110
+ #ifdef DEBUG
1111
+ // This class is huge and has a number of fields controlled by
1112
+ // preprocessor defines. Make sure the offsets of these fields agree
1113
+ // between compilation units.
1114
+ #define ISOLATE_FIELD_OFFSET(type, name, ignored) \
1115
+ static const intptr_t name##_debug_offset_;
1116
+ ISOLATE_INIT_LIST(ISOLATE_FIELD_OFFSET)
1117
+ ISOLATE_INIT_ARRAY_LIST(ISOLATE_FIELD_OFFSET)
1118
+ #undef ISOLATE_FIELD_OFFSET
1119
+ #endif
1120
+
1121
+ friend class ExecutionAccess;
1122
+ friend class IsolateInitializer;
1123
+ friend class v8::Isolate;
1124
+ friend class v8::Locker;
1125
+
1126
+ DISALLOW_COPY_AND_ASSIGN(Isolate);
1127
+ };
1128
+
1129
+
1130
+ // If the GCC version is 4.1.x or 4.2.x an additional field is added to the
1131
+ // class as a work around for a bug in the generated code found with these
1132
+ // versions of GCC. See V8 issue 122 for details.
1133
+ class SaveContext BASE_EMBEDDED {
1134
+ public:
1135
+ explicit SaveContext(Isolate* isolate) : prev_(isolate->save_context()) {
1136
+ if (isolate->context() != NULL) {
1137
+ context_ = Handle<Context>(isolate->context());
1138
+ #if __GNUC_VERSION__ >= 40100 && __GNUC_VERSION__ < 40300
1139
+ dummy_ = Handle<Context>(isolate->context());
1140
+ #endif
1141
+ }
1142
+ isolate->set_save_context(this);
1143
+
1144
+ // If there is no JS frame under the current C frame, use the value 0.
1145
+ JavaScriptFrameIterator it;
1146
+ js_sp_ = it.done() ? 0 : it.frame()->sp();
1147
+ }
1148
+
1149
+ ~SaveContext() {
1150
+ if (context_.is_null()) {
1151
+ Isolate* isolate = Isolate::Current();
1152
+ isolate->set_context(NULL);
1153
+ isolate->set_save_context(prev_);
1154
+ } else {
1155
+ Isolate* isolate = context_->GetIsolate();
1156
+ isolate->set_context(*context_);
1157
+ isolate->set_save_context(prev_);
1158
+ }
1159
+ }
1160
+
1161
+ Handle<Context> context() { return context_; }
1162
+ SaveContext* prev() { return prev_; }
1163
+
1164
+ // Returns true if this save context is below a given JavaScript frame.
1165
+ bool below(JavaScriptFrame* frame) {
1166
+ return (js_sp_ == 0) || (frame->sp() < js_sp_);
1167
+ }
1168
+
1169
+ private:
1170
+ Handle<Context> context_;
1171
+ #if __GNUC_VERSION__ >= 40100 && __GNUC_VERSION__ < 40300
1172
+ Handle<Context> dummy_;
1173
+ #endif
1174
+ SaveContext* prev_;
1175
+ Address js_sp_; // The top JS frame's sp when saving context.
1176
+ };
1177
+
1178
+
1179
+ class AssertNoContextChange BASE_EMBEDDED {
1180
+ #ifdef DEBUG
1181
+ public:
1182
+ AssertNoContextChange() :
1183
+ scope_(Isolate::Current()),
1184
+ context_(Isolate::Current()->context(), Isolate::Current()) {
1185
+ }
1186
+
1187
+ ~AssertNoContextChange() {
1188
+ ASSERT(Isolate::Current()->context() == *context_);
1189
+ }
1190
+
1191
+ private:
1192
+ HandleScope scope_;
1193
+ Handle<Context> context_;
1194
+ #else
1195
+ public:
1196
+ AssertNoContextChange() { }
1197
+ #endif
1198
+ };
1199
+
1200
+
1201
+ class ExecutionAccess BASE_EMBEDDED {
1202
+ public:
1203
+ explicit ExecutionAccess(Isolate* isolate) : isolate_(isolate) {
1204
+ Lock(isolate);
1205
+ }
1206
+ ~ExecutionAccess() { Unlock(isolate_); }
1207
+
1208
+ static void Lock(Isolate* isolate) { isolate->break_access_->Lock(); }
1209
+ static void Unlock(Isolate* isolate) { isolate->break_access_->Unlock(); }
1210
+
1211
+ static bool TryLock(Isolate* isolate) {
1212
+ return isolate->break_access_->TryLock();
1213
+ }
1214
+
1215
+ private:
1216
+ Isolate* isolate_;
1217
+ };
1218
+
1219
+
1220
+ // Support for checking for stack-overflows in C++ code.
1221
+ class StackLimitCheck BASE_EMBEDDED {
1222
+ public:
1223
+ explicit StackLimitCheck(Isolate* isolate) : isolate_(isolate) { }
1224
+
1225
+ bool HasOverflowed() const {
1226
+ StackGuard* stack_guard = isolate_->stack_guard();
1227
+ // Stack has overflowed in C++ code only if stack pointer exceeds the C++
1228
+ // stack guard and the limits are not set to interrupt values.
1229
+ // TODO(214): Stack overflows are ignored if a interrupt is pending. This
1230
+ // code should probably always use the initial C++ limit.
1231
+ return (reinterpret_cast<uintptr_t>(this) < stack_guard->climit()) &&
1232
+ stack_guard->IsStackOverflow();
1233
+ }
1234
+ private:
1235
+ Isolate* isolate_;
1236
+ };
1237
+
1238
+
1239
+ // Support for temporarily postponing interrupts. When the outermost
1240
+ // postpone scope is left the interrupts will be re-enabled and any
1241
+ // interrupts that occurred while in the scope will be taken into
1242
+ // account.
1243
+ class PostponeInterruptsScope BASE_EMBEDDED {
1244
+ public:
1245
+ explicit PostponeInterruptsScope(Isolate* isolate)
1246
+ : stack_guard_(isolate->stack_guard()) {
1247
+ stack_guard_->thread_local_.postpone_interrupts_nesting_++;
1248
+ stack_guard_->DisableInterrupts();
1249
+ }
1250
+
1251
+ ~PostponeInterruptsScope() {
1252
+ if (--stack_guard_->thread_local_.postpone_interrupts_nesting_ == 0) {
1253
+ stack_guard_->EnableInterrupts();
1254
+ }
1255
+ }
1256
+ private:
1257
+ StackGuard* stack_guard_;
1258
+ };
1259
+
1260
+
1261
+ // Temporary macros for accessing current isolate and its subobjects.
1262
+ // They provide better readability, especially when used a lot in the code.
1263
+ #define HEAP (v8::internal::Isolate::Current()->heap())
1264
+ #define FACTORY (v8::internal::Isolate::Current()->factory())
1265
+ #define ISOLATE (v8::internal::Isolate::Current())
1266
+ #define ZONE (v8::internal::Isolate::Current()->zone())
1267
+ #define LOGGER (v8::internal::Isolate::Current()->logger())
1268
+
1269
+
1270
+ // Tells whether the global context is marked with out of memory.
1271
+ inline bool Context::has_out_of_memory() {
1272
+ return global_context()->out_of_memory()->IsTrue();
1273
+ }
1274
+
1275
+
1276
+ // Mark the global context with out of memory.
1277
+ inline void Context::mark_out_of_memory() {
1278
+ global_context()->set_out_of_memory(HEAP->true_value());
1279
+ }
1280
+
1281
+
1282
+ // Temporary macro to be used to flag definitions that are indeed static
1283
+ // and not per-isolate. (It would be great to be able to grep for [static]!)
1284
+ #define RLYSTC static
1285
+
1286
+
1287
+ // Temporary macro to be used to flag classes that should be static.
1288
+ #define STATIC_CLASS class
1289
+
1290
+
1291
+ // Temporary macro to be used to flag classes that are completely converted
1292
+ // to be isolate-friendly. Their mix of static/nonstatic methods/fields is
1293
+ // correct.
1294
+ #define ISOLATED_CLASS class
1295
+
1296
+ } } // namespace v8::internal
1297
+
1298
+ // TODO(isolates): Get rid of these -inl.h includes and place them only where
1299
+ // they're needed.
1300
+ #include "allocation-inl.h"
1301
+ #include "zone-inl.h"
1302
+ #include "frames-inl.h"
1303
+
1304
+ #endif // V8_ISOLATE_H_