blob: 8f7a8a5dd709ef42e36c05eeecc1a88f8c7d94d9 (
plain) (
blame)
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
|
/*
20080506-1.c from the execute part of the gcc torture tests.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
#if !defined(__SDCC_pic16) && !defined(__SDCC_pdk14) // Lack of memory
typedef unsigned long HARD_REG_SET[2];
HARD_REG_SET reg_class_contents[2];
struct du_chain
{
struct du_chain *next_use;
int cl;
};
void
merge_overlapping_regs (HARD_REG_SET *p)
{
if ((*p)[0] != -1 || (*p)[1] != -1)
ASSERT (0);
}
void
regrename_optimize (struct du_chain *this)
{
HARD_REG_SET this_unavailable;
unsigned long *scan_fp_;
int n_uses;
struct du_chain *last;
this_unavailable[0] = 0;
this_unavailable[1] = 0;
n_uses = 0;
for (last = this; last->next_use; last = last->next_use)
{
scan_fp_ = reg_class_contents[last->cl];
n_uses++;
this_unavailable[0] |= ~ scan_fp_[0];
this_unavailable[1] |= ~ scan_fp_[1];
}
if (n_uses < 1)
return;
scan_fp_ = reg_class_contents[last->cl];
this_unavailable[0] |= ~ scan_fp_[0];
this_unavailable[1] |= ~ scan_fp_[1];
merge_overlapping_regs (&this_unavailable);
}
#endif
void
testTortureExecute (void)
{
#if !defined(__SDCC_pic16) && !defined(__SDCC_pdk14) // Lack of memory
struct du_chain du1 = { 0, 0 };
struct du_chain du0 = { &du1, 1 };
reg_class_contents[0][0] = -1;
reg_class_contents[0][1] = -1;
reg_class_contents[1][0] = 0;
reg_class_contents[1][1] = 0;
regrename_optimize (&du0);
return;
#endif
}
|