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

Unified Diff: src/interface-descriptors.h

Issue 1617503003: [Atomics] code stubs for atomic operations (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: remove Context() Created 4 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 6a5e1fa5efd97ed7958d34a3a4914687b6933988..7e26f5e8a877e9a33e7b1692727f2680dffb2322 100644
--- a/src/interface-descriptors.h
+++ b/src/interface-descriptors.h
@@ -79,7 +79,8 @@ class PlatformInterfaceDescriptor;
V(InterpreterDispatch) \
V(InterpreterPushArgsAndCall) \
V(InterpreterPushArgsAndConstruct) \
- V(InterpreterCEntry)
+ V(InterpreterCEntry) \
+ V(AtomicsLoad)
class CallInterfaceDescriptorData {
public:
@@ -786,6 +787,13 @@ class InterpreterCEntryDescriptor : public CallInterfaceDescriptor {
DECLARE_DESCRIPTOR(InterpreterCEntryDescriptor, CallInterfaceDescriptor)
};
+
+class AtomicsLoadDescriptor : public CallInterfaceDescriptor {
+ public:
+ DECLARE_DESCRIPTOR(AtomicsLoadDescriptor, CallInterfaceDescriptor)
+};
+
+
#undef DECLARE_DESCRIPTOR

Powered by Google App Engine
This is Rietveld 408576698