macros.m4

来自「一个C源代码分析器」· M4 代码 · 共 35 行

M4
35
字号
dnl NOTE: The $1 below is the argument to EXTEND, not register $1.define(EXTEND,`ifelse(SIZE, `l',`ifelse(SIGNED, `true',`	sextl $1, $1',dnl`	zapnot $1, 0xf, $1')')')dnldnl FULLEXTEND -- extend the register named in the first argumentdefine(FULLEXTEND,`ifelse(SIZE, `l',`	sextl $1, $1')')dnldnl This is used by divqu.define(ADJQU,`ifelse(MODE, `qu',`	ldit	$f26, 18446744073709551616.0	addt	$f26, $1, $f26	fcmovlt	$1, $f26, $1')')dnldefine(DOREM,`ifelse(BASEOP, `rem',`	! Compute the remainder.ifelse(SIZE, `l',`	mull t11, t12, t11	subl t10, t11, t12',dnl Note mulq/subq were only really used in remq, but we will find outdnl   if assuming they apply to remqu as well is wrong or not.`	mulq t11, t12, t11	subq t10, t11, t12')')')dnl

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?