Introduce type nullability specifiers for C/C++.
Introduces the type specifiers __nonnull, __nullable, and __null_unspecified that describe the nullability of the pointer type to which the specifier appertains. Nullability type specifiers improve on the existing nonnull attributes in a few ways: - They apply to types, so one can represent a pointer to a non-null pointer, use them in function pointer types, etc. - As type specifiers, they are syntactically more lightweight than __attribute__s or [[attribute]]s. - They can express both the notion of 'should never be null' and also 'it makes sense for this to be null', and therefore can more easily catch errors of omission where one forgot to annotate the nullability of a particular pointer (this will come in a subsequent patch). Nullability type specifiers are maintained as type sugar, and therefore have no effect on mangling, encoding, overloading, etc. Nonetheless, they will be used for warnings about, e.g., passing 'null' to a method that does not accept it. This is the C/C++ part of rdar://problem/18868820. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@240146 91177308-0d34-0410-b5e6-96231b3b80d8
Showing
- include/clang/AST/Type.h 45 additions, 1 deletioninclude/clang/AST/Type.h
- include/clang/Basic/Attr.td 16 additions, 0 deletionsinclude/clang/Basic/Attr.td
- include/clang/Basic/DiagnosticCommonKinds.td 14 additions, 0 deletionsinclude/clang/Basic/DiagnosticCommonKinds.td
- include/clang/Basic/DiagnosticGroups.td 2 additions, 0 deletionsinclude/clang/Basic/DiagnosticGroups.td
- include/clang/Basic/DiagnosticParseKinds.td 4 additions, 0 deletionsinclude/clang/Basic/DiagnosticParseKinds.td
- include/clang/Basic/DiagnosticSemaKinds.td 28 additions, 0 deletionsinclude/clang/Basic/DiagnosticSemaKinds.td
- include/clang/Basic/Specifiers.h 15 additions, 0 deletionsinclude/clang/Basic/Specifiers.h
- include/clang/Basic/TokenKinds.def 5 additions, 0 deletionsinclude/clang/Basic/TokenKinds.def
- include/clang/Parse/Parser.h 1 addition, 0 deletionsinclude/clang/Parse/Parser.h
- lib/AST/Type.cpp 150 additions, 1 deletionlib/AST/Type.cpp
- lib/AST/TypePrinter.cpp 37 additions, 0 deletionslib/AST/TypePrinter.cpp
- lib/Lex/PPMacroExpansion.cpp 2 additions, 0 deletionslib/Lex/PPMacroExpansion.cpp
- lib/Parse/ParseDecl.cpp 45 additions, 0 deletionslib/Parse/ParseDecl.cpp
- lib/Parse/ParseTentative.cpp 6 additions, 1 deletionlib/Parse/ParseTentative.cpp
- lib/Sema/SemaDecl.cpp 28 additions, 3 deletionslib/Sema/SemaDecl.cpp
- lib/Sema/SemaType.cpp 254 additions, 10 deletionslib/Sema/SemaType.cpp
- lib/Sema/TreeTransform.h 11 additions, 0 deletionslib/Sema/TreeTransform.h
- test/FixIt/fixit-nullability-declspec.cpp 9 additions, 0 deletionstest/FixIt/fixit-nullability-declspec.cpp
- test/Parser/nullability.c 16 additions, 0 deletionstest/Parser/nullability.c
- test/Sema/non-null-warning.c 35 additions, 0 deletionstest/Sema/non-null-warning.c
Loading
Please register or sign in to comment