Chromium Code Reviews| Index: src/v8globals.h |
| diff --git a/src/v8globals.h b/src/v8globals.h |
| index 37c4c65a873b0e7910d2df36f8650cf8607ca178..9ce172cf9916e2b55179b0b370b15e7ebe3dfe41 100644 |
| --- a/src/v8globals.h |
| +++ b/src/v8globals.h |
| @@ -425,6 +425,13 @@ enum StateTag { |
| #endif |
| +enum CpuImplementer { |
| + UnknownImplementer, |
|
ulan
2012/10/18 09:07:53
Nit: names of constants are usually all upper case
danno
2012/10/18 12:22:10
Done.
|
| + ARMImplementer, |
| + QualcommImplementer |
| +}; |
| + |
| + |
| // Feature flags bit positions. They are mostly based on the CPUID spec. |
| // (We assign CPUID itself to one of the currently reserved bits -- |
| // feel free to change this if needed.) |
| @@ -440,6 +447,7 @@ enum CpuFeature { SSE4_1 = 32 + 19, // x86 |
| VFP2 = 3, // ARM |
| SUDIV = 4, // ARM |
| UNALIGNED_ACCESSES = 5, // ARM |
| + MOVW_MOVT_IMMEDIATE_LOADS = 6, // ARM |
| SAHF = 0, // x86 |
| FPU = 1}; // MIPS |