-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.c
73 lines (53 loc) · 1.65 KB
/
example.c
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
#include <assert.h>
#include <pthread.h>
#include <stdint.h>
#include <stdio.h>
// Interfejs między C a Asemblerem
uint64_t notec(uint32_t n, char const *calc);
int64_t debug(uint32_t n, uint64_t *stack_pointer);
// Chcemy wystartować wszystkie obliczenia możliwie jednocześnie.
volatile unsigned wait = 1;
// Startujemy co najwyżej jedno obliczenie calc_1
// i parzystą liczbę obliczeń calc_2.
static const char calc_1[] = "6N8ZXab=12-+3*~FFF&cDe09|g";
static const char calc_2[] = "nY1^W";
static const uint64_t result_1 = (~((0xab - 0x12) * 3) & 0xfff) | 0xcde09;
// Ta funkcja jest wywoływana tylko w obliczeniu calc_1
// w celu sprawdzenia jego poprawności.
int64_t debug(uint32_t n, uint64_t *stack_pointer) {
assert(n == N - 1 && (n & 1) == 0);
assert(*stack_pointer == result_1);
// Usuwamy wynik ze stosu.
return 1;
}
void* thread_routine(void *data) {
uint32_t n = *(uint32_t*)data;
const char *calc;
printf("CCC\n");
if (n == N - 1 && (n & 1) == 0)
calc = calc_1; // To obliczenie jest uruchamiane co najwyżej w jednym wątku.
else
calc = calc_2; // To obliczenie jest uruchamiane w parzystej liczbie wątków.
while (wait);
uint64_t result = notec(n, calc);
printf("result: %ld\n", result);
if (n == N - 1 && (n & 1) == 0)
assert(result == 6);
else
assert(result == (n ^ 1));
return NULL;
}
int main () {
pthread_t tid[N];
uint32_t i, n[N];
printf("AAA\n");
for (i = 0; i < N; ++i) {
n[i] = i;
assert(0 == pthread_create(&tid[i], NULL, &thread_routine, (void*)&n[i]));
}
wait = 0;
for (i = 0; i < N; ++i)
assert(0 == pthread_join(tid[i], NULL));
printf("BBB\n");
return 0;
}