472e712585b2a3596e7c095b8afd8f2079405c5a
[iec.git] / src / type3_AndroidCloud / anbox-master / external / cpu_features / src / cpuid_x86_clang_gcc.c
1 // Copyright 2017 Google Inc.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 //    http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14
15 #include "internal/cpuid_x86.h"
16
17 #if defined(CPU_FEATURES_ARCH_X86)
18 #if defined(CPU_FEATURES_COMPILER_CLANG) || defined(CPU_FEATURES_COMPILER_GCC)
19
20 #include <cpuid.h>
21
22 Leaf CpuId(uint32_t leaf_id) {
23   Leaf leaf;
24   __cpuid_count(leaf_id, 0, leaf.eax, leaf.ebx, leaf.ecx, leaf.edx);
25   return leaf;
26 }
27
28 uint32_t GetXCR0Eax(void) {
29   uint32_t eax, edx;
30   __asm("XGETBV" : "=a"(eax), "=d"(edx) : "c"(0));
31   return eax;
32 }
33
34 #endif  // defined(CPU_FEATURES_COMPILER_CLANG) ||
35         // defined(CPU_FEATURES_COMPILER_GCC)
36 #endif  // defined(CPU_FEATURES_ARCH_X86)