mustang 0.0.1 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (560) hide show
  1. data/.rspec +1 -0
  2. data/Isolate +9 -0
  3. data/README.md +6 -12
  4. data/Rakefile +30 -4
  5. data/TODO.md +9 -0
  6. data/ext/v8/extconf.rb +56 -0
  7. data/ext/v8/v8.cpp +37 -0
  8. data/ext/v8/v8_array.cpp +161 -0
  9. data/ext/v8/v8_array.h +17 -0
  10. data/ext/v8/v8_base.cpp +147 -0
  11. data/ext/v8/v8_base.h +23 -0
  12. data/ext/v8/v8_cast.cpp +151 -0
  13. data/ext/v8/v8_cast.h +64 -0
  14. data/ext/v8/v8_context.cpp +174 -0
  15. data/ext/v8/v8_context.h +12 -0
  16. data/ext/v8/v8_date.cpp +61 -0
  17. data/ext/v8/v8_date.h +16 -0
  18. data/ext/v8/v8_errors.cpp +147 -0
  19. data/ext/v8/v8_errors.h +19 -0
  20. data/ext/v8/v8_external.cpp +66 -0
  21. data/ext/v8/v8_external.h +16 -0
  22. data/ext/v8/v8_function.cpp +182 -0
  23. data/ext/v8/v8_function.h +14 -0
  24. data/ext/v8/v8_integer.cpp +70 -0
  25. data/ext/v8/v8_integer.h +16 -0
  26. data/ext/v8/v8_macros.h +30 -0
  27. data/ext/v8/v8_main.cpp +53 -0
  28. data/ext/v8/v8_main.h +13 -0
  29. data/ext/v8/v8_number.cpp +62 -0
  30. data/ext/v8/v8_number.h +16 -0
  31. data/ext/v8/v8_object.cpp +172 -0
  32. data/ext/v8/v8_object.h +17 -0
  33. data/ext/v8/v8_ref.cpp +72 -0
  34. data/ext/v8/v8_ref.h +43 -0
  35. data/ext/v8/v8_regexp.cpp +148 -0
  36. data/ext/v8/v8_regexp.h +16 -0
  37. data/ext/v8/v8_string.cpp +78 -0
  38. data/ext/v8/v8_string.h +16 -0
  39. data/ext/v8/v8_value.cpp +370 -0
  40. data/ext/v8/v8_value.h +19 -0
  41. data/gemspec.yml +2 -1
  42. data/lib/core_ext/class.rb +14 -0
  43. data/lib/core_ext/object.rb +12 -0
  44. data/lib/core_ext/symbol.rb +23 -0
  45. data/lib/mustang.rb +44 -0
  46. data/lib/mustang/context.rb +69 -0
  47. data/lib/mustang/errors.rb +36 -0
  48. data/lib/support/delegated.rb +25 -0
  49. data/lib/v8/array.rb +21 -0
  50. data/lib/v8/context.rb +13 -0
  51. data/lib/v8/date.rb +20 -0
  52. data/lib/v8/error.rb +15 -0
  53. data/lib/v8/external.rb +16 -0
  54. data/lib/v8/function.rb +11 -0
  55. data/lib/v8/integer.rb +16 -0
  56. data/lib/v8/number.rb +16 -0
  57. data/lib/v8/object.rb +66 -0
  58. data/lib/v8/regexp.rb +23 -0
  59. data/lib/v8/string.rb +27 -0
  60. data/mustang.gemspec +3 -0
  61. data/spec/core_ext/class_spec.rb +19 -0
  62. data/spec/core_ext/object_spec.rb +19 -0
  63. data/spec/core_ext/symbol_spec.rb +27 -0
  64. data/spec/fixtures/test1.js +2 -0
  65. data/spec/fixtures/test2.js +2 -0
  66. data/spec/spec_helper.rb +20 -0
  67. data/spec/v8/array_spec.rb +88 -0
  68. data/spec/v8/cast_spec.rb +151 -0
  69. data/spec/v8/context_spec.rb +78 -0
  70. data/spec/v8/data_spec.rb +39 -0
  71. data/spec/v8/date_spec.rb +45 -0
  72. data/spec/v8/empty_spec.rb +27 -0
  73. data/spec/v8/errors_spec.rb +142 -0
  74. data/spec/v8/external_spec.rb +44 -0
  75. data/spec/v8/function_spec.rb +170 -0
  76. data/spec/v8/integer_spec.rb +41 -0
  77. data/spec/v8/main_spec.rb +18 -0
  78. data/spec/v8/null_spec.rb +27 -0
  79. data/spec/v8/number_spec.rb +40 -0
  80. data/spec/v8/object_spec.rb +79 -0
  81. data/spec/v8/primitive_spec.rb +9 -0
  82. data/spec/v8/regexp_spec.rb +65 -0
  83. data/spec/v8/string_spec.rb +48 -0
  84. data/spec/v8/undefined_spec.rb +27 -0
  85. data/spec/v8/value_spec.rb +215 -0
  86. data/vendor/v8/.gitignore +2 -0
  87. data/vendor/v8/AUTHORS +3 -1
  88. data/vendor/v8/ChangeLog +117 -0
  89. data/vendor/v8/SConstruct +334 -53
  90. data/vendor/v8/include/v8-debug.h +21 -11
  91. data/vendor/v8/include/v8-preparser.h +1 -1
  92. data/vendor/v8/include/v8-profiler.h +122 -43
  93. data/vendor/v8/include/v8-testing.h +5 -0
  94. data/vendor/v8/include/v8.h +171 -17
  95. data/vendor/v8/preparser/SConscript +38 -0
  96. data/vendor/v8/preparser/preparser-process.cc +77 -114
  97. data/vendor/v8/samples/shell.cc +232 -46
  98. data/vendor/v8/src/SConscript +29 -5
  99. data/vendor/v8/src/accessors.cc +70 -211
  100. data/vendor/v8/{test/cctest/test-mips.cc → src/allocation-inl.h} +15 -18
  101. data/vendor/v8/src/allocation.cc +0 -82
  102. data/vendor/v8/src/allocation.h +9 -42
  103. data/vendor/v8/src/api.cc +1645 -1156
  104. data/vendor/v8/src/api.h +76 -12
  105. data/vendor/v8/src/apiutils.h +0 -7
  106. data/vendor/v8/src/arguments.h +15 -4
  107. data/vendor/v8/src/arm/assembler-arm-inl.h +10 -9
  108. data/vendor/v8/src/arm/assembler-arm.cc +62 -23
  109. data/vendor/v8/src/arm/assembler-arm.h +76 -11
  110. data/vendor/v8/src/arm/builtins-arm.cc +39 -33
  111. data/vendor/v8/src/arm/code-stubs-arm.cc +1182 -402
  112. data/vendor/v8/src/arm/code-stubs-arm.h +20 -54
  113. data/vendor/v8/src/arm/codegen-arm.cc +159 -106
  114. data/vendor/v8/src/arm/codegen-arm.h +6 -6
  115. data/vendor/v8/src/arm/constants-arm.h +16 -1
  116. data/vendor/v8/src/arm/cpu-arm.cc +7 -5
  117. data/vendor/v8/src/arm/debug-arm.cc +6 -4
  118. data/vendor/v8/src/arm/deoptimizer-arm.cc +51 -14
  119. data/vendor/v8/src/arm/disasm-arm.cc +47 -15
  120. data/vendor/v8/src/arm/frames-arm.h +1 -1
  121. data/vendor/v8/src/arm/full-codegen-arm.cc +724 -408
  122. data/vendor/v8/src/arm/ic-arm.cc +90 -85
  123. data/vendor/v8/src/arm/lithium-arm.cc +140 -69
  124. data/vendor/v8/src/arm/lithium-arm.h +161 -46
  125. data/vendor/v8/src/arm/lithium-codegen-arm.cc +567 -297
  126. data/vendor/v8/src/arm/lithium-codegen-arm.h +21 -9
  127. data/vendor/v8/src/arm/lithium-gap-resolver-arm.cc +2 -0
  128. data/vendor/v8/src/arm/macro-assembler-arm.cc +457 -96
  129. data/vendor/v8/src/arm/macro-assembler-arm.h +115 -18
  130. data/vendor/v8/src/arm/regexp-macro-assembler-arm.cc +20 -13
  131. data/vendor/v8/src/arm/regexp-macro-assembler-arm.h +1 -0
  132. data/vendor/v8/src/arm/simulator-arm.cc +184 -101
  133. data/vendor/v8/src/arm/simulator-arm.h +26 -21
  134. data/vendor/v8/src/arm/stub-cache-arm.cc +450 -467
  135. data/vendor/v8/src/arm/virtual-frame-arm.cc +14 -12
  136. data/vendor/v8/src/arm/virtual-frame-arm.h +11 -8
  137. data/vendor/v8/src/array.js +35 -18
  138. data/vendor/v8/src/assembler.cc +186 -92
  139. data/vendor/v8/src/assembler.h +106 -69
  140. data/vendor/v8/src/ast-inl.h +5 -0
  141. data/vendor/v8/src/ast.cc +46 -35
  142. data/vendor/v8/src/ast.h +107 -50
  143. data/vendor/v8/src/atomicops.h +2 -0
  144. data/vendor/v8/src/atomicops_internals_mips_gcc.h +169 -0
  145. data/vendor/v8/src/bootstrapper.cc +649 -399
  146. data/vendor/v8/src/bootstrapper.h +94 -27
  147. data/vendor/v8/src/builtins.cc +359 -227
  148. data/vendor/v8/src/builtins.h +157 -123
  149. data/vendor/v8/src/checks.cc +2 -2
  150. data/vendor/v8/src/checks.h +4 -0
  151. data/vendor/v8/src/code-stubs.cc +27 -17
  152. data/vendor/v8/src/code-stubs.h +38 -17
  153. data/vendor/v8/src/codegen-inl.h +5 -1
  154. data/vendor/v8/src/codegen.cc +27 -17
  155. data/vendor/v8/src/codegen.h +9 -9
  156. data/vendor/v8/src/compilation-cache.cc +92 -206
  157. data/vendor/v8/src/compilation-cache.h +205 -30
  158. data/vendor/v8/src/compiler.cc +107 -120
  159. data/vendor/v8/src/compiler.h +17 -2
  160. data/vendor/v8/src/contexts.cc +22 -15
  161. data/vendor/v8/src/contexts.h +14 -8
  162. data/vendor/v8/src/conversions.cc +86 -30
  163. data/vendor/v8/src/counters.cc +19 -4
  164. data/vendor/v8/src/counters.h +28 -16
  165. data/vendor/v8/src/cpu-profiler-inl.h +4 -3
  166. data/vendor/v8/src/cpu-profiler.cc +123 -72
  167. data/vendor/v8/src/cpu-profiler.h +33 -19
  168. data/vendor/v8/src/cpu.h +2 -0
  169. data/vendor/v8/src/d8-debug.cc +3 -3
  170. data/vendor/v8/src/d8-debug.h +7 -6
  171. data/vendor/v8/src/d8-posix.cc +2 -0
  172. data/vendor/v8/src/d8.cc +22 -12
  173. data/vendor/v8/src/d8.gyp +3 -0
  174. data/vendor/v8/src/d8.js +618 -0
  175. data/vendor/v8/src/data-flow.h +3 -3
  176. data/vendor/v8/src/dateparser.h +4 -2
  177. data/vendor/v8/src/debug-agent.cc +10 -9
  178. data/vendor/v8/src/debug-agent.h +9 -11
  179. data/vendor/v8/src/debug-debugger.js +121 -0
  180. data/vendor/v8/src/debug.cc +331 -227
  181. data/vendor/v8/src/debug.h +248 -219
  182. data/vendor/v8/src/deoptimizer.cc +173 -62
  183. data/vendor/v8/src/deoptimizer.h +119 -19
  184. data/vendor/v8/src/disasm.h +3 -0
  185. data/vendor/v8/src/disassembler.cc +10 -9
  186. data/vendor/v8/src/execution.cc +185 -129
  187. data/vendor/v8/src/execution.h +47 -78
  188. data/vendor/v8/src/extensions/experimental/break-iterator.cc +250 -0
  189. data/vendor/v8/src/extensions/experimental/break-iterator.h +89 -0
  190. data/vendor/v8/src/extensions/experimental/experimental.gyp +2 -0
  191. data/vendor/v8/src/extensions/experimental/i18n-extension.cc +22 -2
  192. data/vendor/v8/src/extensions/externalize-string-extension.cc +2 -2
  193. data/vendor/v8/src/extensions/gc-extension.cc +1 -1
  194. data/vendor/v8/src/factory.cc +261 -154
  195. data/vendor/v8/src/factory.h +162 -158
  196. data/vendor/v8/src/flag-definitions.h +17 -11
  197. data/vendor/v8/src/frame-element.cc +0 -5
  198. data/vendor/v8/src/frame-element.h +9 -13
  199. data/vendor/v8/src/frames-inl.h +7 -0
  200. data/vendor/v8/src/frames.cc +56 -46
  201. data/vendor/v8/src/frames.h +36 -25
  202. data/vendor/v8/src/full-codegen.cc +15 -24
  203. data/vendor/v8/src/full-codegen.h +13 -41
  204. data/vendor/v8/src/func-name-inferrer.cc +7 -6
  205. data/vendor/v8/src/func-name-inferrer.h +1 -1
  206. data/vendor/v8/src/gdb-jit.cc +1 -0
  207. data/vendor/v8/src/global-handles.cc +118 -56
  208. data/vendor/v8/src/global-handles.h +98 -40
  209. data/vendor/v8/src/globals.h +2 -2
  210. data/vendor/v8/src/handles-inl.h +106 -9
  211. data/vendor/v8/src/handles.cc +220 -157
  212. data/vendor/v8/src/handles.h +38 -59
  213. data/vendor/v8/src/hashmap.h +3 -3
  214. data/vendor/v8/src/heap-inl.h +141 -25
  215. data/vendor/v8/src/heap-profiler.cc +117 -63
  216. data/vendor/v8/src/heap-profiler.h +38 -21
  217. data/vendor/v8/src/heap.cc +805 -564
  218. data/vendor/v8/src/heap.h +640 -594
  219. data/vendor/v8/src/hydrogen-instructions.cc +216 -73
  220. data/vendor/v8/src/hydrogen-instructions.h +259 -124
  221. data/vendor/v8/src/hydrogen.cc +996 -1171
  222. data/vendor/v8/src/hydrogen.h +163 -144
  223. data/vendor/v8/src/ia32/assembler-ia32-inl.h +12 -11
  224. data/vendor/v8/src/ia32/assembler-ia32.cc +85 -39
  225. data/vendor/v8/src/ia32/assembler-ia32.h +82 -16
  226. data/vendor/v8/src/ia32/builtins-ia32.cc +64 -58
  227. data/vendor/v8/src/ia32/code-stubs-ia32.cc +248 -324
  228. data/vendor/v8/src/ia32/code-stubs-ia32.h +3 -44
  229. data/vendor/v8/src/ia32/codegen-ia32.cc +217 -165
  230. data/vendor/v8/src/ia32/codegen-ia32.h +3 -0
  231. data/vendor/v8/src/ia32/cpu-ia32.cc +6 -5
  232. data/vendor/v8/src/ia32/debug-ia32.cc +8 -5
  233. data/vendor/v8/src/ia32/deoptimizer-ia32.cc +124 -14
  234. data/vendor/v8/src/ia32/disasm-ia32.cc +85 -62
  235. data/vendor/v8/src/ia32/frames-ia32.h +1 -1
  236. data/vendor/v8/src/ia32/full-codegen-ia32.cc +348 -435
  237. data/vendor/v8/src/ia32/ic-ia32.cc +91 -91
  238. data/vendor/v8/src/ia32/lithium-codegen-ia32.cc +500 -255
  239. data/vendor/v8/src/ia32/lithium-codegen-ia32.h +13 -4
  240. data/vendor/v8/src/ia32/lithium-gap-resolver-ia32.cc +6 -0
  241. data/vendor/v8/src/ia32/lithium-ia32.cc +122 -45
  242. data/vendor/v8/src/ia32/lithium-ia32.h +128 -41
  243. data/vendor/v8/src/ia32/macro-assembler-ia32.cc +109 -84
  244. data/vendor/v8/src/ia32/macro-assembler-ia32.h +18 -9
  245. data/vendor/v8/src/ia32/regexp-macro-assembler-ia32.cc +26 -15
  246. data/vendor/v8/src/ia32/regexp-macro-assembler-ia32.h +1 -0
  247. data/vendor/v8/src/ia32/register-allocator-ia32.cc +30 -30
  248. data/vendor/v8/src/ia32/simulator-ia32.h +4 -4
  249. data/vendor/v8/src/ia32/stub-cache-ia32.cc +383 -400
  250. data/vendor/v8/src/ia32/virtual-frame-ia32.cc +36 -13
  251. data/vendor/v8/src/ia32/virtual-frame-ia32.h +11 -5
  252. data/vendor/v8/src/ic-inl.h +12 -2
  253. data/vendor/v8/src/ic.cc +304 -221
  254. data/vendor/v8/src/ic.h +115 -58
  255. data/vendor/v8/src/interpreter-irregexp.cc +25 -21
  256. data/vendor/v8/src/interpreter-irregexp.h +2 -1
  257. data/vendor/v8/src/isolate.cc +883 -0
  258. data/vendor/v8/src/isolate.h +1304 -0
  259. data/vendor/v8/src/json.js +10 -10
  260. data/vendor/v8/src/jsregexp.cc +111 -80
  261. data/vendor/v8/src/jsregexp.h +6 -7
  262. data/vendor/v8/src/jump-target-heavy.cc +5 -8
  263. data/vendor/v8/src/jump-target-heavy.h +0 -6
  264. data/vendor/v8/src/jump-target-inl.h +1 -1
  265. data/vendor/v8/src/jump-target-light.cc +3 -3
  266. data/vendor/v8/src/lithium-allocator-inl.h +2 -0
  267. data/vendor/v8/src/lithium-allocator.cc +42 -30
  268. data/vendor/v8/src/lithium-allocator.h +8 -22
  269. data/vendor/v8/src/lithium.cc +1 -0
  270. data/vendor/v8/src/liveedit.cc +141 -99
  271. data/vendor/v8/src/liveedit.h +7 -2
  272. data/vendor/v8/src/liveobjectlist-inl.h +90 -0
  273. data/vendor/v8/src/liveobjectlist.cc +2537 -1
  274. data/vendor/v8/src/liveobjectlist.h +245 -35
  275. data/vendor/v8/src/log-utils.cc +122 -35
  276. data/vendor/v8/src/log-utils.h +33 -36
  277. data/vendor/v8/src/log.cc +299 -241
  278. data/vendor/v8/src/log.h +177 -110
  279. data/vendor/v8/src/mark-compact.cc +612 -470
  280. data/vendor/v8/src/mark-compact.h +153 -80
  281. data/vendor/v8/src/messages.cc +16 -14
  282. data/vendor/v8/src/messages.js +30 -7
  283. data/vendor/v8/src/mips/assembler-mips-inl.h +155 -35
  284. data/vendor/v8/src/mips/assembler-mips.cc +1093 -219
  285. data/vendor/v8/src/mips/assembler-mips.h +552 -153
  286. data/vendor/v8/src/mips/builtins-mips.cc +43 -100
  287. data/vendor/v8/src/mips/code-stubs-mips.cc +752 -0
  288. data/vendor/v8/src/mips/code-stubs-mips.h +511 -0
  289. data/vendor/v8/src/mips/codegen-mips-inl.h +8 -14
  290. data/vendor/v8/src/mips/codegen-mips.cc +672 -896
  291. data/vendor/v8/src/mips/codegen-mips.h +271 -69
  292. data/vendor/v8/src/mips/constants-mips.cc +44 -20
  293. data/vendor/v8/src/mips/constants-mips.h +238 -40
  294. data/vendor/v8/src/mips/cpu-mips.cc +20 -3
  295. data/vendor/v8/src/mips/debug-mips.cc +35 -7
  296. data/vendor/v8/src/mips/deoptimizer-mips.cc +91 -0
  297. data/vendor/v8/src/mips/disasm-mips.cc +329 -93
  298. data/vendor/v8/src/mips/frames-mips.cc +2 -50
  299. data/vendor/v8/src/mips/frames-mips.h +24 -9
  300. data/vendor/v8/src/mips/full-codegen-mips.cc +473 -23
  301. data/vendor/v8/src/mips/ic-mips.cc +81 -45
  302. data/vendor/v8/src/mips/jump-target-mips.cc +11 -106
  303. data/vendor/v8/src/mips/lithium-codegen-mips.h +65 -0
  304. data/vendor/v8/src/mips/lithium-mips.h +304 -0
  305. data/vendor/v8/src/mips/macro-assembler-mips.cc +2391 -390
  306. data/vendor/v8/src/mips/macro-assembler-mips.h +718 -121
  307. data/vendor/v8/src/mips/regexp-macro-assembler-mips.cc +478 -0
  308. data/vendor/v8/src/mips/regexp-macro-assembler-mips.h +250 -0
  309. data/vendor/v8/src/mips/register-allocator-mips-inl.h +0 -3
  310. data/vendor/v8/src/mips/register-allocator-mips.h +3 -2
  311. data/vendor/v8/src/mips/simulator-mips.cc +1009 -221
  312. data/vendor/v8/src/mips/simulator-mips.h +119 -36
  313. data/vendor/v8/src/mips/stub-cache-mips.cc +331 -148
  314. data/vendor/v8/src/mips/{fast-codegen-mips.cc → virtual-frame-mips-inl.h} +11 -30
  315. data/vendor/v8/src/mips/virtual-frame-mips.cc +137 -149
  316. data/vendor/v8/src/mips/virtual-frame-mips.h +294 -312
  317. data/vendor/v8/src/mirror-debugger.js +9 -8
  318. data/vendor/v8/src/mksnapshot.cc +2 -2
  319. data/vendor/v8/src/objects-debug.cc +16 -16
  320. data/vendor/v8/src/objects-inl.h +421 -195
  321. data/vendor/v8/src/objects-printer.cc +7 -7
  322. data/vendor/v8/src/objects-visiting.cc +1 -1
  323. data/vendor/v8/src/objects-visiting.h +33 -12
  324. data/vendor/v8/src/objects.cc +935 -658
  325. data/vendor/v8/src/objects.h +234 -139
  326. data/vendor/v8/src/parser.cc +484 -439
  327. data/vendor/v8/src/parser.h +35 -14
  328. data/vendor/v8/src/platform-cygwin.cc +173 -107
  329. data/vendor/v8/src/platform-freebsd.cc +224 -72
  330. data/vendor/v8/src/platform-linux.cc +234 -95
  331. data/vendor/v8/src/platform-macos.cc +215 -82
  332. data/vendor/v8/src/platform-nullos.cc +9 -3
  333. data/vendor/v8/src/platform-openbsd.cc +22 -7
  334. data/vendor/v8/src/platform-posix.cc +30 -5
  335. data/vendor/v8/src/platform-solaris.cc +120 -38
  336. data/vendor/v8/src/platform-tls-mac.h +62 -0
  337. data/vendor/v8/src/platform-tls-win32.h +62 -0
  338. data/vendor/v8/src/platform-tls.h +50 -0
  339. data/vendor/v8/src/platform-win32.cc +195 -97
  340. data/vendor/v8/src/platform.h +72 -15
  341. data/vendor/v8/src/preparse-data.cc +2 -0
  342. data/vendor/v8/src/preparser-api.cc +8 -2
  343. data/vendor/v8/src/preparser.cc +1 -1
  344. data/vendor/v8/src/prettyprinter.cc +43 -52
  345. data/vendor/v8/src/prettyprinter.h +1 -1
  346. data/vendor/v8/src/profile-generator-inl.h +0 -28
  347. data/vendor/v8/src/profile-generator.cc +942 -685
  348. data/vendor/v8/src/profile-generator.h +210 -176
  349. data/vendor/v8/src/property.cc +6 -0
  350. data/vendor/v8/src/property.h +14 -3
  351. data/vendor/v8/src/regexp-macro-assembler-irregexp.cc +1 -1
  352. data/vendor/v8/src/regexp-macro-assembler.cc +28 -19
  353. data/vendor/v8/src/regexp-macro-assembler.h +11 -6
  354. data/vendor/v8/src/regexp-stack.cc +18 -10
  355. data/vendor/v8/src/regexp-stack.h +45 -21
  356. data/vendor/v8/src/regexp.js +3 -3
  357. data/vendor/v8/src/register-allocator-inl.h +3 -3
  358. data/vendor/v8/src/register-allocator.cc +1 -7
  359. data/vendor/v8/src/register-allocator.h +5 -15
  360. data/vendor/v8/src/rewriter.cc +2 -1
  361. data/vendor/v8/src/runtime-profiler.cc +158 -128
  362. data/vendor/v8/src/runtime-profiler.h +131 -15
  363. data/vendor/v8/src/runtime.cc +2409 -1692
  364. data/vendor/v8/src/runtime.h +93 -17
  365. data/vendor/v8/src/safepoint-table.cc +3 -0
  366. data/vendor/v8/src/safepoint-table.h +9 -3
  367. data/vendor/v8/src/scanner-base.cc +21 -28
  368. data/vendor/v8/src/scanner-base.h +22 -11
  369. data/vendor/v8/src/scanner.cc +3 -5
  370. data/vendor/v8/src/scanner.h +4 -2
  371. data/vendor/v8/src/scopeinfo.cc +11 -16
  372. data/vendor/v8/src/scopeinfo.h +26 -15
  373. data/vendor/v8/src/scopes.cc +67 -37
  374. data/vendor/v8/src/scopes.h +26 -12
  375. data/vendor/v8/src/serialize.cc +193 -154
  376. data/vendor/v8/src/serialize.h +41 -36
  377. data/vendor/v8/src/small-pointer-list.h +163 -0
  378. data/vendor/v8/src/snapshot-common.cc +1 -1
  379. data/vendor/v8/src/snapshot.h +3 -1
  380. data/vendor/v8/src/spaces-inl.h +30 -25
  381. data/vendor/v8/src/spaces.cc +263 -370
  382. data/vendor/v8/src/spaces.h +178 -166
  383. data/vendor/v8/src/string-search.cc +4 -3
  384. data/vendor/v8/src/string-search.h +21 -20
  385. data/vendor/v8/src/string-stream.cc +32 -24
  386. data/vendor/v8/src/string.js +7 -7
  387. data/vendor/v8/src/stub-cache.cc +324 -248
  388. data/vendor/v8/src/stub-cache.h +181 -155
  389. data/vendor/v8/src/token.cc +3 -3
  390. data/vendor/v8/src/token.h +3 -3
  391. data/vendor/v8/src/top.cc +218 -390
  392. data/vendor/v8/src/type-info.cc +98 -32
  393. data/vendor/v8/src/type-info.h +10 -3
  394. data/vendor/v8/src/unicode.cc +1 -1
  395. data/vendor/v8/src/unicode.h +1 -1
  396. data/vendor/v8/src/utils.h +3 -0
  397. data/vendor/v8/src/v8-counters.cc +18 -11
  398. data/vendor/v8/src/v8-counters.h +34 -13
  399. data/vendor/v8/src/v8.cc +66 -121
  400. data/vendor/v8/src/v8.h +7 -4
  401. data/vendor/v8/src/v8globals.h +18 -12
  402. data/vendor/v8/src/{memory.h → v8memory.h} +0 -0
  403. data/vendor/v8/src/v8natives.js +59 -18
  404. data/vendor/v8/src/v8threads.cc +127 -114
  405. data/vendor/v8/src/v8threads.h +42 -35
  406. data/vendor/v8/src/v8utils.h +2 -39
  407. data/vendor/v8/src/variables.h +1 -1
  408. data/vendor/v8/src/version.cc +26 -5
  409. data/vendor/v8/src/version.h +4 -0
  410. data/vendor/v8/src/virtual-frame-heavy-inl.h +2 -4
  411. data/vendor/v8/src/virtual-frame-light-inl.h +5 -4
  412. data/vendor/v8/src/vm-state-inl.h +21 -17
  413. data/vendor/v8/src/vm-state.h +7 -5
  414. data/vendor/v8/src/win32-headers.h +1 -0
  415. data/vendor/v8/src/x64/assembler-x64-inl.h +12 -11
  416. data/vendor/v8/src/x64/assembler-x64.cc +80 -40
  417. data/vendor/v8/src/x64/assembler-x64.h +67 -17
  418. data/vendor/v8/src/x64/builtins-x64.cc +34 -33
  419. data/vendor/v8/src/x64/code-stubs-x64.cc +636 -377
  420. data/vendor/v8/src/x64/code-stubs-x64.h +14 -48
  421. data/vendor/v8/src/x64/codegen-x64-inl.h +1 -1
  422. data/vendor/v8/src/x64/codegen-x64.cc +158 -136
  423. data/vendor/v8/src/x64/codegen-x64.h +4 -1
  424. data/vendor/v8/src/x64/cpu-x64.cc +7 -5
  425. data/vendor/v8/src/x64/debug-x64.cc +8 -6
  426. data/vendor/v8/src/x64/deoptimizer-x64.cc +195 -20
  427. data/vendor/v8/src/x64/disasm-x64.cc +42 -23
  428. data/vendor/v8/src/x64/frames-x64.cc +1 -1
  429. data/vendor/v8/src/x64/frames-x64.h +2 -2
  430. data/vendor/v8/src/x64/full-codegen-x64.cc +780 -218
  431. data/vendor/v8/src/x64/ic-x64.cc +77 -79
  432. data/vendor/v8/src/x64/jump-target-x64.cc +1 -1
  433. data/vendor/v8/src/x64/lithium-codegen-x64.cc +698 -181
  434. data/vendor/v8/src/x64/lithium-codegen-x64.h +31 -6
  435. data/vendor/v8/src/x64/lithium-x64.cc +136 -54
  436. data/vendor/v8/src/x64/lithium-x64.h +142 -51
  437. data/vendor/v8/src/x64/macro-assembler-x64.cc +456 -187
  438. data/vendor/v8/src/x64/macro-assembler-x64.h +166 -34
  439. data/vendor/v8/src/x64/regexp-macro-assembler-x64.cc +44 -28
  440. data/vendor/v8/src/x64/regexp-macro-assembler-x64.h +8 -4
  441. data/vendor/v8/src/x64/register-allocator-x64-inl.h +3 -3
  442. data/vendor/v8/src/x64/register-allocator-x64.cc +12 -8
  443. data/vendor/v8/src/x64/simulator-x64.h +5 -5
  444. data/vendor/v8/src/x64/stub-cache-x64.cc +299 -344
  445. data/vendor/v8/src/x64/virtual-frame-x64.cc +37 -13
  446. data/vendor/v8/src/x64/virtual-frame-x64.h +13 -7
  447. data/vendor/v8/src/zone-inl.h +49 -3
  448. data/vendor/v8/src/zone.cc +42 -41
  449. data/vendor/v8/src/zone.h +37 -34
  450. data/vendor/v8/test/benchmarks/testcfg.py +100 -0
  451. data/vendor/v8/test/cctest/SConscript +5 -4
  452. data/vendor/v8/test/cctest/cctest.h +3 -2
  453. data/vendor/v8/test/cctest/cctest.status +6 -11
  454. data/vendor/v8/test/cctest/test-accessors.cc +3 -3
  455. data/vendor/v8/test/cctest/test-alloc.cc +39 -33
  456. data/vendor/v8/test/cctest/test-api.cc +1092 -205
  457. data/vendor/v8/test/cctest/test-assembler-arm.cc +39 -25
  458. data/vendor/v8/test/cctest/test-assembler-ia32.cc +36 -37
  459. data/vendor/v8/test/cctest/test-assembler-mips.cc +1098 -40
  460. data/vendor/v8/test/cctest/test-assembler-x64.cc +32 -25
  461. data/vendor/v8/test/cctest/test-ast.cc +1 -0
  462. data/vendor/v8/test/cctest/test-circular-queue.cc +8 -5
  463. data/vendor/v8/test/cctest/test-compiler.cc +24 -24
  464. data/vendor/v8/test/cctest/test-cpu-profiler.cc +140 -5
  465. data/vendor/v8/test/cctest/test-dataflow.cc +1 -0
  466. data/vendor/v8/test/cctest/test-debug.cc +136 -77
  467. data/vendor/v8/test/cctest/test-decls.cc +1 -1
  468. data/vendor/v8/test/cctest/test-deoptimization.cc +25 -24
  469. data/vendor/v8/test/cctest/test-disasm-arm.cc +9 -4
  470. data/vendor/v8/test/cctest/test-disasm-ia32.cc +10 -8
  471. data/vendor/v8/test/cctest/test-func-name-inference.cc +10 -4
  472. data/vendor/v8/test/cctest/test-heap-profiler.cc +226 -164
  473. data/vendor/v8/test/cctest/test-heap.cc +240 -217
  474. data/vendor/v8/test/cctest/test-liveedit.cc +1 -0
  475. data/vendor/v8/test/cctest/test-log-stack-tracer.cc +18 -20
  476. data/vendor/v8/test/cctest/test-log.cc +114 -108
  477. data/vendor/v8/test/cctest/test-macro-assembler-x64.cc +247 -177
  478. data/vendor/v8/test/cctest/test-mark-compact.cc +129 -90
  479. data/vendor/v8/test/cctest/test-parsing.cc +15 -14
  480. data/vendor/v8/test/cctest/test-platform-linux.cc +1 -0
  481. data/vendor/v8/test/cctest/test-platform-tls.cc +66 -0
  482. data/vendor/v8/test/cctest/test-platform-win32.cc +1 -0
  483. data/vendor/v8/test/cctest/test-profile-generator.cc +1 -1
  484. data/vendor/v8/test/cctest/test-regexp.cc +53 -41
  485. data/vendor/v8/test/cctest/test-reloc-info.cc +18 -11
  486. data/vendor/v8/test/cctest/test-serialize.cc +44 -43
  487. data/vendor/v8/test/cctest/test-sockets.cc +8 -3
  488. data/vendor/v8/test/cctest/test-spaces.cc +47 -29
  489. data/vendor/v8/test/cctest/test-strings.cc +20 -20
  490. data/vendor/v8/test/cctest/test-thread-termination.cc +8 -3
  491. data/vendor/v8/test/cctest/test-threads.cc +5 -3
  492. data/vendor/v8/test/cctest/test-utils.cc +5 -4
  493. data/vendor/v8/test/cctest/testcfg.py +7 -3
  494. data/vendor/v8/test/es5conform/es5conform.status +2 -77
  495. data/vendor/v8/test/es5conform/testcfg.py +1 -1
  496. data/vendor/v8/test/message/testcfg.py +1 -1
  497. data/vendor/v8/test/mjsunit/accessors-on-global-object.js +3 -3
  498. data/vendor/v8/test/mjsunit/array-concat.js +43 -1
  499. data/vendor/v8/test/mjsunit/array-join.js +25 -0
  500. data/vendor/v8/test/mjsunit/bitops-info.js +7 -1
  501. data/vendor/v8/test/mjsunit/compiler/array-length.js +2 -2
  502. data/vendor/v8/test/mjsunit/compiler/global-accessors.js +47 -0
  503. data/vendor/v8/test/mjsunit/compiler/pic.js +1 -1
  504. data/vendor/v8/test/mjsunit/compiler/regress-loadfield.js +65 -0
  505. data/vendor/v8/test/mjsunit/math-sqrt.js +5 -1
  506. data/vendor/v8/test/mjsunit/mjsunit.js +59 -8
  507. data/vendor/v8/test/mjsunit/mjsunit.status +0 -12
  508. data/vendor/v8/test/mjsunit/mul-exhaustive.js +129 -11
  509. data/vendor/v8/test/mjsunit/negate-zero.js +1 -1
  510. data/vendor/v8/test/mjsunit/object-freeze.js +5 -13
  511. data/vendor/v8/test/mjsunit/object-prevent-extensions.js +9 -50
  512. data/vendor/v8/test/mjsunit/object-seal.js +4 -13
  513. data/vendor/v8/test/mjsunit/override-eval-with-non-function.js +36 -0
  514. data/vendor/v8/test/mjsunit/regress/regress-1145.js +54 -0
  515. data/vendor/v8/test/mjsunit/regress/regress-1172-bis.js +37 -0
  516. data/vendor/v8/test/mjsunit/regress/regress-1181.js +54 -0
  517. data/vendor/v8/test/mjsunit/regress/regress-1207.js +35 -0
  518. data/vendor/v8/test/mjsunit/regress/regress-1209.js +34 -0
  519. data/vendor/v8/test/mjsunit/regress/regress-1210.js +48 -0
  520. data/vendor/v8/test/mjsunit/regress/regress-1213.js +43 -0
  521. data/vendor/v8/test/mjsunit/regress/regress-1218.js +29 -0
  522. data/vendor/v8/test/mjsunit/regress/regress-1229.js +79 -0
  523. data/vendor/v8/test/mjsunit/regress/regress-1233.js +47 -0
  524. data/vendor/v8/test/mjsunit/regress/regress-1236.js +34 -0
  525. data/vendor/v8/test/mjsunit/regress/regress-1237.js +36 -0
  526. data/vendor/v8/test/mjsunit/regress/regress-1240.js +39 -0
  527. data/vendor/v8/test/mjsunit/regress/regress-1257.js +58 -0
  528. data/vendor/v8/test/mjsunit/regress/regress-1278.js +69 -0
  529. data/vendor/v8/test/mjsunit/regress/regress-create-exception.js +1 -0
  530. data/vendor/v8/test/mjsunit/regress/regress-lazy-deopt-reloc.js +52 -0
  531. data/vendor/v8/test/mjsunit/sin-cos.js +15 -10
  532. data/vendor/v8/test/mjsunit/smi-negative-zero.js +2 -2
  533. data/vendor/v8/test/mjsunit/str-to-num.js +1 -1
  534. data/vendor/v8/test/mjsunit/strict-mode.js +435 -0
  535. data/vendor/v8/test/mjsunit/testcfg.py +23 -6
  536. data/vendor/v8/test/mozilla/mozilla.status +0 -2
  537. data/vendor/v8/test/mozilla/testcfg.py +1 -1
  538. data/vendor/v8/test/preparser/empty.js +28 -0
  539. data/vendor/v8/test/preparser/functions-only.js +38 -0
  540. data/vendor/v8/test/preparser/non-alphanum.js +34 -0
  541. data/vendor/v8/test/preparser/symbols-only.js +49 -0
  542. data/vendor/v8/test/preparser/testcfg.py +90 -0
  543. data/vendor/v8/test/sputnik/testcfg.py +1 -1
  544. data/vendor/v8/test/test262/README +16 -0
  545. data/vendor/v8/test/test262/harness-adapt.js +80 -0
  546. data/vendor/v8/test/test262/test262.status +1506 -0
  547. data/vendor/v8/test/test262/testcfg.py +123 -0
  548. data/vendor/v8/tools/freebsd-tick-processor +10 -0
  549. data/vendor/v8/tools/gyp/v8.gyp +8 -33
  550. data/vendor/v8/tools/linux-tick-processor +5 -3
  551. data/vendor/v8/tools/test.py +37 -14
  552. data/vendor/v8/tools/tickprocessor.js +22 -8
  553. data/vendor/v8/tools/visual_studio/v8_base.vcproj +13 -1
  554. data/vendor/v8/tools/visual_studio/v8_base_arm.vcproj +5 -1
  555. data/vendor/v8/tools/visual_studio/v8_base_x64.vcproj +5 -1
  556. data/vendor/v8/tools/visual_studio/x64.vsprops +1 -0
  557. metadata +1495 -1341
  558. data/ext/extconf.rb +0 -22
  559. data/ext/mustang.cpp +0 -58
  560. data/vendor/v8/src/top.h +0 -608
