summaryrefslogtreecommitdiff
path: root/builtin/assert.h
blob: 36e77a5a30b658ce6106f62dae956017cd53d7af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/* Copyright 2016 The ChromiumOS Authors
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef __CROS_EC_ASSERT_H__
#define __CROS_EC_ASSERT_H__

/* Include CONFIG definitions for EC sources. */
#ifndef THIRD_PARTY
#include "common.h"
#endif

#ifdef __cplusplus
extern "C" {
#endif

#ifdef CONFIG_DEBUG_ASSERT
#ifdef CONFIG_DEBUG_ASSERT_REBOOTS

#ifdef CONFIG_DEBUG_ASSERT_BRIEF
extern void panic_assert_fail(const char *fname, int linenum)
	__attribute__((noreturn));
#define ASSERT(cond)                                           \
	do {                                                   \
		if (!(cond))                                   \
			panic_assert_fail(__FILE__, __LINE__); \
	} while (0)
#else
extern void panic_assert_fail(const char *msg, const char *func,
			      const char *fname, int linenum)
	__attribute__((noreturn));
#define ASSERT(cond)                                                 \
	do {                                                         \
		if (!(cond))                                         \
			panic_assert_fail(#cond, __func__, __FILE__, \
					  __LINE__);                 \
	} while (0)
#endif
#else
#define ASSERT(cond)                     \
	do {                             \
		if (!(cond))             \
			__asm("bkpt");   \
		__builtin_unreachable(); \
	} while (0)
#endif
#else
#define ASSERT(cond)
#endif

/* This collides with cstdlib, so exclude it where cstdlib is supported. */
#ifndef assert
#define assert(x...) ASSERT(x)
#endif

#ifdef __cplusplus
}
#endif

#endif /* __CROS_EC_ASSERT_H__ */