#include <stddef.h>
#include <string.h>
#include <stdlib.h>
#include "utils/ellipsis-error.h"
#include <stdio.h>
#include <stdint.h>
Go to the source code of this file.
|
#define | ELLIPSIS_CONTRACT(COUNT, COND, ACTION, VERB, CSTR, CTYPE, ...) |
|
#define | ELLIPSIS_CONTRACT_CHECK_STATIC(CTYPE, COND, CSTR, ...) |
|
#define | ELLIPSIS_CONTRACT_ICE_OR_TRUE(...) |
|
#define | ELLIPSIS_CONTRACT_IMPL(COUNT, COND, ACTION, VERB, CSTR, CTYPE, ...) |
|
#define | ELLIPSIS_CONTRACT_VIOLATION(COUNT, VERB, CTYPE, CSTR, ...) |
|
#define | ELLIPSIS_SARRAY_LITERAL ELLIPSIS_SARRAY_LITERAL_LOCAL |
|
#define | ELLIPSIS_SARRAY_LITERAL_GLOBAL(N, ...) |
|
#define | ELLIPSIS_SARRAY_OVERLAY(N) |
|
#define | ELLIPSIS_SARRAY_STATIC(N, ...) |
|
#define | ELLIPSIS_TEST_ICE(...) (false ? ELLIPSIS_TO_VOIDS(__VA_ARGS__) : (ellipsis‿contracts‿is_ice*)nullptr) |
|
#define | ELLIPSIS_TO_VOIDS(...) ((void*)((uintptr_t)((__VA_ARGS__)-(__VA_ARGS__)))) |
|
#define | STRINGIFY(...) STRINGIFY_(__VA_ARGS__) |
|
#define | STRINGIFY_(...) #__VA_ARGS__ |
|
- Warning
- This is a file generated by eĿlipsis version 20250309, do not modify
◆ ELLIPSIS_CONTRACT
#define ELLIPSIS_CONTRACT |
( |
|
COUNT, |
|
|
|
COND, |
|
|
|
ACTION, |
|
|
|
VERB, |
|
|
|
CSTR, |
|
|
|
CTYPE, |
|
|
|
... |
|
) |
| |
Value: \
do { \
_Generic( \
} while(false)
struct ellipsis‿contracts‿is_ice ellipsis‿contracts‿is_ice
Definition ellipsis-expression.c:24
#define __VA_OPT__
A pseudo macro that cannot be redefined.
Definition ellipsis-predefined.dirs:89
#define ELLIPSIS_TEST_ICE(...)
Definition ellipsis-sarray.h:55
#define ELLIPSIS_CONTRACT_CHECK_STATIC(CTYPE, COND, CSTR,...)
Definition ellipsis-sarray.h:63
#define ELLIPSIS_CONTRACT_IMPL(COUNT, COND, ACTION, VERB, CSTR, CTYPE,...)
Definition ellipsis-sarray.h:45
◆ ELLIPSIS_CONTRACT_CHECK_STATIC
#define ELLIPSIS_CONTRACT_CHECK_STATIC |
( |
|
CTYPE, |
|
|
|
COND, |
|
|
|
CSTR, |
|
|
|
... |
|
) |
| |
Value: ({\
"compile time violation of " CTYPE " " CSTR \
})
#define ELLIPSIS_CONTRACT_ICE_OR_TRUE(...)
Definition ellipsis-sarray.h:57
◆ ELLIPSIS_CONTRACT_ICE_OR_TRUE
#define ELLIPSIS_CONTRACT_ICE_OR_TRUE |
( |
|
... | ) |
|
Value: _Generic( \
#define true
The constant true made accessible to the preprocessor.
Definition ellipsis-builtins.dirs:32
◆ ELLIPSIS_CONTRACT_IMPL
#define ELLIPSIS_CONTRACT_IMPL |
( |
|
COUNT, |
|
|
|
COND, |
|
|
|
ACTION, |
|
|
|
VERB, |
|
|
|
CSTR, |
|
|
|
CTYPE, |
|
|
|
... |
|
) |
| |
Value:(((false) || (COND)) \
? (void)0 \
, ((false) \
? (void)0 \
: ACTION())))
#define ELLIPSIS_CONTRACT_VIOLATION(COUNT, VERB, CTYPE, CSTR,...)
Definition ellipsis-sarray.h:36
◆ ELLIPSIS_CONTRACT_VIOLATION
#define ELLIPSIS_CONTRACT_VIOLATION |
( |
|
COUNT, |
|
|
|
VERB, |
|
|
|
CTYPE, |
|
|
|
CSTR, |
|
|
|
... |
|
) |
| |
Value:({\
static char const contract_format_ ## COUNT[] = \
(VERB \
? fputs(contract_format_ ## COUNT, stderr) \
: 0);\
})
#define __FILE__
The current source file as required by the C standard.
Definition ellipsis-builtins.dirs:21
#define __LINE__
The current physical source line as required by the C standard.
Definition ellipsis-builtins.dirs:24
#define STRINGIFY(...)
Definition ellipsis-sarray.h:33
◆ ELLIPSIS_SARRAY_LITERAL
#define ELLIPSIS_SARRAY_LITERAL ELLIPSIS_SARRAY_LITERAL_LOCAL |
◆ ELLIPSIS_SARRAY_LITERAL_GLOBAL
#define ELLIPSIS_SARRAY_LITERAL_GLOBAL |
( |
|
N, |
|
|
|
... |
|
) |
| |
Value:
sizeof((ellipsis‿sarray‿base[]){__VA_ARGS__ }) \
/sizeof(ellipsis‿sarray‿base))) \
{\
.length = (N), \
.array = {__VA_ARGS__ }, \
}.fa)
#define ELLIPSIS_SARRAY_OVERLAY(N)
Definition ellipsis-sarray.h:177
◆ ELLIPSIS_SARRAY_OVERLAY
#define ELLIPSIS_SARRAY_OVERLAY |
( |
|
N | ) |
|
Value: union {\
struct {\
size_t const length;\
size_t const padding;\
ellipsis‿sarray‿base array[N];\
};\
}
A structure with a flexible array member of base type ellipsis‿sarray‿base.
Definition ellipsis-sarray.h:140
◆ ELLIPSIS_SARRAY_STATIC
#define ELLIPSIS_SARRAY_STATIC |
( |
|
N, |
|
|
|
... |
|
) |
| |
Value: (({\
sizeof((ellipsis‿sarray‿base[]){__VA_ARGS__ }) \
/sizeof(ellipsis‿sarray‿base)) \
__LOC_ID_1_1 = {\
.length = (N), \
.array = {__VA_ARGS__ }, \
};&__LOC_ID_1_1;})->fa)
◆ ELLIPSIS_TEST_ICE
◆ ELLIPSIS_TO_VOIDS
#define ELLIPSIS_TO_VOIDS |
( |
|
... | ) |
((void*)((uintptr_t)((__VA_ARGS__)-(__VA_ARGS__)))) |
◆ STRINGIFY
◆ STRINGIFY_
#define STRINGIFY_ |
( |
|
... | ) |
#__VA_ARGS__ |
◆ ellipsis‿contracts‿is_ice
◆ ellipsis‿contracts‿ignore‿dynamic
thread_local bool volatile ellipsis‿contracts‿ignore‿dynamic |
|
extern |
◆ ellipsis‿contracts‿proceed‿dynamic
thread_local bool volatile ellipsis‿contracts‿proceed‿dynamic |
|
extern |
◆ ellipsis‿contracts‿verbose‿dynamic
thread_local bool volatile ellipsis‿contracts‿verbose‿dynamic |
|
extern |