File: dispatch.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 (58 lines) | stat: -rw-r--r-- 1,889 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
// Test for threads spawned with wqthread_start
// RUN: %clangxx_lsan %s -DDISPATCH_ASYNC -o %t-async -framework Foundation
// RUN: %clangxx_lsan %s -DDISPATCH_SYNC -o %t-sync -framework Foundation
// RUN: %env_lsan_opts="report_objects=1:use_stacks=0:use_registers=0" not %run %t-async 2>&1 | FileCheck %s
// RUN: %env_lsan_opts="report_objects=1:use_stacks=0:use_registers=0" not %run %t-sync 2>&1 | FileCheck %s

#include <dispatch/dispatch.h>
#include <pthread.h>
#include <stdlib.h>

#include "sanitizer_common/print_address.h"

bool done = false;

void worker_do_leak(int size) {
  void *p = malloc(size);
  print_address("Test alloc: ", 1, p);
  done = true;
}

#if DISPATCH_ASYNC
// Tests for the Grand Central Dispatch. See
// http://developer.apple.com/library/mac/#documentation/Performance/Reference/GCD_libdispatch_Ref/Reference/reference.html
// for the reference.
void TestGCDDispatch() {
  dispatch_queue_t queue = dispatch_get_global_queue(0, 0);
  dispatch_block_t block = ^{
    worker_do_leak(1337);
  };
  // dispatch_async() runs the task on a worker thread that does not go through
  // pthread_create(). We need to verify that LeakSanitizer notices that the
  // thread has started.
  dispatch_async(queue, block);
  while (!done)
    pthread_yield_np();
}
#elif DISPATCH_SYNC
void TestGCDDispatch() {
  dispatch_queue_t queue = dispatch_get_global_queue(2, 0);
  dispatch_block_t block = ^{
    worker_do_leak(1337);
  };
  // dispatch_sync() runs the task on a worker thread that does not go through
  // pthread_create(). We need to verify that LeakSanitizer notices that the
  // thread has started.
  dispatch_sync(queue, block);
}
#endif

int main() {
  TestGCDDispatch();
  return 0;
}

// CHECK: Test alloc: [[addr:0x[0-9,a-f]+]]
// CHECK: LeakSanitizer: detected memory leaks
// CHECK: [[addr]] (1337 bytes)
// CHECK: SUMMARY: {{(Leak|Address)}}Sanitizer: