📄 alloca.s
字号:
/* alloca.s 4.1 83/06/27 *//* like alloc, but automatic automatic free in return */#include "DEFS.h"ENTRY(alloca) subl2 4(ap),sp /* crude allocation */ movl 16(fp),r1 /* pc */ movq 8(fp),ap /* new (old) ap and fp */ bicl2 $3,sp /* 4-byte align */ addl2 $7*4,sp /* reuse space of mscp */ movl sp,r0 /* return value */ jmp (r1) /* funny return */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -