Commit e881604d authored by artemkaxboy's avatar artemkaxboy Committed by Brad Fitzpatrick

cmd/internal/obj/x86: unexport movtab

Change-Id: Ia071f6914b3c155a88103f930af00028986ec8c7
Reviewed-on: https://go-review.googlesource.com/c/151019Reviewed-by: default avatarCherry Zhang <cherryyz@google.com>
parent 192b675f
...@@ -92,7 +92,7 @@ type Optab struct { ...@@ -92,7 +92,7 @@ type Optab struct {
op opBytes op opBytes
} }
type Movtab struct { type movtab struct {
as obj.As as obj.As
ft uint8 ft uint8
f3t uint8 f3t uint8
...@@ -3619,7 +3619,7 @@ const ( ...@@ -3619,7 +3619,7 @@ const (
movTLSReg movTLSReg
) )
var ymovtab = []Movtab{ var ymovtab = []movtab{
// push // push
{APUSHL, Ycs, Ynone, Ynone, movLit, [4]uint8{0x0e, 0}}, {APUSHL, Ycs, Ynone, Ynone, movLit, [4]uint8{0x0e, 0}},
{APUSHL, Yss, Ynone, Ynone, movLit, [4]uint8{0x16, 0}}, {APUSHL, Yss, Ynone, Ynone, movLit, [4]uint8{0x16, 0}},
...@@ -3733,8 +3733,8 @@ var ymovtab = []Movtab{ ...@@ -3733,8 +3733,8 @@ var ymovtab = []Movtab{
{AMOVW, Ytask, Ynone, Yml, movRegMem2op, [4]uint8{0x0f, 0x00, 1, 0}}, {AMOVW, Ytask, Ynone, Yml, movRegMem2op, [4]uint8{0x0f, 0x00, 1, 0}},
/* load full pointer - unsupported /* load full pointer - unsupported
Movtab{AMOVL, Yml, Ycol, movFullPtr, [4]uint8{0, 0, 0, 0}}, {AMOVL, Yml, Ycol, movFullPtr, [4]uint8{0, 0, 0, 0}},
Movtab{AMOVW, Yml, Ycol, movFullPtr, [4]uint8{Pe, 0, 0, 0}}, {AMOVW, Yml, Ycol, movFullPtr, [4]uint8{Pe, 0, 0, 0}},
*/ */
// double shift // double shift
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment