libv8 3.11.8.17 → 3.16.14.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (754) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +1 -2
  3. data/Gemfile +1 -1
  4. data/Rakefile +6 -7
  5. data/lib/libv8/version.rb +1 -1
  6. data/vendor/v8/.gitignore +24 -3
  7. data/vendor/v8/AUTHORS +7 -0
  8. data/vendor/v8/ChangeLog +839 -0
  9. data/vendor/v8/DEPS +1 -1
  10. data/vendor/v8/Makefile.android +92 -0
  11. data/vendor/v8/OWNERS +11 -0
  12. data/vendor/v8/PRESUBMIT.py +71 -0
  13. data/vendor/v8/SConstruct +34 -39
  14. data/vendor/v8/build/android.gypi +56 -37
  15. data/vendor/v8/build/common.gypi +112 -30
  16. data/vendor/v8/build/gyp_v8 +1 -1
  17. data/vendor/v8/build/standalone.gypi +15 -11
  18. data/vendor/v8/include/v8-debug.h +9 -1
  19. data/vendor/v8/include/v8-preparser.h +4 -3
  20. data/vendor/v8/include/v8-profiler.h +25 -25
  21. data/vendor/v8/include/v8-testing.h +4 -3
  22. data/vendor/v8/include/v8.h +994 -540
  23. data/vendor/v8/preparser/preparser-process.cc +3 -3
  24. data/vendor/v8/samples/lineprocessor.cc +20 -27
  25. data/vendor/v8/samples/process.cc +18 -14
  26. data/vendor/v8/samples/shell.cc +16 -15
  27. data/vendor/v8/src/SConscript +15 -14
  28. data/vendor/v8/src/accessors.cc +169 -77
  29. data/vendor/v8/src/accessors.h +4 -0
  30. data/vendor/v8/src/allocation-inl.h +2 -2
  31. data/vendor/v8/src/allocation.h +7 -7
  32. data/vendor/v8/src/api.cc +810 -497
  33. data/vendor/v8/src/api.h +85 -60
  34. data/vendor/v8/src/arm/assembler-arm-inl.h +179 -22
  35. data/vendor/v8/src/arm/assembler-arm.cc +633 -264
  36. data/vendor/v8/src/arm/assembler-arm.h +264 -197
  37. data/vendor/v8/src/arm/builtins-arm.cc +117 -27
  38. data/vendor/v8/src/arm/code-stubs-arm.cc +1241 -700
  39. data/vendor/v8/src/arm/code-stubs-arm.h +35 -138
  40. data/vendor/v8/src/arm/codegen-arm.cc +285 -16
  41. data/vendor/v8/src/arm/codegen-arm.h +22 -0
  42. data/vendor/v8/src/arm/constants-arm.cc +5 -3
  43. data/vendor/v8/src/arm/constants-arm.h +24 -11
  44. data/vendor/v8/src/arm/debug-arm.cc +3 -3
  45. data/vendor/v8/src/arm/deoptimizer-arm.cc +382 -92
  46. data/vendor/v8/src/arm/disasm-arm.cc +61 -12
  47. data/vendor/v8/src/arm/frames-arm.h +0 -14
  48. data/vendor/v8/src/arm/full-codegen-arm.cc +332 -304
  49. data/vendor/v8/src/arm/ic-arm.cc +180 -259
  50. data/vendor/v8/src/arm/lithium-arm.cc +364 -316
  51. data/vendor/v8/src/arm/lithium-arm.h +512 -275
  52. data/vendor/v8/src/arm/lithium-codegen-arm.cc +1768 -809
  53. data/vendor/v8/src/arm/lithium-codegen-arm.h +97 -35
  54. data/vendor/v8/src/arm/lithium-gap-resolver-arm.cc +12 -5
  55. data/vendor/v8/src/arm/macro-assembler-arm.cc +439 -228
  56. data/vendor/v8/src/arm/macro-assembler-arm.h +116 -70
  57. data/vendor/v8/src/arm/regexp-macro-assembler-arm.cc +54 -44
  58. data/vendor/v8/src/arm/regexp-macro-assembler-arm.h +3 -10
  59. data/vendor/v8/src/arm/simulator-arm.cc +272 -238
  60. data/vendor/v8/src/arm/simulator-arm.h +38 -8
  61. data/vendor/v8/src/arm/stub-cache-arm.cc +522 -895
  62. data/vendor/v8/src/array.js +101 -70
  63. data/vendor/v8/src/assembler.cc +270 -19
  64. data/vendor/v8/src/assembler.h +110 -15
  65. data/vendor/v8/src/ast.cc +79 -69
  66. data/vendor/v8/src/ast.h +255 -301
  67. data/vendor/v8/src/atomicops.h +7 -1
  68. data/vendor/v8/src/atomicops_internals_tsan.h +335 -0
  69. data/vendor/v8/src/bootstrapper.cc +481 -418
  70. data/vendor/v8/src/bootstrapper.h +4 -4
  71. data/vendor/v8/src/builtins.cc +498 -311
  72. data/vendor/v8/src/builtins.h +75 -47
  73. data/vendor/v8/src/checks.cc +2 -1
  74. data/vendor/v8/src/checks.h +8 -0
  75. data/vendor/v8/src/code-stubs-hydrogen.cc +253 -0
  76. data/vendor/v8/src/code-stubs.cc +249 -84
  77. data/vendor/v8/src/code-stubs.h +501 -169
  78. data/vendor/v8/src/codegen.cc +36 -18
  79. data/vendor/v8/src/codegen.h +25 -3
  80. data/vendor/v8/src/collection.js +54 -17
  81. data/vendor/v8/src/compilation-cache.cc +24 -16
  82. data/vendor/v8/src/compilation-cache.h +15 -6
  83. data/vendor/v8/src/compiler.cc +497 -195
  84. data/vendor/v8/src/compiler.h +246 -38
  85. data/vendor/v8/src/contexts.cc +64 -24
  86. data/vendor/v8/src/contexts.h +60 -29
  87. data/vendor/v8/src/conversions-inl.h +24 -14
  88. data/vendor/v8/src/conversions.h +7 -4
  89. data/vendor/v8/src/counters.cc +21 -12
  90. data/vendor/v8/src/counters.h +44 -16
  91. data/vendor/v8/src/cpu-profiler.h +1 -1
  92. data/vendor/v8/src/d8-debug.cc +2 -2
  93. data/vendor/v8/src/d8-readline.cc +13 -2
  94. data/vendor/v8/src/d8.cc +681 -273
  95. data/vendor/v8/src/d8.gyp +4 -4
  96. data/vendor/v8/src/d8.h +38 -18
  97. data/vendor/v8/src/d8.js +0 -617
  98. data/vendor/v8/src/data-flow.h +55 -0
  99. data/vendor/v8/src/date.js +1 -42
  100. data/vendor/v8/src/dateparser-inl.h +5 -1
  101. data/vendor/v8/src/debug-agent.cc +10 -15
  102. data/vendor/v8/src/debug-debugger.js +147 -149
  103. data/vendor/v8/src/debug.cc +323 -164
  104. data/vendor/v8/src/debug.h +26 -14
  105. data/vendor/v8/src/deoptimizer.cc +765 -290
  106. data/vendor/v8/src/deoptimizer.h +130 -28
  107. data/vendor/v8/src/disassembler.cc +10 -4
  108. data/vendor/v8/src/elements-kind.cc +7 -2
  109. data/vendor/v8/src/elements-kind.h +19 -0
  110. data/vendor/v8/src/elements.cc +607 -285
  111. data/vendor/v8/src/elements.h +36 -13
  112. data/vendor/v8/src/execution.cc +52 -31
  113. data/vendor/v8/src/execution.h +4 -4
  114. data/vendor/v8/src/extensions/externalize-string-extension.cc +5 -4
  115. data/vendor/v8/src/extensions/gc-extension.cc +5 -1
  116. data/vendor/v8/src/extensions/statistics-extension.cc +153 -0
  117. data/vendor/v8/src/{inspector.h → extensions/statistics-extension.h} +12 -23
  118. data/vendor/v8/src/factory.cc +101 -134
  119. data/vendor/v8/src/factory.h +36 -31
  120. data/vendor/v8/src/flag-definitions.h +102 -25
  121. data/vendor/v8/src/flags.cc +9 -5
  122. data/vendor/v8/src/frames-inl.h +10 -0
  123. data/vendor/v8/src/frames.cc +116 -26
  124. data/vendor/v8/src/frames.h +96 -12
  125. data/vendor/v8/src/full-codegen.cc +219 -74
  126. data/vendor/v8/src/full-codegen.h +63 -21
  127. data/vendor/v8/src/func-name-inferrer.cc +8 -7
  128. data/vendor/v8/src/func-name-inferrer.h +5 -3
  129. data/vendor/v8/src/gdb-jit.cc +71 -57
  130. data/vendor/v8/src/global-handles.cc +230 -101
  131. data/vendor/v8/src/global-handles.h +26 -27
  132. data/vendor/v8/src/globals.h +17 -19
  133. data/vendor/v8/src/handles-inl.h +59 -12
  134. data/vendor/v8/src/handles.cc +180 -200
  135. data/vendor/v8/src/handles.h +80 -11
  136. data/vendor/v8/src/hashmap.h +60 -40
  137. data/vendor/v8/src/heap-inl.h +107 -45
  138. data/vendor/v8/src/heap-profiler.cc +38 -19
  139. data/vendor/v8/src/heap-profiler.h +24 -14
  140. data/vendor/v8/src/heap.cc +1123 -738
  141. data/vendor/v8/src/heap.h +385 -146
  142. data/vendor/v8/src/hydrogen-instructions.cc +700 -217
  143. data/vendor/v8/src/hydrogen-instructions.h +1158 -472
  144. data/vendor/v8/src/hydrogen.cc +3319 -1662
  145. data/vendor/v8/src/hydrogen.h +411 -170
  146. data/vendor/v8/src/ia32/assembler-ia32-inl.h +46 -16
  147. data/vendor/v8/src/ia32/assembler-ia32.cc +131 -61
  148. data/vendor/v8/src/ia32/assembler-ia32.h +115 -57
  149. data/vendor/v8/src/ia32/builtins-ia32.cc +99 -5
  150. data/vendor/v8/src/ia32/code-stubs-ia32.cc +787 -495
  151. data/vendor/v8/src/ia32/code-stubs-ia32.h +10 -100
  152. data/vendor/v8/src/ia32/codegen-ia32.cc +227 -23
  153. data/vendor/v8/src/ia32/codegen-ia32.h +14 -0
  154. data/vendor/v8/src/ia32/deoptimizer-ia32.cc +428 -87
  155. data/vendor/v8/src/ia32/disasm-ia32.cc +28 -1
  156. data/vendor/v8/src/ia32/frames-ia32.h +6 -16
  157. data/vendor/v8/src/ia32/full-codegen-ia32.cc +280 -272
  158. data/vendor/v8/src/ia32/ic-ia32.cc +150 -250
  159. data/vendor/v8/src/ia32/lithium-codegen-ia32.cc +1600 -517
  160. data/vendor/v8/src/ia32/lithium-codegen-ia32.h +90 -24
  161. data/vendor/v8/src/ia32/lithium-gap-resolver-ia32.cc +10 -6
  162. data/vendor/v8/src/ia32/lithium-gap-resolver-ia32.h +2 -2
  163. data/vendor/v8/src/ia32/lithium-ia32.cc +405 -302
  164. data/vendor/v8/src/ia32/lithium-ia32.h +526 -271
  165. data/vendor/v8/src/ia32/macro-assembler-ia32.cc +378 -119
  166. data/vendor/v8/src/ia32/macro-assembler-ia32.h +62 -28
  167. data/vendor/v8/src/ia32/regexp-macro-assembler-ia32.cc +43 -30
  168. data/vendor/v8/src/ia32/regexp-macro-assembler-ia32.h +2 -10
  169. data/vendor/v8/src/ia32/stub-cache-ia32.cc +492 -678
  170. data/vendor/v8/src/ic-inl.h +9 -4
  171. data/vendor/v8/src/ic.cc +836 -923
  172. data/vendor/v8/src/ic.h +228 -247
  173. data/vendor/v8/src/incremental-marking-inl.h +26 -30
  174. data/vendor/v8/src/incremental-marking.cc +276 -248
  175. data/vendor/v8/src/incremental-marking.h +29 -37
  176. data/vendor/v8/src/interface.cc +34 -25
  177. data/vendor/v8/src/interface.h +69 -25
  178. data/vendor/v8/src/interpreter-irregexp.cc +2 -2
  179. data/vendor/v8/src/isolate.cc +382 -76
  180. data/vendor/v8/src/isolate.h +109 -56
  181. data/vendor/v8/src/json-parser.h +217 -104
  182. data/vendor/v8/src/json-stringifier.h +745 -0
  183. data/vendor/v8/src/json.js +10 -132
  184. data/vendor/v8/src/jsregexp-inl.h +106 -0
  185. data/vendor/v8/src/jsregexp.cc +517 -285
  186. data/vendor/v8/src/jsregexp.h +145 -117
  187. data/vendor/v8/src/list-inl.h +35 -22
  188. data/vendor/v8/src/list.h +46 -19
  189. data/vendor/v8/src/lithium-allocator-inl.h +22 -2
  190. data/vendor/v8/src/lithium-allocator.cc +85 -70
  191. data/vendor/v8/src/lithium-allocator.h +21 -39
  192. data/vendor/v8/src/lithium.cc +259 -5
  193. data/vendor/v8/src/lithium.h +131 -32
  194. data/vendor/v8/src/liveedit-debugger.js +52 -3
  195. data/vendor/v8/src/liveedit.cc +393 -113
  196. data/vendor/v8/src/liveedit.h +7 -3
  197. data/vendor/v8/src/log-utils.cc +4 -2
  198. data/vendor/v8/src/log.cc +170 -140
  199. data/vendor/v8/src/log.h +62 -11
  200. data/vendor/v8/src/macro-assembler.h +17 -0
  201. data/vendor/v8/src/macros.py +2 -0
  202. data/vendor/v8/src/mark-compact-inl.h +3 -23
  203. data/vendor/v8/src/mark-compact.cc +801 -830
  204. data/vendor/v8/src/mark-compact.h +154 -47
  205. data/vendor/v8/src/marking-thread.cc +85 -0
  206. data/vendor/v8/src/{inspector.cc → marking-thread.h} +32 -24
  207. data/vendor/v8/src/math.js +12 -18
  208. data/vendor/v8/src/messages.cc +18 -8
  209. data/vendor/v8/src/messages.js +314 -261
  210. data/vendor/v8/src/mips/assembler-mips-inl.h +58 -6
  211. data/vendor/v8/src/mips/assembler-mips.cc +92 -75
  212. data/vendor/v8/src/mips/assembler-mips.h +54 -60
  213. data/vendor/v8/src/mips/builtins-mips.cc +116 -17
  214. data/vendor/v8/src/mips/code-stubs-mips.cc +919 -556
  215. data/vendor/v8/src/mips/code-stubs-mips.h +22 -131
  216. data/vendor/v8/src/mips/codegen-mips.cc +281 -6
  217. data/vendor/v8/src/mips/codegen-mips.h +22 -0
  218. data/vendor/v8/src/mips/constants-mips.cc +2 -0
  219. data/vendor/v8/src/mips/constants-mips.h +12 -2
  220. data/vendor/v8/src/mips/deoptimizer-mips.cc +286 -50
  221. data/vendor/v8/src/mips/disasm-mips.cc +13 -0
  222. data/vendor/v8/src/mips/full-codegen-mips.cc +297 -284
  223. data/vendor/v8/src/mips/ic-mips.cc +182 -263
  224. data/vendor/v8/src/mips/lithium-codegen-mips.cc +1208 -556
  225. data/vendor/v8/src/mips/lithium-codegen-mips.h +72 -19
  226. data/vendor/v8/src/mips/lithium-gap-resolver-mips.cc +9 -2
  227. data/vendor/v8/src/mips/lithium-mips.cc +290 -302
  228. data/vendor/v8/src/mips/lithium-mips.h +463 -266
  229. data/vendor/v8/src/mips/macro-assembler-mips.cc +208 -115
  230. data/vendor/v8/src/mips/macro-assembler-mips.h +67 -24
  231. data/vendor/v8/src/mips/regexp-macro-assembler-mips.cc +40 -25
  232. data/vendor/v8/src/mips/regexp-macro-assembler-mips.h +3 -9
  233. data/vendor/v8/src/mips/simulator-mips.cc +112 -40
  234. data/vendor/v8/src/mips/simulator-mips.h +5 -0
  235. data/vendor/v8/src/mips/stub-cache-mips.cc +502 -884
  236. data/vendor/v8/src/mirror-debugger.js +157 -30
  237. data/vendor/v8/src/mksnapshot.cc +88 -14
  238. data/vendor/v8/src/object-observe.js +235 -0
  239. data/vendor/v8/src/objects-debug.cc +178 -176
  240. data/vendor/v8/src/objects-inl.h +1333 -486
  241. data/vendor/v8/src/objects-printer.cc +125 -43
  242. data/vendor/v8/src/objects-visiting-inl.h +578 -6
  243. data/vendor/v8/src/objects-visiting.cc +2 -2
  244. data/vendor/v8/src/objects-visiting.h +172 -79
  245. data/vendor/v8/src/objects.cc +3533 -2885
  246. data/vendor/v8/src/objects.h +1352 -1131
  247. data/vendor/v8/src/optimizing-compiler-thread.cc +152 -0
  248. data/vendor/v8/src/optimizing-compiler-thread.h +111 -0
  249. data/vendor/v8/src/parser.cc +390 -500
  250. data/vendor/v8/src/parser.h +45 -33
  251. data/vendor/v8/src/platform-cygwin.cc +10 -21
  252. data/vendor/v8/src/platform-freebsd.cc +36 -41
  253. data/vendor/v8/src/platform-linux.cc +160 -124
  254. data/vendor/v8/src/platform-macos.cc +30 -27
  255. data/vendor/v8/src/platform-nullos.cc +17 -1
  256. data/vendor/v8/src/platform-openbsd.cc +19 -50
  257. data/vendor/v8/src/platform-posix.cc +14 -0
  258. data/vendor/v8/src/platform-solaris.cc +20 -53
  259. data/vendor/v8/src/platform-win32.cc +49 -26
  260. data/vendor/v8/src/platform.h +40 -1
  261. data/vendor/v8/src/preparser.cc +8 -5
  262. data/vendor/v8/src/preparser.h +2 -2
  263. data/vendor/v8/src/prettyprinter.cc +16 -0
  264. data/vendor/v8/src/prettyprinter.h +2 -0
  265. data/vendor/v8/src/profile-generator-inl.h +1 -0
  266. data/vendor/v8/src/profile-generator.cc +209 -147
  267. data/vendor/v8/src/profile-generator.h +15 -12
  268. data/vendor/v8/src/property-details.h +46 -31
  269. data/vendor/v8/src/property.cc +27 -46
  270. data/vendor/v8/src/property.h +163 -83
  271. data/vendor/v8/src/proxy.js +7 -2
  272. data/vendor/v8/src/regexp-macro-assembler-irregexp.cc +4 -13
  273. data/vendor/v8/src/regexp-macro-assembler-irregexp.h +1 -2
  274. data/vendor/v8/src/regexp-macro-assembler-tracer.cc +1 -11
  275. data/vendor/v8/src/regexp-macro-assembler-tracer.h +0 -1
  276. data/vendor/v8/src/regexp-macro-assembler.cc +31 -14
  277. data/vendor/v8/src/regexp-macro-assembler.h +14 -11
  278. data/vendor/v8/src/regexp-stack.cc +1 -0
  279. data/vendor/v8/src/regexp.js +9 -8
  280. data/vendor/v8/src/rewriter.cc +18 -7
  281. data/vendor/v8/src/runtime-profiler.cc +52 -43
  282. data/vendor/v8/src/runtime-profiler.h +0 -25
  283. data/vendor/v8/src/runtime.cc +2006 -2023
  284. data/vendor/v8/src/runtime.h +56 -49
  285. data/vendor/v8/src/safepoint-table.cc +12 -18
  286. data/vendor/v8/src/safepoint-table.h +11 -8
  287. data/vendor/v8/src/scanner.cc +1 -0
  288. data/vendor/v8/src/scanner.h +4 -10
  289. data/vendor/v8/src/scopeinfo.cc +35 -9
  290. data/vendor/v8/src/scopeinfo.h +64 -3
  291. data/vendor/v8/src/scopes.cc +251 -156
  292. data/vendor/v8/src/scopes.h +61 -27
  293. data/vendor/v8/src/serialize.cc +348 -396
  294. data/vendor/v8/src/serialize.h +125 -114
  295. data/vendor/v8/src/small-pointer-list.h +11 -11
  296. data/vendor/v8/src/{smart-array-pointer.h → smart-pointers.h} +64 -15
  297. data/vendor/v8/src/snapshot-common.cc +64 -15
  298. data/vendor/v8/src/snapshot-empty.cc +7 -1
  299. data/vendor/v8/src/snapshot.h +9 -2
  300. data/vendor/v8/src/spaces-inl.h +17 -0
  301. data/vendor/v8/src/spaces.cc +477 -183
  302. data/vendor/v8/src/spaces.h +238 -58
  303. data/vendor/v8/src/splay-tree-inl.h +8 -7
  304. data/vendor/v8/src/splay-tree.h +24 -10
  305. data/vendor/v8/src/store-buffer.cc +12 -5
  306. data/vendor/v8/src/store-buffer.h +2 -4
  307. data/vendor/v8/src/string-search.h +22 -6
  308. data/vendor/v8/src/string-stream.cc +11 -8
  309. data/vendor/v8/src/string.js +47 -15
  310. data/vendor/v8/src/stub-cache.cc +461 -224
  311. data/vendor/v8/src/stub-cache.h +164 -102
  312. data/vendor/v8/src/sweeper-thread.cc +105 -0
  313. data/vendor/v8/src/sweeper-thread.h +81 -0
  314. data/vendor/v8/src/token.h +1 -0
  315. data/vendor/v8/src/transitions-inl.h +220 -0
  316. data/vendor/v8/src/transitions.cc +160 -0
  317. data/vendor/v8/src/transitions.h +207 -0
  318. data/vendor/v8/src/type-info.cc +182 -181
  319. data/vendor/v8/src/type-info.h +31 -19
  320. data/vendor/v8/src/unicode-inl.h +62 -106
  321. data/vendor/v8/src/unicode.cc +57 -67
  322. data/vendor/v8/src/unicode.h +45 -91
  323. data/vendor/v8/src/uri.js +57 -29
  324. data/vendor/v8/src/utils.h +105 -5
  325. data/vendor/v8/src/v8-counters.cc +54 -11
  326. data/vendor/v8/src/v8-counters.h +134 -19
  327. data/vendor/v8/src/v8.cc +29 -29
  328. data/vendor/v8/src/v8.h +1 -0
  329. data/vendor/v8/src/v8conversions.cc +26 -22
  330. data/vendor/v8/src/v8globals.h +56 -43
  331. data/vendor/v8/src/v8natives.js +83 -30
  332. data/vendor/v8/src/v8threads.cc +42 -21
  333. data/vendor/v8/src/v8threads.h +4 -1
  334. data/vendor/v8/src/v8utils.cc +9 -93
  335. data/vendor/v8/src/v8utils.h +37 -33
  336. data/vendor/v8/src/variables.cc +6 -3
  337. data/vendor/v8/src/variables.h +6 -13
  338. data/vendor/v8/src/version.cc +2 -2
  339. data/vendor/v8/src/vm-state-inl.h +11 -0
  340. data/vendor/v8/src/x64/assembler-x64-inl.h +39 -8
  341. data/vendor/v8/src/x64/assembler-x64.cc +78 -64
  342. data/vendor/v8/src/x64/assembler-x64.h +38 -33
  343. data/vendor/v8/src/x64/builtins-x64.cc +105 -7
  344. data/vendor/v8/src/x64/code-stubs-x64.cc +790 -413
  345. data/vendor/v8/src/x64/code-stubs-x64.h +10 -106
  346. data/vendor/v8/src/x64/codegen-x64.cc +210 -8
  347. data/vendor/v8/src/x64/codegen-x64.h +20 -1
  348. data/vendor/v8/src/x64/deoptimizer-x64.cc +336 -75
  349. data/vendor/v8/src/x64/disasm-x64.cc +15 -0
  350. data/vendor/v8/src/x64/frames-x64.h +0 -14
  351. data/vendor/v8/src/x64/full-codegen-x64.cc +293 -270
  352. data/vendor/v8/src/x64/ic-x64.cc +153 -251
  353. data/vendor/v8/src/x64/lithium-codegen-x64.cc +1379 -531
  354. data/vendor/v8/src/x64/lithium-codegen-x64.h +67 -23
  355. data/vendor/v8/src/x64/lithium-gap-resolver-x64.cc +2 -2
  356. data/vendor/v8/src/x64/lithium-x64.cc +349 -289
  357. data/vendor/v8/src/x64/lithium-x64.h +460 -250
  358. data/vendor/v8/src/x64/macro-assembler-x64.cc +350 -177
  359. data/vendor/v8/src/x64/macro-assembler-x64.h +67 -49
  360. data/vendor/v8/src/x64/regexp-macro-assembler-x64.cc +46 -33
  361. data/vendor/v8/src/x64/regexp-macro-assembler-x64.h +2 -3
  362. data/vendor/v8/src/x64/stub-cache-x64.cc +484 -653
  363. data/vendor/v8/src/zone-inl.h +9 -27
  364. data/vendor/v8/src/zone.cc +5 -5
  365. data/vendor/v8/src/zone.h +53 -27
  366. data/vendor/v8/test/benchmarks/testcfg.py +5 -0
  367. data/vendor/v8/test/cctest/cctest.cc +4 -0
  368. data/vendor/v8/test/cctest/cctest.gyp +3 -1
  369. data/vendor/v8/test/cctest/cctest.h +57 -9
  370. data/vendor/v8/test/cctest/cctest.status +15 -15
  371. data/vendor/v8/test/cctest/test-accessors.cc +26 -0
  372. data/vendor/v8/test/cctest/test-alloc.cc +22 -30
  373. data/vendor/v8/test/cctest/test-api.cc +1943 -314
  374. data/vendor/v8/test/cctest/test-assembler-arm.cc +133 -13
  375. data/vendor/v8/test/cctest/test-assembler-ia32.cc +1 -1
  376. data/vendor/v8/test/cctest/test-assembler-mips.cc +12 -0
  377. data/vendor/v8/test/cctest/test-ast.cc +4 -2
  378. data/vendor/v8/test/cctest/test-compiler.cc +61 -29
  379. data/vendor/v8/test/cctest/test-dataflow.cc +2 -2
  380. data/vendor/v8/test/cctest/test-debug.cc +212 -33
  381. data/vendor/v8/test/cctest/test-decls.cc +257 -11
  382. data/vendor/v8/test/cctest/test-dictionary.cc +24 -10
  383. data/vendor/v8/test/cctest/test-disasm-arm.cc +118 -1
  384. data/vendor/v8/test/cctest/test-disasm-ia32.cc +3 -2
  385. data/vendor/v8/test/cctest/test-flags.cc +14 -1
  386. data/vendor/v8/test/cctest/test-func-name-inference.cc +7 -4
  387. data/vendor/v8/test/cctest/test-global-object.cc +51 -0
  388. data/vendor/v8/test/cctest/test-hashing.cc +32 -23
  389. data/vendor/v8/test/cctest/test-heap-profiler.cc +131 -77
  390. data/vendor/v8/test/cctest/test-heap.cc +1084 -143
  391. data/vendor/v8/test/cctest/test-list.cc +1 -1
  392. data/vendor/v8/test/cctest/test-liveedit.cc +3 -2
  393. data/vendor/v8/test/cctest/test-lockers.cc +12 -13
  394. data/vendor/v8/test/cctest/test-log.cc +10 -8
  395. data/vendor/v8/test/cctest/test-macro-assembler-x64.cc +2 -2
  396. data/vendor/v8/test/cctest/test-mark-compact.cc +44 -22
  397. data/vendor/v8/test/cctest/test-object-observe.cc +434 -0
  398. data/vendor/v8/test/cctest/test-parsing.cc +86 -39
  399. data/vendor/v8/test/cctest/test-platform-linux.cc +6 -0
  400. data/vendor/v8/test/cctest/test-platform-win32.cc +7 -0
  401. data/vendor/v8/test/cctest/test-random.cc +5 -4
  402. data/vendor/v8/test/cctest/test-regexp.cc +137 -101
  403. data/vendor/v8/test/cctest/test-serialize.cc +150 -230
  404. data/vendor/v8/test/cctest/test-sockets.cc +1 -1
  405. data/vendor/v8/test/cctest/test-spaces.cc +139 -0
  406. data/vendor/v8/test/cctest/test-strings.cc +736 -74
  407. data/vendor/v8/test/cctest/test-thread-termination.cc +10 -11
  408. data/vendor/v8/test/cctest/test-threads.cc +4 -4
  409. data/vendor/v8/test/cctest/test-utils.cc +16 -0
  410. data/vendor/v8/test/cctest/test-weakmaps.cc +7 -3
  411. data/vendor/v8/test/cctest/testcfg.py +64 -5
  412. data/vendor/v8/test/es5conform/testcfg.py +5 -0
  413. data/vendor/v8/test/message/message.status +1 -1
  414. data/vendor/v8/test/message/overwritten-builtins.out +3 -0
  415. data/vendor/v8/test/message/testcfg.py +89 -8
  416. data/vendor/v8/test/message/try-catch-finally-no-message.out +26 -26
  417. data/vendor/v8/test/mjsunit/accessor-map-sharing.js +18 -2
  418. data/vendor/v8/test/mjsunit/allocation-site-info.js +126 -0
  419. data/vendor/v8/test/mjsunit/array-bounds-check-removal.js +62 -1
  420. data/vendor/v8/test/mjsunit/array-iteration.js +1 -1
  421. data/vendor/v8/test/mjsunit/array-literal-transitions.js +2 -0
  422. data/vendor/v8/test/mjsunit/array-natives-elements.js +317 -0
  423. data/vendor/v8/test/mjsunit/array-reduce.js +8 -8
  424. data/vendor/v8/test/mjsunit/array-slice.js +12 -0
  425. data/vendor/v8/test/mjsunit/array-store-and-grow.js +4 -1
  426. data/vendor/v8/test/mjsunit/assert-opt-and-deopt.js +1 -1
  427. data/vendor/v8/test/mjsunit/bugs/bug-2337.js +53 -0
  428. data/vendor/v8/test/mjsunit/compare-known-objects-slow.js +69 -0
  429. data/vendor/v8/test/mjsunit/compiler/alloc-object-huge.js +3 -1
  430. data/vendor/v8/test/mjsunit/compiler/inline-accessors.js +368 -0
  431. data/vendor/v8/test/mjsunit/compiler/inline-arguments.js +87 -1
  432. data/vendor/v8/test/mjsunit/compiler/inline-closures.js +49 -0
  433. data/vendor/v8/test/mjsunit/compiler/inline-construct.js +55 -43
  434. data/vendor/v8/test/mjsunit/compiler/inline-literals.js +39 -0
  435. data/vendor/v8/test/mjsunit/compiler/multiply-add.js +69 -0
  436. data/vendor/v8/test/mjsunit/compiler/optimized-closures.js +57 -0
  437. data/vendor/v8/test/mjsunit/compiler/parallel-proto-change.js +44 -0
  438. data/vendor/v8/test/mjsunit/compiler/property-static.js +69 -0
  439. data/vendor/v8/test/mjsunit/compiler/proto-chain-constant.js +55 -0
  440. data/vendor/v8/test/mjsunit/compiler/proto-chain-load.js +44 -0
  441. data/vendor/v8/test/mjsunit/compiler/regress-gvn.js +3 -2
  442. data/vendor/v8/test/mjsunit/compiler/regress-or.js +6 -2
  443. data/vendor/v8/test/mjsunit/compiler/rotate.js +224 -0
  444. data/vendor/v8/test/mjsunit/compiler/uint32.js +173 -0
  445. data/vendor/v8/test/mjsunit/count-based-osr.js +2 -1
  446. data/vendor/v8/test/mjsunit/d8-os.js +3 -3
  447. data/vendor/v8/test/mjsunit/date-parse.js +3 -0
  448. data/vendor/v8/test/mjsunit/date.js +22 -0
  449. data/vendor/v8/test/mjsunit/debug-break-inline.js +1 -0
  450. data/vendor/v8/test/mjsunit/debug-evaluate-locals-optimized-double.js +22 -12
  451. data/vendor/v8/test/mjsunit/debug-evaluate-locals-optimized.js +21 -10
  452. data/vendor/v8/test/mjsunit/debug-liveedit-compile-error.js +60 -0
  453. data/vendor/v8/test/mjsunit/debug-liveedit-double-call.js +142 -0
  454. data/vendor/v8/test/mjsunit/debug-liveedit-literals.js +94 -0
  455. data/vendor/v8/test/mjsunit/debug-liveedit-restart-frame.js +153 -0
  456. data/vendor/v8/test/mjsunit/debug-multiple-breakpoints.js +1 -1
  457. data/vendor/v8/test/mjsunit/debug-script-breakpoints-closure.js +67 -0
  458. data/vendor/v8/test/mjsunit/debug-script-breakpoints-nested.js +82 -0
  459. data/vendor/v8/test/mjsunit/debug-script.js +4 -2
  460. data/vendor/v8/test/mjsunit/debug-set-variable-value.js +308 -0
  461. data/vendor/v8/test/mjsunit/debug-stepout-scope-part1.js +190 -0
  462. data/vendor/v8/test/mjsunit/debug-stepout-scope-part2.js +83 -0
  463. data/vendor/v8/test/mjsunit/debug-stepout-scope-part3.js +80 -0
  464. data/vendor/v8/test/mjsunit/debug-stepout-scope-part4.js +80 -0
  465. data/vendor/v8/test/mjsunit/debug-stepout-scope-part5.js +77 -0
  466. data/vendor/v8/test/mjsunit/debug-stepout-scope-part6.js +79 -0
  467. data/vendor/v8/test/mjsunit/debug-stepout-scope-part7.js +79 -0
  468. data/vendor/v8/test/mjsunit/{debug-stepout-scope.js → debug-stepout-scope-part8.js} +0 -189
  469. data/vendor/v8/test/mjsunit/delete-non-configurable.js +74 -0
  470. data/vendor/v8/test/mjsunit/deopt-minus-zero.js +56 -0
  471. data/vendor/v8/test/mjsunit/elements-kind.js +6 -4
  472. data/vendor/v8/test/mjsunit/elements-length-no-holey.js +33 -0
  473. data/vendor/v8/test/mjsunit/elements-transition-hoisting.js +46 -19
  474. data/vendor/v8/test/mjsunit/error-accessors.js +54 -0
  475. data/vendor/v8/test/mjsunit/error-constructors.js +1 -14
  476. data/vendor/v8/test/mjsunit/error-tostring.js +8 -0
  477. data/vendor/v8/test/mjsunit/eval-stack-trace.js +204 -0
  478. data/vendor/v8/test/mjsunit/external-array.js +364 -1
  479. data/vendor/v8/test/mjsunit/fast-array-length.js +37 -0
  480. data/vendor/v8/test/mjsunit/fast-non-keyed.js +113 -0
  481. data/vendor/v8/test/mjsunit/fast-prototype.js +117 -0
  482. data/vendor/v8/test/mjsunit/function-call.js +14 -18
  483. data/vendor/v8/test/mjsunit/fuzz-natives-part1.js +230 -0
  484. data/vendor/v8/test/mjsunit/fuzz-natives-part2.js +229 -0
  485. data/vendor/v8/test/mjsunit/fuzz-natives-part3.js +229 -0
  486. data/vendor/v8/test/mjsunit/{fuzz-natives.js → fuzz-natives-part4.js} +12 -2
  487. data/vendor/v8/test/mjsunit/generated-transition-stub.js +218 -0
  488. data/vendor/v8/test/mjsunit/greedy.js +1 -1
  489. data/vendor/v8/test/mjsunit/harmony/block-conflicts.js +2 -1
  490. data/vendor/v8/test/mjsunit/harmony/block-let-crankshaft.js +1 -1
  491. data/vendor/v8/test/mjsunit/harmony/collections.js +69 -11
  492. data/vendor/v8/test/mjsunit/harmony/debug-blockscopes.js +2 -2
  493. data/vendor/v8/test/mjsunit/harmony/module-linking.js +180 -3
  494. data/vendor/v8/test/mjsunit/harmony/module-parsing.js +31 -0
  495. data/vendor/v8/test/mjsunit/harmony/module-recompile.js +87 -0
  496. data/vendor/v8/test/mjsunit/harmony/module-resolution.js +15 -2
  497. data/vendor/v8/test/mjsunit/harmony/object-observe.js +1056 -0
  498. data/vendor/v8/test/mjsunit/harmony/proxies-json.js +178 -0
  499. data/vendor/v8/test/mjsunit/harmony/proxies.js +25 -10
  500. data/vendor/v8/test/mjsunit/json-parser-recursive.js +33 -0
  501. data/vendor/v8/test/mjsunit/json-stringify-recursive.js +52 -0
  502. data/vendor/v8/test/mjsunit/json.js +38 -2
  503. data/vendor/v8/test/mjsunit/json2.js +153 -0
  504. data/vendor/v8/test/mjsunit/limit-locals.js +5 -4
  505. data/vendor/v8/test/mjsunit/manual-parallel-recompile.js +79 -0
  506. data/vendor/v8/test/mjsunit/math-exp-precision.js +64 -0
  507. data/vendor/v8/test/mjsunit/math-floor-negative.js +59 -0
  508. data/vendor/v8/test/mjsunit/math-floor-of-div-minus-zero.js +41 -0
  509. data/vendor/v8/test/mjsunit/math-floor-of-div-nosudiv.js +288 -0
  510. data/vendor/v8/test/mjsunit/math-floor-of-div.js +81 -9
  511. data/vendor/v8/test/mjsunit/{math-floor.js → math-floor-part1.js} +1 -72
  512. data/vendor/v8/test/mjsunit/math-floor-part2.js +76 -0
  513. data/vendor/v8/test/mjsunit/math-floor-part3.js +78 -0
  514. data/vendor/v8/test/mjsunit/math-floor-part4.js +76 -0
  515. data/vendor/v8/test/mjsunit/mirror-object.js +43 -9
  516. data/vendor/v8/test/mjsunit/mjsunit.js +1 -1
  517. data/vendor/v8/test/mjsunit/mjsunit.status +52 -27
  518. data/vendor/v8/test/mjsunit/mul-exhaustive-part1.js +491 -0
  519. data/vendor/v8/test/mjsunit/mul-exhaustive-part10.js +470 -0
  520. data/vendor/v8/test/mjsunit/mul-exhaustive-part2.js +525 -0
  521. data/vendor/v8/test/mjsunit/mul-exhaustive-part3.js +532 -0
  522. data/vendor/v8/test/mjsunit/mul-exhaustive-part4.js +509 -0
  523. data/vendor/v8/test/mjsunit/mul-exhaustive-part5.js +505 -0
  524. data/vendor/v8/test/mjsunit/mul-exhaustive-part6.js +554 -0
  525. data/vendor/v8/test/mjsunit/mul-exhaustive-part7.js +497 -0
  526. data/vendor/v8/test/mjsunit/mul-exhaustive-part8.js +526 -0
  527. data/vendor/v8/test/mjsunit/mul-exhaustive-part9.js +533 -0
  528. data/vendor/v8/test/mjsunit/new-function.js +34 -0
  529. data/vendor/v8/test/mjsunit/numops-fuzz-part1.js +1172 -0
  530. data/vendor/v8/test/mjsunit/numops-fuzz-part2.js +1178 -0
  531. data/vendor/v8/test/mjsunit/numops-fuzz-part3.js +1178 -0
  532. data/vendor/v8/test/mjsunit/numops-fuzz-part4.js +1177 -0
  533. data/vendor/v8/test/mjsunit/object-define-property.js +107 -2
  534. data/vendor/v8/test/mjsunit/override-read-only-property.js +6 -4
  535. data/vendor/v8/test/mjsunit/packed-elements.js +2 -2
  536. data/vendor/v8/test/mjsunit/parse-int-float.js +4 -4
  537. data/vendor/v8/test/mjsunit/pixel-array-rounding.js +1 -1
  538. data/vendor/v8/test/mjsunit/readonly.js +228 -0
  539. data/vendor/v8/test/mjsunit/regexp-capture-3.js +16 -18
  540. data/vendor/v8/test/mjsunit/regexp-capture.js +2 -0
  541. data/vendor/v8/test/mjsunit/regexp-global.js +122 -0
  542. data/vendor/v8/test/mjsunit/regexp-results-cache.js +78 -0
  543. data/vendor/v8/test/mjsunit/regress/regress-1117.js +12 -3
  544. data/vendor/v8/test/mjsunit/regress/regress-1118.js +1 -1
  545. data/vendor/v8/test/mjsunit/regress/regress-115100.js +36 -0
  546. data/vendor/v8/test/mjsunit/regress/regress-1199637.js +1 -3
  547. data/vendor/v8/test/mjsunit/regress/regress-121407.js +1 -1
  548. data/vendor/v8/test/mjsunit/regress/regress-131923.js +30 -0
  549. data/vendor/v8/test/mjsunit/regress/regress-131994.js +70 -0
  550. data/vendor/v8/test/mjsunit/regress/regress-133211.js +35 -0
  551. data/vendor/v8/test/mjsunit/regress/regress-133211b.js +39 -0
  552. data/vendor/v8/test/mjsunit/regress/regress-136048.js +34 -0
  553. data/vendor/v8/test/mjsunit/regress/regress-137768.js +73 -0
  554. data/vendor/v8/test/mjsunit/regress/regress-143967.js +34 -0
  555. data/vendor/v8/test/mjsunit/regress/regress-145201.js +107 -0
  556. data/vendor/v8/test/mjsunit/regress/regress-147497.js +45 -0
  557. data/vendor/v8/test/mjsunit/regress/regress-148378.js +38 -0
  558. data/vendor/v8/test/mjsunit/regress/regress-1563.js +1 -1
  559. data/vendor/v8/test/mjsunit/regress/regress-1591.js +48 -0
  560. data/vendor/v8/test/mjsunit/regress/regress-164442.js +45 -0
  561. data/vendor/v8/test/mjsunit/regress/regress-165637.js +61 -0
  562. data/vendor/v8/test/mjsunit/regress/regress-166379.js +39 -0
  563. data/vendor/v8/test/mjsunit/regress/regress-166553.js +33 -0
  564. data/vendor/v8/test/mjsunit/regress/regress-1692.js +1 -1
  565. data/vendor/v8/test/mjsunit/regress/regress-171641.js +40 -0
  566. data/vendor/v8/test/mjsunit/regress/regress-1980.js +1 -1
  567. data/vendor/v8/test/mjsunit/regress/regress-2073.js +99 -0
  568. data/vendor/v8/test/mjsunit/regress/regress-2119.js +36 -0
  569. data/vendor/v8/test/mjsunit/regress/regress-2156.js +39 -0
  570. data/vendor/v8/test/mjsunit/regress/regress-2163.js +70 -0
  571. data/vendor/v8/test/mjsunit/regress/regress-2170.js +58 -0
  572. data/vendor/v8/test/mjsunit/regress/regress-2172.js +35 -0
  573. data/vendor/v8/test/mjsunit/regress/regress-2185-2.js +145 -0
  574. data/vendor/v8/test/mjsunit/regress/regress-2185.js +38 -0
  575. data/vendor/v8/test/mjsunit/regress/regress-2186.js +49 -0
  576. data/vendor/v8/test/mjsunit/regress/regress-2193.js +58 -0
  577. data/vendor/v8/test/mjsunit/regress/regress-2219.js +32 -0
  578. data/vendor/v8/test/mjsunit/regress/regress-2225.js +65 -0
  579. data/vendor/v8/test/mjsunit/regress/regress-2226.js +36 -0
  580. data/vendor/v8/test/mjsunit/regress/regress-2234.js +41 -0
  581. data/vendor/v8/test/mjsunit/regress/regress-2243.js +31 -0
  582. data/vendor/v8/test/mjsunit/regress/regress-2249.js +33 -0
  583. data/vendor/v8/test/mjsunit/regress/regress-2250.js +68 -0
  584. data/vendor/v8/test/mjsunit/regress/regress-2261.js +113 -0
  585. data/vendor/v8/test/mjsunit/regress/regress-2263.js +30 -0
  586. data/vendor/v8/test/mjsunit/regress/regress-2284.js +32 -0
  587. data/vendor/v8/test/mjsunit/regress/regress-2285.js +32 -0
  588. data/vendor/v8/test/mjsunit/regress/regress-2286.js +32 -0
  589. data/vendor/v8/test/mjsunit/regress/regress-2289.js +34 -0
  590. data/vendor/v8/test/mjsunit/regress/regress-2291.js +36 -0
  591. data/vendor/v8/test/mjsunit/regress/regress-2294.js +70 -0
  592. data/vendor/v8/test/mjsunit/regress/regress-2296.js +40 -0
  593. data/vendor/v8/test/mjsunit/regress/regress-2315.js +40 -0
  594. data/vendor/v8/test/mjsunit/regress/regress-2318.js +66 -0
  595. data/vendor/v8/test/mjsunit/regress/regress-2322.js +36 -0
  596. data/vendor/v8/test/mjsunit/regress/regress-2326.js +54 -0
  597. data/vendor/v8/test/mjsunit/regress/regress-2336.js +53 -0
  598. data/vendor/v8/test/mjsunit/regress/regress-2339.js +59 -0
  599. data/vendor/v8/test/mjsunit/regress/regress-2346.js +123 -0
  600. data/vendor/v8/test/mjsunit/regress/regress-2373.js +29 -0
  601. data/vendor/v8/test/mjsunit/regress/regress-2374.js +33 -0
  602. data/vendor/v8/test/mjsunit/regress/regress-2398.js +41 -0
  603. data/vendor/v8/test/mjsunit/regress/regress-2410.js +36 -0
  604. data/vendor/v8/test/mjsunit/regress/regress-2416.js +75 -0
  605. data/vendor/v8/test/mjsunit/regress/regress-2419.js +37 -0
  606. data/vendor/v8/test/mjsunit/regress/regress-2433.js +36 -0
  607. data/vendor/v8/test/mjsunit/regress/regress-2437.js +156 -0
  608. data/vendor/v8/test/mjsunit/regress/regress-2438.js +52 -0
  609. data/vendor/v8/test/mjsunit/regress/regress-2443.js +129 -0
  610. data/vendor/v8/test/mjsunit/regress/regress-2444.js +120 -0
  611. data/vendor/v8/test/mjsunit/regress/regress-2489.js +50 -0
  612. data/vendor/v8/test/mjsunit/regress/regress-2499.js +40 -0
  613. data/vendor/v8/test/mjsunit/regress/regress-334.js +1 -1
  614. data/vendor/v8/test/mjsunit/regress/regress-492.js +39 -1
  615. data/vendor/v8/test/mjsunit/regress/regress-builtin-array-op.js +38 -0
  616. data/vendor/v8/test/mjsunit/regress/regress-cnlt-elements.js +43 -0
  617. data/vendor/v8/test/mjsunit/regress/regress-cnlt-enum-indices.js +45 -0
  618. data/vendor/v8/test/mjsunit/regress/regress-cntl-descriptors-enum.js +46 -0
  619. data/vendor/v8/test/mjsunit/regress/regress-convert-enum.js +60 -0
  620. data/vendor/v8/test/mjsunit/regress/regress-convert-enum2.js +46 -0
  621. data/vendor/v8/test/mjsunit/regress/regress-convert-transition.js +40 -0
  622. data/vendor/v8/test/mjsunit/regress/regress-crbug-119926.js +3 -1
  623. data/vendor/v8/test/mjsunit/regress/regress-crbug-125148.js +90 -0
  624. data/vendor/v8/test/mjsunit/regress/regress-crbug-134055.js +63 -0
  625. data/vendor/v8/test/mjsunit/regress/regress-crbug-134609.js +59 -0
  626. data/vendor/v8/test/mjsunit/regress/regress-crbug-135008.js +45 -0
  627. data/vendor/v8/test/mjsunit/regress/regress-crbug-135066.js +55 -0
  628. data/vendor/v8/test/mjsunit/regress/regress-crbug-137689.js +47 -0
  629. data/vendor/v8/test/mjsunit/regress/regress-crbug-138887.js +48 -0
  630. data/vendor/v8/test/mjsunit/regress/regress-crbug-140083.js +44 -0
  631. data/vendor/v8/test/mjsunit/regress/regress-crbug-142087.js +38 -0
  632. data/vendor/v8/test/mjsunit/regress/regress-crbug-142218.js +44 -0
  633. data/vendor/v8/test/mjsunit/regress/regress-crbug-145961.js +39 -0
  634. data/vendor/v8/test/mjsunit/regress/regress-crbug-146910.js +33 -0
  635. data/vendor/v8/test/mjsunit/regress/regress-crbug-147475.js +48 -0
  636. data/vendor/v8/test/mjsunit/regress/regress-crbug-148376.js +35 -0
  637. data/vendor/v8/test/mjsunit/regress/regress-crbug-150545.js +53 -0
  638. data/vendor/v8/test/mjsunit/regress/regress-crbug-150729.js +39 -0
  639. data/vendor/v8/test/mjsunit/regress/regress-crbug-157019.js +54 -0
  640. data/vendor/v8/test/mjsunit/regress/regress-crbug-157520.js +38 -0
  641. data/vendor/v8/test/mjsunit/regress/regress-crbug-158185.js +39 -0
  642. data/vendor/v8/test/mjsunit/regress/regress-crbug-160010.js +35 -0
  643. data/vendor/v8/test/mjsunit/regress/regress-crbug-162085.js +71 -0
  644. data/vendor/v8/test/mjsunit/regress/regress-crbug-168545.js +34 -0
  645. data/vendor/v8/test/mjsunit/regress/regress-crbug-170856.js +33 -0
  646. data/vendor/v8/test/mjsunit/regress/regress-crbug-172345.js +34 -0
  647. data/vendor/v8/test/mjsunit/regress/regress-crbug-173974.js +36 -0
  648. data/vendor/v8/test/mjsunit/regress/regress-crbug-18639.js +9 -5
  649. data/vendor/v8/test/mjsunit/regress/regress-debug-code-recompilation.js +2 -1
  650. data/vendor/v8/test/mjsunit/regress/regress-deep-proto.js +45 -0
  651. data/vendor/v8/test/mjsunit/regress/regress-delete-empty-double.js +40 -0
  652. data/vendor/v8/test/mjsunit/regress/regress-iteration-order.js +42 -0
  653. data/vendor/v8/test/mjsunit/regress/regress-json-stringify-gc.js +41 -0
  654. data/vendor/v8/test/mjsunit/regress/regress-latin-1.js +78 -0
  655. data/vendor/v8/test/mjsunit/regress/regress-load-elements.js +49 -0
  656. data/vendor/v8/test/mjsunit/regress/regress-observe-empty-double-array.js +38 -0
  657. data/vendor/v8/test/mjsunit/regress/regress-undefined-store-keyed-fast-element.js +37 -0
  658. data/vendor/v8/test/mjsunit/shift-for-integer-div.js +59 -0
  659. data/vendor/v8/test/mjsunit/stack-traces-gc.js +119 -0
  660. data/vendor/v8/test/mjsunit/stack-traces-overflow.js +122 -0
  661. data/vendor/v8/test/mjsunit/stack-traces.js +39 -1
  662. data/vendor/v8/test/mjsunit/str-to-num.js +7 -2
  663. data/vendor/v8/test/mjsunit/strict-mode.js +36 -11
  664. data/vendor/v8/test/mjsunit/string-charcodeat.js +3 -0
  665. data/vendor/v8/test/mjsunit/string-natives.js +72 -0
  666. data/vendor/v8/test/mjsunit/string-split.js +17 -0
  667. data/vendor/v8/test/mjsunit/testcfg.py +76 -6
  668. data/vendor/v8/test/mjsunit/tools/tickprocessor.js +4 -1
  669. data/vendor/v8/test/mjsunit/try-finally-continue.js +72 -0
  670. data/vendor/v8/test/mjsunit/typed-array-slice.js +61 -0
  671. data/vendor/v8/test/mjsunit/unbox-double-arrays.js +2 -0
  672. data/vendor/v8/test/mjsunit/uri.js +12 -0
  673. data/vendor/v8/test/mjsunit/with-readonly.js +4 -2
  674. data/vendor/v8/test/mozilla/mozilla.status +19 -113
  675. data/vendor/v8/test/mozilla/testcfg.py +122 -3
  676. data/vendor/v8/test/preparser/preparser.status +5 -0
  677. data/vendor/v8/test/preparser/strict-identifiers.pyt +1 -1
  678. data/vendor/v8/test/preparser/testcfg.py +101 -5
  679. data/vendor/v8/test/sputnik/sputnik.status +1 -1
  680. data/vendor/v8/test/sputnik/testcfg.py +5 -0
  681. data/vendor/v8/test/test262/README +2 -2
  682. data/vendor/v8/test/test262/test262.status +13 -36
  683. data/vendor/v8/test/test262/testcfg.py +102 -8
  684. data/vendor/v8/tools/android-build.sh +0 -0
  685. data/vendor/v8/tools/android-ll-prof.sh +69 -0
  686. data/vendor/v8/tools/android-run.py +109 -0
  687. data/vendor/v8/tools/android-sync.sh +105 -0
  688. data/vendor/v8/tools/bash-completion.sh +0 -0
  689. data/vendor/v8/tools/check-static-initializers.sh +0 -0
  690. data/vendor/v8/tools/common-includes.sh +15 -22
  691. data/vendor/v8/tools/disasm.py +4 -4
  692. data/vendor/v8/tools/fuzz-harness.sh +0 -0
  693. data/vendor/v8/tools/gen-postmortem-metadata.py +6 -8
  694. data/vendor/v8/tools/grokdump.py +404 -129
  695. data/vendor/v8/tools/gyp/v8.gyp +105 -43
  696. data/vendor/v8/tools/linux-tick-processor +5 -5
  697. data/vendor/v8/tools/ll_prof.py +75 -15
  698. data/vendor/v8/tools/merge-to-branch.sh +2 -2
  699. data/vendor/v8/tools/plot-timer-events +70 -0
  700. data/vendor/v8/tools/plot-timer-events.js +510 -0
  701. data/vendor/v8/tools/presubmit.py +1 -0
  702. data/vendor/v8/tools/push-to-trunk.sh +14 -4
  703. data/vendor/v8/tools/run-llprof.sh +69 -0
  704. data/vendor/v8/tools/run-tests.py +372 -0
  705. data/vendor/v8/tools/run-valgrind.py +1 -1
  706. data/vendor/v8/tools/status-file-converter.py +39 -0
  707. data/vendor/v8/tools/test-server.py +224 -0
  708. data/vendor/v8/tools/test-wrapper-gypbuild.py +13 -16
  709. data/vendor/v8/tools/test.py +10 -19
  710. data/vendor/v8/tools/testrunner/README +174 -0
  711. data/vendor/v8/tools/testrunner/__init__.py +26 -0
  712. data/vendor/v8/tools/testrunner/local/__init__.py +26 -0
  713. data/vendor/v8/tools/testrunner/local/commands.py +153 -0
  714. data/vendor/v8/tools/testrunner/local/execution.py +182 -0
  715. data/vendor/v8/tools/testrunner/local/old_statusfile.py +460 -0
  716. data/vendor/v8/tools/testrunner/local/progress.py +238 -0
  717. data/vendor/v8/tools/testrunner/local/statusfile.py +145 -0
  718. data/vendor/v8/tools/testrunner/local/testsuite.py +187 -0
  719. data/vendor/v8/tools/testrunner/local/utils.py +108 -0
  720. data/vendor/v8/tools/testrunner/local/verbose.py +99 -0
  721. data/vendor/v8/tools/testrunner/network/__init__.py +26 -0
  722. data/vendor/v8/tools/testrunner/network/distro.py +90 -0
  723. data/vendor/v8/tools/testrunner/network/endpoint.py +124 -0
  724. data/vendor/v8/tools/testrunner/network/network_execution.py +253 -0
  725. data/vendor/v8/tools/testrunner/network/perfdata.py +120 -0
  726. data/vendor/v8/tools/testrunner/objects/__init__.py +26 -0
  727. data/vendor/v8/tools/testrunner/objects/context.py +50 -0
  728. data/vendor/v8/tools/testrunner/objects/output.py +60 -0
  729. data/vendor/v8/tools/testrunner/objects/peer.py +80 -0
  730. data/vendor/v8/tools/testrunner/objects/testcase.py +83 -0
  731. data/vendor/v8/tools/testrunner/objects/workpacket.py +90 -0
  732. data/vendor/v8/tools/testrunner/server/__init__.py +26 -0
  733. data/vendor/v8/tools/testrunner/server/compression.py +111 -0
  734. data/vendor/v8/tools/testrunner/server/constants.py +51 -0
  735. data/vendor/v8/tools/testrunner/server/daemon.py +147 -0
  736. data/vendor/v8/tools/testrunner/server/local_handler.py +119 -0
  737. data/vendor/v8/tools/testrunner/server/main.py +245 -0
  738. data/vendor/v8/tools/testrunner/server/presence_handler.py +120 -0
  739. data/vendor/v8/tools/testrunner/server/signatures.py +63 -0
  740. data/vendor/v8/tools/testrunner/server/status_handler.py +112 -0
  741. data/vendor/v8/tools/testrunner/server/work_handler.py +150 -0
  742. data/vendor/v8/tools/tick-processor.html +168 -0
  743. data/vendor/v8/tools/tickprocessor-driver.js +5 -3
  744. data/vendor/v8/tools/tickprocessor.js +58 -15
  745. metadata +534 -30
  746. data/patches/add-freebsd9-and-freebsd10-to-gyp-GetFlavor.patch +0 -11
  747. data/patches/do-not-imply-vfp3-and-armv7.patch +0 -44
  748. data/patches/fPIC-on-x64.patch +0 -14
  749. data/vendor/v8/src/liveobjectlist-inl.h +0 -126
  750. data/vendor/v8/src/liveobjectlist.cc +0 -2631
  751. data/vendor/v8/src/liveobjectlist.h +0 -319
  752. data/vendor/v8/test/mjsunit/mul-exhaustive.js +0 -4629
  753. data/vendor/v8/test/mjsunit/numops-fuzz.js +0 -4609
  754. data/vendor/v8/test/mjsunit/regress/regress-1969.js +0 -5045
