Lines Matching refs:bounds
31 def_bool $(cc-option,-fsanitize=bounds)
34 def_bool $(cc-option,-fsanitize=array-bounds)
37 bool "Perform array index bounds checking"
41 This option enables detection of directly indexed out of bounds
51 This is a weird case: Clang's -fsanitize=bounds includes
52 -fsanitize=local-bounds, but it's trapping-only, so for
53 Clang, we must use -fsanitize=array-bounds when we want
54 traditional array bounds checking enabled. For GCC, we
55 want -fsanitize=bounds.
62 bool "Perform array local bounds checking"
64 depends on $(cc-option,-fsanitize=local-bounds)
66 This option enables -fsanitize=local-bounds which traps when an
73 out-of-bounds.
115 bool "Perform checking for out of bounds enum values"