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

Issue 1876083004: Subzero. ARM32. Fixes Insert/Extract v(8|16)i1 bug. (Closed)

Created:
4 years, 8 months ago by John
Modified:
4 years, 8 months ago
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

Subzero. ARM32. Fixes Insert/Extract v(8|16)i1 bug. Subzero emits the following sequence when extracting elements from a vector of i1: vmov.8 Rt, Dm[I] I should be scaled when accessing v4i1, and v8i1, i.e., to extract the n-th boolean in a v8i1, the emitted code should be vmov.8 Rt, Dm[I*n] Insertions are handled by changing the operands' types, so that a v4i1 is handled as a v4i32, and a v8i1, as a v8i16. I.e., to insert the n-th boolean into a v8i1, the emitted code should be mov.16 Dt[I], Rm instead of mov.8 Dt[I*n], Rm This clears the upper bits for that element. BUG= R=eholk@chromium.org Committed: https://gerrit.chromium.org/gerrit/gitweb?p=native_client/pnacl-subzero.git;a=commit;h=79568d27913019d5d284cb27c87a8357462bd9e4

Patch Set 1 #

Patch Set 2 : Fixes assertion. #

Patch Set 3 : Fixes lit. #

Total comments: 2
Unified diffs Side-by-side diffs Delta from patch set Stats (+64 lines, -24 lines) Patch
M src/IceInstARM32.cpp View 1 6 chunks +54 lines, -14 lines 2 comments Download
M tests_lit/assembler/arm32/select-vec.ll View 1 2 6 chunks +10 lines, -10 lines 0 comments Download

Messages

Total messages: 7 (2 generated)
John
4 years, 8 months ago (2016-04-11 16:49:04 UTC) #2
Eric Holk
https://codereview.chromium.org/1876083004/diff/40001/src/IceInstARM32.cpp File src/IceInstARM32.cpp (right): https://codereview.chromium.org/1876083004/diff/40001/src/IceInstARM32.cpp#newcode1271 src/IceInstARM32.cpp:1271: Src->asType(Func, SrcTy, Src->getRegNum()), getPredicate()); Are we guaranteed that Src ...
4 years, 8 months ago (2016-04-11 17:34:57 UTC) #3
John
https://codereview.chromium.org/1876083004/diff/40001/src/IceInstARM32.cpp File src/IceInstARM32.cpp (right): https://codereview.chromium.org/1876083004/diff/40001/src/IceInstARM32.cpp#newcode1271 src/IceInstARM32.cpp:1271: Src->asType(Func, SrcTy, Src->getRegNum()), getPredicate()); On 2016/04/11 17:34:57, Eric Holk ...
4 years, 8 months ago (2016-04-11 18:23:23 UTC) #4
Eric Holk
lgtm
4 years, 8 months ago (2016-04-11 18:24:37 UTC) #5
John
4 years, 8 months ago (2016-04-11 18:33:38 UTC) #7
Message was sent while issue was closed.
Committed patchset #3 (id:40001) manually as
79568d27913019d5d284cb27c87a8357462bd9e4 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698