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

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 FCG+CS intrinsic wiring, experiments with CodeStubAssembler Created 4 years, 11 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 8a43ec13a66e47aa14aa0ce6535d0bbc8895979c..adfe9f5cda0edc43fef1303b9f34bc2a5d17cf40 100644
--- a/src/interface-descriptors.h
+++ b/src/interface-descriptors.h
@@ -78,7 +78,9 @@ class PlatformInterfaceDescriptor;
V(GrowArrayElements) \
V(InterpreterPushArgsAndCall) \
V(InterpreterPushArgsAndConstruct) \
- V(InterpreterCEntry)
+ V(InterpreterCEntry) \
+ V(AtomicsLoad) \
+ V(Builtin)
class CallInterfaceDescriptorData {
@@ -785,6 +787,17 @@ class InterpreterCEntryDescriptor : public CallInterfaceDescriptor {
};
+class AtomicsLoadDescriptor : public CallInterfaceDescriptor {
+ public:
+ DECLARE_DESCRIPTOR(AtomicsLoadDescriptor, CallInterfaceDescriptor)
+};
+
+
+class BuiltinDescriptor : public CallInterfaceDescriptor {
+ public:
+ DECLARE_DESCRIPTOR(BuiltinDescriptor, CallInterfaceDescriptor)
+};
+
#undef DECLARE_DESCRIPTOR

Powered by Google App Engine
This is Rietveld 408576698