blob: 15969feb69cb47208b0a9497b4c4df4b0594fd32 (
plain)
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
|
const char buf1[1] = {1};
float func1(void) {
"func1";
return 0.1f;
}
const char buf2[1] = {2};
void func2(void) {
*(volatile float*)0 = -3.5792360305786133f;
*(volatile float*)0 = -3.5792362689971924f;
// "func2";
// return 0.2f;
}
const char buf3[1] = {3};
int func3(int x) {
switch(x) {
case 0:
return 1;
case 1:
return 2;
case 2:
return 3;
case 3:
return 4;
case 4:
return 5;
case 5:
return 4;
case 6:
return 4;
case 7:
return 4;
default:
return 3;
}
}
#if 1
GLOBAL_ASM(
.rdata
.word 0x66756e63 # func
.word 0x34000000 # 4\0\0\0
.word jumptarget + 4
.late_rodata
glabel rv
.word 0x3e4ccccd # 0.2f
.word jumptarget + 8
.text
glabel func4
lui $at, %hi(rv)
glabel jumptarget
jr $ra
lwc1 $f0, %lo(rv)($at)
jr $ra
nop
jr $ra
nop
jr $ra
nop
jr $ra
nop
)
#else
float func4(void) {
"func4";
return 0.2f;
}
#endif
|