Chromium Code Reviews

Issue 986453002: Additional clean ups on errors in bitcode parsing. (Closed)

Created:
5 years, 9 months ago by Karl
Modified:
5 years, 9 months ago
Reviewers:
jvoung (off chromium)
CC:
native-client-reviews_googlegroups.com
Base URL:
https://chromium.googlesource.com/native_client/pnacl-llvm.git@master
Target Ref:
refs/heads/master
Visibility:
Public.

Description

Additional clean ups on errors in bitcode parsing. Earlier CL's introduced the notion of ErrorAt to a bitcode parser. However, a couple of parsers were not updated to use the new virtual, resulting in bitposition being lost in error messages. This CL also further consolidates error message formats, defining a common naclbitc::ErrorAt static method to print the standard error message prefix. That is, a label (i.e. "Warning", "Error" or "Fatal") followed by the bit position in the file, followed by a colon. It also now defines a single virtual method ErrorAt in bitcode parsers, for which all other forms of error reporting are fed through. This means that derived classes must only redefine a single virtual to change how errors are reported in bitcode parsers. BUG=None R=jvoung@chromium.org Committed: https://gerrit.chromium.org/gerrit/gitweb?p=native_client/pnacl-llvm.git;a=commit;h=090ce49bad69b6bcd22c1d1ba1d3eb679ad367a4

Patch Set 1 #

Patch Set 2 : Clean up handling of error labels. #

Patch Set 3 : Use symbolic names for error labels. #

Patch Set 4 : Further simplify error reporting. #

Patch Set 5 : Fix nits. #

Total comments: 21

Patch Set 6 : Fix issues in patch set 5. #

Total comments: 3

Patch Set 7 : Fix nit. #

Total comments: 6

Patch Set 8 : Fix comment. #

Unified diffs Side-by-side diffs Stats (+165 lines, -194 lines)
M include/llvm/Bitcode/NaCl/NaClBitcodeParser.h View 3 chunks +13 lines, -7 lines 0 comments
M include/llvm/Bitcode/NaCl/NaClBitstreamReader.h View 3 chunks +22 lines, -9 lines 0 comments
M include/llvm/Bitcode/NaCl/NaClObjDumpStream.h View 6 chunks +37 lines, -49 lines 0 comments
M lib/Bitcode/NaCl/Analysis/NaClBitcodeAnalyzer.cpp View 3 chunks +7 lines, -13 lines 0 comments
M lib/Bitcode/NaCl/Analysis/NaClCompress.cpp View 5 chunks +2 lines, -24 lines 0 comments
M lib/Bitcode/NaCl/Analysis/NaClObjDump.cpp View 2 chunks +8 lines, -22 lines 0 comments
M lib/Bitcode/NaCl/Analysis/NaClObjDumpStream.cpp View 5 chunks +35 lines, -33 lines 0 comments
M lib/Bitcode/NaCl/Reader/NaClBitcodeParser.cpp View 1 chunk +6 lines, -10 lines 0 comments
M lib/Bitcode/NaCl/Reader/NaClBitcodeReader.cpp View 1 chunk +2 lines, -4 lines 0 comments
M lib/Bitcode/NaCl/Reader/NaClBitstreamReader.cpp View 2 chunks +22 lines, -12 lines 0 comments
M unittests/Bitcode/NaClAbbrevErrorTests.cpp View 2 chunks +2 lines, -2 lines 0 comments
M unittests/Bitcode/NaClObjDumpTest.cpp View 2 chunks +4 lines, -4 lines 0 comments
M unittests/Bitcode/NaClParseInstsTest.cpp View 4 chunks +4 lines, -4 lines 0 comments
M unittests/Bitcode/NaClParseTypesTest.cpp View 1 chunk +1 line, -1 line 0 comments

Messages

