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

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

Issue 522873002: Removal of the deoptimization block from Turbofan (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Change constant capitalization Created 6 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « src/compiler/opcodes.h ('k') | src/compiler/operator-properties-inl.h » ('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 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_OPERATOR_PROPERTIES_H_ 5 #ifndef V8_COMPILER_OPERATOR_PROPERTIES_H_
6 #define V8_COMPILER_OPERATOR_PROPERTIES_H_ 6 #define V8_COMPILER_OPERATOR_PROPERTIES_H_
7 7
8 #include "src/v8.h" 8 #include "src/v8.h"
9 9
10 namespace v8 { 10 namespace v8 {
(...skipping 19 matching lines...) Expand all
30 30
31 static inline bool HasValueOutput(Operator* op); 31 static inline bool HasValueOutput(Operator* op);
32 static inline bool HasEffectOutput(Operator* op); 32 static inline bool HasEffectOutput(Operator* op);
33 static inline bool HasControlOutput(Operator* op); 33 static inline bool HasControlOutput(Operator* op);
34 34
35 static inline int GetValueOutputCount(Operator* op); 35 static inline int GetValueOutputCount(Operator* op);
36 static inline int GetEffectOutputCount(Operator* op); 36 static inline int GetEffectOutputCount(Operator* op);
37 static inline int GetControlOutputCount(Operator* op); 37 static inline int GetControlOutputCount(Operator* op);
38 38
39 static inline bool IsBasicBlockBegin(Operator* op); 39 static inline bool IsBasicBlockBegin(Operator* op);
40 static inline bool CanLazilyDeoptimize(Operator* op);
41 }; 40 };
42 } 41 }
43 } 42 }
44 } // namespace v8::internal::compiler 43 } // namespace v8::internal::compiler
45 44
46 #endif // V8_COMPILER_OPERATOR_PROPERTIES_H_ 45 #endif // V8_COMPILER_OPERATOR_PROPERTIES_H_
OLDNEW
« no previous file with comments | « src/compiler/opcodes.h ('k') | src/compiler/operator-properties-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698