- Timestamp:
- 08/06/10 22:37:16 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/generic-class-file/abcl/src/org/armedbear/lisp/jvm-instructions.lisp
r12867 r12868 398 398 (declare (optimize speed)) 399 399 (declare (type '(integer 0 255) opcode)) 400 (or (<= 153 opcode 16 8)400 (or (<= 153 opcode 167) 401 401 (<= 198 opcode 200))) ;; ifnull / ifnonnull / goto_w 402 402 … … 404 404 (inline unconditional-control-transfer-p)) 405 405 (defun unconditional-control-transfer-p (opcode) 406 (or (= 16 8opcode) ;; goto406 (or (= 167 opcode) ;; goto 407 407 (= 200 opcode) ;; goto_w 408 408 (<= 172 opcode 177) ;; ?return … … 720 720 (setf depth (+ depth instruction-stack)) 721 721 (setf (instruction-depth instruction) depth) 722 (when (branch- opcode-p opcode)722 (when (branch-p opcode) 723 723 (let ((label (car (instruction-args instruction)))) 724 724 (declare (type symbol label))
Note: See TracChangeset
for help on using the changeset viewer.