Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(359)

Issue 12519007: Adds MIPS instructions to simulator, assembler, disassembler (Closed)

Created:
7 years, 9 months ago by zra
Modified:
7 years, 9 months ago
Reviewers:
regis, Ivan Posva
CC:
reviews_dartlang.org, vm-dev_dartlang.org
Visibility:
Public.

Description

Adds MIPS instructions to simulator, assembler, disassembler ins - bitfield insert ext - bitfield extract l{b,bu,h,hu,w} - load byte, unsigned byte, etc. s{b,h,w} - store byte, halfword, word Committed: https://code.google.com/p/dart/source/detail?r=19819

Patch Set 1 #

Patch Set 2 : #

Total comments: 29

Patch Set 3 : #

Patch Set 4 : #

Total comments: 5

Patch Set 5 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+427 lines, -67 lines) Patch
M runtime/vm/assembler_mips.h View 1 2 3 6 chunks +49 lines, -10 lines 0 comments Download
M runtime/vm/assembler_mips_test.cc View 1 2 3 13 chunks +114 lines, -44 lines 0 comments Download
M runtime/vm/disassembler_mips.cc View 1 2 3 5 chunks +46 lines, -3 lines 0 comments Download
M runtime/vm/simulator_mips.h View 2 chunks +16 lines, -0 lines 0 comments Download
M runtime/vm/simulator_mips.cc View 1 2 3 6 chunks +202 lines, -10 lines 0 comments Download

Messages

Total messages: 9 (0 generated)
zra
7 years, 9 months ago (2013-03-11 16:15:42 UTC) #1
Ivan Posva
https://codereview.chromium.org/12519007/diff/7001/runtime/vm/assembler_mips.h File runtime/vm/assembler_mips.h (right): https://codereview.chromium.org/12519007/diff/7001/runtime/vm/assembler_mips.h#newcode270 runtime/vm/assembler_mips.h:270: EmitRType(SPECIAL3, rs, rt, static_cast<Register>(size - 1), pos, EXT); Maybe ...
7 years, 9 months ago (2013-03-11 17:29:04 UTC) #2
regis
https://codereview.chromium.org/12519007/diff/7001/runtime/vm/assembler_mips.h File runtime/vm/assembler_mips.h (right): https://codereview.chromium.org/12519007/diff/7001/runtime/vm/assembler_mips.h#newcode223 runtime/vm/assembler_mips.h:223: void addi(Register rt, Register rs, const Immediate& imm) { ...
7 years, 9 months ago (2013-03-11 17:31:11 UTC) #3
zra
https://codereview.chromium.org/12519007/diff/7001/runtime/vm/assembler_mips.h File runtime/vm/assembler_mips.h (right): https://codereview.chromium.org/12519007/diff/7001/runtime/vm/assembler_mips.h#newcode277 runtime/vm/assembler_mips.h:277: ASSERT((0 < pos + size) && (pos + size ...
7 years, 9 months ago (2013-03-11 18:36:06 UTC) #4
zra
https://codereview.chromium.org/12519007/diff/7001/runtime/vm/assembler_mips.h File runtime/vm/assembler_mips.h (right): https://codereview.chromium.org/12519007/diff/7001/runtime/vm/assembler_mips.h#newcode277 runtime/vm/assembler_mips.h:277: ASSERT((0 < pos + size) && (pos + size ...
7 years, 9 months ago (2013-03-11 20:00:11 UTC) #5
regis
LGTM with 2 comments https://codereview.chromium.org/12519007/diff/11002/runtime/vm/constants_mips.h File runtime/vm/constants_mips.h (right): https://codereview.chromium.org/12519007/diff/11002/runtime/vm/constants_mips.h#newcode267 runtime/vm/constants_mips.h:267: INS = 4, Will there ...
7 years, 9 months ago (2013-03-11 20:14:01 UTC) #6
zra
https://codereview.chromium.org/12519007/diff/11002/runtime/vm/constants_mips.h File runtime/vm/constants_mips.h (right): https://codereview.chromium.org/12519007/diff/11002/runtime/vm/constants_mips.h#newcode267 runtime/vm/constants_mips.h:267: INS = 4, On 2013/03/11 20:14:01, regis wrote: > ...
7 years, 9 months ago (2013-03-11 20:25:01 UTC) #7
regis
https://codereview.chromium.org/12519007/diff/11002/runtime/vm/disassembler_mips.cc File runtime/vm/disassembler_mips.cc (right): https://codereview.chromium.org/12519007/diff/11002/runtime/vm/disassembler_mips.cc#newcode281 runtime/vm/disassembler_mips.cc:281: case ANDI: { On 2013/03/11 20:25:01, zra wrote: > ...
7 years, 9 months ago (2013-03-11 20:26:22 UTC) #8
zra
7 years, 9 months ago (2013-03-11 20:50:58 UTC) #9
Message was sent while issue was closed.
Committed patchset #5 manually as r19819 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698