Chromium Code Reviews

Unified Diff: src/compiler/code-assembler.cc

Issue 2623633003: [Atomics] Make Atomics.exchange a builtin using TF (Closed)
Patch Set: fix win Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: src/compiler/code-assembler.cc
diff --git a/src/compiler/code-assembler.cc b/src/compiler/code-assembler.cc
index cbaf07f0025469a65fb63b4891236125d55c3bd3..1249156461ecc069cc6d3036ce78a57fb8c9f862 100644
--- a/src/compiler/code-assembler.cc
+++ b/src/compiler/code-assembler.cc
@@ -452,6 +452,11 @@ Node* CodeAssembler::AtomicStore(MachineRepresentation rep, Node* base,
return raw_assembler()->AtomicStore(rep, base, offset, value);
}
+Node* CodeAssembler::AtomicExchange(MachineType type, Node* base, Node* offset,
+ Node* value) {
+ return raw_assembler()->AtomicExchange(type, base, offset, value);
+}
+
Node* CodeAssembler::StoreRoot(Heap::RootListIndex root_index, Node* value) {
DCHECK(Heap::RootCanBeWrittenAfterInitialization(root_index));
Node* roots_array_start =

Powered by Google App Engine