This is more a framework for adding such checks than an attempt to detect all forms of undefined behavior (which is almost certainly impossible in the “halting problem” sense).
The GCC documentation lists these as the currently supported checks:
-fsanitize=undefined
Enable UndefinedBehaviorSanitizer, a fast undefined behavior detector. Various computations will be instrumented
to detect undefined behavior at runtime. Current suboptions are:
-fsanitize=shiftThis option enables checking that the result of a shift operation is not undefined. Note that what exactly is considered
undefined differs slightly between C and C++, as well as between ISO
C90 and C99, etc.
-fsanitize=integer-divide-by-zeroDetect integer division by zero as well as INT_MIN / -1 division.
-fsanitize=unreachableWith this option, the compiler will turn the __builtin_unreachable call into a diagnostics message call instead. When reaching the __builtin_unreachable call, the behavior is
undefined.
-fsanitize=vla-boundThis option instructs the compiler to check that the size of a variable length array is positive. This option does not
have any effect in -std=c++1y mode, as the standard requires the
exception be thrown instead.
-fsanitize=nullThis option enables pointer checking. Particularly, the application built with this option turned on will issue an error
message when it tries to dereference a NULL pointer, or if a reference
(possibly an rvalue reference) is bound to a NULL pointer.
-fsanitize=returnThis option enables return statement checking. Programs built with this option turned on will issue an error message
when the end of a non-void function is reached without actually
returning a value. This option works in C++ only.
-fsanitize=signed-integer-overflowThis option enables signed integer overflow checking. We check that the result of +, *, and both unary
and binary – does not overflow in the signed arithmetics. Note,
integer promotion rules must be taken into account. That is, the
following is not an overflow:signed char a = SCHAR_MAX; a++;While
-ftrapvcauses traps for signed overflows to be emitted,-fsanitize=undefinedgives a diagnostic message. This
currently works only for the C family of languages.