Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1 | //===---------------------------------------------------------------------===// |
| 2 | // Minor random things that can be improved |
| 3 | //===---------------------------------------------------------------------===// |
Steve Naroff | 3981bf7 | 2008-03-18 20:05:01 +0000 | [diff] [blame] | 4 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5 | |
Chris Lattner | cd09847 | 2007-10-10 18:08:07 +0000 | [diff] [blame] | 6 | Warn about "X && 0x1000" saying that the user may mean "X & 0x1000". |
Chris Lattner | 507cc6c | 2007-10-11 16:06:02 +0000 | [diff] [blame] | 7 | We should do this for any immediate except zero, so long as it doesn't come |
| 8 | from a macro expansion. Likewise for ||. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 9 | |
| 10 | //===---------------------------------------------------------------------===// |
| 11 | |
| 12 | Lexer-related diagnostics should point to the problematic character, not the |
| 13 | start of the token. For example: |
| 14 | |
| 15 | int y = 0000\ |
| 16 | 00080; |
| 17 | |
| 18 | diag.c:4:9: error: invalid digit '8' in octal constant |
| 19 | int y = 0000\ |
| 20 | ^ |
| 21 | |
| 22 | should be: |
| 23 | |
| 24 | diag.c:4:9: error: invalid digit '8' in octal constant |
| 25 | 00080; |
| 26 | ^ |
| 27 | |
Chris Lattner | 136f93a | 2007-07-16 06:55:01 +0000 | [diff] [blame] | 28 | This specific diagnostic is implemented, but others should be updated. |
| 29 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 30 | //===---------------------------------------------------------------------===// |
| 31 | |
Ted Kremenek | dbff47f | 2007-10-10 18:52:22 +0000 | [diff] [blame] | 32 | C++ (checker): For iterators, warn of the use of "iterator++" instead |
| 33 | of "++iterator" when when the value returned by operator++(int) is |
| 34 | ignored. |
Douglas Gregor | a26877f | 2008-11-17 17:14:10 +0000 | [diff] [blame] | 35 | |
| 36 | //===---------------------------------------------------------------------===// |
| 37 | |
| 38 | We want to keep more source range information in Declarator to help |
| 39 | produce better diagnostics. Declarator::getSourceRange() should be |
| 40 | implemented to give a range for the whole declarator with all of its |
| 41 | specifiers, and DeclaratorChunk::ParamInfo should also have a source |
| 42 | range covering the whole parameter, so that an error message like this: |
| 43 | |
| 44 | overloaded-operator-decl.cpp:37:23: error: parameter of overloaded post-increment operator must have type 'int' (not 'float') |
| 45 | X operator++(X&, const float& f); |
| 46 | ^ |
| 47 | can be turned into something like this: |
| 48 | |
| 49 | overloaded-operator-decl.cpp:37:23: error: parameter of overloaded post-increment operator must have type 'int' (not 'float') |
| 50 | X operator++(X&, const float& f); |
| 51 | ^ ~~~~~~~~~~~~~~ |
| 52 | |
Douglas Gregor | 20bcd55 | 2009-02-04 13:07:56 +0000 | [diff] [blame] | 53 | //===---------------------------------------------------------------------===// |
| 54 | |
| 55 | For terminal output, we should consider limiting the amount of |
| 56 | diagnostic text we print once the first error has been |
| 57 | encountered. For example, once we have produced an error diagnostic, |
| 58 | we should only continue producing diagnostics until we have produced a |
| 59 | page full of results (say, 50 lines of text). Beyond that, (1) the |
| 60 | remaining errors are likely to be less interesting, and (2) the poor |
| 61 | user has to scroll his terminal to find out where things went wrong. |
Douglas Gregor | a26877f | 2008-11-17 17:14:10 +0000 | [diff] [blame] | 62 | |
Douglas Gregor | a3a8351 | 2009-04-01 23:51:29 +0000 | [diff] [blame] | 63 | //===---------------------------------------------------------------------===// |
| 64 | More ideas for code modification hints: |
| 65 | - If no member of a given name is found in a class/struct, search through the names of entities that do exist in the class and suggest the closest candidate. e.g., if I write "DS.setTypeSpecType", it would suggest "DS.SetTypeSpecType" (edit distance = 1). |
| 66 | - If a class member is defined out-of-line but isn't in the class declaration (and there are no close matches!), provide the option to add an in-class declaration. |
| 67 | - Fix-it hints for the inclusion of headers when needed for particular features (e.g., <typeinfo> for typeid) |
Daniel Dunbar | 9af8695 | 2009-11-10 16:23:44 +0000 | [diff] [blame] | 68 | |
| 69 | //===---------------------------------------------------------------------===// |
| 70 | |
| 71 | Options to support: |
Daniel Dunbar | 9af8695 | 2009-11-10 16:23:44 +0000 | [diff] [blame] | 72 | -ftabstop=width |
| 73 | -fpreprocessed mode. |
| 74 | -nostdinc++ |
| 75 | -imultilib |