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

Issue 1825363003: Subzero. Fixes valgrind errors. (Closed)

Created:
4 years, 9 months ago by John
Modified:
4 years, 9 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. Fixes valgrind errors. Valgrind used to report errors about uninitialized variable access in Subzero, when it was built with -O2. The problem was traced to size_t Alignment = Var->getAlignment; Alignment = std::max(MinAlignment, Var->getAlignment()) Apparently, the compiler will not correctly zero-extend Var->getAlignment(), and thus Alignment's upper 32-bits would be garbage. BUG= R=kschimpf@google.com, stichnot@chromium.org Committed: https://gerrit.chromium.org/gerrit/gitweb?p=native_client/pnacl-subzero.git;a=commit;h=267f2bf9c3f384bb007c686d165b32959143a247

Patch Set 1 #

Patch Set 2 : Make format #

Total comments: 2

Patch Set 3 : Addresses comments. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1 line, -2 lines) Patch
M src/IceELFObjectWriter.cpp View 1 2 1 chunk +1 line, -2 lines 0 comments Download

Messages

Total messages: 7 (2 generated)
John
4 years, 9 months ago (2016-03-23 15:51:10 UTC) #2
Karl
lgtm
4 years, 9 months ago (2016-03-23 20:56:24 UTC) #3
Jim Stichnoth
lgtm https://codereview.chromium.org/1825363003/diff/20001/src/IceELFObjectWriter.cpp File src/IceELFObjectWriter.cpp (right): https://codereview.chromium.org/1825363003/diff/20001/src/IceELFObjectWriter.cpp#newcode392 src/IceELFObjectWriter.cpp:392: const Elf64_Xword Align = Use auto here? given ...
4 years, 9 months ago (2016-03-23 21:08:23 UTC) #4
John
https://codereview.chromium.org/1825363003/diff/20001/src/IceELFObjectWriter.cpp File src/IceELFObjectWriter.cpp (right): https://codereview.chromium.org/1825363003/diff/20001/src/IceELFObjectWriter.cpp#newcode392 src/IceELFObjectWriter.cpp:392: const Elf64_Xword Align = On 2016/03/23 21:08:22, stichnot wrote: ...
4 years, 9 months ago (2016-03-24 13:02:26 UTC) #5
John
4 years, 9 months ago (2016-03-24 13:11:34 UTC) #7
Message was sent while issue was closed.
Committed patchset #3 (id:40001) manually as
267f2bf9c3f384bb007c686d165b32959143a247 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698