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

Unified Diff: src/compiler/opcodes.h

Issue 2692753004: [turbofan] escape analysis supports arguments object and rest elements (Closed)
Patch Set: handle the case where Deoptimizer::function_ is a Smi 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
« no previous file with comments | « src/compiler/js-create-lowering.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 25130232b3bd81cf478495c40d5690f3d177d73f..7dab45e0171e22783c0a6e98957b2d79c9af2120 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) \
@@ -339,7 +339,8 @@
V(ObjectIsSmi) \
V(ObjectIsString) \
V(ObjectIsUndetectable) \
- V(NewRestParameterElements) \
+ V(ArgumentsFrame) \
+ V(ArgumentsLength) \
V(NewUnmappedArgumentsElements) \
V(ArrayBufferWasNeutered) \
V(EnsureWritableFastElements) \
« no previous file with comments | « src/compiler/js-create-lowering.cc ('k') | src/compiler/simplified-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698