@@ -39,16 +39,25 @@
39
39
  #if defined(V8_TARGET_ARCH_MIPS)
40
40
 
41
41
  #include "cpu.h"
42
+ #include "macro-assembler.h"
43
+
44
+ #include "simulator.h" // For cache flushing.
42
45
 
43
46
  namespace v8 {
44
47
  namespace internal {
45
48
 
49
+
46
50
  void CPU::Setup() {
47
- // Nothing to do.
51
+ CpuFeatures* cpu_features = Isolate::Current()->cpu_features();
52
+ cpu_features->Probe(true);
53
+ if (!cpu_features->IsSupported(FPU) || Serializer::enabled()) {
54
+ V8::DisableCrankshaft();
55
+ }
48
56
  }
49
57
 
58
+
50
59
  void CPU::FlushICache(void* start, size_t size) {
51
- #ifdef __mips
60
+ #if !defined (USE_SIMULATOR)
52
61
  int res;
53
62
 
54
63
  // See http://www.linux-mips.org/wiki/Cacheflush_Syscall
@@ -58,7 +67,14 @@ void CPU::FlushICache(void* start, size_t size) {
58
67
  V8_Fatal(__FILE__, __LINE__, "Failed to flush the instruction cache");
59
68
  }
60
69
 
61
- #endif // #ifdef __mips
70
+ #else // USE_SIMULATOR.
71
+ // Not generating mips instructions for C-code. This means that we are
72
+ // building a mips emulator based target. We should notify the simulator
73
+ // that the Icache was flushed.
74
+ // None of this code ends up in the snapshot so there are no issues
75
+ // around whether or not to generate the code when building snapshots.
76
+ Simulator::FlushICache(Isolate::Current()->simulator_i_cache(), start, size);
77
+ #endif // USE_SIMULATOR.
62
78
  }
63
79
 
64
80
 
@@ -68,6 +84,7 @@ void CPU::DebugBreak() {
68
84
  #endif // #ifdef __mips
69
85
  }
70
86
 
87
+
71
88
  } } // namespace v8::internal
