// Copyright 2018 The Go Authors. All rights reserved.// Use of this source code is governed by a BSD-style// license that can be found in the LICENSE file.// +build 386 amd64 amd64p32// +build gccgopackagecpu//extern gccgoGetCpuidCountfuncgccgoGetCpuidCount(eaxArg,ecxArguint32,eax,ebx,ecx,edx*uint32)funccpuid(eaxArg,ecxArguint32)(eax,ebx,ecx,edxuint32){vara,b,c,duint32gccgoGetCpuidCount(eaxArg,ecxArg,&a,&b,&c,&d)returna,b,c,d}//extern gccgoXgetbvfuncgccgoXgetbv(eax,edx*uint32)funcxgetbv()(eax,edxuint32){vara,duint32gccgoXgetbv(&a,&d)returna,d}