@@ -131,19 +131,16 @@ function MathMax(arg1, arg2) { // length == 2
131
131
  // All comparisons failed, one of the arguments must be NaN.
132
132
  return 0/0; // Compiler constant-folds this to NaN.
133
133
  }
134
- if (length == 0) {
135
- return -1/0; // Compiler constant-folds this to -Infinity.
136
- }
137
- var r = arg1;
138
- if (!IS_NUMBER(r)) r = NonNumberToNumber(r);
139
- if (NUMBER_IS_NAN(r)) return r;
140
- for (var i = 1; i < length; i++) {
134
+ var r = -1/0; // Compiler constant-folds this to -Infinity.
135
+ for (var i = 0; i < length; i++) {
141
136
  var n = %_Arguments(i);
142
137
  if (!IS_NUMBER(n)) n = NonNumberToNumber(n);
143
- if (NUMBER_IS_NAN(n)) return n;
144
138
  // Make sure +0 is considered greater than -0. -0 is never a Smi, +0 can be
145
139
  // a Smi or heap number.
146
- if (n > r || (r == 0 && n == 0 && !%_IsSmi(r) && 1 / r < 0)) r = n;
140
+ if (NUMBER_IS_NAN(n) || n > r ||
141
+ (r == 0 && n == 0 && !%_IsSmi(r) && 1 / r < 0)) {
142
+ r = n;
143
+ }
147
144
  }
148
145
  return r;
149
146
  }
