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
@@ -47,20 +47,27 @@ class SafepointGenerator;
47
47
  class LCodeGen BASE_EMBEDDED {
48
48
  public:
49
49
  LCodeGen(LChunk* chunk, MacroAssembler* assembler, CompilationInfo* info)
50
- : chunk_(chunk),
50
+ : zone_(info->zone()),
51
+ chunk_(static_cast<LPlatformChunk*>(chunk)),
51
52
  masm_(assembler),
52
53
  info_(info),
53
54
  current_block_(-1),
54
55
  current_instruction_(-1),
55
56
  instructions_(chunk->instructions()),
56
- deoptimizations_(4),
57
- deoptimization_literals_(8),
57
+ deoptimizations_(4, info->zone()),
58
+ jump_table_(4, info->zone()),
59
+ deoptimization_literals_(8, info->zone()),
58
60
  inlined_function_count_(0),
59
61
  scope_(info->scope()),
60
62
  status_(UNUSED),
61
- deferred_(8),
63
+ translations_(info->zone()),
64
+ deferred_(8, info->zone()),
65
+ dynamic_frame_alignment_(false),
66
+ support_aligned_spilled_doubles_(false),
62
67
  osr_pc_offset_(-1),
63
68
  last_lazy_deopt_pc_(0),
69
+ frame_is_built_(false),
70
+ safepoints_(info->zone()),
64
71
  resolver_(this),
65
72
  expected_safepoint_kind_(Safepoint::kSimple) {
66
73
  PopulateDeoptimizationLiteralsWithInlinedFunctions();
@@ -72,11 +79,22 @@ class LCodeGen BASE_EMBEDDED {
72
79
  Isolate* isolate() const { return info_->isolate(); }
73
80
  Factory* factory() const { return isolate()->factory(); }
74
81
  Heap* heap() const { return isolate()->heap(); }
82
+ Zone* zone() const { return zone_; }
83
+
84
+ bool NeedsEagerFrame() const {
85
+ return GetStackSlotCount() > 0 ||
86
+ info()->is_non_deferred_calling() ||
87
+ !info()->IsStub();
88
+ }
89
+ bool NeedsDeferredFrame() const {
90
+ return !NeedsEagerFrame() && info()->is_deferred_calling();
91
+ }
75
92
 
76
93
  // Support for converting LOperands to assembler types.
77
94
  Operand ToOperand(LOperand* op) const;
78
95
  Register ToRegister(LOperand* op) const;
79
96
  XMMRegister ToDoubleRegister(LOperand* op) const;
97
+ bool IsX87TopOfStack(LOperand* op) const;
80
98
 
81
99
  bool IsInteger32(LConstantOperand* op) const;
82
100
  Immediate ToInteger32Immediate(LOperand* op) const {
@@ -85,6 +103,9 @@ class LCodeGen BASE_EMBEDDED {
85
103
 
86
104
  Handle<Object> ToHandle(LConstantOperand* op) const;
87
105
 
106
+ // A utility for instructions that return floating point values on X87.
107
+ void HandleX87FPReturnValue(LInstruction* instr);
108
+
88
109
  // The operand denoting the second word (the one with a higher address) of
89
110
  // a double stack slot.
90
111
  Operand HighOperand(LOperand* op);
@@ -100,7 +121,12 @@ class LCodeGen BASE_EMBEDDED {
100
121
 
101
122
  // Deferred code support.
102
123
  void DoDeferredNumberTagD(LNumberTagD* instr);
103
- void DoDeferredNumberTagI(LNumberTagI* instr);
124
+
125
+ enum IntegerSignedness { SIGNED_INT32, UNSIGNED_INT32 };
126
+ void DoDeferredNumberTagI(LInstruction* instr,
127
+ LOperand* value,
128
+ IntegerSignedness signedness);
129
+
104
130
  void DoDeferredTaggedToI(LTaggedToI* instr);
105
131
  void DoDeferredMathAbsTaggedHeapNumber(LUnaryMathOperation* instr);
106
132
  void DoDeferredStackCheck(LStackCheck* instr);
@@ -108,18 +134,22 @@ class LCodeGen BASE_EMBEDDED {
108
134
  void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr);
109
135
  void DoDeferredStringCharFromCode(LStringCharFromCode* instr);
110
136
  void DoDeferredAllocateObject(LAllocateObject* instr);
137
+ void DoDeferredAllocate(LAllocate* instr);
111
138
  void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr,
112
139
  Label* map_check);
113
140
 
114
141
  void DoCheckMapCommon(Register reg, Handle<Map> map,
115
- CompareMapMode mode, LEnvironment* env);
142
+ CompareMapMode mode, LInstruction* instr);
116
143
 
117
144
  // Parallel move support.
118
145
  void DoParallelMove(LParallelMove* move);
119
146
  void DoGap(LGap* instr);
120
147
 
121
148
  // Emit frame translation commands for an environment.
122
- void WriteTranslation(LEnvironment* environment, Translation* translation);
149
+ void WriteTranslation(LEnvironment* environment,
150
+ Translation* translation,
151
+ int* arguments_index,
152
+ int* arguments_count);
123
153
 
124
154
  void EnsureRelocSpaceForDeoptimization();
125
155
 
@@ -145,7 +175,7 @@ class LCodeGen BASE_EMBEDDED {
145
175
  return info()->is_classic_mode() ? kNonStrictMode : kStrictMode;
146
176
  }
147
177
 
148
- LChunk* chunk() const { return chunk_; }
178
+ LPlatformChunk* chunk() const { return chunk_; }
149
179
  Scope* scope() const { return scope_; }
150
180
  HGraph* graph() const { return chunk_->graph(); }
151
181
 
@@ -159,21 +189,19 @@ class LCodeGen BASE_EMBEDDED {
159
189
  Register temporary2);
160
190
 
161
191
  int GetStackSlotCount() const { return chunk()->spill_slot_count(); }
162
- int GetParameterCount() const { return scope()->num_parameters(); }
192
+ int GetParameterCount() const { return info()->num_parameters(); }
163
193
 
164
- void Abort(const char* format, ...);
194
+ void Abort(const char* reason);
165
195
  void Comment(const char* format, ...);
166
196
 
167
- void AddDeferredCode(LDeferredCode* code) { deferred_.Add(code); }
197
+ void AddDeferredCode(LDeferredCode* code) { deferred_.Add(code, zone()); }
168
198
 
169
199
  // Code generation passes. Returns true if code generation should
170
200
  // continue.
171
201
  bool GeneratePrologue();
172
202
  bool GenerateBody();
173
203
  bool GenerateDeferredCode();
174
- // Pad the reloc info to ensure that we have enough space to patch during
175
- // deoptimization.
176
- bool GenerateRelocPadding();
204
+ bool GenerateJumpTable();
177
205
  bool GenerateSafepointTable();
178
206
 
179
207
  enum SafepointMode {
@@ -206,6 +234,8 @@ class LCodeGen BASE_EMBEDDED {
206
234
  LInstruction* instr,
207
235
  LOperand* context);
208
236
 
237
+ void LoadContextFromDeferred(LOperand* context);
238
+
209
239
  enum EDIState {
210
240
  EDI_UNINITIALIZED,
211
241
  EDI_CONTAINS_TARGET
@@ -228,7 +258,10 @@ class LCodeGen BASE_EMBEDDED {
228
258
 
229
259
  void AddToTranslation(Translation* translation,
230
260
  LOperand* op,
231
- bool is_tagged);
261
+ bool is_tagged,
262
+ bool is_uint32,
263
+ int arguments_index,
264
+ int arguments_count);
232
265
  void PopulateDeoptimizationData(Handle<Code> code);
233
266
  int DefineDeoptimizationLiteral(Handle<Object> literal);
234
267
 
@@ -241,6 +274,7 @@ class LCodeGen BASE_EMBEDDED {
241
274
  double ToDouble(LConstantOperand* op) const;
242
275
  Operand BuildFastArrayOperand(LOperand* elements_pointer,
243
276
  LOperand* key,
277
+ Representation key_representation,
244
278
  ElementsKind elements_kind,
245
279
  uint32_t offset,
246
280
  uint32_t additional_index = 0);
@@ -271,12 +305,18 @@ class LCodeGen BASE_EMBEDDED {
271
305
  static Condition TokenToCondition(Token::Value op, bool is_unsigned);
272
306
  void EmitGoto(int block);
273
307
  void EmitBranch(int left_block, int right_block, Condition cc);
274
- void EmitNumberUntagD(Register input,
275
- Register temp,
276
- XMMRegister result,
277
- bool deoptimize_on_undefined,
278
- bool deoptimize_on_minus_zero,
279
- LEnvironment* env);
308
+ void EmitNumberUntagD(
309
+ Register input,
310
+ Register temp,
311
+ XMMRegister result,
312
+ bool deoptimize_on_undefined,
313
+ bool deoptimize_on_minus_zero,
314
+ LEnvironment* env,
315
+ NumberUntagDMode mode = NUMBER_CANDIDATE_IS_ANY_TAGGED);
316
+
317
+ void DeoptIfTaggedButNotSmi(LEnvironment* environment,
318
+ HValue* value,
319
+ LOperand* operand);
280
320
 
281
321
  // Emits optimized code for typeof x == "y". Modifies input register.
282
322
  // Returns the condition on which a final split to
@@ -308,37 +348,62 @@ class LCodeGen BASE_EMBEDDED {
308
348
  void EmitLoadFieldOrConstantFunction(Register result,
309
349
  Register object,
310
350
  Handle<Map> type,
311
- Handle<String> name);
351
+ Handle<String> name,
352
+ LEnvironment* env);
312
353
 
313
354
  // Emits optimized code to deep-copy the contents of statically known
314
355
  // object graphs (e.g. object literal boilerplate).
315
356
  void EmitDeepCopy(Handle<JSObject> object,
316
357
  Register result,
317
358
  Register source,
318
- int* offset);
359
+ int* offset,
360
+ AllocationSiteMode mode);
319
361
 
320
362
  void EnsureSpaceForLazyDeopt();
363
+ void DoLoadKeyedExternalArray(LLoadKeyed* instr);
364
+ void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr);
365
+ void DoLoadKeyedFixedArray(LLoadKeyed* instr);
366
+ void DoStoreKeyedExternalArray(LStoreKeyed* instr);
367
+ void DoStoreKeyedFixedDoubleArray(LStoreKeyed* instr);
368
+ void DoStoreKeyedFixedArray(LStoreKeyed* instr);
321
369
 
322
370
  // Emits code for pushing either a tagged constant, a (non-double)
323
371
  // register, or a stack slot operand.
324
372
  void EmitPushTaggedOperand(LOperand* operand);
325
373
 
326
- LChunk* const chunk_;
374
+ Zone* zone_;
375
+ LPlatformChunk* const chunk_;
327
376
  MacroAssembler* const masm_;
328
377
  CompilationInfo* const info_;
329
378
 
379
+ struct JumpTableEntry {
380
+ inline JumpTableEntry(Address entry, bool frame, bool is_lazy)
381
+ : label(),
382
+ address(entry),
383
+ needs_frame(frame),
384
+ is_lazy_deopt(is_lazy) { }
385
+ Label label;
386
+ Address address;
387
+ bool needs_frame;
388
+ bool is_lazy_deopt;
389
+ };
390
+
330
391
  int current_block_;
331
392
  int current_instruction_;
332
393
  const ZoneList<LInstruction*>* instructions_;
333
394
  ZoneList<LEnvironment*> deoptimizations_;
395
+ ZoneList<JumpTableEntry> jump_table_;
334
396
  ZoneList<Handle<Object> > deoptimization_literals_;
335
397
  int inlined_function_count_;
336
398
  Scope* const scope_;
337
399
  Status status_;
338
400
  TranslationBuffer translations_;
339
401
  ZoneList<LDeferredCode*> deferred_;
402
+ bool dynamic_frame_alignment_;
403
+ bool support_aligned_spilled_doubles_;
340
404
  int osr_pc_offset_;
341
405
  int last_lazy_deopt_pc_;
406
+ bool frame_is_built_;
342
407
 
343
408
  // Builder that keeps track of safepoints in the code. The table
344
409
  // itself is emitted at the end of the generated code.
@@ -356,6 +421,7 @@ class LCodeGen BASE_EMBEDDED {
356
421
  ASSERT(codegen_->expected_safepoint_kind_ == Safepoint::kSimple);
357
422
  codegen_->masm_->PushSafepointRegisters();
358
423
  codegen_->expected_safepoint_kind_ = Safepoint::kWithRegisters;
424
+ ASSERT(codegen_->info()->is_calling());
359
425
  }
360
426
 
361
427
  ~PushSafepointRegistersScope() {
@@ -37,7 +37,7 @@ namespace internal {
37
37
 
38
38
  LGapResolver::LGapResolver(LCodeGen* owner)
39
39
  : cgen_(owner),
40
- moves_(32),
40
+ moves_(32, owner->zone()),
41
41
  source_uses_(),
42
42
  destination_uses_(),
43
43
  spilled_register_(-1) {}
@@ -157,7 +157,7 @@ void LGapResolver::AddMove(LMoveOperands move) {
157
157
  LOperand* destination = move.destination();
158
158
  if (destination->IsRegister()) ++destination_uses_[destination->index()];
159
159
 
160
- moves_.Add(move);
160
+ moves_.Add(move, cgen_->zone());
161
161
  }
162
162
 
163
163
 
@@ -191,7 +191,7 @@ int LGapResolver::CountSourceUses(LOperand* operand) {
191
191
 
192
192
  Register LGapResolver::GetFreeRegisterNot(Register reg) {
193
193
  int skip_index = reg.is(no_reg) ? -1 : Register::ToAllocationIndex(reg);
194
- for (int i = 0; i < Register::kNumAllocatableRegisters; ++i) {
194
+ for (int i = 0; i < Register::NumAllocatableRegisters(); ++i) {
195
195
  if (source_uses_[i] == 0 && destination_uses_[i] > 0 && i != skip_index) {
196
196
  return Register::FromAllocationIndex(i);
197
197
  }
@@ -204,7 +204,7 @@ bool LGapResolver::HasBeenReset() {
204
204
  if (!moves_.is_empty()) return false;
205
205
  if (spilled_register_ >= 0) return false;
206
206
 
207
- for (int i = 0; i < Register::kNumAllocatableRegisters; ++i) {
207
+ for (int i = 0; i < Register::NumAllocatableRegisters(); ++i) {
208
208
  if (source_uses_[i] != 0) return false;
209
209
  if (destination_uses_[i] != 0) return false;
210
210
  }
@@ -256,7 +256,7 @@ Register LGapResolver::EnsureTempRegister() {
256
256
 
257
257
  // 3. Prefer to spill a register that is not used in any remaining move
258
258
  // because it will not need to be restored until the end.
259
- for (int i = 0; i < Register::kNumAllocatableRegisters; ++i) {
259
+ for (int i = 0; i < Register::NumAllocatableRegisters(); ++i) {
260
260
  if (source_uses_[i] == 0 && destination_uses_[i] == 0) {
261
261
  Register scratch = Register::FromAllocationIndex(i);
262
262
  __ push(scratch);
@@ -324,6 +324,7 @@ void LGapResolver::EmitMove(int index) {
324
324
  }
325
325
 
326
326
  } else if (source->IsDoubleRegister()) {
327
+ CpuFeatures::Scope scope(SSE2);
327
328
  XMMRegister src = cgen_->ToDoubleRegister(source);
328
329
  if (destination->IsDoubleRegister()) {
329
330
  XMMRegister dst = cgen_->ToDoubleRegister(destination);
@@ -334,6 +335,7 @@ void LGapResolver::EmitMove(int index) {
334
335
  __ movdbl(dst, src);
335
336
  }
336
337
  } else if (source->IsDoubleStackSlot()) {
338
+ CpuFeatures::Scope scope(SSE2);
337
339
  ASSERT(destination->IsDoubleRegister() ||
338
340
  destination->IsDoubleStackSlot());
339
341
  Operand src = cgen_->ToOperand(source);
@@ -346,7 +348,6 @@ void LGapResolver::EmitMove(int index) {
346
348
  __ movdbl(xmm0, src);
347
349
  __ movdbl(dst, xmm0);
348
350
  }
349
-
350
351
  } else {
351
352
  UNREACHABLE();
352
353
  }
@@ -410,6 +411,7 @@ void LGapResolver::EmitSwap(int index) {
410
411
  __ mov(src, tmp0);
411
412
  }
412
413
  } else if (source->IsDoubleRegister() && destination->IsDoubleRegister()) {
414
+ CpuFeatures::Scope scope(SSE2);
413
415
  // XMM register-register swap. We rely on having xmm0
414
416
  // available as a fixed scratch register.
415
417
  XMMRegister src = cgen_->ToDoubleRegister(source);
@@ -419,6 +421,7 @@ void LGapResolver::EmitSwap(int index) {
419
421
  __ movaps(dst, xmm0);
420
422
 
421
423
  } else if (source->IsDoubleRegister() || destination->IsDoubleRegister()) {
424
+ CpuFeatures::Scope scope(SSE2);
422
425
  // XMM register-memory swap. We rely on having xmm0
423
426
  // available as a fixed scratch register.
424
427
  ASSERT(source->IsDoubleStackSlot() || destination->IsDoubleStackSlot());
@@ -432,6 +435,7 @@ void LGapResolver::EmitSwap(int index) {
432
435
  __ movdbl(reg, Operand(xmm0));
433
436
 
434
437
  } else if (source->IsDoubleStackSlot() && destination->IsDoubleStackSlot()) {
438
+ CpuFeatures::Scope scope(SSE2);
435
439
  // Double-width memory-to-memory. Spill on demand to use a general
436
440
  // purpose temporary register and also rely on having xmm0 available as
437
441
  // a fixed scratch register.
@@ -97,8 +97,8 @@ class LGapResolver BASE_EMBEDDED {
97
97
  ZoneList<LMoveOperands> moves_;
98
98
 
99
99
  // Source and destination use counts for the general purpose registers.
100
- int source_uses_[Register::kNumAllocatableRegisters];
101
- int destination_uses_[Register::kNumAllocatableRegisters];
100
+ int source_uses_[Register::kMaxNumAllocatableRegisters];
101
+ int destination_uses_[Register::kMaxNumAllocatableRegisters];
102
102
 
103
103
  // If we had to spill on demand, the currently spilled register's
104
104
  // allocation index.
@@ -44,10 +44,10 @@ LITHIUM_CONCRETE_INSTRUCTION_LIST(DEFINE_COMPILE)
44
44
  #undef DEFINE_COMPILE
45
45
 
46
46
  LOsrEntry::LOsrEntry() {
47
- for (int i = 0; i < Register::kNumAllocatableRegisters; ++i) {
47
+ for (int i = 0; i < Register::NumAllocatableRegisters(); ++i) {
48
48
  register_spills_[i] = NULL;
49
49
  }
50
- for (int i = 0; i < DoubleRegister::kNumAllocatableRegisters; ++i) {
50
+ for (int i = 0; i < DoubleRegister::NumAllocatableRegisters(); ++i) {
51
51
  double_register_spills_[i] = NULL;
52
52
  }
53
53
  }
@@ -114,7 +114,11 @@ void LInstruction::PrintDataTo(StringStream* stream) {
114
114
  stream->Add("= ");
115
115
  for (int i = 0; i < InputCount(); i++) {
116
116
  if (i > 0) stream->Add(" ");
117
- InputAt(i)->PrintTo(stream);
117
+ if (InputAt(i) == NULL) {
118
+ stream->Add("NULL");
119
+ } else {
120
+ InputAt(i)->PrintTo(stream);
121
+ }
118
122
  }
119
123
  }
120
124
 
@@ -179,6 +183,7 @@ const char* LArithmeticT::Mnemonic() const {
179
183
  case Token::BIT_AND: return "bit-and-t";
180
184
  case Token::BIT_OR: return "bit-or-t";
181
185
  case Token::BIT_XOR: return "bit-xor-t";
186
+ case Token::ROR: return "ror-t";
182
187
  case Token::SHL: return "sal-t";
183
188
  case Token::SAR: return "sar-t";
184
189
  case Token::SHR: return "shr-t";
@@ -196,22 +201,22 @@ void LGoto::PrintDataTo(StringStream* stream) {
196
201
 
197
202
  void LBranch::PrintDataTo(StringStream* stream) {
198
203
  stream->Add("B%d | B%d on ", true_block_id(), false_block_id());
199
- InputAt(0)->PrintTo(stream);
204
+ value()->PrintTo(stream);
200
205
  }
201
206
 
202
207
 
203
208
  void LCmpIDAndBranch::PrintDataTo(StringStream* stream) {
204
209
  stream->Add("if ");
205
- InputAt(0)->PrintTo(stream);
210
+ left()->PrintTo(stream);
206
211
  stream->Add(" %s ", Token::String(op()));
207
- InputAt(1)->PrintTo(stream);
212
+ right()->PrintTo(stream);
208
213
  stream->Add(" then B%d else B%d", true_block_id(), false_block_id());
209
214
  }
210
215
 
211
216
 
212
217
  void LIsNilAndBranch::PrintDataTo(StringStream* stream) {
213
218
  stream->Add("if ");
214
- InputAt(0)->PrintTo(stream);
219
+ value()->PrintTo(stream);
215
220
  stream->Add(kind() == kStrictEquality ? " === " : " == ");
216
221
  stream->Add(nil() == kNullValue ? "null" : "undefined");
217
222
  stream->Add(" then B%d else B%d", true_block_id(), false_block_id());
@@ -220,57 +225,57 @@ void LIsNilAndBranch::PrintDataTo(StringStream* stream) {
220
225
 
221
226
  void LIsObjectAndBranch::PrintDataTo(StringStream* stream) {
222
227
  stream->Add("if is_object(");
223
- InputAt(0)->PrintTo(stream);
228
+ value()->PrintTo(stream);
224
229
  stream->Add(") then B%d else B%d", true_block_id(), false_block_id());
225
230
  }
226
231
 
227
232
 
228
233
  void LIsStringAndBranch::PrintDataTo(StringStream* stream) {
229
234
  stream->Add("if is_string(");
230
- InputAt(0)->PrintTo(stream);
235
+ value()->PrintTo(stream);
231
236
  stream->Add(") then B%d else B%d", true_block_id(), false_block_id());
232
237
  }
233
238
 
234
239
 
235
240
  void LIsSmiAndBranch::PrintDataTo(StringStream* stream) {
236
241
  stream->Add("if is_smi(");
237
- InputAt(0)->PrintTo(stream);
242
+ value()->PrintTo(stream);
238
243
  stream->Add(") then B%d else B%d", true_block_id(), false_block_id());
239
244
  }
240
245
 
241
246
 
242
247
  void LIsUndetectableAndBranch::PrintDataTo(StringStream* stream) {
243
248
  stream->Add("if is_undetectable(");
244
- InputAt(0)->PrintTo(stream);
249
+ value()->PrintTo(stream);
245
250
  stream->Add(") then B%d else B%d", true_block_id(), false_block_id());
246
251
  }
247
252
 
248
253
 
249
254
  void LStringCompareAndBranch::PrintDataTo(StringStream* stream) {
250
255
  stream->Add("if string_compare(");
251
- InputAt(1)->PrintTo(stream);
252
- InputAt(2)->PrintTo(stream);
256
+ left()->PrintTo(stream);
257
+ right()->PrintTo(stream);
253
258
  stream->Add(") then B%d else B%d", true_block_id(), false_block_id());
254
259
  }
255
260
 
256
261
 
257
262
  void LHasInstanceTypeAndBranch::PrintDataTo(StringStream* stream) {
258
263
  stream->Add("if has_instance_type(");
259
- InputAt(0)->PrintTo(stream);
264
+ value()->PrintTo(stream);
260
265
  stream->Add(") then B%d else B%d", true_block_id(), false_block_id());
261
266
  }
262
267
 
263
268
 
264
269
  void LHasCachedArrayIndexAndBranch::PrintDataTo(StringStream* stream) {
265
270
  stream->Add("if has_cached_array_index(");
266
- InputAt(0)->PrintTo(stream);
271
+ value()->PrintTo(stream);
267
272
  stream->Add(") then B%d else B%d", true_block_id(), false_block_id());
268
273
  }
269
274
 
270
275
 
271
276
  void LClassOfTestAndBranch::PrintDataTo(StringStream* stream) {
272
277
  stream->Add("if class_of_test(");
273
- InputAt(0)->PrintTo(stream);
278
+ value()->PrintTo(stream);
274
279
  stream->Add(", \"%o\") then B%d else B%d",
275
280
  *hydrogen()->class_name(),
276
281
  true_block_id(),
@@ -280,7 +285,7 @@ void LClassOfTestAndBranch::PrintDataTo(StringStream* stream) {
280
285
 
281
286
  void LTypeofIsAndBranch::PrintDataTo(StringStream* stream) {
282
287
  stream->Add("if typeof ");
283
- InputAt(0)->PrintTo(stream);
288
+ value()->PrintTo(stream);
284
289
  stream->Add(" == \"%s\" then B%d else B%d",
285
290
  *hydrogen()->type_literal()->ToCString(),
286
291
  true_block_id(), false_block_id());
@@ -294,34 +299,39 @@ void LCallConstantFunction::PrintDataTo(StringStream* stream) {
294
299
 
295
300
  void LUnaryMathOperation::PrintDataTo(StringStream* stream) {
296
301
  stream->Add("/%s ", hydrogen()->OpName());
297
- InputAt(0)->PrintTo(stream);
302
+ value()->PrintTo(stream);
303
+ }
304
+
305
+
306
+ void LMathExp::PrintDataTo(StringStream* stream) {
307
+ value()->PrintTo(stream);
298
308
  }
299
309
 
300
310
 
301
311
  void LMathPowHalf::PrintDataTo(StringStream* stream) {
302
312
  stream->Add("/pow_half ");
303
- InputAt(0)->PrintTo(stream);
313
+ value()->PrintTo(stream);
304
314
  }
305
315
 
306
316
 
307
317
  void LLoadContextSlot::PrintDataTo(StringStream* stream) {
308
- InputAt(0)->PrintTo(stream);
318
+ context()->PrintTo(stream);
309
319
  stream->Add("[%d]", slot_index());
310
320
  }
311
321
 
312
322
 
313
323
  void LStoreContextSlot::PrintDataTo(StringStream* stream) {
314
- InputAt(0)->PrintTo(stream);
324
+ context()->PrintTo(stream);
315
325
  stream->Add("[%d] <- ", slot_index());
316
- InputAt(1)->PrintTo(stream);
326
+ value()->PrintTo(stream);
317
327
  }
318
328
 
319
329
 
320
330
  void LInvokeFunction::PrintDataTo(StringStream* stream) {
321
331
  stream->Add("= ");
322
- InputAt(0)->PrintTo(stream);
332
+ context()->PrintTo(stream);
323
333
  stream->Add(" ");
324
- InputAt(1)->PrintTo(stream);
334
+ function()->PrintTo(stream);
325
335
  stream->Add(" #%d / ", arity());
326
336
  }
327
337
 
@@ -350,7 +360,9 @@ void LCallKnownGlobal::PrintDataTo(StringStream* stream) {
350
360
 
351
361
  void LCallNew::PrintDataTo(StringStream* stream) {
352
362
  stream->Add("= ");
353
- InputAt(0)->PrintTo(stream);
363
+ context()->PrintTo(stream);
364
+ stream->Add(" ");
365
+ constructor()->PrintTo(stream);
354
366
  stream->Add(" #%d / ", arity());
355
367
  }
356
368
 
@@ -366,55 +378,23 @@ void LAccessArgumentsAt::PrintDataTo(StringStream* stream) {
366
378
  }
367
379
 
368
380
 
369
- int LChunk::GetNextSpillIndex(bool is_double) {
381
+ int LPlatformChunk::GetNextSpillIndex(bool is_double) {
370
382
  // Skip a slot if for a double-width slot.
371
- if (is_double) spill_slot_count_++;
383
+ if (is_double) {
384
+ spill_slot_count_++;
385
+ spill_slot_count_ |= 1;
386
+ num_double_slots_++;
387
+ }
372
388
  return spill_slot_count_++;
373
389
  }
374
390
 
375
391
 
376
- LOperand* LChunk::GetNextSpillSlot(bool is_double) {
392
+ LOperand* LPlatformChunk::GetNextSpillSlot(bool is_double) {
377
393
  int index = GetNextSpillIndex(is_double);
378
394
  if (is_double) {
379
- return LDoubleStackSlot::Create(index);
395
+ return LDoubleStackSlot::Create(index, zone());
380
396
  } else {
381
- return LStackSlot::Create(index);
382
- }
383
- }
384
-
385
-
386
- void LChunk::MarkEmptyBlocks() {
387
- HPhase phase("L_Mark empty blocks", this);
388
- for (int i = 0; i < graph()->blocks()->length(); ++i) {
389
- HBasicBlock* block = graph()->blocks()->at(i);
390
- int first = block->first_instruction_index();
391
- int last = block->last_instruction_index();
392
- LInstruction* first_instr = instructions()->at(first);
393
- LInstruction* last_instr = instructions()->at(last);
394
-
395
- LLabel* label = LLabel::cast(first_instr);
396
- if (last_instr->IsGoto()) {
397
- LGoto* goto_instr = LGoto::cast(last_instr);
398
- if (label->IsRedundant() &&
399
- !label->is_loop_header()) {
400
- bool can_eliminate = true;
401
- for (int i = first + 1; i < last && can_eliminate; ++i) {
402
- LInstruction* cur = instructions()->at(i);
403
- if (cur->IsGap()) {
404
- LGap* gap = LGap::cast(cur);
405
- if (!gap->IsRedundant()) {
406
- can_eliminate = false;
407
- }
408
- } else {
409
- can_eliminate = false;
410
- }
411
- }
412
-
413
- if (can_eliminate) {
414
- label->set_replacement(GetLabel(goto_instr->block_id()));
415
- }
416
- }
417
- }
397
+ return LStackSlot::Create(index, zone());
418
398
  }
419
399
  }
420
400
 
@@ -437,20 +417,27 @@ void LStoreNamedGeneric::PrintDataTo(StringStream* stream) {
437
417
  }
438
418
 
439
419
 
440
- void LStoreKeyedFastElement::PrintDataTo(StringStream* stream) {
441
- object()->PrintTo(stream);
420
+ void LLoadKeyed::PrintDataTo(StringStream* stream) {
421
+ elements()->PrintTo(stream);
442
422
  stream->Add("[");
443
423
  key()->PrintTo(stream);
444
- stream->Add("] <- ");
445
- value()->PrintTo(stream);
424
+ if (hydrogen()->IsDehoisted()) {
425
+ stream->Add(" + %d]", additional_index());
426
+ } else {
427
+ stream->Add("]");
428
+ }
446
429
  }
447
430
 
448
431
 
449
- void LStoreKeyedFastDoubleElement::PrintDataTo(StringStream* stream) {
432
+ void LStoreKeyed::PrintDataTo(StringStream* stream) {
450
433
  elements()->PrintTo(stream);
451
434
  stream->Add("[");
452
435
  key()->PrintTo(stream);
453
- stream->Add("] <- ");
436
+ if (hydrogen()->IsDehoisted()) {
437
+ stream->Add(" + %d] <-", additional_index());
438
+ } else {
439
+ stream->Add("] <- ");
440
+ }
454
441
  value()->PrintTo(stream);
455
442
  }
456
443
 
@@ -470,85 +457,19 @@ void LTransitionElementsKind::PrintDataTo(StringStream* stream) {
470
457
  }
471
458
 
472
459
 
473
- void LChunk::AddInstruction(LInstruction* instr, HBasicBlock* block) {
474
- LInstructionGap* gap = new(graph_->zone()) LInstructionGap(block);
475
- int index = -1;
476
- if (instr->IsControl()) {
477
- instructions_.Add(gap);
478
- index = instructions_.length();
479
- instructions_.Add(instr);
480
- } else {
481
- index = instructions_.length();
482
- instructions_.Add(instr);
483
- instructions_.Add(gap);
484
- }
485
- if (instr->HasPointerMap()) {
486
- pointer_maps_.Add(instr->pointer_map());
487
- instr->pointer_map()->set_lithium_position(index);
488
- }
489
- }
490
-
491
-
492
- LConstantOperand* LChunk::DefineConstantOperand(HConstant* constant) {
493
- return LConstantOperand::Create(constant->id());
494
- }
495
-
496
-
497
- int LChunk::GetParameterStackSlot(int index) const {
498
- // The receiver is at index 0, the first parameter at index 1, so we
499
- // shift all parameter indexes down by the number of parameters, and
500
- // make sure they end up negative so they are distinguishable from
501
- // spill slots.
502
- int result = index - info()->scope()->num_parameters() - 1;
503
- ASSERT(result < 0);
504
- return result;
505
- }
506
-
507
- // A parameter relative to ebp in the arguments stub.
508
- int LChunk::ParameterAt(int index) {
509
- ASSERT(-1 <= index); // -1 is the receiver.
510
- return (1 + info()->scope()->num_parameters() - index) *
511
- kPointerSize;
512
- }
513
-
514
-
515
- LGap* LChunk::GetGapAt(int index) const {
516
- return LGap::cast(instructions_[index]);
517
- }
518
-
519
-
520
- bool LChunk::IsGapAt(int index) const {
521
- return instructions_[index]->IsGap();
522
- }
523
-
524
-
525
- int LChunk::NearestGapPos(int index) const {
526
- while (!IsGapAt(index)) index--;
527
- return index;
528
- }
529
-
530
-
531
- void LChunk::AddGapMove(int index, LOperand* from, LOperand* to) {
532
- GetGapAt(index)->GetOrCreateParallelMove(LGap::START)->AddMove(from, to);
533
- }
534
-
535
-
536
- Handle<Object> LChunk::LookupLiteral(LConstantOperand* operand) const {
537
- return HConstant::cast(graph_->LookupValue(operand->index()))->handle();
538
- }
539
-
540
-
541
- Representation LChunk::LookupLiteralRepresentation(
542
- LConstantOperand* operand) const {
543
- return graph_->LookupValue(operand->index())->representation();
544
- }
545
-
546
-
547
- LChunk* LChunkBuilder::Build() {
460
+ LPlatformChunk* LChunkBuilder::Build() {
548
461
  ASSERT(is_unused());
549
- chunk_ = new(zone()) LChunk(info(), graph());
462
+ chunk_ = new(zone()) LPlatformChunk(info(), graph());
550
463
  HPhase phase("L_Building chunk", chunk_);
551
464
  status_ = BUILDING;
465
+
466
+ // Reserve the first spill slot for the state of dynamic alignment.
467
+ if (info()->IsOptimizing()) {
468
+ int alignment_state_index = chunk_->GetNextSpillIndex(false);
469
+ ASSERT_EQ(alignment_state_index, 0);
470
+ USE(alignment_state_index);
471
+ }
472
+
552
473
  const ZoneList<HBasicBlock*>* blocks = graph()->blocks();
553
474
  for (int i = 0; i < blocks->length(); i++) {
554
475
  HBasicBlock* next = NULL;
@@ -561,17 +482,8 @@ LChunk* LChunkBuilder::Build() {
561
482
  }
562
483
 
563
484
 
564
- void LChunkBuilder::Abort(const char* format, ...) {
565
- if (FLAG_trace_bailout) {
566
- SmartArrayPointer<char> name(
567
- info()->shared_info()->DebugName()->ToCString());
568
- PrintF("Aborting LChunk building in @\"%s\": ", *name);
569
- va_list arguments;
570
- va_start(arguments, format);
571
- OS::VPrint(format, arguments);
572
- va_end(arguments);
573
- PrintF("\n");
574
- }
485
+ void LChunkBuilder::Abort(const char* reason) {
486
+ info()->set_bailout_reason(reason);
575
487
  status_ = ABORTED;
576
488
  }
577
489
 
@@ -588,6 +500,12 @@ LUnallocated* LChunkBuilder::ToUnallocated(XMMRegister reg) {
588
500
  }
589
501
 
590
502
 
503
+ LUnallocated* LChunkBuilder::ToUnallocated(X87TopOfStackRegister reg) {
504
+ return new(zone()) LUnallocated(LUnallocated::FIXED_DOUBLE_REGISTER,
505
+ X87TopOfStackRegister::ToAllocationIndex(reg));
506
+ }
507
+
508
+
591
509
  LOperand* LChunkBuilder::UseFixed(HValue* value, Register fixed_register) {
592
510
  return Use(value, ToUnallocated(fixed_register));
593
511
  }
@@ -720,6 +638,13 @@ LInstruction* LChunkBuilder::DefineFixedDouble(
720
638
  }
721
639
 
722
640
 
641
+ template<int I, int T>
642
+ LInstruction* LChunkBuilder::DefineX87TOS(
643
+ LTemplateInstruction<1, I, T>* instr) {
644
+ return Define(instr, ToUnallocated(x87tos));
645
+ }
646
+
647
+
723
648
  LInstruction* LChunkBuilder::AssignEnvironment(LInstruction* instr) {
724
649
  HEnvironment* hydrogen_env = current_block_->last_environment();
725
650
  int argument_index_accumulator = 0;
@@ -732,6 +657,8 @@ LInstruction* LChunkBuilder::AssignEnvironment(LInstruction* instr) {
732
657
  LInstruction* LChunkBuilder::MarkAsCall(LInstruction* instr,
733
658
  HInstruction* hinstr,
734
659
  CanDeoptimize can_deoptimize) {
660
+ info()->MarkAsNonDeferredCalling();
661
+
735
662
  #ifdef DEBUG
736
663
  instr->VerifyCall();
737
664
  #endif
@@ -742,7 +669,7 @@ LInstruction* LChunkBuilder::MarkAsCall(LInstruction* instr,
742
669
  ASSERT(hinstr->next()->IsSimulate());
743
670
  HSimulate* sim = HSimulate::cast(hinstr->next());
744
671
  ASSERT(instruction_pending_deoptimization_environment_ == NULL);
745
- ASSERT(pending_deoptimization_ast_id_ == AstNode::kNoNumber);
672
+ ASSERT(pending_deoptimization_ast_id_.IsNone());
746
673
  instruction_pending_deoptimization_environment_ = instr;
747
674
  pending_deoptimization_ast_id_ = sim->ast_id();
748
675
  }
@@ -764,7 +691,7 @@ LInstruction* LChunkBuilder::MarkAsCall(LInstruction* instr,
764
691
 
765
692
  LInstruction* LChunkBuilder::AssignPointerMap(LInstruction* instr) {
766
693
  ASSERT(!instr->HasPointerMap());
767
- instr->set_pointer_map(new(zone()) LPointerMap(position_));
694
+ instr->set_pointer_map(new(zone()) LPointerMap(position_, zone()));
768
695
  return instr;
769
696
  }
770
697
 
@@ -799,6 +726,11 @@ LInstruction* LChunkBuilder::DoBlockEntry(HBlockEntry* instr) {
799
726
  }
800
727
 
801
728
 
729
+ LInstruction* LChunkBuilder::DoDummyUse(HDummyUse* instr) {
730
+ return DefineAsRegister(new(zone()) LDummyUse(UseAny(instr->value())));
731
+ }
732
+
733
+
802
734
  LInstruction* LChunkBuilder::DoSoftDeoptimize(HSoftDeoptimize* instr) {
803
735
  return AssignEnvironment(new(zone()) LDeoptimize);
804
736
  }
@@ -840,13 +772,16 @@ LInstruction* LChunkBuilder::DoShift(Token::Value op,
840
772
 
841
773
  // Shift operations can only deoptimize if we do a logical shift by 0 and
842
774
  // the result cannot be truncated to int32.
843
- bool may_deopt = (op == Token::SHR && constant_value == 0);
844
775
  bool does_deopt = false;
845
- if (may_deopt) {
846
- for (HUseIterator it(instr->uses()); !it.Done(); it.Advance()) {
847
- if (!it.value()->CheckFlag(HValue::kTruncatingToInt32)) {
848
- does_deopt = true;
849
- break;
776
+ if (op == Token::SHR && constant_value == 0) {
777
+ if (FLAG_opt_safe_uint32_operations) {
778
+ does_deopt = !instr->CheckFlag(HInstruction::kUint32);
779
+ } else {
780
+ for (HUseIterator it(instr->uses()); !it.Done(); it.Advance()) {
781
+ if (!it.value()->CheckFlag(HValue::kTruncatingToInt32)) {
782
+ does_deopt = true;
783
+ break;
784
+ }
850
785
  }
851
786
  }
852
787
  }
@@ -980,8 +915,8 @@ LEnvironment* LChunkBuilder::CreateEnvironment(
980
915
 
981
916
  LEnvironment* outer =
982
917
  CreateEnvironment(hydrogen_env->outer(), argument_index_accumulator);
983
- int ast_id = hydrogen_env->ast_id();
984
- ASSERT(ast_id != AstNode::kNoNumber ||
918
+ BailoutId ast_id = hydrogen_env->ast_id();
919
+ ASSERT(!ast_id.IsNone() ||
985
920
  hydrogen_env->frame_type() != JS_FUNCTION);
986
921
  int value_count = hydrogen_env->length();
987
922
  LEnvironment* result =
@@ -991,7 +926,9 @@ LEnvironment* LChunkBuilder::CreateEnvironment(
991
926
  hydrogen_env->parameter_count(),
992
927
  argument_count_,
993
928
  value_count,
994
- outer);
929
+ outer,
930
+ hydrogen_env->entry(),
931
+ zone());
995
932
  int argument_index = *argument_index_accumulator;
996
933
  for (int i = 0; i < value_count; ++i) {
997
934
  if (hydrogen_env->is_special_index(i)) continue;
@@ -1005,7 +942,9 @@ LEnvironment* LChunkBuilder::CreateEnvironment(
1005
942
  } else {
1006
943
  op = UseAny(value);
1007
944
  }
1008
- result->AddValue(op, value->representation());
945
+ result->AddValue(op,
946
+ value->representation(),
947
+ value->CheckFlag(HInstruction::kUint32));
1009
948
  }
1010
949
 
1011
950
  if (hydrogen_env->frame_type() == JS_FUNCTION) {
@@ -1125,7 +1064,13 @@ LInstruction* LChunkBuilder::DoThisFunction(HThisFunction* instr) {
1125
1064
 
1126
1065
 
1127
1066
  LInstruction* LChunkBuilder::DoContext(HContext* instr) {
1128
- return instr->HasNoUses() ? NULL : DefineAsRegister(new(zone()) LContext);
1067
+ if (instr->HasNoUses()) return NULL;
1068
+
1069
+ if (info()->IsStub()) {
1070
+ return DefineFixed(new(zone()) LContext, esi);
1071
+ }
1072
+
1073
+ return DefineAsRegister(new(zone()) LContext);
1129
1074
  }
1130
1075
 
1131
1076
 
@@ -1179,6 +1124,14 @@ LInstruction* LChunkBuilder::DoUnaryMathOperation(HUnaryMathOperation* instr) {
1179
1124
  LUnaryMathOperation* result = new(zone()) LUnaryMathOperation(context,
1180
1125
  input);
1181
1126
  return DefineSameAsFirst(result);
1127
+ } else if (op == kMathExp) {
1128
+ ASSERT(instr->representation().IsDouble());
1129
+ ASSERT(instr->value()->representation().IsDouble());
1130
+ LOperand* value = UseTempRegister(instr->value());
1131
+ LOperand* temp1 = TempRegister();
1132
+ LOperand* temp2 = TempRegister();
1133
+ LMathExp* result = new(zone()) LMathExp(value, temp1, temp2);
1134
+ return DefineAsRegister(result);
1182
1135
  } else if (op == kMathSin || op == kMathCos || op == kMathTan) {
1183
1136
  LOperand* context = UseFixed(instr->context(), esi);
1184
1137
  LOperand* input = UseFixedDouble(instr->value(), xmm1);
@@ -1269,6 +1222,11 @@ LInstruction* LChunkBuilder::DoCallRuntime(HCallRuntime* instr) {
1269
1222
  }
1270
1223
 
1271
1224
 
1225
+ LInstruction* LChunkBuilder::DoRor(HRor* instr) {
1226
+ return DoShift(Token::ROR, instr);
1227
+ }
1228
+
1229
+
1272
1230
  LInstruction* LChunkBuilder::DoShr(HShr* instr) {
1273
1231
  return DoShift(Token::SHR, instr);
1274
1232
  }
@@ -1321,6 +1279,13 @@ LInstruction* LChunkBuilder::DoDiv(HDiv* instr) {
1321
1279
  if (instr->representation().IsDouble()) {
1322
1280
  return DoArithmeticD(Token::DIV, instr);
1323
1281
  } else if (instr->representation().IsInteger32()) {
1282
+ if (instr->HasPowerOf2Divisor()) {
1283
+ ASSERT(!instr->CheckFlag(HValue::kCanBeDivByZero));
1284
+ LOperand* value = UseRegisterAtStart(instr->left());
1285
+ LDivI* div =
1286
+ new(zone()) LDivI(value, UseOrConstant(instr->right()), NULL);
1287
+ return AssignEnvironment(DefineSameAsFirst(div));
1288
+ }
1324
1289
  // The temporary operand is necessary to ensure that right is not allocated
1325
1290
  // into edx.
1326
1291
  LOperand* temp = FixedTemp(edx);
@@ -1335,12 +1300,76 @@ LInstruction* LChunkBuilder::DoDiv(HDiv* instr) {
1335
1300
  }
1336
1301
 
1337
1302
 
1338
- LInstruction* LChunkBuilder::DoMathFloorOfDiv(HMathFloorOfDiv* instr) {
1339
- UNIMPLEMENTED();
1303
+ HValue* LChunkBuilder::SimplifiedDividendForMathFloorOfDiv(HValue* dividend) {
1304
+ // A value with an integer representation does not need to be transformed.
1305
+ if (dividend->representation().IsInteger32()) {
1306
+ return dividend;
1307
+ // A change from an integer32 can be replaced by the integer32 value.
1308
+ } else if (dividend->IsChange() &&
1309
+ HChange::cast(dividend)->from().IsInteger32()) {
1310
+ return HChange::cast(dividend)->value();
1311
+ }
1312
+ return NULL;
1313
+ }
1314
+
1315
+
1316
+ HValue* LChunkBuilder::SimplifiedDivisorForMathFloorOfDiv(HValue* divisor) {
1317
+ if (divisor->IsConstant() &&
1318
+ HConstant::cast(divisor)->HasInteger32Value()) {
1319
+ HConstant* constant_val = HConstant::cast(divisor);
1320
+ return constant_val->CopyToRepresentation(Representation::Integer32(),
1321
+ divisor->block()->zone());
1322
+ }
1323
+ // A value with an integer representation does not need to be transformed.
1324
+ if (divisor->representation().IsInteger32()) {
1325
+ return divisor;
1326
+ // A change from an integer32 can be replaced by the integer32 value.
1327
+ } else if (divisor->IsChange() &&
1328
+ HChange::cast(divisor)->from().IsInteger32()) {
1329
+ return HChange::cast(divisor)->value();
1330
+ }
1340
1331
  return NULL;
1341
1332
  }
1342
1333
 
1343
1334
 
1335
+ LInstruction* LChunkBuilder::DoMathFloorOfDiv(HMathFloorOfDiv* instr) {
1336
+ HValue* right = instr->right();
1337
+ if (!right->IsConstant()) {
1338
+ ASSERT(right->representation().IsInteger32());
1339
+ // The temporary operand is necessary to ensure that right is not allocated
1340
+ // into edx.
1341
+ LOperand* temp = FixedTemp(edx);
1342
+ LOperand* dividend = UseFixed(instr->left(), eax);
1343
+ LOperand* divisor = UseRegister(instr->right());
1344
+ LDivI* flooring_div = new(zone()) LDivI(dividend, divisor, temp);
1345
+ return AssignEnvironment(DefineFixed(flooring_div, eax));
1346
+ }
1347
+
1348
+ ASSERT(right->IsConstant() && HConstant::cast(right)->HasInteger32Value());
1349
+ LOperand* divisor = chunk_->DefineConstantOperand(HConstant::cast(right));
1350
+ int32_t divisor_si = HConstant::cast(right)->Integer32Value();
1351
+ if (divisor_si == 0) {
1352
+ LOperand* dividend = UseRegister(instr->left());
1353
+ return AssignEnvironment(DefineAsRegister(
1354
+ new(zone()) LMathFloorOfDiv(dividend, divisor, NULL)));
1355
+ } else if (IsPowerOf2(abs(divisor_si))) {
1356
+ // use dividend as temp if divisor < 0 && divisor != -1
1357
+ LOperand* dividend = divisor_si < -1 ? UseTempRegister(instr->left()) :
1358
+ UseRegisterAtStart(instr->left());
1359
+ LInstruction* result = DefineAsRegister(
1360
+ new(zone()) LMathFloorOfDiv(dividend, divisor, NULL));
1361
+ return divisor_si < 0 ? AssignEnvironment(result) : result;
1362
+ } else {
1363
+ // needs edx:eax, plus a temp
1364
+ LOperand* dividend = UseFixed(instr->left(), eax);
1365
+ LOperand* temp = TempRegister();
1366
+ LInstruction* result = DefineFixed(
1367
+ new(zone()) LMathFloorOfDiv(dividend, divisor, temp), edx);
1368
+ return divisor_si < 0 ? AssignEnvironment(result) : result;
1369
+ }
1370
+ }
1371
+
1372
+
1344
1373
  LInstruction* LChunkBuilder::DoMod(HMod* instr) {
1345
1374
  if (instr->representation().IsInteger32()) {
1346
1375
  ASSERT(instr->left()->representation().IsInteger32());
@@ -1449,6 +1478,26 @@ LInstruction* LChunkBuilder::DoAdd(HAdd* instr) {
1449
1478
  }
1450
1479
 
1451
1480
 
1481
+ LInstruction* LChunkBuilder::DoMathMinMax(HMathMinMax* instr) {
1482
+ LOperand* left = NULL;
1483
+ LOperand* right = NULL;
1484
+ if (instr->representation().IsInteger32()) {
1485
+ ASSERT(instr->left()->representation().IsInteger32());
1486
+ ASSERT(instr->right()->representation().IsInteger32());
1487
+ left = UseRegisterAtStart(instr->LeastConstantOperand());
1488
+ right = UseOrConstantAtStart(instr->MostConstantOperand());
1489
+ } else {
1490
+ ASSERT(instr->representation().IsDouble());
1491
+ ASSERT(instr->left()->representation().IsDouble());
1492
+ ASSERT(instr->right()->representation().IsDouble());
1493
+ left = UseRegisterAtStart(instr->left());
1494
+ right = UseRegisterAtStart(instr->right());
1495
+ }
1496
+ LMathMinMax* minmax = new(zone()) LMathMinMax(left, right);
1497
+ return DefineSameAsFirst(minmax);
1498
+ }
1499
+
1500
+
1452
1501
  LInstruction* LChunkBuilder::DoPower(HPower* instr) {
1453
1502
  ASSERT(instr->representation().IsDouble());
1454
1503
  // We call a C function for double power. It can't trigger a GC.
@@ -1487,7 +1536,7 @@ LInstruction* LChunkBuilder::DoCompareGeneric(HCompareGeneric* instr) {
1487
1536
 
1488
1537
  LInstruction* LChunkBuilder::DoCompareIDAndBranch(
1489
1538
  HCompareIDAndBranch* instr) {
1490
- Representation r = instr->GetInputRepresentation();
1539
+ Representation r = instr->representation();
1491
1540
  if (r.IsInteger32()) {
1492
1541
  ASSERT(instr->left()->representation().IsInteger32());
1493
1542
  ASSERT(instr->right()->representation().IsInteger32());
@@ -1544,7 +1593,7 @@ LInstruction* LChunkBuilder::DoIsObjectAndBranch(HIsObjectAndBranch* instr) {
1544
1593
  LInstruction* LChunkBuilder::DoIsStringAndBranch(HIsStringAndBranch* instr) {
1545
1594
  ASSERT(instr->value()->representation().IsTagged());
1546
1595
  LOperand* temp = TempRegister();
1547
- return new LIsStringAndBranch(UseRegister(instr->value()), temp);
1596
+ return new(zone()) LIsStringAndBranch(UseRegister(instr->value()), temp);
1548
1597
  }
1549
1598
 
1550
1599
 
@@ -1570,7 +1619,7 @@ LInstruction* LChunkBuilder::DoStringCompareAndBranch(
1570
1619
  LOperand* left = UseFixed(instr->left(), edx);
1571
1620
  LOperand* right = UseFixed(instr->right(), eax);
1572
1621
 
1573
- LStringCompareAndBranch* result = new
1622
+ LStringCompareAndBranch* result = new(zone())
1574
1623
  LStringCompareAndBranch(context, left, right);
1575
1624
 
1576
1625
  return MarkAsCall(result, instr);
@@ -1625,6 +1674,12 @@ LInstruction* LChunkBuilder::DoFixedArrayBaseLength(
1625
1674
  }
1626
1675
 
1627
1676
 
1677
+ LInstruction* LChunkBuilder::DoMapEnumLength(HMapEnumLength* instr) {
1678
+ LOperand* map = UseRegisterAtStart(instr->value());
1679
+ return DefineAsRegister(new(zone()) LMapEnumLength(map));
1680
+ }
1681
+
1682
+
1628
1683
  LInstruction* LChunkBuilder::DoElementsKind(HElementsKind* instr) {
1629
1684
  LOperand* object = UseRegisterAtStart(instr->value());
1630
1685
  return DefineAsRegister(new(zone()) LElementsKind(object));
@@ -1642,7 +1697,18 @@ LInstruction* LChunkBuilder::DoDateField(HDateField* instr) {
1642
1697
  LOperand* date = UseFixed(instr->value(), eax);
1643
1698
  LDateField* result =
1644
1699
  new(zone()) LDateField(date, FixedTemp(ecx), instr->index());
1645
- return MarkAsCall(DefineFixed(result, eax), instr);
1700
+ return MarkAsCall(DefineFixed(result, eax), instr, CAN_DEOPTIMIZE_EAGERLY);
1701
+ }
1702
+
1703
+
1704
+ LInstruction* LChunkBuilder::DoSeqStringSetChar(HSeqStringSetChar* instr) {
1705
+ LOperand* string = UseRegister(instr->string());
1706
+ LOperand* index = UseRegister(instr->index());
1707
+ ASSERT(ecx.is_byte_register());
1708
+ LOperand* value = UseFixed(instr->value(), ecx);
1709
+ LSeqStringSetChar* result =
1710
+ new(zone()) LSeqStringSetChar(instr->encoding(), string, index, value);
1711
+ return DefineSameAsFirst(result);
1646
1712
  }
1647
1713
 
1648
1714
 
@@ -1683,8 +1749,12 @@ LInstruction* LChunkBuilder::DoForceRepresentation(HForceRepresentation* bad) {
1683
1749
  LInstruction* LChunkBuilder::DoChange(HChange* instr) {
1684
1750
  Representation from = instr->from();
1685
1751
  Representation to = instr->to();
1752
+ // Only mark conversions that might need to allocate as calling rather than
1753
+ // all changes. This makes simple, non-allocating conversion not have to force
1754
+ // building a stack frame.
1686
1755
  if (from.IsTagged()) {
1687
1756
  if (to.IsDouble()) {
1757
+ info()->MarkAsDeferredCalling();
1688
1758
  LOperand* value = UseRegister(instr->value());
1689
1759
  // Temp register only necessary for minus zero check.
1690
1760
  LOperand* temp = instr->deoptimize_on_minus_zero()
@@ -1695,8 +1765,9 @@ LInstruction* LChunkBuilder::DoChange(HChange* instr) {
1695
1765
  } else {
1696
1766
  ASSERT(to.IsInteger32());
1697
1767
  LOperand* value = UseRegister(instr->value());
1698
- bool needs_check = !instr->value()->type().IsSmi();
1699
- if (needs_check) {
1768
+ if (instr->value()->type().IsSmi()) {
1769
+ return DefineSameAsFirst(new(zone()) LSmiUntag(value, false));
1770
+ } else {
1700
1771
  bool truncating = instr->CanTruncateToInt32();
1701
1772
  LOperand* xmm_temp =
1702
1773
  (truncating && CpuFeatures::IsSupported(SSE3))
@@ -1704,14 +1775,15 @@ LInstruction* LChunkBuilder::DoChange(HChange* instr) {
1704
1775
  : FixedTemp(xmm1);
1705
1776
  LTaggedToI* res = new(zone()) LTaggedToI(value, xmm_temp);
1706
1777
  return AssignEnvironment(DefineSameAsFirst(res));
1707
- } else {
1708
- return DefineSameAsFirst(new(zone()) LSmiUntag(value, needs_check));
1709
1778
  }
1710
1779
  }
1711
1780
  } else if (from.IsDouble()) {
1712
1781
  if (to.IsTagged()) {
1713
- LOperand* value = UseRegister(instr->value());
1714
- LOperand* temp = TempRegister();
1782
+ info()->MarkAsDeferredCalling();
1783
+ LOperand* value = CpuFeatures::IsSupported(SSE2)
1784
+ ? UseRegisterAtStart(instr->value())
1785
+ : UseAtStart(instr->value());
1786
+ LOperand* temp = FLAG_inline_new ? TempRegister() : NULL;
1715
1787
 
1716
1788
  // Make sure that temp and result_temp are different registers.
1717
1789
  LUnallocated* result_temp = TempRegister();
@@ -1728,19 +1800,29 @@ LInstruction* LChunkBuilder::DoChange(HChange* instr) {
1728
1800
  DefineAsRegister(new(zone()) LDoubleToI(value, temp)));
1729
1801
  }
1730
1802
  } else if (from.IsInteger32()) {
1803
+ info()->MarkAsDeferredCalling();
1731
1804
  if (to.IsTagged()) {
1732
1805
  HValue* val = instr->value();
1733
1806
  LOperand* value = UseRegister(val);
1734
1807
  if (val->HasRange() && val->range()->IsInSmiRange()) {
1735
1808
  return DefineSameAsFirst(new(zone()) LSmiTag(value));
1809
+ } else if (val->CheckFlag(HInstruction::kUint32)) {
1810
+ LNumberTagU* result = new(zone()) LNumberTagU(value);
1811
+ return AssignEnvironment(AssignPointerMap(DefineSameAsFirst(result)));
1736
1812
  } else {
1737
1813
  LNumberTagI* result = new(zone()) LNumberTagI(value);
1738
1814
  return AssignEnvironment(AssignPointerMap(DefineSameAsFirst(result)));
1739
1815
  }
1740
1816
  } else {
1741
1817
  ASSERT(to.IsDouble());
1742
- return DefineAsRegister(
1743
- new(zone()) LInteger32ToDouble(Use(instr->value())));
1818
+ if (instr->value()->CheckFlag(HInstruction::kUint32)) {
1819
+ LOperand* temp = FixedTemp(xmm1);
1820
+ return DefineAsRegister(
1821
+ new(zone()) LUint32ToDouble(UseRegister(instr->value()), temp));
1822
+ } else {
1823
+ return DefineAsRegister(
1824
+ new(zone()) LInteger32ToDouble(Use(instr->value())));
1825
+ }
1744
1826
  }
1745
1827
  }
1746
1828
  UNREACHABLE();
@@ -1763,9 +1845,9 @@ LInstruction* LChunkBuilder::DoCheckInstanceType(HCheckInstanceType* instr) {
1763
1845
 
1764
1846
 
1765
1847
  LInstruction* LChunkBuilder::DoCheckPrototypeMaps(HCheckPrototypeMaps* instr) {
1766
- LOperand* temp = TempRegister();
1848
+ LUnallocated* temp = TempRegister();
1767
1849
  LCheckPrototypeMaps* result = new(zone()) LCheckPrototypeMaps(temp);
1768
- return AssignEnvironment(result);
1850
+ return AssignEnvironment(Define(result, temp));
1769
1851
  }
1770
1852
 
1771
1853
 
@@ -1780,9 +1862,8 @@ LInstruction* LChunkBuilder::DoCheckFunction(HCheckFunction* instr) {
1780
1862
  // want the value in a register. If the target gets promoted before we
1781
1863
  // emit code, we will still get the register but will do an immediate
1782
1864
  // compare instead of the cell compare. This is safe.
1783
- LOperand* value = Isolate::Current()->heap()->InNewSpace(*instr->target())
1784
- ? UseRegisterAtStart(instr->value())
1785
- : UseAtStart(instr->value());
1865
+ LOperand* value = instr->target_in_new_space()
1866
+ ? UseRegisterAtStart(instr->value()) : UseAtStart(instr->value());
1786
1867
  return AssignEnvironment(new(zone()) LCheckFunction(value));
1787
1868
  }
1788
1869
 
@@ -1799,7 +1880,7 @@ LInstruction* LChunkBuilder::DoClampToUint8(HClampToUint8* instr) {
1799
1880
  Representation input_rep = value->representation();
1800
1881
  if (input_rep.IsDouble()) {
1801
1882
  LOperand* reg = UseRegister(value);
1802
- return DefineAsRegister(new(zone()) LClampDToUint8(reg));
1883
+ return DefineFixed(new(zone()) LClampDToUint8(reg), eax);
1803
1884
  } else if (input_rep.IsInteger32()) {
1804
1885
  LOperand* reg = UseFixed(value, eax);
1805
1886
  return DefineFixed(new(zone()) LClampIToUint8(reg), eax);
@@ -1816,7 +1897,10 @@ LInstruction* LChunkBuilder::DoClampToUint8(HClampToUint8* instr) {
1816
1897
 
1817
1898
 
1818
1899
  LInstruction* LChunkBuilder::DoReturn(HReturn* instr) {
1819
- return new(zone()) LReturn(UseFixed(instr->value(), eax));
1900
+ LOperand* context = info()->IsStub()
1901
+ ? UseFixed(instr->context(), esi)
1902
+ : NULL;
1903
+ return new(zone()) LReturn(UseFixed(instr->value(), eax), context);
1820
1904
  }
1821
1905
 
1822
1906
 
@@ -1952,51 +2036,38 @@ LInstruction* LChunkBuilder::DoLoadExternalArrayPointer(
1952
2036
  }
1953
2037
 
1954
2038
 
1955
- LInstruction* LChunkBuilder::DoLoadKeyedFastElement(
1956
- HLoadKeyedFastElement* instr) {
1957
- ASSERT(instr->representation().IsTagged());
1958
- ASSERT(instr->key()->representation().IsInteger32());
1959
- LOperand* obj = UseRegisterAtStart(instr->object());
1960
- LOperand* key = UseRegisterOrConstantAtStart(instr->key());
1961
- LLoadKeyedFastElement* result = new(zone()) LLoadKeyedFastElement(obj, key);
1962
- if (instr->RequiresHoleCheck()) AssignEnvironment(result);
1963
- return DefineAsRegister(result);
1964
- }
1965
-
1966
-
1967
- LInstruction* LChunkBuilder::DoLoadKeyedFastDoubleElement(
1968
- HLoadKeyedFastDoubleElement* instr) {
1969
- ASSERT(instr->representation().IsDouble());
1970
- ASSERT(instr->key()->representation().IsInteger32());
1971
- LOperand* elements = UseRegisterAtStart(instr->elements());
1972
- LOperand* key = UseRegisterOrConstantAtStart(instr->key());
1973
- LLoadKeyedFastDoubleElement* result =
1974
- new(zone()) LLoadKeyedFastDoubleElement(elements, key);
1975
- return AssignEnvironment(DefineAsRegister(result));
1976
- }
2039
+ LInstruction* LChunkBuilder::DoLoadKeyed(HLoadKeyed* instr) {
2040
+ ASSERT(instr->key()->representation().IsInteger32() ||
2041
+ instr->key()->representation().IsTagged());
2042
+ ElementsKind elements_kind = instr->elements_kind();
2043
+ bool clobbers_key = ExternalArrayOpRequiresTemp(
2044
+ instr->key()->representation(), elements_kind);
2045
+ LOperand* key = clobbers_key
2046
+ ? UseTempRegister(instr->key())
2047
+ : UseRegisterOrConstantAtStart(instr->key());
2048
+ LLoadKeyed* result = NULL;
1977
2049
 
2050
+ if (!instr->is_external()) {
2051
+ LOperand* obj = UseRegisterAtStart(instr->elements());
2052
+ result = new(zone()) LLoadKeyed(obj, key);
2053
+ } else {
2054
+ ASSERT(
2055
+ (instr->representation().IsInteger32() &&
2056
+ (elements_kind != EXTERNAL_FLOAT_ELEMENTS) &&
2057
+ (elements_kind != EXTERNAL_DOUBLE_ELEMENTS)) ||
2058
+ (instr->representation().IsDouble() &&
2059
+ ((elements_kind == EXTERNAL_FLOAT_ELEMENTS) ||
2060
+ (elements_kind == EXTERNAL_DOUBLE_ELEMENTS))));
2061
+ LOperand* external_pointer = UseRegister(instr->elements());
2062
+ result = new(zone()) LLoadKeyed(external_pointer, key);
2063
+ }
1978
2064
 
1979
- LInstruction* LChunkBuilder::DoLoadKeyedSpecializedArrayElement(
1980
- HLoadKeyedSpecializedArrayElement* instr) {
1981
- ElementsKind elements_kind = instr->elements_kind();
1982
- ASSERT(
1983
- (instr->representation().IsInteger32() &&
1984
- (elements_kind != EXTERNAL_FLOAT_ELEMENTS) &&
1985
- (elements_kind != EXTERNAL_DOUBLE_ELEMENTS)) ||
1986
- (instr->representation().IsDouble() &&
1987
- ((elements_kind == EXTERNAL_FLOAT_ELEMENTS) ||
1988
- (elements_kind == EXTERNAL_DOUBLE_ELEMENTS))));
1989
- ASSERT(instr->key()->representation().IsInteger32());
1990
- LOperand* external_pointer = UseRegister(instr->external_pointer());
1991
- LOperand* key = UseRegisterOrConstant(instr->key());
1992
- LLoadKeyedSpecializedArrayElement* result =
1993
- new(zone()) LLoadKeyedSpecializedArrayElement(external_pointer, key);
1994
- LInstruction* load_instr = DefineAsRegister(result);
2065
+ DefineAsRegister(result);
2066
+ bool can_deoptimize = instr->RequiresHoleCheck() ||
2067
+ (elements_kind == EXTERNAL_UNSIGNED_INT_ELEMENTS);
1995
2068
  // An unsigned int array load might overflow and cause a deopt, make sure it
1996
2069
  // has an environment.
1997
- return (elements_kind == EXTERNAL_UNSIGNED_INT_ELEMENTS)
1998
- ? AssignEnvironment(load_instr)
1999
- : load_instr;
2070
+ return can_deoptimize ? AssignEnvironment(result) : result;
2000
2071
  }
2001
2072
 
2002
2073
 
@@ -2011,66 +2082,61 @@ LInstruction* LChunkBuilder::DoLoadKeyedGeneric(HLoadKeyedGeneric* instr) {
2011
2082
  }
2012
2083
 
2013
2084
 
2014
- LInstruction* LChunkBuilder::DoStoreKeyedFastElement(
2015
- HStoreKeyedFastElement* instr) {
2016
- bool needs_write_barrier = instr->NeedsWriteBarrier();
2017
- ASSERT(instr->value()->representation().IsTagged());
2018
- ASSERT(instr->object()->representation().IsTagged());
2019
- ASSERT(instr->key()->representation().IsInteger32());
2020
-
2021
- LOperand* obj = UseRegister(instr->object());
2022
- LOperand* val = needs_write_barrier
2023
- ? UseTempRegister(instr->value())
2024
- : UseRegisterAtStart(instr->value());
2025
- LOperand* key = needs_write_barrier
2026
- ? UseTempRegister(instr->key())
2027
- : UseRegisterOrConstantAtStart(instr->key());
2028
- return new(zone()) LStoreKeyedFastElement(obj, key, val);
2029
- }
2085
+ LInstruction* LChunkBuilder::DoStoreKeyed(HStoreKeyed* instr) {
2086
+ if (!instr->is_external()) {
2087
+ ASSERT(instr->elements()->representation().IsTagged());
2088
+ ASSERT(instr->key()->representation().IsInteger32() ||
2089
+ instr->key()->representation().IsTagged());
2030
2090
 
2091
+ if (instr->value()->representation().IsDouble()) {
2092
+ LOperand* object = UseRegisterAtStart(instr->elements());
2093
+ LOperand* val = UseTempRegister(instr->value());
2094
+ LOperand* key = UseRegisterOrConstantAtStart(instr->key());
2031
2095
 
2032
- LInstruction* LChunkBuilder::DoStoreKeyedFastDoubleElement(
2033
- HStoreKeyedFastDoubleElement* instr) {
2034
- ASSERT(instr->value()->representation().IsDouble());
2035
- ASSERT(instr->elements()->representation().IsTagged());
2036
- ASSERT(instr->key()->representation().IsInteger32());
2037
-
2038
- LOperand* elements = UseRegisterAtStart(instr->elements());
2039
- LOperand* val = UseTempRegister(instr->value());
2040
- LOperand* key = UseRegisterOrConstantAtStart(instr->key());
2041
-
2042
- return new(zone()) LStoreKeyedFastDoubleElement(elements, key, val);
2043
- }
2044
-
2096
+ return new(zone()) LStoreKeyed(object, key, val);
2097
+ } else {
2098
+ ASSERT(instr->value()->representation().IsTagged());
2099
+ bool needs_write_barrier = instr->NeedsWriteBarrier();
2100
+
2101
+ LOperand* obj = UseRegister(instr->elements());
2102
+ LOperand* val = needs_write_barrier
2103
+ ? UseTempRegister(instr->value())
2104
+ : UseRegisterAtStart(instr->value());
2105
+ LOperand* key = needs_write_barrier
2106
+ ? UseTempRegister(instr->key())
2107
+ : UseRegisterOrConstantAtStart(instr->key());
2108
+ return new(zone()) LStoreKeyed(obj, key, val);
2109
+ }
2110
+ }
2045
2111
 
2046
- LInstruction* LChunkBuilder::DoStoreKeyedSpecializedArrayElement(
2047
- HStoreKeyedSpecializedArrayElement* instr) {
2048
2112
  ElementsKind elements_kind = instr->elements_kind();
2049
- ASSERT(
2113
+ ASSERT(
2050
2114
  (instr->value()->representation().IsInteger32() &&
2051
2115
  (elements_kind != EXTERNAL_FLOAT_ELEMENTS) &&
2052
2116
  (elements_kind != EXTERNAL_DOUBLE_ELEMENTS)) ||
2053
2117
  (instr->value()->representation().IsDouble() &&
2054
2118
  ((elements_kind == EXTERNAL_FLOAT_ELEMENTS) ||
2055
- (elements_kind == EXTERNAL_DOUBLE_ELEMENTS))));
2056
- ASSERT(instr->external_pointer()->representation().IsExternal());
2057
- ASSERT(instr->key()->representation().IsInteger32());
2058
-
2059
- LOperand* external_pointer = UseRegister(instr->external_pointer());
2060
- LOperand* key = UseRegisterOrConstant(instr->key());
2061
- LOperand* val = NULL;
2062
- if (elements_kind == EXTERNAL_BYTE_ELEMENTS ||
2119
+ (elements_kind == EXTERNAL_DOUBLE_ELEMENTS))));
2120
+ ASSERT(instr->elements()->representation().IsExternal());
2121
+
2122
+ LOperand* external_pointer = UseRegister(instr->elements());
2123
+ // Determine if we need a byte register in this case for the value.
2124
+ bool val_is_fixed_register =
2125
+ elements_kind == EXTERNAL_BYTE_ELEMENTS ||
2063
2126
  elements_kind == EXTERNAL_UNSIGNED_BYTE_ELEMENTS ||
2064
- elements_kind == EXTERNAL_PIXEL_ELEMENTS) {
2065
- // We need a byte register in this case for the value.
2066
- val = UseFixed(instr->value(), eax);
2067
- } else {
2068
- val = UseRegister(instr->value());
2069
- }
2127
+ elements_kind == EXTERNAL_PIXEL_ELEMENTS;
2070
2128
 
2071
- return new(zone()) LStoreKeyedSpecializedArrayElement(external_pointer,
2072
- key,
2073
- val);
2129
+ LOperand* val = val_is_fixed_register
2130
+ ? UseFixed(instr->value(), eax)
2131
+ : UseRegister(instr->value());
2132
+ bool clobbers_key = ExternalArrayOpRequiresTemp(
2133
+ instr->key()->representation(), elements_kind);
2134
+ LOperand* key = clobbers_key
2135
+ ? UseTempRegister(instr->key())
2136
+ : UseRegisterOrConstantAtStart(instr->key());
2137
+ return new(zone()) LStoreKeyed(external_pointer,
2138
+ key,
2139
+ val);
2074
2140
  }
2075
2141
 
2076
2142
 
@@ -2092,28 +2158,44 @@ LInstruction* LChunkBuilder::DoStoreKeyedGeneric(HStoreKeyedGeneric* instr) {
2092
2158
 
2093
2159
  LInstruction* LChunkBuilder::DoTransitionElementsKind(
2094
2160
  HTransitionElementsKind* instr) {
2095
- ElementsKind from_kind = instr->original_map()->elements_kind();
2096
- ElementsKind to_kind = instr->transitioned_map()->elements_kind();
2097
- if (IsSimpleMapChangeTransition(from_kind, to_kind)) {
2161
+ LOperand* object = UseRegister(instr->object());
2162
+ if (IsSimpleMapChangeTransition(instr->from_kind(), instr->to_kind())) {
2098
2163
  LOperand* object = UseRegister(instr->object());
2099
2164
  LOperand* new_map_reg = TempRegister();
2100
2165
  LOperand* temp_reg = TempRegister();
2101
2166
  LTransitionElementsKind* result =
2102
- new(zone()) LTransitionElementsKind(object, new_map_reg, temp_reg);
2103
- return DefineSameAsFirst(result);
2167
+ new(zone()) LTransitionElementsKind(object, NULL,
2168
+ new_map_reg, temp_reg);
2169
+ return result;
2170
+ } else if (FLAG_compiled_transitions) {
2171
+ LOperand* context = UseRegister(instr->context());
2172
+ LTransitionElementsKind* result =
2173
+ new(zone()) LTransitionElementsKind(object, context, NULL, NULL);
2174
+ return AssignPointerMap(result);
2104
2175
  } else {
2105
2176
  LOperand* object = UseFixed(instr->object(), eax);
2106
2177
  LOperand* fixed_object_reg = FixedTemp(edx);
2107
2178
  LOperand* new_map_reg = FixedTemp(ebx);
2108
2179
  LTransitionElementsKind* result =
2109
2180
  new(zone()) LTransitionElementsKind(object,
2181
+ NULL,
2110
2182
  new_map_reg,
2111
2183
  fixed_object_reg);
2112
- return MarkAsCall(DefineFixed(result, eax), instr);
2184
+ return MarkAsCall(result, instr);
2113
2185
  }
2114
2186
  }
2115
2187
 
2116
2188
 
2189
+ LInstruction* LChunkBuilder::DoTrapAllocationMemento(
2190
+ HTrapAllocationMemento* instr) {
2191
+ LOperand* object = UseRegister(instr->object());
2192
+ LOperand* temp = TempRegister();
2193
+ LTrapAllocationMemento* result =
2194
+ new(zone()) LTrapAllocationMemento(object, temp);
2195
+ return AssignEnvironment(result);
2196
+ }
2197
+
2198
+
2117
2199
  LInstruction* LChunkBuilder::DoStoreNamedField(HStoreNamedField* instr) {
2118
2200
  bool needs_write_barrier = instr->NeedsWriteBarrier();
2119
2201
  bool needs_write_barrier_for_map = !instr->transition().is_null() &&
@@ -2192,13 +2274,24 @@ LInstruction* LChunkBuilder::DoStringLength(HStringLength* instr) {
2192
2274
 
2193
2275
 
2194
2276
  LInstruction* LChunkBuilder::DoAllocateObject(HAllocateObject* instr) {
2195
- LOperand* context = UseFixed(instr->context(), esi);
2277
+ info()->MarkAsDeferredCalling();
2278
+ LOperand* context = UseAny(instr->context());
2196
2279
  LOperand* temp = TempRegister();
2197
2280
  LAllocateObject* result = new(zone()) LAllocateObject(context, temp);
2198
2281
  return AssignPointerMap(DefineAsRegister(result));
2199
2282
  }
2200
2283
 
2201
2284
 
2285
+ LInstruction* LChunkBuilder::DoAllocate(HAllocate* instr) {
2286
+ info()->MarkAsDeferredCalling();
2287
+ LOperand* context = UseAny(instr->context());
2288
+ LOperand* size = UseTempRegister(instr->size());
2289
+ LOperand* temp = TempRegister();
2290
+ LAllocate* result = new(zone()) LAllocate(context, size, temp);
2291
+ return AssignPointerMap(DefineAsRegister(result));
2292
+ }
2293
+
2294
+
2202
2295
  LInstruction* LChunkBuilder::DoFastLiteral(HFastLiteral* instr) {
2203
2296
  LOperand* context = UseFixed(instr->context(), esi);
2204
2297
  return MarkAsCall(
@@ -2244,6 +2337,7 @@ LInstruction* LChunkBuilder::DoDeleteProperty(HDeleteProperty* instr) {
2244
2337
 
2245
2338
 
2246
2339
  LInstruction* LChunkBuilder::DoOsrEntry(HOsrEntry* instr) {
2340
+ ASSERT(argument_count_ == 0);
2247
2341
  allocator_->MarkAsOsrEntry();
2248
2342
  current_block_->last_environment()->set_ast_id(instr->ast_id());
2249
2343
  return AssignEnvironment(new(zone()) LOsrEntry);
@@ -2251,8 +2345,17 @@ LInstruction* LChunkBuilder::DoOsrEntry(HOsrEntry* instr) {
2251
2345
 
2252
2346
 
2253
2347
  LInstruction* LChunkBuilder::DoParameter(HParameter* instr) {
2254
- int spill_index = chunk()->GetParameterStackSlot(instr->index());
2255
- return DefineAsSpilled(new(zone()) LParameter, spill_index);
2348
+ LParameter* result = new(zone()) LParameter;
2349
+ if (instr->kind() == HParameter::STACK_PARAMETER) {
2350
+ int spill_index = chunk()->GetParameterStackSlot(instr->index());
2351
+ return DefineAsSpilled(result, spill_index);
2352
+ } else {
2353
+ ASSERT(info()->IsStub());
2354
+ CodeStubInterfaceDescriptor* descriptor =
2355
+ info()->code_stub()->GetInterfaceDescriptor(info()->isolate());
2356
+ Register reg = descriptor->register_params_[instr->index()];
2357
+ return DefineFixed(result, reg);
2358
+ }
2256
2359
  }
2257
2360
 
2258
2361
 
@@ -2284,12 +2387,10 @@ LInstruction* LChunkBuilder::DoArgumentsObject(HArgumentsObject* instr) {
2284
2387
 
2285
2388
 
2286
2389
  LInstruction* LChunkBuilder::DoAccessArgumentsAt(HAccessArgumentsAt* instr) {
2287
- LOperand* arguments = UseRegister(instr->arguments());
2390
+ LOperand* args = UseRegister(instr->arguments());
2288
2391
  LOperand* length = UseTempRegister(instr->length());
2289
2392
  LOperand* index = Use(instr->index());
2290
- LAccessArgumentsAt* result =
2291
- new(zone()) LAccessArgumentsAt(arguments, length, index);
2292
- return AssignEnvironment(DefineAsRegister(result));
2393
+ return DefineAsRegister(new(zone()) LAccessArgumentsAt(args, length, index));
2293
2394
  }
2294
2395
 
2295
2396
 
@@ -2326,7 +2427,7 @@ LInstruction* LChunkBuilder::DoSimulate(HSimulate* instr) {
2326
2427
  env->set_ast_id(instr->ast_id());
2327
2428
 
2328
2429
  env->Drop(instr->pop_count());
2329
- for (int i = 0; i < instr->values()->length(); ++i) {
2430
+ for (int i = instr->values()->length() - 1; i >= 0; --i) {
2330
2431
  HValue* value = instr->values()->at(i);
2331
2432
  if (instr->HasAssignedIndexAt(i)) {
2332
2433
  env->Bind(instr->GetAssignedIndexAt(i), value);
@@ -2337,7 +2438,7 @@ LInstruction* LChunkBuilder::DoSimulate(HSimulate* instr) {
2337
2438
 
2338
2439
  // If there is an instruction pending deoptimization environment create a
2339
2440
  // lazy bailout instruction to capture the environment.
2340
- if (pending_deoptimization_ast_id_ != AstNode::kNoNumber) {
2441
+ if (!pending_deoptimization_ast_id_.IsNone()) {
2341
2442
  ASSERT(pending_deoptimization_ast_id_ == instr->ast_id());
2342
2443
  LLazyBailout* lazy_bailout = new(zone()) LLazyBailout;
2343
2444
  LInstruction* result = AssignEnvironment(lazy_bailout);
@@ -2346,7 +2447,7 @@ LInstruction* LChunkBuilder::DoSimulate(HSimulate* instr) {
2346
2447
  instruction_pending_deoptimization_environment_->
2347
2448
  SetDeferredLazyDeoptimizationEnvironment(result->environment());
2348
2449
  instruction_pending_deoptimization_environment_ = NULL;
2349
- pending_deoptimization_ast_id_ = AstNode::kNoNumber;
2450
+ pending_deoptimization_ast_id_ = BailoutId::None();
2350
2451
  return result;
2351
2452
  }
2352
2453
 
@@ -2355,6 +2456,7 @@ LInstruction* LChunkBuilder::DoSimulate(HSimulate* instr) {
2355
2456
 
2356
2457
 
2357
2458
  LInstruction* LChunkBuilder::DoStackCheck(HStackCheck* instr) {
2459
+ info()->MarkAsDeferredCalling();
2358
2460
  if (instr->is_function_entry()) {
2359
2461
  LOperand* context = UseFixed(instr->context(), esi);
2360
2462
  return MarkAsCall(new(zone()) LStackCheck(context), instr);
@@ -2374,11 +2476,12 @@ LInstruction* LChunkBuilder::DoEnterInlined(HEnterInlined* instr) {
2374
2476
  instr->arguments_count(),
2375
2477
  instr->function(),
2376
2478
  undefined,
2377
- instr->call_kind(),
2378
- instr->is_construct());
2479
+ instr->inlining_kind(),
2480
+ instr->undefined_receiver());
2379
2481
  if (instr->arguments_var() != NULL) {
2380
2482
  inner->Bind(instr->arguments_var(), graph()->GetArgumentsObject());
2381
2483
  }
2484
+ inner->set_entry(instr);
2382
2485
  current_block_->UpdateEnvironment(inner);
2383
2486
  chunk_->AddInlinedClosure(instr->closure());
2384
2487
  return NULL;
@@ -2390,7 +2493,7 @@ LInstruction* LChunkBuilder::DoLeaveInlined(HLeaveInlined* instr) {
2390
2493
 
2391
2494
  HEnvironment* env = current_block_->last_environment();
2392
2495
 
2393
- if (instr->arguments_pushed()) {
2496
+ if (env->entry()->arguments_pushed()) {
2394
2497
  int argument_count = env->arguments_environment()->parameter_count();
2395
2498
  pop = new(zone()) LDrop(argument_count);
2396
2499
  argument_count_ -= argument_count;