File: align-x86.cpp

package info (click to toggle)
llvm-toolchain-14 1%3A14.0.6-12
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,496,180 kB
  • sloc: cpp: 5,593,972; ansic: 986,872; 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,538; xml: 953; cs: 573; fortran: 567
file content (62 lines) | stat: -rw-r--r-- 1,966 bytes parent folder | download | duplicates (11)
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
62
// RUN: %clang_cc1 -std=c++11 -triple i386-apple-darwin9 -fsyntax-only -verify %s
// expected-no-diagnostics

using size_t = decltype(sizeof(0));

struct complex_double {
  double real;
  double imag;
};

template <typename T, size_t ABI, size_t Preferred>
struct check_alignment {
  using type = T;
  static type value;

  static_assert(__alignof__(value) == Preferred, "__alignof__(value) != Preferred");
  static_assert(__alignof__(type) == Preferred, "__alignof__(type) != Preferred");
  static_assert(alignof(type) == ABI, "alignof(type) != ABI");
};

// PR3433
template struct check_alignment<double, 4, 8>;
template struct check_alignment<long long, 4, 8>;
template struct check_alignment<unsigned long long, 4, 8>;
template struct check_alignment<complex_double, 4, 4>;

// PR6362
struct __attribute__((packed))
packed_struct {
  unsigned int a;
} g_packedstruct;
template struct check_alignment<packed_struct, 1, 1>;
static_assert(__alignof__(g_packedstruct.a) == 1, "__alignof__(packed_struct.member) != 1");

template struct check_alignment<double[3], 4, 8>;

enum big_enum { x = 18446744073709551615ULL };
template struct check_alignment<big_enum, 4, 8>;

// PR5637

#define ALIGNED(x) __attribute__((aligned(x)))

typedef ALIGNED(2) struct {
  char a[3];
} aligned_before_struct;

static_assert(sizeof(aligned_before_struct)       == 3, "");
static_assert(sizeof(aligned_before_struct[1])    == 4, "");
static_assert(sizeof(aligned_before_struct[2])    == 6, "");
static_assert(sizeof(aligned_before_struct[2][1]) == 8, "");
static_assert(sizeof(aligned_before_struct[1][2]) == 6, "");

typedef struct ALIGNED(2) {
  char a[3];
} aligned_after_struct;

static_assert(sizeof(aligned_after_struct)       == 4, "");
static_assert(sizeof(aligned_after_struct[1])    == 4, "");
static_assert(sizeof(aligned_after_struct[2])    == 8, "");
static_assert(sizeof(aligned_after_struct[2][1]) == 8, "");
static_assert(sizeof(aligned_after_struct[1][2]) == 8, "");