@@ -164,19 +161,16 @@ function MathMin(arg1, arg2) { // length == 2
164
161
  // All comparisons failed, one of the arguments must be NaN.
165
162
  return 0/0; // Compiler constant-folds this to NaN.
166
163
  }
167
- if (length == 0) {
168
- return 1/0; // Compiler constant-folds this to Infinity.
169
- }
170
- var r = arg1;
171
- if (!IS_NUMBER(r)) r = NonNumberToNumber(r);
172
- if (NUMBER_IS_NAN(r)) return r;
173
- for (var i = 1; i < length; i++) {
164
+ var r = 1/0; // Compiler constant-folds this to Infinity.
165
+ for (var i = 0; i < length; i++) {
174
166
  var n = %_Arguments(i);
175
167
  if (!IS_NUMBER(n)) n = NonNumberToNumber(n);
176
- if (NUMBER_IS_NAN(n)) return n;
177
168
  // Make sure -0 is considered less than +0. -0 is never a Smi, +0 can be a
178
169
  // Smi or a heap number.
179
- if (n < r || (r == 0 && n == 0 && !%_IsSmi(n) && 1 / n < 0)) r = n;
170
+ if (NUMBER_IS_NAN(n) || n < r ||
171
+ (r == 0 && n == 0 && !%_IsSmi(n) && 1 / n < 0)) {
172
+ r = n;
173
+ }
180
174
  }
181
175
  return r;
182
176
  }
