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

Unified Diff: src/interface-descriptors.h

Issue 2691993004: [wasm] Introduce WasmStackGuard builtin (Closed)
Patch Set: Add builtins-wasm.cc ;) Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698