File: ClassLayoutTest.cpp

package info (click to toggle)
llvm-toolchain-11 1%3A11.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 995,808 kB
  • sloc: cpp: 4,767,656; ansic: 760,916; asm: 477,436; python: 170,940; objc: 69,804; lisp: 29,914; sh: 23,855; f90: 18,173; pascal: 7,551; perl: 7,471; ml: 5,603; awk: 3,489; makefile: 2,573; xml: 915; cs: 573; fortran: 503; javascript: 452
file content (111 lines) | stat: -rw-r--r-- 2,187 bytes parent folder | download | duplicates (4)
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
// To avoid linking MSVC specific libs, we don't test virtual/override methods
// that needs vftable support in this file.

// Enum.
enum Enum { RED, GREEN, BLUE };
Enum EnumVar;

// Union.
union Union {
  short Row;
  unsigned short Col;
  int Line : 16; // Test named bitfield.
  short : 8;     // Unnamed bitfield symbol won't be generated in PDB.
  long Table;
};
Union UnionVar;

// Struct.
struct Struct;
typedef Struct StructTypedef;

struct Struct {
  bool A;
  unsigned char UCharVar;
  unsigned int UIntVar;
  long long LongLongVar;
  Enum EnumVar; // Test struct has UDT member.
  int array[10];
};
struct Struct StructVar;

struct _List; // Forward declaration.
struct Complex {
  struct _List *array[90];
  struct { // Test unnamed struct. MSVC treats it as `int x`
    int x;
  };
  union { // Test unnamed union. MSVC treats it as `int a; float b;`
    int a;
    float b;
  };
};
struct Complex c;

struct _List { // Test doubly linked list.
  struct _List *current;
  struct _List *previous;
  struct _List *next;
};
struct _List ListVar;

typedef struct {
  int a;
} UnnamedStruct; // Test unnamed typedef-ed struct.
UnnamedStruct UnnanmedVar;

// Class.
namespace MemberTest {
class Base {
public:
  Base() {}
  ~Base() {}

public:
  int Get() { return 0; }

protected:
  int a;
};
class Friend {
public:
  int f() { return 3; }
};
class Class : public Base { // Test base class.
  friend Friend;
  static int m_static; // Test static member variable.
public:
  Class() : m_public(), m_private(), m_protected() {}
  explicit Class(int a) { m_public = a; } // Test first reference of m_public.
  ~Class() {}

  static int StaticMemberFunc(int a, ...) {
    return 1;
  } // Test static member function.
  int Get() { return 1; }
  int f(Friend c) { return c.f(); }
  inline bool operator==(const Class &rhs) const // Test operator.
  {
    return (m_public == rhs.m_public);
  }

public:
  int m_public;
  struct Struct m_struct;

private:
  Union m_union;
  int m_private;

protected:
  friend class Friend;
  int m_protected;
};
} // namespace MemberTest

int main() {
  MemberTest::Base B1;
  B1.Get();
  MemberTest::Class::StaticMemberFunc(1, 10, 2);
  return 0;
}