| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 V(String, kInternalizedString | kOtherString) \ | 174 V(String, kInternalizedString | kOtherString) \ |
| 175 V(UniqueName, kSymbol | kInternalizedString) \ | 175 V(UniqueName, kSymbol | kInternalizedString) \ |
| 176 V(Name, kSymbol | kString) \ | 176 V(Name, kSymbol | kString) \ |
| 177 V(NumberOrString, kNumber | kString) \ | 177 V(NumberOrString, kNumber | kString) \ |
| 178 V(DetectableObject, kArray | kFunction | kRegExp | kOtherObject) \ | 178 V(DetectableObject, kArray | kFunction | kRegExp | kOtherObject) \ |
| 179 V(DetectableReceiver, kDetectableObject | kProxy) \ | 179 V(DetectableReceiver, kDetectableObject | kProxy) \ |
| 180 V(Detectable, kDetectableReceiver | kNumber | kName) \ | 180 V(Detectable, kDetectableReceiver | kNumber | kName) \ |
| 181 V(Object, kDetectableObject | kUndetectable) \ | 181 V(Object, kDetectableObject | kUndetectable) \ |
| 182 V(Receiver, kObject | kProxy) \ | 182 V(Receiver, kObject | kProxy) \ |
| 183 V(NonNumber, kOddball | kName | kReceiver | kInternal) \ | 183 V(NonNumber, kOddball | kName | kReceiver | kInternal) \ |
| 184 V(Any, kNumber | kNonNumber) | 184 V(Any, -1) |
| 185 | 185 |
| 186 #define BITSET_TYPE_LIST(V) \ | 186 #define BITSET_TYPE_LIST(V) \ |
| 187 MASK_BITSET_TYPE_LIST(V) \ | 187 MASK_BITSET_TYPE_LIST(V) \ |
| 188 REPRESENTATION_BITSET_TYPE_LIST(V) \ | 188 REPRESENTATION_BITSET_TYPE_LIST(V) \ |
| 189 SEMANTIC_BITSET_TYPE_LIST(V) | 189 SEMANTIC_BITSET_TYPE_LIST(V) |
| 190 | 190 |
| 191 | 191 |
| 192 // struct Config { | 192 // struct Config { |
| 193 // typedef Base; | 193 // typedef Base; |
| 194 // typedef Unioned; | 194 // typedef Unioned; |
| (...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 640 return that.lower->Is(this->lower) && this->upper->Is(that.upper); | 640 return that.lower->Is(this->lower) && this->upper->Is(that.upper); |
| 641 } | 641 } |
| 642 }; | 642 }; |
| 643 | 643 |
| 644 typedef BoundsImpl<ZoneTypeConfig> Bounds; | 644 typedef BoundsImpl<ZoneTypeConfig> Bounds; |
| 645 | 645 |
| 646 | 646 |
| 647 } } // namespace v8::internal | 647 } } // namespace v8::internal |
| 648 | 648 |
| 649 #endif // V8_TYPES_H_ | 649 #endif // V8_TYPES_H_ |
| OLD | NEW |