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

Issue 1407613002: Add "add immediate" instruction to the ARM integrated assembler. (Closed)

Created:
5 years, 2 months ago by Karl
Modified:
5 years, 2 months ago
Reviewers:
Jim Stichnoth, John
CC:
native-client-reviews_googlegroups.com
Base URL:
https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Target Ref:
refs/heads/master
Visibility:
Public.

Description

Add "add immediate" instruction to the ARM integrated assembler. Also does some bikeshed clean ups. In particualr, the (ARM) instruction method emitIAS only needs to choose the applicable ARM instruction, and then passes the corresponding operands to the corresponding instruction method of the assembler. The assembler method then extracts the appropriate data from the operands, and decides which rule to apply for the corresponding arm instruction. BUG= https://code.google.com/p/nativeclient/issues/detail?id=4334 R=jpp@chromium.org, stichnot@chromium.org Committed: https://gerrit.chromium.org/gerrit/gitweb?p=native_client/pnacl-subzero.git;a=commit;h=372bdd6e84a14b6bcc00b4e9ed24a1838bd0c4d7

Patch Set 1 #

Patch Set 2 : Fix nits. #

Total comments: 4

Patch Set 3 : Fix issues in patch set 2. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+162 lines, -35 lines) Patch
M src/DartARM32/assembler_arm.h View 4 chunks +9 lines, -4 lines 0 comments Download
M src/DartARM32/assembler_arm.cc View 2 chunks +3 lines, -0 lines 0 comments Download
M src/IceAssemblerARM32.h View 1 chunk +7 lines, -2 lines 0 comments Download
M src/IceAssemblerARM32.cpp View 1 2 6 chunks +82 lines, -20 lines 0 comments Download
M src/IceInstARM32.h View 1 chunk +1 line, -4 lines 0 comments Download
M src/IceInstARM32.cpp View 1 3 chunks +35 lines, -5 lines 0 comments Download
A tests_lit/assembler/arm32/add.ll View 1 1 chunk +25 lines, -0 lines 0 comments Download

Messages

Total messages: 6 (1 generated)
Karl
5 years, 2 months ago (2015-10-13 21:19:40 UTC) #2
John
lgtm please add the TODO(jpp). Lgtm otherwise. https://chromiumcodereview.appspot.com/1407613002/diff/20001/src/IceInstARM32.cpp File src/IceInstARM32.cpp (right): https://chromiumcodereview.appspot.com/1407613002/diff/20001/src/IceInstARM32.cpp#newcode322 src/IceInstARM32.cpp:322: void InstARM32ThreeAddrGPR<K>::emitIAS(const ...
5 years, 2 months ago (2015-10-13 21:27:56 UTC) #3
Jim Stichnoth
lgtm https://chromiumcodereview.appspot.com/1407613002/diff/20001/src/IceAssemblerARM32.cpp File src/IceAssemblerARM32.cpp (right): https://chromiumcodereview.appspot.com/1407613002/diff/20001/src/IceAssemblerARM32.cpp#newcode84 src/IceAssemblerARM32.cpp:84: DecodedResult decode(const Ice::Operand *Operand, uint32_t &Value) { Can ...
5 years, 2 months ago (2015-10-13 21:28:52 UTC) #4
Karl
Committed patchset #3 (id:40001) manually as 372bdd6e84a14b6bcc00b4e9ed24a1838bd0c4d7 (presubmit successful).
5 years, 2 months ago (2015-10-13 21:39:18 UTC) #5
Karl
5 years, 2 months ago (2015-10-13 21:39:25 UTC) #6
Message was sent while issue was closed.
https://chromiumcodereview.appspot.com/1407613002/diff/20001/src/IceAssembler...
File src/IceAssemblerARM32.cpp (right):

https://chromiumcodereview.appspot.com/1407613002/diff/20001/src/IceAssembler...
src/IceAssemblerARM32.cpp:84: DecodedResult decode(const Ice::Operand *Operand,
uint32_t &Value) {
On 2015/10/13 21:28:52, stichnot wrote:
> Can you use Operand instead of Ice::Operand?
> 
> Also, maybe rename the arg Opnd instead of Operand to avoid a name conflict.

Done.

https://chromiumcodereview.appspot.com/1407613002/diff/20001/src/IceInstARM32...
File src/IceInstARM32.cpp (right):

https://chromiumcodereview.appspot.com/1407613002/diff/20001/src/IceInstARM32...
src/IceInstARM32.cpp:322: void InstARM32ThreeAddrGPR<K>::emitIAS(const Cfg
*Func) const {
On 2015/10/13 21:27:56, John wrote:
> I am not super exited about these definitions here. Can you leave a TODO(jpp)
so
> that I (in the near future) figure out how to move these out of this .h?

This is in a .cpp file!

Powered by Google App Engine
This is Rietveld 408576698