| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 1065 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1076 bool operator!=(const EnumSet& set) { return bits_ != set.bits_; } | 1076 bool operator!=(const EnumSet& set) { return bits_ != set.bits_; } |
| 1077 EnumSet<E, T> operator|(const EnumSet& set) const { | 1077 EnumSet<E, T> operator|(const EnumSet& set) const { |
| 1078 return EnumSet<E, T>(bits_ | set.bits_); | 1078 return EnumSet<E, T>(bits_ | set.bits_); |
| 1079 } | 1079 } |
| 1080 | 1080 |
| 1081 private: | 1081 private: |
| 1082 T Mask(E element) const { | 1082 T Mask(E element) const { |
| 1083 // The strange typing in ASSERT is necessary to avoid stupid warnings, see: | 1083 // The strange typing in ASSERT is necessary to avoid stupid warnings, see: |
| 1084 // http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43680 | 1084 // http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43680 |
| 1085 ASSERT(static_cast<int>(element) < static_cast<int>(sizeof(T) * CHAR_BIT)); | 1085 ASSERT(static_cast<int>(element) < static_cast<int>(sizeof(T) * CHAR_BIT)); |
| 1086 return 1 << element; | 1086 return static_cast<T>(1) << element; |
| 1087 } | 1087 } |
| 1088 | 1088 |
| 1089 T bits_; | 1089 T bits_; |
| 1090 }; | 1090 }; |
| 1091 | 1091 |
| 1092 | 1092 |
| 1093 class TypeFeedbackId { | 1093 class TypeFeedbackId { |
| 1094 public: | 1094 public: |
| 1095 explicit TypeFeedbackId(int id) : id_(id) { } | 1095 explicit TypeFeedbackId(int id) : id_(id) { } |
| 1096 int ToInt() const { return id_; } | 1096 int ToInt() const { return id_; } |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1135 | 1135 |
| 1136 // Every compiled stub starts with this id. | 1136 // Every compiled stub starts with this id. |
| 1137 static const int kStubEntryId = 5; | 1137 static const int kStubEntryId = 5; |
| 1138 | 1138 |
| 1139 int id_; | 1139 int id_; |
| 1140 }; | 1140 }; |
| 1141 | 1141 |
| 1142 } } // namespace v8::internal | 1142 } } // namespace v8::internal |
| 1143 | 1143 |
| 1144 #endif // V8_UTILS_H_ | 1144 #endif // V8_UTILS_H_ |
| OLD | NEW |