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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
|
auto_release_temp(); // TODO Needs to be tested.
print(">%<", S64_MIN + delta, to_standard_error = true);
// TODO DEBUG
print_owner_allocator :: (tag: string, memory: *void) {
owner := "unkown";
if true == xx context.allocator.proc(.IS_THIS_YOURS, 0, 0, memory, null) then owner = "default";
else if true == xx temp.proc(.IS_THIS_YOURS, 0, 0, memory, null) then owner = "temp";
print("'%' belongs to '%'\n", tag, owner);
}
// TODO DEBUG
print_database :: (db: Database) {
for db.tasks {
print("% | % : % : % : % : % : % : %\n", cast(string)it.name,
it.times[0],
it.times[1],
it.times[2],
it.times[3],
it.times[4],
it.times[5],
it.times[6]
);
}
}
// --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- //
Step_Iterator :: struct {
min: int;
max: int;
step: int;
}
step_iterator :: (min: int, max: int, step: int) -> Step_Iterator {
return .{ min, max, step };
}
for_expansion :: (iterator: Step_Iterator, body: Code, flags: For_Flags) #expand {
iteration_count: int;
for <=cast(bool)(flags & .REVERSE) i: iterator.min..iterator.max {
iteration_count += 1;
if iteration_count % iterator.step == 0 continue;
`it := i;
`it_index := void;
#insert body;
}
}
for step_iterator(0, 10, 2) {
log("%", it);
}
// --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- //
// Check what's going on with the temp allocator:
// Is it really the responsible for these paths?
// It seems that the next beta (after 0.1.055b) compiler allows us to check this pretty easily.
//
//
// An example that uses several different allocators, then asks them all
// who owns which memory.
//
// Note that this is probably not the kind of thing you want to do at runtime
// in the steady state, as it may not be very fast, but it could be a very helpful
// debugging facility.
//
#import "Basic";
#import "Pool";
#import "Flat_Pool";
#import "rpmalloc";
main :: () {
pool: Pool;
flat: Flat_Pool;
a := context.default_allocator;
b := Allocator.{pool_allocator_proc, *pool};
c := Allocator.{flat_pool_allocator_proc, *flat};
d := Allocator.{rpmalloc_allocator_proc, null};
d.proc(.STARTUP, 0, 0, null, null); // rpmalloc needs explicit init right now, but others don't.
ma := alloc(1000, allocator=a);
mb := alloc(1000, allocator=b);
mc := alloc(1000, allocator=c);
md := alloc(1000, allocator=d);
report_who_owns(ma, a, b, c, d);
report_who_owns(mb, a, b, c, d);
report_who_owns(mc, a, b, c, d);
report_who_owns(md, a, b, c, d);
}
report_who_owns :: (memory: *void, allocators: .. Allocator) {
someone_owns_this := false;
print("Querying all allocators for address: %\n", memory);
for allocators {
caps, name := get_capabilities(it);
assert((caps & .IS_THIS_YOURS) != 0); // It had better be claiming to support this!
yours := cast(bool) it.proc(.IS_THIS_YOURS, 0, 0, memory, it.data);
print("[%] says \"%\"\n", yours, name);
someone_owns_this ||= yours;
}
assert(someone_owns_this);
}
// --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- //
checked_add :: (a: $T, b: T) -> result: T, overflow: bool
#modify {
if T.type == .INTEGER return;
T = null;
}
{
overflow: bool;
result: T = a + b;
info := type_info(T);
if info.signed {
// (+A) + (+B) = −C
// (−A) + (−B) = +C
if ((a > 0) && (b > 0) && (result < 0)) || ((a < 0) && (b < 0) && (result > 0)) {
overflow = true;
}
} else {
if result < a {
overflow = true;
}
}
return result, overflow;
}
checked_sub :: (a: $T, b: T) -> result: T, overflow: bool
#modify {
if T.type == .INTEGER return;
T = null;
}
{
overflow: bool;
result: T = a - b;
info := type_info(T);
if info.signed {
// (+A) − (−B) = −C
// (−A) − (+B) = +C
if ((a > 0) && (b < 0) && (result < 0)) || ((a < 0) && (b > 0) && (result > 0)) {
overflow = true;
}
} else {
if result > a {
overflow = true;
}
}
return result, overflow;
}
|