Total messages: 11 (1 generated)
Karl
5 years, 9 months ago (2015-03-06 21:24:34 UTC) #2
jvoung (off chromium)
misc: remember to update COMPONENT_REVISIONS after landing too https://codereview.chromium.org/986453002/diff/80001/include/llvm/Bitcode/NaCl/NaClBitcodeParser.h File include/llvm/Bitcode/NaCl/NaClBitcodeParser.h (right): https://codereview.chromium.org/986453002/diff/80001/include/llvm/Bitcode/NaCl/NaClBitcodeParser.h#newcode491 include/llvm/Bitcode/NaCl/NaClBitcodeParser.h:491: // ...
5 years, 9 months ago (2015-03-06 22:30:28 UTC) #3
Karl
https://codereview.chromium.org/986453002/diff/80001/include/llvm/Bitcode/NaCl/NaClBitcodeParser.h File include/llvm/Bitcode/NaCl/NaClBitcodeParser.h (right): https://codereview.chromium.org/986453002/diff/80001/include/llvm/Bitcode/NaCl/NaClBitcodeParser.h#newcode491 include/llvm/Bitcode/NaCl/NaClBitcodeParser.h:491: // the method Error() is overridden in the derived ...
5 years, 9 months ago (2015-03-06 22:54:21 UTC) #4
jvoung (off chromium)
reupload also? https://codereview.chromium.org/986453002/diff/80001/include/llvm/Bitcode/NaCl/NaClObjDumpStream.h File include/llvm/Bitcode/NaCl/NaClObjDumpStream.h (right): https://codereview.chromium.org/986453002/diff/80001/include/llvm/Bitcode/NaCl/NaClObjDumpStream.h#newcode851 include/llvm/Bitcode/NaCl/NaClObjDumpStream.h:851: void Fatal(const std::string &Message) { Is this ...
5 years, 9 months ago (2015-03-07 00:04:35 UTC) #5
Karl
https://codereview.chromium.org/986453002/diff/80001/include/llvm/Bitcode/NaCl/NaClObjDumpStream.h File include/llvm/Bitcode/NaCl/NaClObjDumpStream.h (right): https://codereview.chromium.org/986453002/diff/80001/include/llvm/Bitcode/NaCl/NaClObjDumpStream.h#newcode851 include/llvm/Bitcode/NaCl/NaClObjDumpStream.h:851: void Fatal(const std::string &Message) { On 2015/03/07 00:04:35, jvoung ...
5 years, 9 months ago (2015-03-09 18:10:54 UTC) #6
jvoung (off chromium)
https://codereview.chromium.org/986453002/diff/100001/lib/Bitcode/NaCl/Analysis/NaClObjDump.cpp File lib/Bitcode/NaCl/Analysis/NaClObjDump.cpp (right): https://codereview.chromium.org/986453002/diff/100001/lib/Bitcode/NaCl/Analysis/NaClObjDump.cpp#newcode594 lib/Bitcode/NaCl/Analysis/NaClObjDump.cpp:594: ObjDump.ErrorAt(Level, Bit) << Message << "\n"; On 2015/03/09 18:10:54, ...
5 years, 9 months ago (2015-03-09 18:50:23 UTC) #7
Karl
https://codereview.chromium.org/986453002/diff/100001/lib/Bitcode/NaCl/Analysis/NaClObjDump.cpp File lib/Bitcode/NaCl/Analysis/NaClObjDump.cpp (right): https://codereview.chromium.org/986453002/diff/100001/lib/Bitcode/NaCl/Analysis/NaClObjDump.cpp#newcode594 lib/Bitcode/NaCl/Analysis/NaClObjDump.cpp:594: ObjDump.ErrorAt(Level, Bit) << Message << "\n"; On 2015/03/09 18:50:22, ...
5 years, 9 months ago (2015-03-09 19:49:25 UTC) #8
jvoung (off chromium)
lgtm https://codereview.chromium.org/986453002/diff/120001/lib/Bitcode/NaCl/Analysis/NaClObjDumpStream.cpp File lib/Bitcode/NaCl/Analysis/NaClObjDumpStream.cpp (right): https://codereview.chromium.org/986453002/diff/120001/lib/Bitcode/NaCl/Analysis/NaClObjDumpStream.cpp#newcode261 lib/Bitcode/NaCl/Analysis/NaClObjDumpStream.cpp:261: Flush(); On 2015/03/09 19:49:25, Karl wrote: > On ...
5 years, 9 months ago (2015-03-09 20:03:01 UTC) #9
Karl
Committed patchset #8 (id:140001) manually as 090ce49bad69b6bcd22c1d1ba1d3eb679ad367a4 (presubmit successful).
5 years, 9 months ago (2015-03-12 16:31:40 UTC) #10
Karl
5 years, 9 months ago (2015-03-12 16:32:26 UTC) #11
Message was sent while issue was closed.
https://codereview.chromium.org/986453002/diff/120001/lib/Bitcode/NaCl/Analys...
File lib/Bitcode/NaCl/Analysis/NaClObjDumpStream.cpp (right):

https://codereview.chromium.org/986453002/diff/120001/lib/Bitcode/NaCl/Analys...
lib/Bitcode/NaCl/Analysis/NaClObjDumpStream.cpp:261: Flush();
On 2015/03/09 20:03:01, jvoung wrote:
> On 2015/03/09 19:49:25, Karl wrote:
> > On 2015/03/09 18:50:23, jvoung wrote:
> > > How does the caller know that the MaxErrors is hit? Otherwise will it just
> > take
> > > the returned raw_ostream and continue to write to it?
> > 
> > I guess my comment wasn't clear enough. I thought that he sentence "Instead,
> we
> > let Flush empty the buffers, and print out existing errors, and then exit
the
> > executable." was explaining this. That is why we call Flush.
> > 
> > Note: I fixed this sentence to: "Instead, we let Flush empty the buffers,
> print
> > out reported errors, and then exits the executable."
> 
> Okay, I think I understand now. I didn't look at Flush() closely enough.
Flush()
> itself does the check again and exits the executable.
> 
> I guess I was confused by "we can't stop the executable *at this point*". I
> wasn't sure what the later point would be, which made me think that this would
> return to the caller, and the caller would exit (but the caller wouldn't
know!).
> What you meant by a different point in time is the end of Flush(). It wasn't
> clear to me that Flush would exit, so how about put an llvm_unreachable()
after
> Flush()?
> 
> "exits" ---back-to---> "exit" ?
> 
> Otherwise, would it also help to not-really talk about what can't be done and
> just say: "If we've hit the maximum number of errors, let Flush empty the
> buffers, print out reported errors, and then exit the executable."?

Followed your suggestion and used your suggested change. Also added
llvm_unreachable.

Powered by Google App Engine