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

Side by Side Diff: src/compiler/common-operator.h

Issue 961973002: [turbofan] First shot at eager deoptimization in Turbofan. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix 2 Created 5 years, 9 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
OLDNEW
1 // Copyright 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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_COMMON_OPERATOR_H_ 5 #ifndef V8_COMPILER_COMMON_OPERATOR_H_
6 #define V8_COMPILER_COMMON_OPERATOR_H_ 6 #define V8_COMPILER_COMMON_OPERATOR_H_
7 7
8 #include "src/compiler/machine-type.h" 8 #include "src/compiler/machine-type.h"
9 #include "src/unique.h" 9 #include "src/unique.h"
10 10
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 const Operator* End(); 171 const Operator* End();
172 const Operator* Branch(BranchHint = BranchHint::kNone); 172 const Operator* Branch(BranchHint = BranchHint::kNone);
173 const Operator* IfTrue(); 173 const Operator* IfTrue();
174 const Operator* IfFalse(); 174 const Operator* IfFalse();
175 const Operator* IfSuccess(); 175 const Operator* IfSuccess();
176 const Operator* IfException(); 176 const Operator* IfException();
177 const Operator* Switch(size_t control_output_count); 177 const Operator* Switch(size_t control_output_count);
178 const Operator* IfValue(int32_t value); 178 const Operator* IfValue(int32_t value);
179 const Operator* IfDefault(); 179 const Operator* IfDefault();
180 const Operator* Throw(); 180 const Operator* Throw();
181 const Operator* Deoptimize();
181 const Operator* Return(); 182 const Operator* Return();
182 183
183 const Operator* Start(int num_formal_parameters); 184 const Operator* Start(int num_formal_parameters);
184 const Operator* Loop(int control_input_count); 185 const Operator* Loop(int control_input_count);
185 const Operator* Merge(int control_input_count); 186 const Operator* Merge(int control_input_count);
186 const Operator* Parameter(int index); 187 const Operator* Parameter(int index);
187 188
188 const Operator* OsrNormalEntry(); 189 const Operator* OsrNormalEntry();
189 const Operator* OsrLoopEntry(); 190 const Operator* OsrLoopEntry();
190 const Operator* OsrValue(int index); 191 const Operator* OsrValue(int index);
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 Zone* const zone_; 223 Zone* const zone_;
223 224
224 DISALLOW_COPY_AND_ASSIGN(CommonOperatorBuilder); 225 DISALLOW_COPY_AND_ASSIGN(CommonOperatorBuilder);
225 }; 226 };
226 227
227 } // namespace compiler 228 } // namespace compiler
228 } // namespace internal 229 } // namespace internal
229 } // namespace v8 230 } // namespace v8
230 231
231 #endif // V8_COMPILER_COMMON_OPERATOR_H_ 232 #endif // V8_COMPILER_COMMON_OPERATOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698