static void val_to_string(char *str, size_t size, struct type_descriptor *type,
#include <linux/bitops.h>
#include <linux/kernel.h>
const char *type_check_kinds[] = {
#if (BITS_PER_LONG == 64) && defined(__BIG_ENDIAN)
#define COLUMN_MASK (~(1U << REPORTED_BIT))
#define COLUMN_MASK (~0U)
#define LINE_MASK (~(1U << REPORTED_BIT))
static bool was_reported(struct source_location *location)
return test_and_set_bit(REPORTED_BIT, &location->reported);
static void print_source_location(const char *prefix,
struct source_location *loc)
pr_err("%s %s:%d:%d\n", prefix, loc->file_name,
loc->line & LINE_MASK, loc->column & COLUMN_MASK);
static bool suppress_report(struct source_location *loc)
return current->in_ubsan || was_reported(loc);
static bool type_is_int(struct type_descriptor *type)