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

Side by Side Diff: src/compiler/js-typed-lowering.h

Issue 1630523002: [turbofan] Switch JSForInPrepare to %ForInPrepare style. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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 unified diff | Download patch
« no previous file with comments | « src/compiler/js-generic-lowering.cc ('k') | src/compiler/js-typed-lowering.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_COMPILER_JS_TYPED_LOWERING_H_ 5 #ifndef V8_COMPILER_JS_TYPED_LOWERING_H_
6 #define V8_COMPILER_JS_TYPED_LOWERING_H_ 6 #define V8_COMPILER_JS_TYPED_LOWERING_H_
7 7
8 #include "src/base/flags.h" 8 #include "src/base/flags.h"
9 #include "src/compiler/graph-reducer.h" 9 #include "src/compiler/graph-reducer.h"
10 #include "src/compiler/opcodes.h" 10 #include "src/compiler/opcodes.h"
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 Reduction ReduceJSCreateLiteralArray(Node* node); 76 Reduction ReduceJSCreateLiteralArray(Node* node);
77 Reduction ReduceJSCreateLiteralObject(Node* node); 77 Reduction ReduceJSCreateLiteralObject(Node* node);
78 Reduction ReduceJSCreateFunctionContext(Node* node); 78 Reduction ReduceJSCreateFunctionContext(Node* node);
79 Reduction ReduceJSCreateWithContext(Node* node); 79 Reduction ReduceJSCreateWithContext(Node* node);
80 Reduction ReduceJSCreateCatchContext(Node* node); 80 Reduction ReduceJSCreateCatchContext(Node* node);
81 Reduction ReduceJSCreateBlockContext(Node* node); 81 Reduction ReduceJSCreateBlockContext(Node* node);
82 Reduction ReduceJSCallConstruct(Node* node); 82 Reduction ReduceJSCallConstruct(Node* node);
83 Reduction ReduceJSCallFunction(Node* node); 83 Reduction ReduceJSCallFunction(Node* node);
84 Reduction ReduceJSForInDone(Node* node); 84 Reduction ReduceJSForInDone(Node* node);
85 Reduction ReduceJSForInNext(Node* node); 85 Reduction ReduceJSForInNext(Node* node);
86 Reduction ReduceJSForInPrepare(Node* node);
87 Reduction ReduceJSForInStep(Node* node); 86 Reduction ReduceJSForInStep(Node* node);
88 Reduction ReduceSelect(Node* node); 87 Reduction ReduceSelect(Node* node);
89 Reduction ReduceNumberBinop(Node* node, const Operator* numberOp); 88 Reduction ReduceNumberBinop(Node* node, const Operator* numberOp);
90 Reduction ReduceInt32Binop(Node* node, const Operator* intOp); 89 Reduction ReduceInt32Binop(Node* node, const Operator* intOp);
91 Reduction ReduceUI32Shift(Node* node, Signedness left_signedness, 90 Reduction ReduceUI32Shift(Node* node, Signedness left_signedness,
92 const Operator* shift_op); 91 const Operator* shift_op);
93 Reduction ReduceNewArray(Node* node, Node* length, int capacity, 92 Reduction ReduceNewArray(Node* node, Node* length, int capacity,
94 Handle<AllocationSite> site); 93 Handle<AllocationSite> site);
95 94
96 Node* Word32Shl(Node* const lhs, int32_t const rhs); 95 Node* Word32Shl(Node* const lhs, int32_t const rhs);
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 TypeCache const& type_cache_; 128 TypeCache const& type_cache_;
130 }; 129 };
131 130
132 DEFINE_OPERATORS_FOR_FLAGS(JSTypedLowering::Flags) 131 DEFINE_OPERATORS_FOR_FLAGS(JSTypedLowering::Flags)
133 132
134 } // namespace compiler 133 } // namespace compiler
135 } // namespace internal 134 } // namespace internal
136 } // namespace v8 135 } // namespace v8
137 136
138 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_ 137 #endif // V8_COMPILER_JS_TYPED_LOWERING_H_
OLDNEW
« no previous file with comments | « src/compiler/js-generic-lowering.cc ('k') | src/compiler/js-typed-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698