📄 pred.lisp
字号:
;;;;;; Converted by William Lott.;;;(in-package "SB!VM");;;; The Branch VOP.;;; The unconditional branch, emitted when we can't drop through to the desired;;; destination. Dest is the continuation we transfer control to.;;;(define-vop (branch) (:info dest) (:generator 5 (inst b dest)));;;; Conditional VOPs:(define-vop (if-eq) (:args (x :scs (any-reg descriptor-reg zero null)) (y :scs (any-reg descriptor-reg zero null))) (:conditional) (:info target not-p) (:policy :fast-safe) (:translate eq) (:generator 3 (inst cmpw x y) (inst b? (if not-p :ne :eq) target)))
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -