File: libcxx-shared-ptr-stress.mm

package info (click to toggle)
swiftlang 6.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,519,992 kB
  • sloc: cpp: 9,107,863; ansic: 2,040,022; asm: 1,135,751; python: 296,500; objc: 82,456; f90: 60,502; lisp: 34,951; pascal: 19,946; sh: 18,133; perl: 7,482; ml: 4,937; javascript: 4,117; makefile: 3,840; awk: 3,535; xml: 914; fortran: 619; cs: 573; ruby: 573
file content (77 lines) | stat: -rw-r--r-- 2,403 bytes parent folder | download | duplicates (20)
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
// RUN: %clangxx_tsan %s -o %t -framework Foundation
// RUN: %run %t 2>&1 | FileCheck %s

#import <Foundation/Foundation.h>

#import <atomic>
#import <cassert>
#import <cstdio>
#import <memory>

std::atomic<long> shared_call_counter(0);
std::atomic<long> weak_call_counter(0);
std::atomic<long> destructor_counter(0);
std::atomic<long> weak_destroyed_counter(0);

struct MyStruct {
  std::atomic<long> self_counter;
  MyStruct() : self_counter(0) { }
  virtual void shared_call() {
    std::atomic_fetch_add_explicit(&self_counter, 1, std::memory_order_relaxed);
    std::atomic_fetch_add_explicit(&shared_call_counter, 1, std::memory_order_relaxed);
  }
  virtual void weak_call() {
    std::atomic_fetch_add_explicit(&weak_call_counter, 1, std::memory_order_relaxed);
  }
  virtual ~MyStruct() {
    long n = self_counter;
    assert(n == 1000);
    std::atomic_fetch_add_explicit(&destructor_counter, 1, std::memory_order_relaxed);
  }
};

int main(int argc, const char *argv[]) {
  std::fprintf(stderr, "Hello world.\n");

  dispatch_queue_t q = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);

  dispatch_group_t g = dispatch_group_create();

  for (int i = 0; i < 1000; i++) {
    std::shared_ptr<MyStruct> shared(new MyStruct());
    std::weak_ptr<MyStruct> weak(shared);

    dispatch_group_async(g, q, ^{
      for (int j = 0; j < 1000; j++) {
        std::shared_ptr<MyStruct> shared_copy(shared);
        shared_copy->shared_call();
      }
    });
    dispatch_group_async(g, q, ^{
      for (int j = 0; j < 1000; j++) {
        std::shared_ptr<MyStruct> weak_copy = weak.lock();
        if (weak_copy) {
          weak_copy->weak_call();
        } else {
          std::atomic_fetch_add_explicit(&weak_destroyed_counter, 1, std::memory_order_relaxed);
          break;
        }
      }
    });
  }

  dispatch_group_wait(g, DISPATCH_TIME_FOREVER);

  std::fprintf(stderr, "shared_call_counter = %ld\n", shared_call_counter.load());
  std::fprintf(stderr, "weak_call_counter = %ld\n", weak_call_counter.load());
  std::fprintf(stderr, "destructor_counter = %ld\n", destructor_counter.load());
  std::fprintf(stderr, "weak_destroyed_counter = %ld\n", weak_destroyed_counter.load());

  std::fprintf(stderr, "Done.\n");
}

// CHECK: Hello world.
// CHECK: shared_call_counter = 1000000
// CHECK: destructor_counter = 1000
// CHECK: Done.
// CHECK-NOT: WARNING: ThreadSanitizer