Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1104)

Side by Side Diff: src/trusted/validator_ragel/unreviewed/validator_features_all.c

Issue 11000033: Move validator_x86_XX.rl out of unreviewed. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012 The Native Client Authors. All rights reserved. 2 * Copyright (c) 2012 The Native Client Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 #include "native_client/src/trusted/validator/x86/nacl_cpuid.h" 7 #include "native_client/src/trusted/validator/x86/nacl_cpuid.h"
8 8
9 /* All supported features are enabled */ 9 /* All supported features are enabled */
10 const NaClCPUFeaturesX86 full_cpuid_features = { { 1, 1 }, { 10 const NaClCPUFeaturesX86 kFullCPUIDFeatures = { { 1, 1 }, {
11 1, /* NaClCPUFeature_3DNOW */ /* AMD-specific */ 11 1, /* NaClCPUFeature_3DNOW */ /* AMD-specific */
12 1, /* NaClCPUFeature_AES */ 12 1, /* NaClCPUFeature_AES */
13 1, /* NaClCPUFeature_AVX */ 13 1, /* NaClCPUFeature_AVX */
14 1, /* NaClCPUFeature_BMI1 */ 14 1, /* NaClCPUFeature_BMI1 */
15 1, /* NaClCPUFeature_CLFLUSH */ 15 1, /* NaClCPUFeature_CLFLUSH */
16 1, /* NaClCPUFeature_CLMUL */ 16 1, /* NaClCPUFeature_CLMUL */
17 1, /* NaClCPUFeature_CMOV */ 17 1, /* NaClCPUFeature_CMOV */
18 1, /* NaClCPUFeature_CX16 */ 18 1, /* NaClCPUFeature_CX16 */
19 1, /* NaClCPUFeature_CX8 */ 19 1, /* NaClCPUFeature_CX8 */
20 1, /* NaClCPUFeature_E3DNOW */ /* AMD-specific */ 20 1, /* NaClCPUFeature_E3DNOW */ /* AMD-specific */
(...skipping 17 matching lines...) Expand all
38 1, /* NaClCPUFeature_SSE3 */ 38 1, /* NaClCPUFeature_SSE3 */
39 1, /* NaClCPUFeature_SSE41 */ 39 1, /* NaClCPUFeature_SSE41 */
40 1, /* NaClCPUFeature_SSE42 */ 40 1, /* NaClCPUFeature_SSE42 */
41 1, /* NaClCPUFeature_SSE4A */ /* AMD-specific */ 41 1, /* NaClCPUFeature_SSE4A */ /* AMD-specific */
42 1, /* NaClCPUFeature_SSSE3 */ 42 1, /* NaClCPUFeature_SSSE3 */
43 1, /* NaClCPUFeature_TBM */ /* AMD-specific */ 43 1, /* NaClCPUFeature_TBM */ /* AMD-specific */
44 1, /* NaClCPUFeature_TSC */ 44 1, /* NaClCPUFeature_TSC */
45 1, /* NaClCPUFeature_x87 */ 45 1, /* NaClCPUFeature_x87 */
46 1 /* NaClCPUFeature_XOP */ /* AMD-specific */ 46 1 /* NaClCPUFeature_XOP */ /* AMD-specific */
47 } }; 47 } };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698