Index: src/v8globals.h |
diff --git a/src/v8globals.h b/src/v8globals.h |
index 648413fed2107b61b130264390b6f215c686bb8b..95390adcf69a7d445f18276189b9e5b447d3ab9a 100644 |
--- a/src/v8globals.h |
+++ b/src/v8globals.h |
@@ -412,6 +412,13 @@ enum StateTag { |
#endif |
+enum CpuImplementer { |
+ UNKNOWN_IMPLEMENTER, |
+ ARM_IMPLEMENTER, |
+ QUALCOMM_IMPLEMENTER |
+}; |
+ |
+ |
// 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.) |
@@ -427,6 +434,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 |