Files
mm/tools/asm-processor/tests/test2.c
T
Anghelo Carvajal 58022571ba subrepo asm-processor (#1212)
* yeet

* git subrepo clone git@github.com:simonlindholm/asm-processor.git tools/asm-processor

subrepo:
  subdir:   "tools/asm-processor"
  merged:   "bbd86ea1f"
upstream:
  origin:   "git@github.com:simonlindholm/asm-processor.git"
  branch:   "main"
  commit:   "bbd86ea1f"
git-subrepo:
  version:  "0.4.3"
  origin:   "https://github.com/ingydotnet/git-subrepo.git"
  commit:   "2f68596"
2023-03-17 15:16:30 +11:00

70 lines
992 B
C

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