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

Unified Diff: src/compiler/js-intrinsic-lowering.h

Issue 1617503003: [Atomics] code stubs for atomic operations (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: call code stub from TF 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/compiler/js-intrinsic-lowering.h
diff --git a/src/compiler/js-intrinsic-lowering.h b/src/compiler/js-intrinsic-lowering.h
index 1977a5847d858f6acdbf2153acfdab926e668d70..02a9c5ce5b01ac3a89fa44bf02f5ccbb879bb027 100644
--- a/src/compiler/js-intrinsic-lowering.h
+++ b/src/compiler/js-intrinsic-lowering.h
@@ -7,6 +7,7 @@
#include "src/compiler/common-operator.h"
#include "src/compiler/graph-reducer.h"
+#include "src/compiler/linkage.h"
namespace v8 {
namespace internal {
@@ -71,6 +72,7 @@ class JSIntrinsicLowering final : public AdvancedReducer {
Reduction ReduceCall(Node* node);
Reduction ReduceTailCall(Node* node);
Reduction ReduceGetSuperConstructor(Node* node);
+ Reduction ReduceAtomicsLoad(Node* node);
Reduction Change(Node* node, const Operator* op);
Reduction Change(Node* node, const Operator* op, Node* a, Node* b);
@@ -79,7 +81,7 @@ class JSIntrinsicLowering final : public AdvancedReducer {
Node* d);
Reduction ChangeToUndefined(Node* node, Node* effect = nullptr);
Reduction Change(Node* node, Callable const& callable,
- int stack_parameter_count);
+ int stack_parameter_count, CallDescriptor::Flags flags);
Graph* graph() const;
JSGraph* jsgraph() const { return jsgraph_; }

Powered by Google App Engine
This is Rietveld 408576698