From c713a1f982442e77802e80397d0617af23d5bdc1 Mon Sep 17 00:00:00 2001 From: Evan Shaw Date: Wed, 6 Jan 2010 19:26:04 -0800 Subject: [PATCH] libmach: Add disassembly for newly implemented opcodes R=rsc CC=golang-dev https://golang.org/cl/183140 --- src/libmach/8db.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/libmach/8db.c b/src/libmach/8db.c index 9740ea4fca..8a52d4ae73 100644 --- a/src/libmach/8db.c +++ b/src/libmach/8db.c @@ -1014,6 +1014,8 @@ static Optable optabDB[8+64] = [0x03] 0,0, "FMOVLP F0,%e", [0x05] 0,0, "FMOVX %e,F0", [0x07] 0,0, "FMOVXP F0,%e", +[0x0d] 0,0, "FUCOMI F0,%f", +[0x0e] 0,0, "FCOMI F0,%f", [0x2a] 0,0, "FCLEX", [0x2b] 0,0, "FINIT", }; @@ -1080,6 +1082,8 @@ static Optable optabDF[8+8] = [0x06] 0,0, "FBSTP %e", [0x07] 0,0, "FMOVLP F0,%e", [0x0c] R0,0, "FSTSW %OAX", +[0x0d] 0,0, "FUCOMIP F0,%f", +[0x0e] 0,0, "FCOMIP F0,%f", }; static Optable optabF6[8] = -- 2.50.0