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

Unified Diff: src/compiler/opcodes.h

Issue 2203693002: [turbofan] Introduce initial support for TypedArrays. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@5254
Patch Set: Fix Retain Created 4 years, 4 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
« no previous file with comments | « src/compiler/memory-optimizer.cc ('k') | src/compiler/simplified-lowering.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/opcodes.h
diff --git a/src/compiler/opcodes.h b/src/compiler/opcodes.h
index f87374e739e43eb5dfd8502385c618ee5cc40609..21367562f8aec4e4eea3b0f27bd0d694c75dfc39 100644
--- a/src/compiler/opcodes.h
+++ b/src/compiler/opcodes.h
@@ -61,7 +61,8 @@
V(LoopExit) \
V(LoopExitValue) \
V(LoopExitEffect) \
- V(Projection)
+ V(Projection) \
+ V(Retain)
#define COMMON_OP_LIST(V) \
CONSTANT_OP_LIST(V) \
@@ -282,9 +283,11 @@
V(LoadField) \
V(LoadBuffer) \
V(LoadElement) \
+ V(LoadTypedElement) \
V(StoreField) \
V(StoreBuffer) \
V(StoreElement) \
+ V(StoreTypedElement) \
V(ObjectIsCallable) \
V(ObjectIsNumber) \
V(ObjectIsReceiver) \
@@ -473,7 +476,8 @@
V(Word32PairShr) \
V(Word32PairSar) \
V(AtomicLoad) \
- V(AtomicStore)
+ V(AtomicStore) \
+ V(UnsafePointerAdd)
#define MACHINE_SIMD_RETURN_SIMD_OP_LIST(V) \
V(CreateFloat32x4) \
« no previous file with comments | « src/compiler/memory-optimizer.cc ('k') | src/compiler/simplified-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698