[Git][cmucl/cmucl][master] Disassemble BREAK inst as INT3.
Raymond Toy
rtoy at common-lisp.net
Sun Oct 11 16:07:14 UTC 2015
Raymond Toy pushed to branch master at cmucl / cmucl
Commits:
e15cd9fa by Raymond Toy at 2015-10-11T09:07:05Z
Disassemble BREAK inst as INT3.
The break inst is really the int3 instruction, so disassemble it as
int3.
- - - - -
1 changed file:
- src/compiler/x86/insts.lisp
Changes:
=====================================
src/compiler/x86/insts.lisp
=====================================
--- a/src/compiler/x86/insts.lisp
+++ b/src/compiler/x86/insts.lisp
@@ -2105,6 +2105,7 @@
(define-instruction break (segment code)
(:declare (type (unsigned-byte 8) code))
(:printer byte-imm ((op #b11001100)) '(:name :tab code)
+ :print-name 'int3
:control #'break-control)
(:emitter
(emit-byte segment #b11001100)
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/e15cd9fa3961dbb4e37aedc83e1c9475fd4fca73
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mailman.common-lisp.net/pipermail/cmucl-cvs/attachments/20151011/c326c2a1/attachment.html>
More information about the cmucl-cvs
mailing list