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

Side by Side Diff: src/type-hints.h

Issue 2506013005: [Interpreter] Collect String feedback on CompareOps. (Closed)
Patch Set: Fix kAny Created 4 years, 1 month 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/type-feedback-vector-inl.h ('k') | src/type-hints.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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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_TYPE_HINTS_H_ 5 #ifndef V8_TYPE_HINTS_H_
6 #define V8_TYPE_HINTS_H_ 6 #define V8_TYPE_HINTS_H_
7 7
8 #include "src/base/flags.h" 8 #include "src/base/flags.h"
9 #include "src/utils.h" 9 #include "src/utils.h"
10 10
(...skipping 15 matching lines...) Expand all
26 } 26 }
27 27
28 std::ostream& operator<<(std::ostream&, BinaryOperationHint); 28 std::ostream& operator<<(std::ostream&, BinaryOperationHint);
29 29
30 // Type hints for an compare operation. 30 // Type hints for an compare operation.
31 enum class CompareOperationHint : uint8_t { 31 enum class CompareOperationHint : uint8_t {
32 kNone, 32 kNone,
33 kSignedSmall, 33 kSignedSmall,
34 kNumber, 34 kNumber,
35 kNumberOrOddball, 35 kNumberOrOddball,
36 kString,
36 kAny 37 kAny
37 }; 38 };
38 39
39 inline size_t hash_value(CompareOperationHint hint) { 40 inline size_t hash_value(CompareOperationHint hint) {
40 return static_cast<unsigned>(hint); 41 return static_cast<unsigned>(hint);
41 } 42 }
42 43
43 std::ostream& operator<<(std::ostream&, CompareOperationHint); 44 std::ostream& operator<<(std::ostream&, CompareOperationHint);
44 45
45 // Type hints for the ToBoolean type conversion. 46 // Type hints for the ToBoolean type conversion.
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 STRING_ADD_CONVERT_LEFT = STRING_ADD_CHECK_LEFT | STRING_ADD_CONVERT, 83 STRING_ADD_CONVERT_LEFT = STRING_ADD_CHECK_LEFT | STRING_ADD_CONVERT,
83 STRING_ADD_CONVERT_RIGHT = STRING_ADD_CHECK_RIGHT | STRING_ADD_CONVERT 84 STRING_ADD_CONVERT_RIGHT = STRING_ADD_CHECK_RIGHT | STRING_ADD_CONVERT
84 }; 85 };
85 86
86 std::ostream& operator<<(std::ostream& os, const StringAddFlags& flags); 87 std::ostream& operator<<(std::ostream& os, const StringAddFlags& flags);
87 88
88 } // namespace internal 89 } // namespace internal
89 } // namespace v8 90 } // namespace v8
90 91
91 #endif // V8_TYPE_HINTS_H_ 92 #endif // V8_TYPE_HINTS_H_
OLDNEW
« no previous file with comments | « src/type-feedback-vector-inl.h ('k') | src/type-hints.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698