File: builtins-memcpy-inline.cpp

package info (click to toggle)
llvm-toolchain-14 1%3A14.0.6-16
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,496,368 kB
  • sloc: cpp: 5,593,980; ansic: 986,873; asm: 585,869; python: 184,223; objc: 72,530; lisp: 31,119; f90: 27,793; javascript: 9,780; pascal: 9,762; sh: 9,482; perl: 7,468; ml: 5,432; awk: 3,523; makefile: 2,547; xml: 953; cs: 573; fortran: 567
file content (38 lines) | stat: -rw-r--r-- 1,449 bytes parent folder | download | duplicates (8)
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
// RUN: %clang_cc1 -fsyntax-only -verify %s

#define NULL ((char *)0)

#if __has_builtin(__builtin_memcpy_inline)
#warning defined as expected
// expected-warning@-1 {{defined as expected}}
#endif

void test_memcpy_inline_null_src(void *ptr) {
  __builtin_memcpy_inline(ptr, NULL, 4); // expected-warning {{null passed to a callee that requires a non-null argument}}
}

void test_memcpy_inline_null_dst(void *ptr) {
  __builtin_memcpy_inline(NULL, ptr, 4); // expected-warning {{null passed to a callee that requires a non-null argument}}
}

void test_memcpy_inline_null_buffers() {
  __builtin_memcpy_inline(NULL, NULL, 4);
  // expected-warning@-1 {{null passed to a callee that requires a non-null argument}}
  // expected-warning@-2 {{null passed to a callee that requires a non-null argument}}
}

void test_memcpy_inline_null_buffer_is_ok_if_size_is_zero(void *ptr) {
  __builtin_memcpy_inline(ptr, NULL, /*size */ 0);
  __builtin_memcpy_inline(NULL, ptr, /*size */ 0);
  __builtin_memcpy_inline(NULL, NULL, /*size */ 0);
}

void test_memcpy_inline_non_constant_size(void *dst, const void *src, unsigned size) {
  __builtin_memcpy_inline(dst, src, size); // expected-error {{argument to '__builtin_memcpy_inline' must be a constant integer}}
}

template <unsigned size>
void test_memcpy_inline_template(void *dst, const void *src) {
  // we do not try to evaluate size in non intantiated templates.
  __builtin_memcpy_inline(dst, src, size);
}