Upstream version 11.39.258.0
[platform/framework/web/crosswalk.git] / src / v8 / src / arm64 / assembler-arm64.h
index 82b4500..047256a 100644 (file)
@@ -320,6 +320,20 @@ struct FPRegister : public CPURegister {
   // End of V8 compatibility section -----------------------
 };
 
+struct SIMD128Register {
+  static const int kMaxNumRegisters = 0;
+
+  static int ToAllocationIndex(SIMD128Register reg) {
+    UNIMPLEMENTED();
+    return -1;
+  }
+
+  static const char* AllocationIndexToString(int index) {
+    UNIMPLEMENTED();
+    return NULL;
+  }
+};
+
 
 STATIC_ASSERT(sizeof(CPURegister) == sizeof(Register));
 STATIC_ASSERT(sizeof(CPURegister) == sizeof(FPRegister));