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
|
# Test boundary conditions for various architectures
GET_TEMPLATE = """
@micropython.viper
def get{off}(src: ptr8) -> uint:
return uint(src[{off}])
print(hex(get{off}(buffer)))
"""
BIT_THRESHOLDS = (5, 8, 11, 12)
SIZE = 1
@micropython.viper
def get_index(src: ptr8, i: int) -> int:
return src[i]
def data(start, len):
output = bytearray(len)
for idx in range(len):
output[idx] = (start + idx) & 0xFF
return output
buffer = bytearray((((1 << max(BIT_THRESHOLDS)) + 1) // 1024) * 1024)
val = 0
for bit in BIT_THRESHOLDS:
print("---", bit)
pre, idx, post = (((1 << bit) - (2 * SIZE)), ((1 << bit) - (1 * SIZE)), (1 << bit))
buffer[pre:post] = data(val, 3 * SIZE)
val = val + (3 * SIZE)
print(hex(get_index(buffer, pre)), hex(get_index(buffer, idx)), hex(get_index(buffer, post)))
exec(GET_TEMPLATE.format(off=pre))
exec(GET_TEMPLATE.format(off=idx))
exec(GET_TEMPLATE.format(off=post))
|