72
89
 
73
90
  #endif // V8_TARGET_ARCH_MIPS
@@ -38,8 +38,10 @@ namespace v8 {
38
38
  namespace internal {
39
39
 
40
40
  #ifdef ENABLE_DEBUGGER_SUPPORT
41
+
41
42
  bool BreakLocationIterator::IsDebugBreakAtReturn() {
42
- return Debug::IsDebugBreakAtReturn(rinfo());
43
+ UNIMPLEMENTED_MIPS();
44
+ return false;
43
45
  }
44
46
 
45
47
 
@@ -54,16 +56,31 @@ void BreakLocationIterator::ClearDebugBreakAtReturn() {
54
56
  }
55
57
 
56
58
 
57
- // A debug break in the exit code is identified by a call.
59
+ // A debug break in the exit code is identified by the JS frame exit code
60
+ // having been patched with li/call psuedo-instrunction (liu/ori/jalr)
58
61
  bool Debug::IsDebugBreakAtReturn(RelocInfo* rinfo) {
59
- ASSERT(RelocInfo::IsJSReturn(rinfo->rmode()));
60
- return rinfo->IsPatchedReturnSequence();
62
+ UNIMPLEMENTED_MIPS();
63
+ return false;
61
64
  }
62
65
 
63
66
 
64
- #define __ ACCESS_MASM(masm)
67
+ bool BreakLocationIterator::IsDebugBreakAtSlot() {
68
+ UNIMPLEMENTED_MIPS();
69
+ return false;
70
+ }
71
+
72
+
73
+ void BreakLocationIterator::SetDebugBreakAtSlot() {
74
+ UNIMPLEMENTED_MIPS();
75
+ }
76
+
77
+
78
+ void BreakLocationIterator::ClearDebugBreakAtSlot() {
79
+ UNIMPLEMENTED_MIPS();
80
+ }
65
81
 
66
82
 
83
+ #define __ ACCESS_MASM(masm)
67
84
 
68
85
 
69
86
  void Debug::GenerateLoadICDebugBreak(MacroAssembler* masm) {
@@ -106,12 +123,23 @@ void Debug::GenerateStubNoRegistersDebugBreak(MacroAssembler* masm) {
106
123
  }
107
124
 
108
125
 
126
+ void Debug::GenerateSlot(MacroAssembler* masm) {
127
+ UNIMPLEMENTED_MIPS();
128
+ }
129
+
130
+
131
+ void Debug::GenerateSlotDebugBreak(MacroAssembler* masm) {
132
+ UNIMPLEMENTED_MIPS();
133
+ }
134
+
135
+
109
136
  void Debug::GeneratePlainReturnLiveEdit(MacroAssembler* masm) {
110
- masm->Abort("LiveEdit frame dropping is not supported on mips");
137
+ UNIMPLEMENTED_MIPS();
111
138
  }
112
139
 
140
+
113
141
  void Debug::GenerateFrameDropperLiveEdit(MacroAssembler* masm) {
114
- masm->Abort("LiveEdit frame dropping is not supported on mips");
142
+ UNIMPLEMENTED_MIPS();
115
143
  }
116
144
 
117
145
 
@@ -0,0 +1,91 @@
1
+ // Copyright 2011 the V8 project authors. All rights reserved.
2
+ // Redistribution and use in source and binary forms, with or without
3
+ // modification, are permitted provided that the following conditions are
4
+ // met:
5
+ //
6
+ // * Redistributions of source code must retain the above copyright
7
+ // notice, this list of conditions and the following disclaimer.
8
+ // * Redistributions in binary form must reproduce the above
9
+ // copyright notice, this list of conditions and the following
10
+ // disclaimer in the documentation and/or other materials provided
11
+ // with the distribution.
12
+ // * Neither the name of Google Inc. nor the names of its
13
+ // contributors may be used to endorse or promote products derived
14
+ // from this software without specific prior written permission.
15
+ //
16
+ // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17
+ // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18
+ // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19
+ // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20
+ // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
+ // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
+ // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
+ // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
+ // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
+ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
+ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
+
28
+ #include "v8.h"
29
+
30
+ #include "codegen.h"
31
+ #include "deoptimizer.h"
32
+ #include "full-codegen.h"
33
+ #include "safepoint-table.h"
34
+
35
+ // Note: this file was taken from the X64 version. ARM has a partially working
36
+ // lithium implementation, but for now it is not ported to mips.
37
+
38
+ namespace v8 {
39
+ namespace internal {
40
+
41
+
42
+ int Deoptimizer::table_entry_size_ = 10;
43
+
44
+
45
+ int Deoptimizer::patch_size() {
46
+ const int kCallInstructionSizeInWords = 3;
47
+ return kCallInstructionSizeInWords * Assembler::kInstrSize;
48
+ }
49
+
50
+
51
+ void Deoptimizer::DeoptimizeFunction(JSFunction* function) {
52
+ UNIMPLEMENTED();
53
+ }
54
+
55
+
56
+ void Deoptimizer::PatchStackCheckCodeAt(Address pc_after,
57
+ Code* check_code,
58
+ Code* replacement_code) {
59
+ UNIMPLEMENTED();
60
+ }
61
+
62
+
63
+ void Deoptimizer::RevertStackCheckCodeAt(Address pc_after,
64
+ Code* check_code,
65
+ Code* replacement_code) {
66
+ UNIMPLEMENTED();
67
+ }
68
+
69
+
70
+ void Deoptimizer::DoComputeOsrOutputFrame() {
71
+ UNIMPLEMENTED();
72
+ }
73
+
74
+
75
+ void Deoptimizer::DoComputeFrame(TranslationIterator* iterator,
76
+ int frame_index) {
77
+ UNIMPLEMENTED();
78
+ }
79
+
80
+
81
+ void Deoptimizer::EntryGenerator::Generate() {
82
+ UNIMPLEMENTED();
83
+ }
84
+
85
+
86
+ void Deoptimizer::TableEntryGenerator::GeneratePrologue() {
87
+ UNIMPLEMENTED();
88
+ }
89
+
90
+
91
+ } } // namespace v8::internal
@@ -34,10 +34,9 @@
34
34
  // NameConverter converter;
35
35
  // Disassembler d(converter);
36
36
  // for (byte_* pc = begin; pc < end;) {
37
- // char buffer[128];
38
- // buffer[0] = '\0';
39
- // byte_* prev_pc = pc;
40
- // pc += d.InstructionDecode(buffer, sizeof buffer, pc);
37
+ // v8::internal::EmbeddedVector<char, 256> buffer;
38
+ // byte* prev_pc = pc;
39
+ // pc += d.InstructionDecode(buffer, pc);
41
40
  // printf("%p %08x %s\n",
42
41
  // prev_pc, *reinterpret_cast<int32_t*>(prev_pc), buffer);
43
42
  // }
@@ -59,17 +58,13 @@
59
58
 
60
59
  #if defined(V8_TARGET_ARCH_MIPS)
61
60
 
62
- #include "constants-mips.h"
61
+ #include "mips/constants-mips.h"
63
62
  #include "disasm.h"
64
63
  #include "macro-assembler.h"
65
64
  #include "platform.h"
66
65
 
67
- namespace assembler {
68
- namespace mips {
69
-
70
-
71
- namespace v8i = v8::internal;
72
-
66
+ namespace v8 {
67
+ namespace internal {
73
68
 
74
69
  //------------------------------------------------------------------------------
75
70
 
@@ -99,7 +94,7 @@ class Decoder {
99
94
 
100
95
  // Printing of common values.
101
96
  void PrintRegister(int reg);
102
- void PrintCRegister(int creg);
97
+ void PrintFPURegister(int freg);
103
98
  void PrintRs(Instruction* instr);
104
99
  void PrintRt(Instruction* instr);
105
100
  void PrintRd(Instruction* instr);
@@ -107,6 +102,9 @@ class Decoder {
107
102
  void PrintFt(Instruction* instr);
108
103
  void PrintFd(Instruction* instr);
109
104
  void PrintSa(Instruction* instr);
105
+ void PrintSd(Instruction* instr);
106
+ void PrintBc(Instruction* instr);
107
+ void PrintCc(Instruction* instr);
110
108
  void PrintFunction(Instruction* instr);
111
109
  void PrintSecondaryField(Instruction* instr);
112
110
  void PrintUImm16(Instruction* instr);
@@ -119,7 +117,7 @@ class Decoder {
119
117
 
120
118
  // Handle formatting of instructions and their options.
121
119
  int FormatRegister(Instruction* instr, const char* option);
122
- int FormatCRegister(Instruction* instr, const char* option);
120
+ int FormatFPURegister(Instruction* instr, const char* option);
123
121
  int FormatOption(Instruction* instr, const char* option);
124
122
  void Format(Instruction* instr, const char* format);
125
123
  void Unknown(Instruction* instr);
@@ -166,84 +164,100 @@ void Decoder::PrintRegister(int reg) {
166
164
 
167
165
 
168
166
  void Decoder::PrintRs(Instruction* instr) {
169
- int reg = instr->RsField();
167
+ int reg = instr->RsValue();
170
168
  PrintRegister(reg);
171
169
  }
172
170
 
173
171
 
174
172
  void Decoder::PrintRt(Instruction* instr) {
175
- int reg = instr->RtField();
173
+ int reg = instr->RtValue();
176
174
  PrintRegister(reg);
177
175
  }
178
176
 
179
177
 
180
178
  void Decoder::PrintRd(Instruction* instr) {
181
- int reg = instr->RdField();
179
+ int reg = instr->RdValue();
182
180
  PrintRegister(reg);
183
181
  }
184
182
 
185
183
 
186
- // Print the Cregister name according to the active name converter.
187
- void Decoder::PrintCRegister(int creg) {
188
- Print(converter_.NameOfXMMRegister(creg));
184
+ // Print the FPUregister name according to the active name converter.
185
+ void Decoder::PrintFPURegister(int freg) {
186
+ Print(converter_.NameOfXMMRegister(freg));
189
187
  }
190
188
 
191
189
 
192
190
  void Decoder::PrintFs(Instruction* instr) {
193
- int creg = instr->RsField();
194
- PrintCRegister(creg);
191
+ int freg = instr->RsValue();
192
+ PrintFPURegister(freg);
195
193
  }
196
194
 
197
195
 
198
196
  void Decoder::PrintFt(Instruction* instr) {
199
- int creg = instr->RtField();
200
- PrintCRegister(creg);
197
+ int freg = instr->RtValue();
198
+ PrintFPURegister(freg);
201
199
  }
202
200
 
203
201
 
204
202
  void Decoder::PrintFd(Instruction* instr) {
205
- int creg = instr->RdField();
206
- PrintCRegister(creg);
203
+ int freg = instr->RdValue();
204
+ PrintFPURegister(freg);
207
205
  }
208
206
 
209
207
 
210
208
  // Print the integer value of the sa field.
211
209
  void Decoder::PrintSa(Instruction* instr) {
212
- int sa = instr->SaField();
213
- out_buffer_pos_ += v8i::OS::SNPrintF(out_buffer_ + out_buffer_pos_,
214
- "%d", sa);
210
+ int sa = instr->SaValue();
211
+ out_buffer_pos_ += OS::SNPrintF(out_buffer_ + out_buffer_pos_, "%d", sa);
212
+ }
213
+
214
+
215
+ // Print the integer value of the rd field, (when it is not used as reg).
216
+ void Decoder::PrintSd(Instruction* instr) {
217
+ int sd = instr->RdValue();
218
+ out_buffer_pos_ += OS::SNPrintF(out_buffer_ + out_buffer_pos_, "%d", sd);
219
+ }
220
+
221
+
222
+ // Print the integer value of the cc field for the bc1t/f instructions.
223
+ void Decoder::PrintBc(Instruction* instr) {
224
+ int cc = instr->FBccValue();
225
+ out_buffer_pos_ += OS::SNPrintF(out_buffer_ + out_buffer_pos_, "%d", cc);
226
+ }
227
+
228
+
229
+ // Print the integer value of the cc field for the FP compare instructions.
230
+ void Decoder::PrintCc(Instruction* instr) {
231
+ int cc = instr->FCccValue();
232
+ out_buffer_pos_ += OS::SNPrintF(out_buffer_ + out_buffer_pos_, "cc(%d)", cc);
215
233
  }
216
234
 
217
235
 
218
236
  // Print 16-bit unsigned immediate value.
219
237
  void Decoder::PrintUImm16(Instruction* instr) {
220
- int32_t imm = instr->Imm16Field();
221
- out_buffer_pos_ += v8i::OS::SNPrintF(out_buffer_ + out_buffer_pos_,
222
- "%u", imm);
238
+ int32_t imm = instr->Imm16Value();
239
+ out_buffer_pos_ += OS::SNPrintF(out_buffer_ + out_buffer_pos_, "%u", imm);
223
240
  }
224
241
 
225
242
 
226
243
  // Print 16-bit signed immediate value.
227
244
  void Decoder::PrintSImm16(Instruction* instr) {
228
- int32_t imm = ((instr->Imm16Field())<<16)>>16;
229
- out_buffer_pos_ += v8i::OS::SNPrintF(out_buffer_ + out_buffer_pos_,
230
- "%d", imm);
245
+ int32_t imm = ((instr->Imm16Value())<<16)>>16;
246
+ out_buffer_pos_ += OS::SNPrintF(out_buffer_ + out_buffer_pos_, "%d", imm);
231
247
  }
232
248
 
233
249
 
234
250
  // Print 16-bit hexa immediate value.
235
251
  void Decoder::PrintXImm16(Instruction* instr) {
236
- int32_t imm = instr->Imm16Field();
237
- out_buffer_pos_ += v8i::OS::SNPrintF(out_buffer_ + out_buffer_pos_,
238
- "0x%x", imm);
252
+ int32_t imm = instr->Imm16Value();
253
+ out_buffer_pos_ += OS::SNPrintF(out_buffer_ + out_buffer_pos_, "0x%x", imm);
239
254
  }
240
255
 
241
256
 
242
257
  // Print 26-bit immediate value.
243
258
  void Decoder::PrintImm26(Instruction* instr) {
244
- int32_t imm = instr->Imm26Field();
245
- out_buffer_pos_ += v8i::OS::SNPrintF(out_buffer_ + out_buffer_pos_,
246
- "%d", imm);
259
+ int32_t imm = instr->Imm26Value();
260
+ out_buffer_pos_ += OS::SNPrintF(out_buffer_ + out_buffer_pos_, "%d", imm);
247
261
  }
248
262
 
249
263
 
@@ -254,8 +268,8 @@ void Decoder::PrintCode(Instruction* instr) {
254
268
  switch (instr->FunctionFieldRaw()) {
255
269
  case BREAK: {
256
270
  int32_t code = instr->Bits(25, 6);
257
- out_buffer_pos_ +=
258
- v8i::OS::SNPrintF(out_buffer_ + out_buffer_pos_, "0x%05x", code);
271
+ out_buffer_pos_ += OS::SNPrintF(out_buffer_ + out_buffer_pos_,
272
+ "0x%05x (%d)", code, code);
259
273
  break;
260
274
  }
261
275
  case TGE:
@@ -266,7 +280,7 @@ void Decoder::PrintCode(Instruction* instr) {
266
280
  case TNE: {
267
281
  int32_t code = instr->Bits(15, 6);
268
282
  out_buffer_pos_ +=
269
- v8i::OS::SNPrintF(out_buffer_ + out_buffer_pos_, "0x%03x", code);
283
+ OS::SNPrintF(out_buffer_ + out_buffer_pos_, "0x%03x", code);
270
284
  break;
271
285
  }
272
286
  default: // Not a break or trap instruction.
@@ -285,15 +299,15 @@ void Decoder::PrintInstructionName(Instruction* instr) {
285
299
  int Decoder::FormatRegister(Instruction* instr, const char* format) {
286
300
  ASSERT(format[0] == 'r');
287
301
  if (format[1] == 's') { // 'rs: Rs register
288
- int reg = instr->RsField();
302
+ int reg = instr->RsValue();
289
303
  PrintRegister(reg);
290
304
  return 2;
291
305
  } else if (format[1] == 't') { // 'rt: rt register
292
- int reg = instr->RtField();
306
+ int reg = instr->RtValue();
293
307
  PrintRegister(reg);
294
308
  return 2;
295
309
  } else if (format[1] == 'd') { // 'rd: rd register
296
- int reg = instr->RdField();
310
+ int reg = instr->RdValue();
297
311
  PrintRegister(reg);
298
312
  return 2;
299
313
  }
@@ -302,21 +316,21 @@ int Decoder::FormatRegister(Instruction* instr, const char* format) {
302
316
  }
303
317
 
304
318
 
305
- // Handle all Cregister based formatting in this function to reduce the
319
+ // Handle all FPUregister based formatting in this function to reduce the
306
320
  // complexity of FormatOption.
307
- int Decoder::FormatCRegister(Instruction* instr, const char* format) {
321
+ int Decoder::FormatFPURegister(Instruction* instr, const char* format) {
308
322
  ASSERT(format[0] == 'f');
309
323
  if (format[1] == 's') { // 'fs: fs register
310
- int reg = instr->RsField();
311
- PrintCRegister(reg);
324
+ int reg = instr->FsValue();
325
+ PrintFPURegister(reg);
312
326
  return 2;
313
327
  } else if (format[1] == 't') { // 'ft: ft register
314
- int reg = instr->RtField();
315
- PrintCRegister(reg);
328
+ int reg = instr->FtValue();
329
+ PrintFPURegister(reg);
316
330
  return 2;
317
331
  } else if (format[1] == 'd') { // 'fd: fd register
318
- int reg = instr->RdField();
319
- PrintCRegister(reg);
332
+ int reg = instr->FdValue();
333
+ PrintFPURegister(reg);
320
334
  return 2;
321
335
  }
322
336
  UNREACHABLE();
@@ -359,12 +373,31 @@ int Decoder::FormatOption(Instruction* instr, const char* format) {
359
373
  case 'r': { // 'r: registers
360
374
  return FormatRegister(instr, format);
361
375
  }
362
- case 'f': { // 'f: Cregisters
363
- return FormatCRegister(instr, format);
376
+ case 'f': { // 'f: FPUregisters
377
+ return FormatFPURegister(instr, format);
364
378
  }
365
379
  case 's': { // 'sa
366
- ASSERT(STRING_STARTS_WITH(format, "sa"));
367
- PrintSa(instr);
380
+ switch (format[1]) {
381
+ case 'a': {
382
+ ASSERT(STRING_STARTS_WITH(format, "sa"));
383
+ PrintSa(instr);
384
+ return 2;
385
+ }
386
+ case 'd': {
387
+ ASSERT(STRING_STARTS_WITH(format, "sd"));
388
+ PrintSd(instr);
389
+ return 2;
390
+ }
391
+ }
392
+ }
393
+ case 'b': { // 'bc - Special for bc1 cc field.
394
+ ASSERT(STRING_STARTS_WITH(format, "bc"));
395
+ PrintBc(instr);
396
+ return 2;
397
+ }
398
+ case 'C': { // 'Cc - Special for c.xx.d cc field.
399
+ ASSERT(STRING_STARTS_WITH(format, "Cc"));
400
+ PrintCc(instr);
368
401
  return 2;
369
402
  }
370
403
  };
@@ -401,45 +434,160 @@ void Decoder::DecodeTypeRegister(Instruction* instr) {
401
434
  switch (instr->OpcodeFieldRaw()) {
402
435
  case COP1: // Coprocessor instructions
403
436
  switch (instr->RsFieldRaw()) {
404
- case BC1: // branch on coprocessor condition
437
+ case BC1: // bc1 handled in DecodeTypeImmediate.
405
438
  UNREACHABLE();
406
439
  break;
407
440
  case MFC1:
408
- Format(instr, "mfc1 'rt, 'fs");
441
+ Format(instr, "mfc1 'rt, 'fs");
409
442
  break;
410
443
  case MFHC1:
411
- Format(instr, "mfhc1 rt, 'fs");
444
+ Format(instr, "mfhc1 'rt, 'fs");
412
445
  break;
413
446
  case MTC1:
414
- Format(instr, "mtc1 'rt, 'fs");
447
+ Format(instr, "mtc1 'rt, 'fs");
448
+ break;
449
+ // These are called "fs" too, although they are not FPU registers.
450
+ case CTC1:
451
+ Format(instr, "ctc1 'rt, 'fs");
452
+ break;
453
+ case CFC1:
454
+ Format(instr, "cfc1 'rt, 'fs");
415
455
  break;
416
456
  case MTHC1:
417
- Format(instr, "mthc1 rt, 'fs");
457
+ Format(instr, "mthc1 'rt, 'fs");
418
458
  break;
419
- case S:
420
459
  case D:
460
+ switch (instr->FunctionFieldRaw()) {
461
+ case ADD_D:
462
+ Format(instr, "add.d 'fd, 'fs, 'ft");
463
+ break;
464
+ case SUB_D:
465
+ Format(instr, "sub.d 'fd, 'fs, 'ft");
466
+ break;
467
+ case MUL_D:
468
+ Format(instr, "mul.d 'fd, 'fs, 'ft");
469
+ break;
470
+ case DIV_D:
471
+ Format(instr, "div.d 'fd, 'fs, 'ft");
472
+ break;
473
+ case ABS_D:
474
+ Format(instr, "abs.d 'fd, 'fs");
475
+ break;
476
+ case MOV_D:
477
+ Format(instr, "mov.d 'fd, 'fs");
478
+ break;
479
+ case NEG_D:
480
+ Format(instr, "neg.d 'fd, 'fs");
481
+ break;
482
+ case SQRT_D:
483
+ Format(instr, "sqrt.d 'fd, 'fs");
484
+ break;
485
+ case CVT_W_D:
486
+ Format(instr, "cvt.w.d 'fd, 'fs");
487
+ break;
488
+ case CVT_L_D: {
489
+ if (mips32r2) {
490
+ Format(instr, "cvt.l.d 'fd, 'fs");
491
+ } else {
492
+ Unknown(instr);
493
+ }
494
+ break;
495
+ }
496
+ case TRUNC_W_D:
497
+ Format(instr, "trunc.w.d 'fd, 'fs");
498
+ break;
499
+ case TRUNC_L_D: {
500
+ if (mips32r2) {
501
+ Format(instr, "trunc.l.d 'fd, 'fs");
502
+ } else {
503
+ Unknown(instr);
504
+ }
505
+ break;
506
+ }
507
+ case ROUND_W_D:
508
+ Format(instr, "round.w.d 'fd, 'fs");
509
+ break;
510
+ case FLOOR_W_D:
511
+ Format(instr, "floor.w.d 'fd, 'fs");
512
+ break;
513
+ case CEIL_W_D:
514
+ Format(instr, "ceil.w.d 'fd, 'fs");
515
+ break;
516
+ case CVT_S_D:
517
+ Format(instr, "cvt.s.d 'fd, 'fs");
518
+ break;
519
+ case C_F_D:
520
+ Format(instr, "c.f.d 'fs, 'ft, 'Cc");
521
+ break;
522
+ case C_UN_D:
523
+ Format(instr, "c.un.d 'fs, 'ft, 'Cc");
524
+ break;
525
+ case C_EQ_D:
526
+ Format(instr, "c.eq.d 'fs, 'ft, 'Cc");
527
+ break;
528
+ case C_UEQ_D:
529
+ Format(instr, "c.ueq.d 'fs, 'ft, 'Cc");
530
+ break;
531
+ case C_OLT_D:
532
+ Format(instr, "c.olt.d 'fs, 'ft, 'Cc");
533
+ break;
534
+ case C_ULT_D:
535
+ Format(instr, "c.ult.d 'fs, 'ft, 'Cc");
536
+ break;
537
+ case C_OLE_D:
538
+ Format(instr, "c.ole.d 'fs, 'ft, 'Cc");
539
+ break;
540
+ case C_ULE_D:
541
+ Format(instr, "c.ule.d 'fs, 'ft, 'Cc");
542
+ break;
543
+ default:
544
+ Format(instr, "unknown.cop1.d");
545
+ break;
546
+ }
547
+ break;
548
+ case S:
421
549
  UNIMPLEMENTED_MIPS();
422
550
  break;
423
551
  case W:
424
552
  switch (instr->FunctionFieldRaw()) {
425
- case CVT_S_W:
426
- UNIMPLEMENTED_MIPS();
553
+ case CVT_S_W: // Convert word to float (single).
554
+ Format(instr, "cvt.s.w 'fd, 'fs");
427
555
  break;
428
556
  case CVT_D_W: // Convert word to double.
429
- Format(instr, "cvt.d.w 'fd, 'fs");
557
+ Format(instr, "cvt.d.w 'fd, 'fs");
430
558
  break;
431
559
  default:
432
560
  UNREACHABLE();
433
- };
561
+ }
434
562
  break;
435
563
  case L:
564
+ switch (instr->FunctionFieldRaw()) {
565
+ case CVT_D_L: {
566
+ if (mips32r2) {
567
+ Format(instr, "cvt.d.l 'fd, 'fs");
568
+ } else {
569
+ Unknown(instr);
570
+ }
571
+ break;
572
+ }
573
+ case CVT_S_L: {
574
+ if (mips32r2) {
575
+ Format(instr, "cvt.s.l 'fd, 'fs");
576
+ } else {
577
+ Unknown(instr);
578
+ }
579
+ break;
580
+ }
581
+ default:
582
+ UNREACHABLE();
583
+ }
584
+ break;
436
585
  case PS:
437
586
  UNIMPLEMENTED_MIPS();
438
587
  break;
439
- break;
440
588
  default:
441
589
  UNREACHABLE();
442
- };
590
+ }
443
591
  break;
444
592
  case SPECIAL:
445
593
  switch (instr->FunctionFieldRaw()) {
@@ -456,7 +604,15 @@ void Decoder::DecodeTypeRegister(Instruction* instr) {
456
604
  Format(instr, "sll 'rd, 'rt, 'sa");
457
605
  break;
458
606
  case SRL:
459
- Format(instr, "srl 'rd, 'rt, 'sa");
607
+ if (instr->RsValue() == 0) {
608
+ Format(instr, "srl 'rd, 'rt, 'sa");
609
+ } else {
610
+ if (mips32r2) {
611
+ Format(instr, "rotr 'rd, 'rt, 'sa");
612
+ } else {
613
+ Unknown(instr);
614
+ }
615
+ }
460
616
  break;
461
617
  case SRA:
462
618
  Format(instr, "sra 'rd, 'rt, 'sa");
@@ -465,7 +621,15 @@ void Decoder::DecodeTypeRegister(Instruction* instr) {
465
621
  Format(instr, "sllv 'rd, 'rt, 'rs");
466
622
  break;
467
623
  case SRLV:
468
- Format(instr, "srlv 'rd, 'rt, 'rs");
624
+ if (instr->SaValue() == 0) {
625
+ Format(instr, "srlv 'rd, 'rt, 'rs");
626
+ } else {
627
+ if (mips32r2) {
628
+ Format(instr, "rotrv 'rd, 'rt, 'rs");
629
+ } else {
630
+ Unknown(instr);
631
+ }
632
+ }
469
633
  break;
470
634
  case SRAV:
471
635
  Format(instr, "srav 'rd, 'rt, 'rs");
@@ -504,9 +668,9 @@ void Decoder::DecodeTypeRegister(Instruction* instr) {
504
668
  Format(instr, "and 'rd, 'rs, 'rt");
505
669
  break;
506
670
  case OR:
507
- if (0 == instr->RsField()) {
671
+ if (0 == instr->RsValue()) {
508
672
  Format(instr, "mov 'rd, 'rt");
509
- } else if (0 == instr->RtField()) {
673
+ } else if (0 == instr->RtValue()) {
510
674
  Format(instr, "mov 'rd, 'rs");
511
675
  } else {
512
676
  Format(instr, "or 'rd, 'rs, 'rt");
@@ -545,27 +709,79 @@ void Decoder::DecodeTypeRegister(Instruction* instr) {
545
709
  case TNE:
546
710
  Format(instr, "tne 'rs, 'rt, code: 'code");
547
711
  break;
712
+ case MOVZ:
713
+ Format(instr, "movz 'rd, 'rs, 'rt");
714
+ break;
715
+ case MOVN:
716
+ Format(instr, "movn 'rd, 'rs, 'rt");
717
+ break;
718
+ case MOVCI:
719
+ if (instr->Bit(16)) {
720
+ Format(instr, "movt 'rd, 'rs, 'Cc");
721
+ } else {
722
+ Format(instr, "movf 'rd, 'rs, 'Cc");
723
+ }
724
+ break;
548
725
  default:
549
726
  UNREACHABLE();
550
- };
727
+ }
551
728
  break;
552
729
  case SPECIAL2:
553
730
  switch (instr->FunctionFieldRaw()) {
554
731
  case MUL:
732
+ Format(instr, "mul 'rd, 'rs, 'rt");
733
+ break;
734
+ case CLZ:
735
+ Format(instr, "clz 'rd, 'rs");
555
736
  break;
556
737
  default:
557
738
  UNREACHABLE();
558
- };
739
+ }
740
+ break;
741
+ case SPECIAL3:
742
+ switch (instr->FunctionFieldRaw()) {
743
+ case INS: {
744
+ if (mips32r2) {
745
+ Format(instr, "ins 'rt, 'rs, 'sd, 'sa");
746
+ } else {
747
+ Unknown(instr);
748
+ }
749
+ break;
750
+ }
751
+ case EXT: {
752
+ if (mips32r2) {
753
+ Format(instr, "ext 'rt, 'rs, 'sd, 'sa");
754
+ } else {
755
+ Unknown(instr);
756
+ }
757
+ break;
758
+ }
759
+ default:
760
+ UNREACHABLE();
761
+ }
559
762
  break;
560
763
  default:
561
764
  UNREACHABLE();
562
- };
765
+ }
563
766
  }
564
767
 
565
768
 
566
769
  void Decoder::DecodeTypeImmediate(Instruction* instr) {
567
770
  switch (instr->OpcodeFieldRaw()) {
568
771
  // ------------- REGIMM class.
772
+ case COP1:
773
+ switch (instr->RsFieldRaw()) {
774
+ case BC1:
775
+ if (instr->FBtrueValue()) {
776
+ Format(instr, "bc1t 'bc, 'imm16u");
777
+ } else {
778
+ Format(instr, "bc1f 'bc, 'imm16u");
779
+ }
780
+ break;
781
+ default:
782
+ UNREACHABLE();
783
+ };
784
+ break; // Case COP1.
569
785
  case REGIMM:
570
786
  switch (instr->RtFieldRaw()) {
571
787
  case BLTZ:
@@ -582,8 +798,8 @@ void Decoder::DecodeTypeImmediate(Instruction* instr) {
582
798
  break;
583
799
  default:
584
800
  UNREACHABLE();
585
- };
586
- break; // case REGIMM
801
+ }
802
+ break; // Case REGIMM.
587
803
  // ------------- Branch instructions.
588
804
  case BEQ:
589
805
  Format(instr, "beq 'rs, 'rt, 'imm16u");
@@ -626,18 +842,39 @@ void Decoder::DecodeTypeImmediate(Instruction* instr) {
626
842
  case LB:
627
843
  Format(instr, "lb 'rt, 'imm16s('rs)");
628
844
  break;
845
+ case LH:
846
+ Format(instr, "lh 'rt, 'imm16s('rs)");
847
+ break;
848
+ case LWL:
849
+ Format(instr, "lwl 'rt, 'imm16s('rs)");
850
+ break;
629
851
  case LW:
630
852
  Format(instr, "lw 'rt, 'imm16s('rs)");
631
853
  break;
632
854
  case LBU:
633
855
  Format(instr, "lbu 'rt, 'imm16s('rs)");
634
856
  break;
857
+ case LHU:
858
+ Format(instr, "lhu 'rt, 'imm16s('rs)");
859
+ break;
860
+ case LWR:
861
+ Format(instr, "lwr 'rt, 'imm16s('rs)");
862
+ break;
635
863
  case SB:
636
864
  Format(instr, "sb 'rt, 'imm16s('rs)");
637
865
  break;
866
+ case SH:
867
+ Format(instr, "sh 'rt, 'imm16s('rs)");
868
+ break;
869
+ case SWL:
870
+ Format(instr, "swl 'rt, 'imm16s('rs)");
871
+ break;
638
872
  case SW:
639
873
  Format(instr, "sw 'rt, 'imm16s('rs)");
640
874
  break;
875
+ case SWR:
876
+ Format(instr, "swr 'rt, 'imm16s('rs)");
877
+ break;
641
878
  case LWC1:
642
879
  Format(instr, "lwc1 'ft, 'imm16s('rs)");
643
880
  break;
@@ -645,10 +882,10 @@ void Decoder::DecodeTypeImmediate(Instruction* instr) {
645
882
  Format(instr, "ldc1 'ft, 'imm16s('rs)");
646
883
  break;
647
884
  case SWC1:
648
- Format(instr, "swc1 'rt, 'imm16s('fs)");
885
+ Format(instr, "swc1 'ft, 'imm16s('rs)");
649
886
  break;
650
887
  case SDC1:
651
- Format(instr, "sdc1 'rt, 'imm16s('fs)");
888
+ Format(instr, "sdc1 'ft, 'imm16s('rs)");
652
889
  break;
653
890
  default:
654
891
  UNREACHABLE();
@@ -675,7 +912,7 @@ void Decoder::DecodeTypeJump(Instruction* instr) {
675
912
  int Decoder::InstructionDecode(byte_* instr_ptr) {
676
913
  Instruction* instr = Instruction::At(instr_ptr);
677
914
  // Print raw instruction bytes.
678
- out_buffer_pos_ += v8i::OS::SNPrintF(out_buffer_ + out_buffer_pos_,
915
+ out_buffer_pos_ += OS::SNPrintF(out_buffer_ + out_buffer_pos_,
679
916
  "%08x ",
680
917
  instr->InstructionBits());
681
918
  switch (instr->InstructionType()) {
@@ -695,11 +932,11 @@ int Decoder::InstructionDecode(byte_* instr_ptr) {
695
932
  UNSUPPORTED_MIPS();
696
933
  }
697
934
  }
698
- return Instruction::kInstructionSize;
935
+ return Instruction::kInstrSize;
699
936
  }
700
937
 
701
938
 
702
- } } // namespace assembler::mips
939
+ } } // namespace v8::internal
703
940
 
704
941
 
705
942
 
@@ -707,13 +944,11 @@ int Decoder::InstructionDecode(byte_* instr_ptr) {
707
944
 
708
945
  namespace disasm {
709
946
 
710
- namespace v8i = v8::internal;
711
-
947
+ using v8::internal::byte_;
712
948
 
713
949
  const char* NameConverter::NameOfAddress(byte_* addr) const {
714
- static v8::internal::EmbeddedVector<char, 32> tmp_buffer;
715
- v8::internal::OS::SNPrintF(tmp_buffer, "%p", addr);
716
- return tmp_buffer.start();
950
+ v8::internal::OS::SNPrintF(tmp_buffer_, "%p", addr);
951
+ return tmp_buffer_.start();
717
952
  }
718
953
 
719
954
 
@@ -723,12 +958,12 @@ const char* NameConverter::NameOfConstant(byte_* addr) const {
723
958
 
724
959
 
725
960
  const char* NameConverter::NameOfCPURegister(int reg) const {
726
- return assembler::mips::Registers::Name(reg);
961
+ return v8::internal::Registers::Name(reg);
727
962
  }
728
963
 
729
964
 
730
965
  const char* NameConverter::NameOfXMMRegister(int reg) const {
731
- return assembler::mips::FPURegister::Name(reg);
966
+ return v8::internal::FPURegisters::Name(reg);
732
967
  }
733
968
 
734
969
 
@@ -756,13 +991,13 @@ Disassembler::~Disassembler() {}
756
991
 
757
992
  int Disassembler::InstructionDecode(v8::internal::Vector<char> buffer,
758
993
  byte_* instruction) {
759
- assembler::mips::Decoder d(converter_, buffer);
994
+ v8::internal::Decoder d(converter_, buffer);
760
995
  return d.InstructionDecode(instruction);
761
996
  }
762
997
 
763
998
 
999
+ // The MIPS assembler does not currently use constant pools.
764
1000
  int Disassembler::ConstantPoolSizeAt(byte_* instruction) {
765
- UNIMPLEMENTED_MIPS();
766
1001
  return -1;
767
1002
  }
768
1003
 
@@ -780,6 +1015,7 @@ void Disassembler::Disassemble(FILE* f, byte_* begin, byte_* end) {
780
1015
  }
781
1016
  }
782
1017
 
1018
+
783
1019
  #undef UNSUPPORTED
784
1020
 
785
1021
  } // namespace disasm