Index: src/interface-descriptors.h |
diff --git a/src/interface-descriptors.h b/src/interface-descriptors.h |
index 1a15907235727c52b99fb4f0f2b05a1a17a5bd73..5ec577038d9e5736b1b7caf13e9243bec2bc3da8 100644 |
--- a/src/interface-descriptors.h |
+++ b/src/interface-descriptors.h |
@@ -95,7 +95,8 @@ class PlatformInterfaceDescriptor; |
V(InterpreterCEntry) \ |
V(ResumeGenerator) \ |
V(FrameDropperTrampoline) \ |
- V(PromiseHandleReject) |
+ V(PromiseHandleReject) \ |
+ V(WasmStackGuard) |
class V8_EXPORT_PRIVATE CallInterfaceDescriptorData { |
public: |
@@ -952,6 +953,12 @@ class PromiseHandleRejectDescriptor final : public CallInterfaceDescriptor { |
CallInterfaceDescriptor, kParameterCount) |
}; |
+class WasmStackGuardDescriptor final : public CallInterfaceDescriptor { |
+ public: |
+ DECLARE_DEFAULT_DESCRIPTOR(WasmStackGuardDescriptor, CallInterfaceDescriptor, |
+ 0) |
+}; |
+ |
#undef DECLARE_DESCRIPTOR_WITH_BASE |
#undef DECLARE_DESCRIPTOR |
#undef DECLARE_DESCRIPTOR_WITH_CUSTOM_FUNCTION_TYPE |