1
0
mirror of https://github.com/golang/go synced 2024-11-19 22:14:43 -07:00

libmach: Add disassembly for newly implemented opcodes

R=rsc
CC=golang-dev
https://golang.org/cl/183140
This commit is contained in:
Evan Shaw 2010-01-06 19:26:04 -08:00 committed by Russ Cox
parent 74a9fc18f6
commit c713a1f982

View File

@ -1014,6 +1014,8 @@ static Optable optabDB[8+64] =
[0x03] 0,0, "FMOVLP F0,%e", [0x03] 0,0, "FMOVLP F0,%e",
[0x05] 0,0, "FMOVX %e,F0", [0x05] 0,0, "FMOVX %e,F0",
[0x07] 0,0, "FMOVXP F0,%e", [0x07] 0,0, "FMOVXP F0,%e",
[0x0d] 0,0, "FUCOMI F0,%f",
[0x0e] 0,0, "FCOMI F0,%f",
[0x2a] 0,0, "FCLEX", [0x2a] 0,0, "FCLEX",
[0x2b] 0,0, "FINIT", [0x2b] 0,0, "FINIT",
}; };
@ -1080,6 +1082,8 @@ static Optable optabDF[8+8] =
[0x06] 0,0, "FBSTP %e", [0x06] 0,0, "FBSTP %e",
[0x07] 0,0, "FMOVLP F0,%e", [0x07] 0,0, "FMOVLP F0,%e",
[0x0c] R0,0, "FSTSW %OAX", [0x0c] R0,0, "FSTSW %OAX",
[0x0d] 0,0, "FUCOMIP F0,%f",
[0x0e] 0,0, "FCOMIP F0,%f",
}; };
static Optable optabF6[8] = static Optable optabF6[8] =