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

Unified Diff: src/compiler/opcodes.h

Issue 2692753004: [turbofan] escape analysis supports arguments object and rest elements (Closed)
Patch Set: addressed comments Created 3 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/compiler/opcodes.h
diff --git a/src/compiler/opcodes.h b/src/compiler/opcodes.h
index de2e9edf6d4cc4915ebc2f278a7c46165a155348..17b30306db2df34621d2ed245d025a60b59524bc 100644
--- a/src/compiler/opcodes.h
+++ b/src/compiler/opcodes.h
@@ -48,29 +48,29 @@
V(RelocatableInt32Constant) \
V(RelocatableInt64Constant)
-#define INNER_OP_LIST(V) \
- V(Select) \
- V(Phi) \
- V(EffectPhi) \
- V(InductionVariablePhi) \
- V(Checkpoint) \
- V(BeginRegion) \
- V(FinishRegion) \
- V(FrameState) \
- V(StateValues) \
- V(TypedStateValues) \
- V(ArgumentsObjectState) \
- V(ObjectState) \
- V(TypedObjectState) \
- V(Call) \
- V(Parameter) \
- V(OsrValue) \
- V(OsrGuard) \
- V(LoopExit) \
- V(LoopExitValue) \
- V(LoopExitEffect) \
- V(Projection) \
- V(Retain) \
+#define INNER_OP_LIST(V) \
+ V(Select) \
+ V(Phi) \
+ V(EffectPhi) \
+ V(InductionVariablePhi) \
+ V(Checkpoint) \
+ V(BeginRegion) \
+ V(FinishRegion) \
+ V(FrameState) \
+ V(StateValues) \
+ V(TypedStateValues) \
+ V(ArgumentsElementsState) \
+ V(ObjectState) \
+ V(TypedObjectState) \
+ V(Call) \
+ V(Parameter) \
+ V(OsrValue) \
+ V(OsrGuard) \
+ V(LoopExit) \
+ V(LoopExitValue) \
+ V(LoopExitEffect) \
+ V(Projection) \
+ V(Retain) \
V(TypeGuard)
#define COMMON_OP_LIST(V) \
@@ -338,7 +338,8 @@
V(ObjectIsSmi) \
V(ObjectIsString) \
V(ObjectIsUndetectable) \
- V(NewRestParameterElements) \
+ V(ArgumentsFrame) \
+ V(ArgumentsLength) \
V(NewUnmappedArgumentsElements) \
V(ArrayBufferWasNeutered) \
V(EnsureWritableFastElements) \

Powered by Google App Engine
This is Rietveld 408576698