cb424d7448
verify-patch-sanity.py validates every active recipe .patch has internally- consistent hunk line counts — catching the 'malformed patch at line N' failure at commit/CI/preflight time instead of hours into a cook. This cycle hit that class three times (qtwaylandscanner, sddm, xwayland), each only discovered when cookbook tried to apply the patch. Running it across the repo found 29 latent malformed patches (validated against GNU patch: e.g. relibc/P3-sysv-ipc reproduces 'malformed patch at line 22'). They were harmless only because they sit in vendored recipes (baked, not re- applied) — but would fail on any version-bump re-derivation. --fix recounts the hunk headers (body untouched) and repaired all 29. Wired into build-preflight.sh (Phase 1.0D) and redbear-ci.yml, with a unit test (test-patch-sanity.sh). Skips archived/legacy trees and unvalidatable formats (empty placeholders, bare-@@ git hunks).
51 lines
2.9 KiB
C++
51 lines
2.9 KiB
C++
//===-- SanitizerHandler.h - Definition of sanitizer handlers ---*- C++ -*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This is the internal per-function state used for llvm translation.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_CLANG_LIB_CODEGEN_SANITIZER_HANDLER_H
|
|
#define LLVM_CLANG_LIB_CODEGEN_SANITIZER_HANDLER_H
|
|
|
|
#define LIST_SANITIZER_CHECKS \
|
|
SANITIZER_CHECK(AddOverflow, add_overflow, 0) \
|
|
SANITIZER_CHECK(BuiltinUnreachable, builtin_unreachable, 0) \
|
|
SANITIZER_CHECK(CFICheckFail, cfi_check_fail, 0) \
|
|
SANITIZER_CHECK(DivremOverflow, divrem_overflow, 0) \
|
|
SANITIZER_CHECK(DynamicTypeCacheMiss, dynamic_type_cache_miss, 0) \
|
|
SANITIZER_CHECK(FloatCastOverflow, float_cast_overflow, 0) \
|
|
SANITIZER_CHECK(FunctionTypeMismatch, function_type_mismatch, 0) \
|
|
SANITIZER_CHECK(ImplicitConversion, implicit_conversion, 0) \
|
|
SANITIZER_CHECK(InvalidBuiltin, invalid_builtin, 0) \
|
|
SANITIZER_CHECK(InvalidObjCCast, invalid_objc_cast, 0) \
|
|
SANITIZER_CHECK(LoadInvalidValue, load_invalid_value, 0) \
|
|
SANITIZER_CHECK(MissingReturn, missing_return, 0) \
|
|
SANITIZER_CHECK(MulOverflow, mul_overflow, 0) \
|
|
SANITIZER_CHECK(NegateOverflow, negate_overflow, 0) \
|
|
SANITIZER_CHECK(NullabilityArg, nullability_arg, 0) \
|
|
SANITIZER_CHECK(NullabilityReturn, nullability_return, 1) \
|
|
SANITIZER_CHECK(NonnullArg, nonnull_arg, 0) \
|
|
SANITIZER_CHECK(NonnullReturn, nonnull_return, 1) \
|
|
SANITIZER_CHECK(OutOfBounds, out_of_bounds, 0) \
|
|
SANITIZER_CHECK(PointerOverflow, pointer_overflow, 0) \
|
|
SANITIZER_CHECK(ShiftOutOfBounds, shift_out_of_bounds, 0) \
|
|
SANITIZER_CHECK(SubOverflow, sub_overflow, 0) \
|
|
SANITIZER_CHECK(TypeMismatch, type_mismatch, 1) \
|
|
SANITIZER_CHECK(AlignmentAssumption, alignment_assumption, 0) \
|
|
SANITIZER_CHECK(VLABoundNotPositive, vla_bound_not_positive, 0) \
|
|
SANITIZER_CHECK(BoundsSafety, bounds_safety, 0)
|
|
|
|
enum SanitizerHandler {
|
|
#define SANITIZER_CHECK(Enum, Name, Version) Enum,
|
|
LIST_SANITIZER_CHECKS
|
|
#undef SANITIZER_CHECK
|
|
};
|
|
|
|
#endif // LLVM_CLANG_LIB_CODEGEN_SANITIZER_HANDLER_H
|