Issue560

Title Don't ignore warnings in preprocessor
Priority wish Status resolved
Superseder Nosy List florian, jendrik, malte
Assigned To florian Keywords
Optional summary

Created on 2015-07-21.23:03:32 by florian, last changed by florian.

Messages
msg4428 (view) Author: florian Date: 2015-07-22.14:12:27
Merged and pushed.
msg4427 (view) Author: malte Date: 2015-07-22.13:59:18
OK, looks fine.
msg4426 (view) Author: florian Date: 2015-07-22.13:56:09
It seems like we currently only measure wall clock time for the preprocessor.
These tend to be better for larger tasks and worse for smaller tasks:

http://ai.cs.unibas.ch/_tmp_files/pommeren/issue560_base_v1_preprocess_wall_clock_time.png

There is no difference in output files except in three trucks-strips problems
which is probably caused by finished/unfinished invariant analysis as we
discussed offline.
msg4423 (view) Author: malte Date: 2015-07-22.08:29:06
I think a blind search before/after experiment that looks at preprocessor
runtime would be good for this. It's easy to accidentally introduce copying by
forgetting a "&" in a loop, for example.

If I were working on this, I'd do a complete before/after translator +
preprocessor run and compare if the preprocessed results remain the same. With a
single core on a desktop PC (i.e., without the grid), this should take a few
hours at most, especially if you only run the translator once. (I've done this
frequently recently when working on translator bugs.)
msg4422 (view) Author: florian Date: 2015-07-22.01:36:02
Done: https://bitbucket.org/flogo/downward-issues/pull-request/1

Jendrik, could you have a look to make sure I didn't mess up a loop? Do we want
experiments for this?
msg4421 (view) Author: malte Date: 2015-07-21.23:30:50
Sounds good.
msg4420 (view) Author: florian Date: 2015-07-21.23:03:32
The preprocessors Makefile currently contains -Wno-sign-compare and 
-Wno-deprecated. When we switch to cmake (issue67) it will be easier if we can
use the same options for preprocessor and planner (also, it would generally be
better to not ignore the warnings).

I had a short glance at this and it looks like -Wno-deprecated can just be
removed and the only reasons for -Wno-sign-compare are a lot of for loops that
compare with something.size().

I suggest we switch these loops to range-based for-loops where possible and
store the size in an integer where not possible.
History
Date User Action Args
2015-07-22 14:12:27floriansetstatus: reviewing -> resolved
messages: + msg4428
2015-07-22 13:59:18maltesetmessages: + msg4427
2015-07-22 13:56:09floriansetmessages: + msg4426
2015-07-22 08:29:06maltesetmessages: + msg4423
2015-07-22 01:36:02floriansetstatus: chatting -> reviewing
messages: + msg4422
2015-07-22 01:13:14jendriksetnosy: + jendrik
2015-07-21 23:30:50maltesetstatus: unread -> chatting
messages: + msg4421
2015-07-21 23:03:32floriancreate