@@ -61,7 +61,7 @@ Handle<JSMessageObject> MessageHandler::MakeMessageObject(
61
61
  Vector< Handle<Object> > args,
62
62
  Handle<String> stack_trace,
63
63
  Handle<JSArray> stack_frames) {
64
- Handle<String> type_handle = FACTORY->LookupAsciiSymbol(type);
64
+ Handle<String> type_handle = FACTORY->LookupUtf8Symbol(type);
65
65
  Handle<FixedArray> arguments_elements =
66
66
  FACTORY->NewFixedArray(args.length());
67
67
  for (int i = 0; i < args.length(); i++) {
@@ -106,11 +106,20 @@ void MessageHandler::ReportMessage(Isolate* isolate,
106
106
  // We are calling into embedder's code which can throw exceptions.
107
107
  // Thus we need to save current exception state, reset it to the clean one
108
108
  // and ignore scheduled exceptions callbacks can throw.
109
+
110
+ // We pass the exception object into the message handler callback though.
111
+ Object* exception_object = isolate->heap()->undefined_value();
112
+ if (isolate->has_pending_exception()) {
113
+ isolate->pending_exception()->ToObject(&exception_object);
114
+ }
115
+ Handle<Object> exception_handle(exception_object);
116
+
109
117
  Isolate::ExceptionScope exception_scope(isolate);
110
118
  isolate->clear_pending_exception();
111
119
  isolate->set_external_caught_exception(false);
112
120
 
113
121
  v8::Local<v8::Message> api_message_obj = v8::Utils::MessageToLocal(message);
122
+ v8::Local<v8::Value> api_exception_obj = v8::Utils::ToLocal(exception_handle);
114
123
 
115
124
  v8::NeanderArray global_listeners(FACTORY->message_listeners());
116
125
  int global_length = global_listeners.length();
@@ -123,15 +132,13 @@ void MessageHandler::ReportMessage(Isolate* isolate,
123
132
  for (int i = 0; i < global_length; i++) {
124
133
  HandleScope scope;
125
134
  if (global_listeners.get(i)->IsUndefined()) continue;
126
- v8::NeanderObject listener(JSObject::cast(global_listeners.get(i)));
127
- Handle<Foreign> callback_obj(Foreign::cast(listener.get(0)));
135
+ Handle<Foreign> callback_obj(Foreign::cast(global_listeners.get(i)));
128
136
  v8::MessageCallback callback =
129
137
  FUNCTION_CAST<v8::MessageCallback>(callback_obj->foreign_address());
130
- Handle<Object> callback_data(listener.get(1));
131
138
  {
132
139
  // Do not allow exceptions to propagate.
133
140
  v8::TryCatch try_catch;
134
- callback(api_message_obj, v8::Utils::ToLocal(callback_data));
141
+ callback(api_message_obj, api_exception_obj);
135
142
  }
136
143
  if (isolate->has_scheduled_exception()) {
137
144
  isolate->clear_scheduled_exception();
@@ -142,13 +149,16 @@ void MessageHandler::ReportMessage(Isolate* isolate,
142
149
 
143
150
 
144
151
  Handle<String> MessageHandler::GetMessage(Handle<Object> data) {
145
- Handle<String> fmt_str = FACTORY->LookupAsciiSymbol("FormatMessage");
152
+ Handle<String> fmt_str =
153
+ FACTORY->LookupOneByteSymbol(STATIC_ASCII_VECTOR("FormatMessage"));
146
154
  Handle<JSFunction> fun =
147
155
  Handle<JSFunction>(
148
156
  JSFunction::cast(
149
157
  Isolate::Current()->js_builtins_object()->
150
158
  GetPropertyNoExceptionThrown(*fmt_str)));
151
- Handle<Object> argv[] = { data };
159
+ Handle<JSMessageObject> message = Handle<JSMessageObject>::cast(data);
160
+ Handle<Object> argv[] = { Handle<Object>(message->type()),
161
+ Handle<Object>(message->arguments()) };
152
162
 
153
163
  bool caught_exception;
154
164
  Handle<Object> result =
@@ -159,7 +169,7 @@ Handle<String> MessageHandler::GetMessage(Handle<Object> data) {
159
169
  &caught_exception);
160
170
 
161
171
  if (caught_exception || !result->IsString()) {
162
- return FACTORY->LookupAsciiSymbol("<error>");
172
+ return FACTORY->LookupOneByteSymbol(STATIC_ASCII_VECTOR("<error>"));
163
173
  }
164
174
  Handle<String> result_string = Handle<String>::cast(result);
165
175
  // A string that has been obtained from JS code in this way is
@@ -26,18 +26,137 @@
26
26
  // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
27
 
28
28
  // -------------------------------------------------------------------
29
- //
30
- // If this object gets passed to an error constructor the error will
31
- // get an accessor for .message that constructs a descriptive error
32
- // message on access.
33
- var kAddMessageAccessorsMarker = { };
34
-
35
- // This will be lazily initialized when first needed (and forcibly
36
- // overwritten even though it's const).
37
- var kMessages = 0;
38
29
 
39
- function FormatString(format, message) {
40
- var args = %MessageGetArguments(message);
30
+ var kMessages = {
31
+ // Error
32
+ cyclic_proto: ["Cyclic __proto__ value"],
33
+ code_gen_from_strings: ["%0"],
34
+ // TypeError
35
+ unexpected_token: ["Unexpected token ", "%0"],
36
+ unexpected_token_number: ["Unexpected number"],
37
+ unexpected_token_string: ["Unexpected string"],
38
+ unexpected_token_identifier: ["Unexpected identifier"],
39
+ unexpected_reserved: ["Unexpected reserved word"],
40
+ unexpected_strict_reserved: ["Unexpected strict mode reserved word"],
41
+ unexpected_eos: ["Unexpected end of input"],
42
+ malformed_regexp: ["Invalid regular expression: /", "%0", "/: ", "%1"],
43
+ unterminated_regexp: ["Invalid regular expression: missing /"],
44
+ regexp_flags: ["Cannot supply flags when constructing one RegExp from another"],
45
+ incompatible_method_receiver: ["Method ", "%0", " called on incompatible receiver ", "%1"],
46
+ invalid_lhs_in_assignment: ["Invalid left-hand side in assignment"],
47
+ invalid_lhs_in_for_in: ["Invalid left-hand side in for-in"],
48
+ invalid_lhs_in_postfix_op: ["Invalid left-hand side expression in postfix operation"],
49
+ invalid_lhs_in_prefix_op: ["Invalid left-hand side expression in prefix operation"],
50
+ multiple_defaults_in_switch: ["More than one default clause in switch statement"],
51
+ newline_after_throw: ["Illegal newline after throw"],
52
+ redeclaration: ["%0", " '", "%1", "' has already been declared"],
53
+ no_catch_or_finally: ["Missing catch or finally after try"],
54
+ unknown_label: ["Undefined label '", "%0", "'"],
55
+ uncaught_exception: ["Uncaught ", "%0"],
56
+ stack_trace: ["Stack Trace:\n", "%0"],
57
+ called_non_callable: ["%0", " is not a function"],
58
+ undefined_method: ["Object ", "%1", " has no method '", "%0", "'"],
59
+ property_not_function: ["Property '", "%0", "' of object ", "%1", " is not a function"],
60
+ cannot_convert_to_primitive: ["Cannot convert object to primitive value"],
61
+ not_constructor: ["%0", " is not a constructor"],
62
+ not_defined: ["%0", " is not defined"],
63
+ non_object_property_load: ["Cannot read property '", "%0", "' of ", "%1"],
64
+ non_object_property_store: ["Cannot set property '", "%0", "' of ", "%1"],
65
+ non_object_property_call: ["Cannot call method '", "%0", "' of ", "%1"],
66
+ with_expression: ["%0", " has no properties"],
67
+ illegal_invocation: ["Illegal invocation"],
68
+ no_setter_in_callback: ["Cannot set property ", "%0", " of ", "%1", " which has only a getter"],
69
+ apply_non_function: ["Function.prototype.apply was called on ", "%0", ", which is a ", "%1", " and not a function"],
70
+ apply_wrong_args: ["Function.prototype.apply: Arguments list has wrong type"],
71
+ invalid_in_operator_use: ["Cannot use 'in' operator to search for '", "%0", "' in ", "%1"],
72
+ instanceof_function_expected: ["Expecting a function in instanceof check, but got ", "%0"],
73
+ instanceof_nonobject_proto: ["Function has non-object prototype '", "%0", "' in instanceof check"],
74
+ null_to_object: ["Cannot convert null to object"],
75
+ reduce_no_initial: ["Reduce of empty array with no initial value"],
76
+ getter_must_be_callable: ["Getter must be a function: ", "%0"],
77
+ setter_must_be_callable: ["Setter must be a function: ", "%0"],
78
+ value_and_accessor: ["Invalid property. A property cannot both have accessors and be writable or have a value, ", "%0"],
79
+ proto_object_or_null: ["Object prototype may only be an Object or null"],
80
+ property_desc_object: ["Property description must be an object: ", "%0"],
81
+ redefine_disallowed: ["Cannot redefine property: ", "%0"],
82
+ define_disallowed: ["Cannot define property:", "%0", ", object is not extensible."],
83
+ non_extensible_proto: ["%0", " is not extensible"],
84
+ handler_non_object: ["Proxy.", "%0", " called with non-object as handler"],
85
+ proto_non_object: ["Proxy.", "%0", " called with non-object as prototype"],
86
+ trap_function_expected: ["Proxy.", "%0", " called with non-function for '", "%1", "' trap"],
87
+ handler_trap_missing: ["Proxy handler ", "%0", " has no '", "%1", "' trap"],
88
+ handler_trap_must_be_callable: ["Proxy handler ", "%0", " has non-callable '", "%1", "' trap"],
89
+ handler_returned_false: ["Proxy handler ", "%0", " returned false from '", "%1", "' trap"],
90
+ handler_returned_undefined: ["Proxy handler ", "%0", " returned undefined from '", "%1", "' trap"],
91
+ proxy_prop_not_configurable: ["Proxy handler ", "%0", " returned non-configurable descriptor for property '", "%2", "' from '", "%1", "' trap"],
92
+ proxy_non_object_prop_names: ["Trap '", "%1", "' returned non-object ", "%0"],
93
+ proxy_repeated_prop_name: ["Trap '", "%1", "' returned repeated property name '", "%2", "'"],
94
+ invalid_weakmap_key: ["Invalid value used as weak map key"],
95
+ not_date_object: ["this is not a Date object."],
96
+ observe_non_object: ["Object.", "%0", " cannot ", "%0", " non-object"],
97
+ observe_non_function: ["Object.", "%0", " cannot deliver to non-function"],
98
+ observe_callback_frozen: ["Object.observe cannot deliver to a frozen function object"],
99
+ observe_type_non_string: ["Invalid changeRecord with non-string 'type' property"],
100
+ observe_notify_non_notifier: ["notify called on non-notifier object"],
101
+ // RangeError
102
+ invalid_array_length: ["Invalid array length"],
103
+ stack_overflow: ["Maximum call stack size exceeded"],
104
+ invalid_time_value: ["Invalid time value"],
105
+ // SyntaxError
106
+ unable_to_parse: ["Parse error"],
107
+ invalid_regexp_flags: ["Invalid flags supplied to RegExp constructor '", "%0", "'"],
108
+ invalid_regexp: ["Invalid RegExp pattern /", "%0", "/"],
109
+ illegal_break: ["Illegal break statement"],
110
+ illegal_continue: ["Illegal continue statement"],
111
+ illegal_return: ["Illegal return statement"],
112
+ illegal_let: ["Illegal let declaration outside extended mode"],
113
+ error_loading_debugger: ["Error loading debugger"],
114
+ no_input_to_regexp: ["No input to ", "%0"],
115
+ invalid_json: ["String '", "%0", "' is not valid JSON"],
116
+ circular_structure: ["Converting circular structure to JSON"],
117
+ called_on_non_object: ["%0", " called on non-object"],
118
+ called_on_null_or_undefined: ["%0", " called on null or undefined"],
119
+ array_indexof_not_defined: ["Array.getIndexOf: Argument undefined"],
120
+ object_not_extensible: ["Can't add property ", "%0", ", object is not extensible"],
121
+ illegal_access: ["Illegal access"],
122
+ invalid_preparser_data: ["Invalid preparser data for function ", "%0"],
123
+ strict_mode_with: ["Strict mode code may not include a with statement"],
124
+ strict_catch_variable: ["Catch variable may not be eval or arguments in strict mode"],
125
+ too_many_arguments: ["Too many arguments in function call (only 32766 allowed)"],
126
+ too_many_parameters: ["Too many parameters in function definition (only 32766 allowed)"],
127
+ too_many_variables: ["Too many variables declared (only 131071 allowed)"],
128
+ strict_param_name: ["Parameter name eval or arguments is not allowed in strict mode"],
129
+ strict_param_dupe: ["Strict mode function may not have duplicate parameter names"],
130
+ strict_var_name: ["Variable name may not be eval or arguments in strict mode"],
131
+ strict_function_name: ["Function name may not be eval or arguments in strict mode"],
132
+ strict_octal_literal: ["Octal literals are not allowed in strict mode."],
133
+ strict_duplicate_property: ["Duplicate data property in object literal not allowed in strict mode"],
134
+ accessor_data_property: ["Object literal may not have data and accessor property with the same name"],
135
+ accessor_get_set: ["Object literal may not have multiple get/set accessors with the same name"],
136
+ strict_lhs_assignment: ["Assignment to eval or arguments is not allowed in strict mode"],
137
+ strict_lhs_postfix: ["Postfix increment/decrement may not have eval or arguments operand in strict mode"],
138
+ strict_lhs_prefix: ["Prefix increment/decrement may not have eval or arguments operand in strict mode"],
139
+ strict_reserved_word: ["Use of future reserved word in strict mode"],
140
+ strict_delete: ["Delete of an unqualified identifier in strict mode."],
141
+ strict_delete_property: ["Cannot delete property '", "%0", "' of ", "%1"],
142
+ strict_const: ["Use of const in strict mode."],
143
+ strict_function: ["In strict mode code, functions can only be declared at top level or immediately within another function." ],
144
+ strict_read_only_property: ["Cannot assign to read only property '", "%0", "' of ", "%1"],
145
+ strict_cannot_assign: ["Cannot assign to read only '", "%0", "' in strict mode"],
146
+ strict_poison_pill: ["'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them"],
147
+ strict_caller: ["Illegal access to a strict mode caller function."],
148
+ unprotected_let: ["Illegal let declaration in unprotected statement context."],
149
+ unprotected_const: ["Illegal const declaration in unprotected statement context."],
150
+ cant_prevent_ext_external_array_elements: ["Cannot prevent extension of an object with external array elements"],
151
+ redef_external_array_element: ["Cannot redefine a property of an object with external array elements"],
152
+ harmony_const_assign: ["Assignment to constant variable."],
153
+ invalid_module_path: ["Module does not export '", "%0", "', or export is not itself a module"],
154
+ module_type_error: ["Module '", "%0", "' used improperly"],
155
+ module_export_undefined: ["Export '", "%0", "' is not defined in module"],
156
+ };
157
+
158
+
159
+ function FormatString(format, args) {
41
160
  var result = "";
42
161
  var arg_num = 0;
43
162
  for (var i = 0; i < format.length; i++) {
@@ -48,9 +167,14 @@ function FormatString(format, message) {
48
167
  if (arg_num < 4) {
49
168
  // str is one of %0, %1, %2 or %3.
50
169
  try {
51
- str = ToDetailString(args[arg_num]);
170
+ str = NoSideEffectToString(args[arg_num]);
52
171
  } catch (e) {
53
- str = "#<error>";
172
+ if (%IsJSModule(args[arg_num]))
173
+ str = "module";
174
+ else if (IS_SPEC_OBJECT(args[arg_num]))
175
+ str = "object";
176
+ else
177
+ str = "#<error>";
54
178
  }
55
179
  }
56
180
  }
@@ -60,6 +184,27 @@ function FormatString(format, message) {
60
184
  }
61
185
 
62
186
 
187
+ function NoSideEffectToString(obj) {
188
+ if (IS_STRING(obj)) return obj;
189
+ if (IS_NUMBER(obj)) return %_NumberToString(obj);
190
+ if (IS_BOOLEAN(obj)) return x ? 'true' : 'false';
191
+ if (IS_UNDEFINED(obj)) return 'undefined';
192
+ if (IS_NULL(obj)) return 'null';
193
+ if (IS_FUNCTION(obj)) return %_CallFunction(obj, FunctionToString);
194
+ if (IS_OBJECT(obj) && %GetDataProperty(obj, "toString") === ObjectToString) {
195
+ var constructor = %GetDataProperty(obj, "constructor");
196
+ if (typeof constructor == "function") {
197
+ var constructorName = constructor.name;
198
+ if (IS_STRING(constructorName) && constructorName !== "") {
199
+ return "#<" + constructorName + ">";
200
+ }
201
+ }
202
+ }
203
+ if (IsNativeErrorObject(obj)) return %_CallFunction(obj, ErrorToString);
204
+ return %_CallFunction(obj, ObjectToString);
205
+ }
206
+
207
+
63
208
  // To check if something is a native error we need to check the
64
209
  // concrete native error types. It is not sufficient to use instanceof
65
210
  // since it possible to create an object that has Error.prototype on
@@ -107,13 +252,8 @@ function ToDetailString(obj) {
107
252
 
108
253
 
109
254
  function MakeGenericError(constructor, type, args) {
110
- if (IS_UNDEFINED(args)) {
111
- args = [];
112
- }
113
- var e = new constructor(kAddMessageAccessorsMarker);
114
- e.type = type;
115
- e.arguments = args;
116
- return e;
255
+ if (IS_UNDEFINED(args)) args = [];
256
+ return new constructor(FormatMessage(type, args));
117
257
  }
118
258
 
119
259
 
@@ -130,154 +270,10 @@ function MakeGenericError(constructor, type, args) {
130
270
 
131
271
 
132
272
  // Helper functions; called from the runtime system.
133
- function FormatMessage(message) {
134
- if (kMessages === 0) {
135
- var messagesDictionary = [
136
- // Error
137
- "cyclic_proto", ["Cyclic __proto__ value"],
138
- "code_gen_from_strings", ["Code generation from strings disallowed for this context"],
139
- // TypeError
140
- "unexpected_token", ["Unexpected token ", "%0"],
141
- "unexpected_token_number", ["Unexpected number"],
142
- "unexpected_token_string", ["Unexpected string"],
143
- "unexpected_token_identifier", ["Unexpected identifier"],
144
- "unexpected_reserved", ["Unexpected reserved word"],
145
- "unexpected_strict_reserved", ["Unexpected strict mode reserved word"],
146
- "unexpected_eos", ["Unexpected end of input"],
147
- "malformed_regexp", ["Invalid regular expression: /", "%0", "/: ", "%1"],
148
- "unterminated_regexp", ["Invalid regular expression: missing /"],
149
- "regexp_flags", ["Cannot supply flags when constructing one RegExp from another"],
150
- "incompatible_method_receiver", ["Method ", "%0", " called on incompatible receiver ", "%1"],
151
- "invalid_lhs_in_assignment", ["Invalid left-hand side in assignment"],
152
- "invalid_lhs_in_for_in", ["Invalid left-hand side in for-in"],
153
- "invalid_lhs_in_postfix_op", ["Invalid left-hand side expression in postfix operation"],
154
- "invalid_lhs_in_prefix_op", ["Invalid left-hand side expression in prefix operation"],
155
- "multiple_defaults_in_switch", ["More than one default clause in switch statement"],
156
- "newline_after_throw", ["Illegal newline after throw"],
157
- "redeclaration", ["%0", " '", "%1", "' has already been declared"],
158
- "no_catch_or_finally", ["Missing catch or finally after try"],
159
- "unknown_label", ["Undefined label '", "%0", "'"],
160
- "uncaught_exception", ["Uncaught ", "%0"],
161
- "stack_trace", ["Stack Trace:\n", "%0"],
162
- "called_non_callable", ["%0", " is not a function"],
163
- "undefined_method", ["Object ", "%1", " has no method '", "%0", "'"],
164
- "property_not_function", ["Property '", "%0", "' of object ", "%1", " is not a function"],
165
- "cannot_convert_to_primitive", ["Cannot convert object to primitive value"],
166
- "not_constructor", ["%0", " is not a constructor"],
167
- "not_defined", ["%0", " is not defined"],
168
- "non_object_property_load", ["Cannot read property '", "%0", "' of ", "%1"],
169
- "non_object_property_store", ["Cannot set property '", "%0", "' of ", "%1"],
170
- "non_object_property_call", ["Cannot call method '", "%0", "' of ", "%1"],
171
- "with_expression", ["%0", " has no properties"],
172
- "illegal_invocation", ["Illegal invocation"],
173
- "no_setter_in_callback", ["Cannot set property ", "%0", " of ", "%1", " which has only a getter"],
174
- "apply_non_function", ["Function.prototype.apply was called on ", "%0", ", which is a ", "%1", " and not a function"],
175
- "apply_wrong_args", ["Function.prototype.apply: Arguments list has wrong type"],
176
- "invalid_in_operator_use", ["Cannot use 'in' operator to search for '", "%0", "' in ", "%1"],
177
- "instanceof_function_expected", ["Expecting a function in instanceof check, but got ", "%0"],
178
- "instanceof_nonobject_proto", ["Function has non-object prototype '", "%0", "' in instanceof check"],
179
- "null_to_object", ["Cannot convert null to object"],
180
- "reduce_no_initial", ["Reduce of empty array with no initial value"],
181
- "getter_must_be_callable", ["Getter must be a function: ", "%0"],
182
- "setter_must_be_callable", ["Setter must be a function: ", "%0"],
183
- "value_and_accessor", ["Invalid property. A property cannot both have accessors and be writable or have a value, ", "%0"],
184
- "proto_object_or_null", ["Object prototype may only be an Object or null"],
185
- "property_desc_object", ["Property description must be an object: ", "%0"],
186
- "redefine_disallowed", ["Cannot redefine property: ", "%0"],
187
- "define_disallowed", ["Cannot define property:", "%0", ", object is not extensible."],
188
- "non_extensible_proto", ["%0", " is not extensible"],
189
- "handler_non_object", ["Proxy.", "%0", " called with non-object as handler"],
190
- "proto_non_object", ["Proxy.", "%0", " called with non-object as prototype"],
191
- "trap_function_expected", ["Proxy.", "%0", " called with non-function for '", "%1", "' trap"],
192
- "handler_trap_missing", ["Proxy handler ", "%0", " has no '", "%1", "' trap"],
193
- "handler_trap_must_be_callable", ["Proxy handler ", "%0", " has non-callable '", "%1", "' trap"],
194
- "handler_returned_false", ["Proxy handler ", "%0", " returned false from '", "%1", "' trap"],
195
- "handler_returned_undefined", ["Proxy handler ", "%0", " returned undefined from '", "%1", "' trap"],
196
- "proxy_prop_not_configurable", ["Proxy handler ", "%0", " returned non-configurable descriptor for property '", "%2", "' from '", "%1", "' trap"],
197
- "proxy_non_object_prop_names", ["Trap '", "%1", "' returned non-object ", "%0"],
198
- "proxy_repeated_prop_name", ["Trap '", "%1", "' returned repeated property name '", "%2", "'"],
199
- "invalid_weakmap_key", ["Invalid value used as weak map key"],
200
- // RangeError
201
- "invalid_array_length", ["Invalid array length"],
202
- "stack_overflow", ["Maximum call stack size exceeded"],
203
- "invalid_time_value", ["Invalid time value"],
204
- // SyntaxError
205
- "unable_to_parse", ["Parse error"],
206
- "invalid_regexp_flags", ["Invalid flags supplied to RegExp constructor '", "%0", "'"],
207
- "invalid_regexp", ["Invalid RegExp pattern /", "%0", "/"],
208
- "illegal_break", ["Illegal break statement"],
209
- "illegal_continue", ["Illegal continue statement"],
210
- "illegal_return", ["Illegal return statement"],
211
- "illegal_let", ["Illegal let declaration outside extended mode"],
212
- "error_loading_debugger", ["Error loading debugger"],
213
- "no_input_to_regexp", ["No input to ", "%0"],
214
- "invalid_json", ["String '", "%0", "' is not valid JSON"],
215
- "circular_structure", ["Converting circular structure to JSON"],
216
- "called_on_non_object", ["%0", " called on non-object"],
217
- "called_on_null_or_undefined", ["%0", " called on null or undefined"],
218
- "array_indexof_not_defined", ["Array.getIndexOf: Argument undefined"],
219
- "object_not_extensible", ["Can't add property ", "%0", ", object is not extensible"],
220
- "illegal_access", ["Illegal access"],
221
- "invalid_preparser_data", ["Invalid preparser data for function ", "%0"],
222
- "strict_mode_with", ["Strict mode code may not include a with statement"],
223
- "strict_catch_variable", ["Catch variable may not be eval or arguments in strict mode"],
224
- "too_many_arguments", ["Too many arguments in function call (only 32766 allowed)"],
225
- "too_many_parameters", ["Too many parameters in function definition (only 32766 allowed)"],
226
- "too_many_variables", ["Too many variables declared (only 32767 allowed)"],
227
- "strict_param_name", ["Parameter name eval or arguments is not allowed in strict mode"],
228
- "strict_param_dupe", ["Strict mode function may not have duplicate parameter names"],
229
- "strict_var_name", ["Variable name may not be eval or arguments in strict mode"],
230
- "strict_function_name", ["Function name may not be eval or arguments in strict mode"],
231
- "strict_octal_literal", ["Octal literals are not allowed in strict mode."],
232
- "strict_duplicate_property", ["Duplicate data property in object literal not allowed in strict mode"],
233
- "accessor_data_property", ["Object literal may not have data and accessor property with the same name"],
234
- "accessor_get_set", ["Object literal may not have multiple get/set accessors with the same name"],
235
- "strict_lhs_assignment", ["Assignment to eval or arguments is not allowed in strict mode"],
236
- "strict_lhs_postfix", ["Postfix increment/decrement may not have eval or arguments operand in strict mode"],
237
- "strict_lhs_prefix", ["Prefix increment/decrement may not have eval or arguments operand in strict mode"],
238
- "strict_reserved_word", ["Use of future reserved word in strict mode"],
239
- "strict_delete", ["Delete of an unqualified identifier in strict mode."],
240
- "strict_delete_property", ["Cannot delete property '", "%0", "' of ", "%1"],
241
- "strict_const", ["Use of const in strict mode."],
242
- "strict_function", ["In strict mode code, functions can only be declared at top level or immediately within another function." ],
243
- "strict_read_only_property", ["Cannot assign to read only property '", "%0", "' of ", "%1"],
244
- "strict_cannot_assign", ["Cannot assign to read only '", "%0", "' in strict mode"],
245
- "strict_poison_pill", ["'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them"],
246
- "strict_caller", ["Illegal access to a strict mode caller function."],
247
- "unprotected_let", ["Illegal let declaration in unprotected statement context."],
248
- "unprotected_const", ["Illegal const declaration in unprotected statement context."],
249
- "cant_prevent_ext_external_array_elements", ["Cannot prevent extension of an object with external array elements"],
250
- "redef_external_array_element", ["Cannot redefine a property of an object with external array elements"],
251
- "harmony_const_assign", ["Assignment to constant variable."],
252
- "invalid_module_path", ["Module does not export '", "%0", "', or export is not itself a module"],
253
- "module_type_error", ["Module '", "%0", "' used improperly"],
254
- ];
255
- var messages = { __proto__ : null };
256
- for (var i = 0; i < messagesDictionary.length; i += 2) {
257
- var key = messagesDictionary[i];
258
- var format = messagesDictionary[i + 1];
259
-
260
- for (var j = 0; j < format.length; j++) {
261
- %IgnoreAttributesAndSetProperty(format, %_NumberToString(j), format[j],
262
- DONT_DELETE | READ_ONLY | DONT_ENUM);
263
- }
264
- %IgnoreAttributesAndSetProperty(format, 'length', format.length,
265
- DONT_DELETE | READ_ONLY | DONT_ENUM);
266
- %PreventExtensions(format);
267
- %IgnoreAttributesAndSetProperty(messages,
268
- key,
269
- format,
270
- DONT_DELETE | DONT_ENUM | READ_ONLY);
271
- }
272
- %PreventExtensions(messages);
273
- %IgnoreAttributesAndSetProperty(builtins, "kMessages",
274
- messages,
275
- DONT_DELETE | DONT_ENUM | READ_ONLY);
276
- }
277
- var message_type = %MessageGetType(message);
278
- var format = kMessages[message_type];
279
- if (!format) return "<unknown message " + message_type + ">";
280
- return FormatString(format, message);
273
+ function FormatMessage(type, args) {
274
+ var format = kMessages[type];
275
+ if (!format) return "<unknown message " + type + ">";
276
+ return FormatString(format, args);
281
277
  }
282
278
 
283
279
 
@@ -525,8 +521,8 @@ function ScriptLineCount() {
525
521
 
526
522
 
527
523
  /**
528
- * Returns the name of script if available, contents of sourceURL comment
529
- * otherwise. See
524
+ * If sourceURL comment is available and script starts at zero returns sourceURL
525
+ * comment contents. Otherwise, script name is returned. See
530
526
  * http://fbug.googlecode.com/svn/branches/firebug1.1/docs/ReleaseNotes_1.1.txt
531
527
  * for details on using //@ sourceURL comment to identify scritps that don't
532
528
  * have name.
@@ -535,14 +531,15 @@ function ScriptLineCount() {
535
531
  * otherwise.
536
532
  */
537
533
  function ScriptNameOrSourceURL() {
538
- if (this.name) {
534
+ if (this.line_offset > 0 || this.column_offset > 0) {
539
535
  return this.name;
540
536
  }
541
537
 
542
538
  // The result is cached as on long scripts it takes noticable time to search
543
539
  // for the sourceURL.
544
- if (this.hasCachedNameOrSourceURL)
545
- return this.cachedNameOrSourceURL;
540
+ if (this.hasCachedNameOrSourceURL) {
541
+ return this.cachedNameOrSourceURL;
542
+ }
546
543
  this.hasCachedNameOrSourceURL = true;
547
544
 
548
545
  // TODO(608): the spaces in a regexp below had to be escaped as \040
@@ -754,29 +751,6 @@ function GetStackTraceLine(recv, fun, pos, isGlobal) {
754
751
  // ----------------------------------------------------------------------------
755
752
  // Error implementation
756
753
 
757
- // Defines accessors for a property that is calculated the first time
758
- // the property is read.
759
- function DefineOneShotAccessor(obj, name, fun) {
760
- // Note that the accessors consistently operate on 'obj', not 'this'.
761
- // Since the object may occur in someone else's prototype chain we
762
- // can't rely on 'this' being the same as 'obj'.
763
- var hasBeenSet = false;
764
- var value;
765
- var getter = function() {
766
- if (hasBeenSet) {
767
- return value;
768
- }
769
- hasBeenSet = true;
770
- value = fun(obj);
771
- return value;
772
- };
773
- var setter = function(v) {
774
- hasBeenSet = true;
775
- value = v;
776
- };
777
- %DefineOrRedefineAccessorProperty(obj, name, getter, setter, DONT_ENUM);
778
- }
779
-
780
754
  function CallSite(receiver, fun, pos) {
781
755
  this.receiver = receiver;
782
756
  this.fun = fun;
@@ -846,17 +820,16 @@ function CallSiteGetMethodName() {
846
820
  %_CallFunction(this.receiver,
847
821
  ownName,
848
822
  ObjectLookupSetter) === this.fun ||
849
- this.receiver[ownName] === this.fun)) {
823
+ %GetDataProperty(this.receiver, ownName) === this.fun)) {
850
824
  // To handle DontEnum properties we guess that the method has
851
825
  // the same name as the function.
852
826
  return ownName;
853
827
  }
854
828
  var name = null;
855
829
  for (var prop in this.receiver) {
856
- if (this.receiver.__lookupGetter__(prop) === this.fun ||
857
- this.receiver.__lookupSetter__(prop) === this.fun ||
858
- (!this.receiver.__lookupGetter__(prop) &&
859
- this.receiver[prop] === this.fun)) {
830
+ if (%_CallFunction(this.receiver, prop, ObjectLookupGetter) === this.fun ||
831
+ %_CallFunction(this.receiver, prop, ObjectLookupSetter) === this.fun ||
832
+ %GetDataProperty(this.receiver, prop) === this.fun) {
860
833
  // If we find more than one match bail out to avoid confusion.
861
834
  if (name) {
862
835
  return null;
@@ -909,7 +882,8 @@ function CallSiteGetPosition() {
909
882
  }
910
883
 
911
884
  function CallSiteIsConstructor() {
912
- var constructor = this.receiver ? this.receiver.constructor : null;
885
+ var receiver = this.receiver;
886
+ var constructor = receiver ? %GetDataProperty(receiver, "constructor") : null;
913
887
  if (!constructor) {
914
888
  return false;
915
889
  }
@@ -921,17 +895,25 @@ function CallSiteToString() {
921
895
  var fileLocation = "";
922
896
  if (this.isNative()) {
923
897
  fileLocation = "native";
924
- } else if (this.isEval()) {
925
- fileName = this.getScriptNameOrSourceURL();
926
- if (!fileName) {
927
- fileLocation = this.getEvalOrigin();
928
- }
929
898
  } else {
930
- fileName = this.getFileName();
931
- }
899
+ if (this.isEval()) {
900
+ fileName = this.getScriptNameOrSourceURL();
901
+ if (!fileName) {
902
+ fileLocation = this.getEvalOrigin();
903
+ fileLocation += ", "; // Expecting source position to follow.
904
+ }
905
+ } else {
906
+ fileName = this.getFileName();
907
+ }
932
908
 
933
- if (fileName) {
934
- fileLocation += fileName;
909
+ if (fileName) {
910
+ fileLocation += fileName;
911
+ } else {
912
+ // Source code does not originate from a file and is not native, but we
913
+ // can still get the source position inside the source string, e.g. in
914
+ // an eval string.
915
+ fileLocation += "<anonymous>";
916
+ }
935
917
  var lineNumber = this.getLineNumber();
936
918
  if (lineNumber != null) {
937
919
  fileLocation += ":" + lineNumber;
@@ -942,9 +924,6 @@ function CallSiteToString() {
942
924
  }
943
925
  }
944
926
 
945
- if (!fileLocation) {
946
- fileLocation = "unknown source";
947
- }
948
927
  var line = "";
949
928
  var functionName = this.getFunctionName();
950
929
  var addSuffix = true;
@@ -954,12 +933,14 @@ function CallSiteToString() {
954
933
  var typeName = GetTypeName(this, true);
955
934
  var methodName = this.getMethodName();
956
935
  if (functionName) {
957
- if (typeName && functionName.indexOf(typeName) != 0) {
936
+ if (typeName &&
937
+ %_CallFunction(functionName, typeName, StringIndexOf) != 0) {
958
938
  line += typeName + ".";
959
939
  }
960
940
  line += functionName;
961
- if (methodName && functionName.lastIndexOf("." + methodName) !=
962
- functionName.length - methodName.length - 1) {
941
+ if (methodName &&
942
+ (%_CallFunction(functionName, "." + methodName, StringIndexOf) !=
943
+ functionName.length - methodName.length - 1)) {
963
944
  line += " [as " + methodName + "]";
964
945
  }
965
946
  } else {
@@ -1037,17 +1018,37 @@ function FormatEvalOrigin(script) {
1037
1018
  return eval_origin;
1038
1019
  }
1039
1020
 
1040
- function FormatStackTrace(error, frames) {
1041
- var lines = [];
1021
+
1022
+ function FormatErrorString(error) {
1042
1023
  try {
1043
- lines.push(error.toString());
1024
+ return %_CallFunction(error, ErrorToString);
1044
1025
  } catch (e) {
1045
1026
  try {
1046
- lines.push("<error: " + e + ">");
1027
+ return "<error: " + e + ">";
1047
1028
  } catch (ee) {
1048
- lines.push("<error>");
1029
+ return "<error>";
1049
1030
  }
1050
1031
  }
1032
+ }
1033
+
1034
+
1035
+ function GetStackFrames(raw_stack) {
1036
+ var frames = new InternalArray();
1037
+ for (var i = 0; i < raw_stack.length; i += 4) {
1038
+ var recv = raw_stack[i];
1039
+ var fun = raw_stack[i + 1];
1040
+ var code = raw_stack[i + 2];
1041
+ var pc = raw_stack[i + 3];
1042
+ var pos = %FunctionGetPositionForOffset(code, pc);
1043
+ frames.push(new CallSite(recv, fun, pos));
1044
+ }
1045
+ return frames;
1046
+ }
1047
+
1048
+
1049
+ function FormatStackTrace(error_string, frames) {
1050
+ var lines = new InternalArray();
1051
+ lines.push(error_string);
1051
1052
  for (var i = 0; i < frames.length; i++) {
1052
1053
  var frame = frames[i];
1053
1054
  var line;
@@ -1063,25 +1064,9 @@ function FormatStackTrace(error, frames) {
1063
1064
  }
1064
1065
  lines.push(" at " + line);
1065
1066
  }
1066
- return lines.join("\n");
1067
+ return %_CallFunction(lines, "\n", ArrayJoin);
1067
1068
  }
1068
1069
 
1069
- function FormatRawStackTrace(error, raw_stack) {
1070
- var frames = [ ];
1071
- for (var i = 0; i < raw_stack.length; i += 4) {
1072
- var recv = raw_stack[i];
1073
- var fun = raw_stack[i + 1];
1074
- var code = raw_stack[i + 2];
1075
- var pc = raw_stack[i + 3];
1076
- var pos = %FunctionGetPositionForOffset(code, pc);
1077
- frames.push(new CallSite(recv, fun, pos));
1078
- }
1079
- if (IS_FUNCTION($Error.prepareStackTrace)) {
1080
- return $Error.prepareStackTrace(error, frames);
1081
- } else {
1082
- return FormatStackTrace(error, frames);
1083
- }
1084
- }
1085
1070
 
1086
1071
  function GetTypeName(obj, requireConstructor) {
1087
1072
  var constructor = obj.receiver.constructor;
@@ -1097,18 +1082,58 @@ function GetTypeName(obj, requireConstructor) {
1097
1082
  return constructorName;
1098
1083
  }
1099
1084
 
1085
+
1086
+ // Flag to prevent recursive call of Error.prepareStackTrace.
1087
+ var formatting_custom_stack_trace = false;
1088
+
1089
+
1100
1090
  function captureStackTrace(obj, cons_opt) {
1101
1091
  var stackTraceLimit = $Error.stackTraceLimit;
1102
1092
  if (!stackTraceLimit || !IS_NUMBER(stackTraceLimit)) return;
1103
1093
  if (stackTraceLimit < 0 || stackTraceLimit > 10000) {
1104
1094
  stackTraceLimit = 10000;
1105
1095
  }
1106
- var raw_stack = %CollectStackTrace(obj,
1107
- cons_opt ? cons_opt : captureStackTrace,
1108
- stackTraceLimit);
1109
- DefineOneShotAccessor(obj, 'stack', function (obj) {
1110
- return FormatRawStackTrace(obj, raw_stack);
1111
- });
1096
+ var stack = %CollectStackTrace(obj,
1097
+ cons_opt ? cons_opt : captureStackTrace,
1098
+ stackTraceLimit);
1099
+
1100
+ // Don't be lazy if the error stack formatting is custom (observable).
1101
+ if (IS_FUNCTION($Error.prepareStackTrace) && !formatting_custom_stack_trace) {
1102
+ var array = [];
1103
+ %MoveArrayContents(GetStackFrames(stack), array);
1104
+ formatting_custom_stack_trace = true;
1105
+ try {
1106
+ obj.stack = $Error.prepareStackTrace(obj, array);
1107
+ } catch (e) {
1108
+ throw e; // The custom formatting function threw. Rethrow.
1109
+ } finally {
1110
+ formatting_custom_stack_trace = false;
1111
+ }
1112
+ return;
1113
+ }
1114
+
1115
+ var error_string = FormatErrorString(obj);
1116
+ // Note that 'obj' and 'this' maybe different when called on objects that
1117
+ // have the error object on its prototype chain. The getter replaces itself
1118
+ // with a data property as soon as the stack trace has been formatted.
1119
+ // The getter must not change the object layout as it may be called after GC.
1120
+ var getter = function() {
1121
+ if (IS_STRING(stack)) return stack;
1122
+ // Stack is still a raw array awaiting to be formatted.
1123
+ stack = FormatStackTrace(error_string, GetStackFrames(stack));
1124
+ // Release context value.
1125
+ error_string = void 0;
1126
+ return stack;
1127
+ };
1128
+ %MarkOneShotGetter(getter);
1129
+
1130
+ // The 'stack' property of the receiver is set as data property. If
1131
+ // the receiver is the same as holder, this accessor pair is replaced.
1132
+ var setter = function(v) {
1133
+ %DefineOrRedefineDataProperty(this, 'stack', v, NONE);
1134
+ };
1135
+
1136
+ %DefineOrRedefineAccessorProperty(obj, 'stack', getter, setter, DONT_ENUM);
1112
1137
  }
1113
1138
 
1114
1139
 
@@ -1147,15 +1172,7 @@ function SetUpError() {
1147
1172
  // object. This avoids going through getters and setters defined
1148
1173
  // on prototype objects.
1149
1174
  %IgnoreAttributesAndSetProperty(this, 'stack', void 0, DONT_ENUM);
1150
- %IgnoreAttributesAndSetProperty(this, 'arguments', void 0, DONT_ENUM);
1151
- %IgnoreAttributesAndSetProperty(this, 'type', void 0, DONT_ENUM);
1152
- if (m === kAddMessageAccessorsMarker) {
1153
- // DefineOneShotAccessor always inserts a message property and
1154
- // ignores setters.
1155
- DefineOneShotAccessor(this, 'message', function (obj) {
1156
- return FormatMessage(%NewMessageObject(obj.type, obj.arguments));
1157
- });
1158
- } else if (!IS_UNDEFINED(m)) {
1175
+ if (!IS_UNDEFINED(m)) {
1159
1176
  %IgnoreAttributesAndSetProperty(
1160
1177
  this, 'message', ToString(m), DONT_ENUM);
1161
1178
  }
@@ -1214,15 +1231,9 @@ function GetPropertyWithoutInvokingMonkeyGetters(error, name) {
1214
1231
  function ErrorToStringDetectCycle(error) {
1215
1232
  if (!%PushIfAbsent(visited_errors, error)) throw cyclic_error_marker;
1216
1233
  try {
1217
- var type = GetPropertyWithoutInvokingMonkeyGetters(error, "type");
1218
1234
  var name = GetPropertyWithoutInvokingMonkeyGetters(error, "name");
1219
1235
  name = IS_UNDEFINED(name) ? "Error" : TO_STRING_INLINE(name);
1220
1236
  var message = GetPropertyWithoutInvokingMonkeyGetters(error, "message");
1221
- var hasMessage = %_CallFunction(error, "message", ObjectHasOwnProperty);
1222
- if (type && !hasMessage) {
1223
- var args = GetPropertyWithoutInvokingMonkeyGetters(error, "arguments");
1224
- message = FormatMessage(%NewMessageObject(type, args));
1225
- }
1226
1237
  message = IS_UNDEFINED(message) ? "" : TO_STRING_INLINE(message);
1227
1238
  if (name === "") return message;
1228
1239
  if (message === "") return name;
@@ -1254,4 +1265,46 @@ InstallFunctions($Error.prototype, DONT_ENUM, ['toString', ErrorToString]);
1254
1265
 
1255
1266
  // Boilerplate for exceptions for stack overflows. Used from
1256
1267
  // Isolate::StackOverflow().
1257
- var kStackOverflowBoilerplate = MakeRangeError('stack_overflow', []);
1268
+ function SetUpStackOverflowBoilerplate() {
1269
+ var boilerplate = MakeRangeError('stack_overflow', []);
1270
+
1271
+ // The raw stack trace is stored as hidden property of the copy of this
1272
+ // boilerplate error object. Note that the receiver 'this' may not be that
1273
+ // error object copy, but can be found on the prototype chain of 'this'.
1274
+ // When the stack trace is formatted, this accessor property is replaced by
1275
+ // a data property.
1276
+ var error_string = boilerplate.name + ": " + boilerplate.message;
1277
+
1278
+ // The getter must not change the object layout as it may be called after GC.
1279
+ function getter() {
1280
+ var holder = this;
1281
+ while (!IS_ERROR(holder)) {
1282
+ holder = %GetPrototype(holder);
1283
+ if (holder == null) return MakeSyntaxError('illegal_access', []);
1284
+ }
1285
+ var stack = %GetOverflowedStackTrace(holder);
1286
+ if (IS_STRING(stack)) return stack;
1287
+ if (IS_ARRAY(stack)) {
1288
+ var result = FormatStackTrace(error_string, GetStackFrames(stack));
1289
+ %SetOverflowedStackTrace(holder, result);
1290
+ return result;
1291
+ }
1292
+ return void 0;
1293
+ }
1294
+ %MarkOneShotGetter(getter);
1295
+
1296
+ // The 'stack' property of the receiver is set as data property. If
1297
+ // the receiver is the same as holder, this accessor pair is replaced.
1298
+ function setter(v) {
1299
+ %DefineOrRedefineDataProperty(this, 'stack', v, NONE);
1300
+ // Release the stack trace that is stored as hidden property, if exists.
1301
+ %SetOverflowedStackTrace(this, void 0);
1302
+ }
1303
+
1304
+ %DefineOrRedefineAccessorProperty(
1305
+ boilerplate, 'stack', getter, setter, DONT_ENUM);
1306
+
1307
+ return boilerplate;
1308
+ }
1309
+
1310
+ var kStackOverflowBoilerplate = SetUpStackOverflowBoilerplate();