Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
// XFAIL: *

// RUN: %clangxx_host -gdwarf -o %t %s
// RUN: %lldb %t \
// RUN: -o "expr alignof(OverlappingDerived)" \
// RUN: -o "expr sizeof(OverlappingDerived)" \
// RUN: -o exit | FileCheck %s

// CHECK: (lldb) expr alignof(OverlappingDerived)
// CHECK-NEXT: ${{.*}} = 4
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Might be nice to put the checks next to the static_asserts?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

good point, done

// CHECK: (lldb) expr sizeof(OverlappingDerived)
// CHECK-NEXT: ${{.*}} = 4

struct Empty {};

struct OverlappingBase {
[[no_unique_address]] Empty e;
};
static_assert(sizeof(OverlappingBase) == 1);
static_assert(alignof(OverlappingBase) == 1);

struct Base {
int mem;
};

struct OverlappingDerived : Base, OverlappingBase {};
static_assert(alignof(OverlappingDerived) == 4);
static_assert(sizeof(OverlappingDerived) == 4);

int main() { OverlappingDerived d; }
41 changes: 41 additions & 0 deletions lldb/test/Shell/SymbolFile/DWARF/packed-alignof.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
// XFAIL: *
//
// RUN: %clangxx_host -gdwarf -o %t %s
// RUN: %lldb %t \
// RUN: -o "expr alignof(base)" \
// RUN: -o "expr alignof(packed_base)" \
// RUN: -o "expr alignof(derived)" \
// RUN: -o "expr sizeof(derived)" \
// RUN: -o exit | FileCheck %s

// CHECK: (lldb) expr alignof(base)
// CHECK-NEXT: ${{.*}} = 4
// CHECK: (lldb) expr alignof(packed_base)
// CHECK-NEXT: ${{.*}} = 1
// CHECK: (lldb) expr alignof(derived)
// CHECK-NEXT: ${{.*}} = 2
// CHECK: (lldb) expr sizeof(derived)
// CHECK-NEXT: ${{.*}} = 16

struct __attribute__((packed)) packed {
int x;
char y;
int z;
} g_packed_struct;

// LLDB incorrectly calculates alignof(base)
struct foo {};
struct base : foo { int x; };
static_assert(alignof(base) == 4);

// LLDB incorrectly calculates alignof(packed_base)
struct __attribute__((packed)) packed_base { int x; };
static_assert(alignof(packed_base) == 1);

struct derived : packed, packed_base {
short s;
} g_derived;
static_assert(alignof(derived) == 2);
static_assert(sizeof(derived) == 16);

int main() {}
14 changes: 14 additions & 0 deletions lldb/test/Shell/SymbolFile/DWARF/packed.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
// RUN: -o "expr sizeof(packed)" \
// RUN: -o "expr alignof(packed_and_aligned)" \
// RUN: -o "expr sizeof(packed_and_aligned)" \
// RUN: -o "expr alignof(derived)" \
// RUN: -o "expr sizeof(derived)" \
// RUN: -o exit | FileCheck %s

// CHECK: (lldb) expr alignof(packed)
Expand All @@ -16,6 +18,11 @@
// CHECK: (lldb) expr sizeof(packed_and_aligned)
// CHECK-NEXT: ${{.*}} = 16

// CHECK: (lldb) expr alignof(derived)
// CHECK-NEXT: ${{.*}} = 1
// CHECK: (lldb) expr sizeof(derived)
// CHECK-NEXT: ${{.*}} = 13

struct __attribute__((packed)) packed {
int x;
char y;
Expand All @@ -32,4 +39,11 @@ struct __attribute__((packed, aligned(16))) packed_and_aligned {
static_assert(alignof(packed_and_aligned) == 16);
static_assert(sizeof(packed_and_aligned) == 16);

struct __attribute__((packed)) packed_base { int x; };
static_assert(alignof(packed_base) == 1);

struct derived : packed, packed_base {} g_derived;
static_assert(alignof(derived) == 1);
static_assert(sizeof(derived) == 13);

int main() {}