| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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_TYPES_H_ | 5 #ifndef V8_COMPILER_TYPES_H_ |
| 6 #define V8_COMPILER_TYPES_H_ | 6 #define V8_COMPILER_TYPES_H_ |
| 7 | 7 |
| 8 #include "src/base/compiler-specific.h" | 8 #include "src/base/compiler-specific.h" |
| 9 #include "src/conversions.h" | 9 #include "src/conversions.h" |
| 10 #include "src/globals.h" | 10 #include "src/globals.h" |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 V(UniqueName, kSymbol | kInternalizedString) \ | 148 V(UniqueName, kSymbol | kInternalizedString) \ |
| 149 V(Name, kSymbol | kString) \ | 149 V(Name, kSymbol | kString) \ |
| 150 V(InternalizedStringOrNull, kInternalizedString | kNull) \ | 150 V(InternalizedStringOrNull, kInternalizedString | kNull) \ |
| 151 V(BooleanOrNumber, kBoolean | kNumber) \ | 151 V(BooleanOrNumber, kBoolean | kNumber) \ |
| 152 V(BooleanOrNullOrNumber, kBooleanOrNumber | kNull) \ | 152 V(BooleanOrNullOrNumber, kBooleanOrNumber | kNull) \ |
| 153 V(BooleanOrNullOrUndefined, kBoolean | kNull | kUndefined) \ | 153 V(BooleanOrNullOrUndefined, kBoolean | kNull | kUndefined) \ |
| 154 V(Oddball, kBooleanOrNullOrUndefined | kHole) \ | 154 V(Oddball, kBooleanOrNullOrUndefined | kHole) \ |
| 155 V(NullOrNumber, kNull | kNumber) \ | 155 V(NullOrNumber, kNull | kNumber) \ |
| 156 V(NullOrUndefined, kNull | kUndefined) \ | 156 V(NullOrUndefined, kNull | kUndefined) \ |
| 157 V(Undetectable, kNullOrUndefined | kOtherUndetectable) \ | 157 V(Undetectable, kNullOrUndefined | kOtherUndetectable) \ |
| 158 V(NumberOrHole, kNumber | kHole) \ |
| 158 V(NumberOrOddball, kNumber | kNullOrUndefined | kBoolean | \ | 159 V(NumberOrOddball, kNumber | kNullOrUndefined | kBoolean | \ |
| 159 kHole) \ | 160 kHole) \ |
| 160 V(NumberOrString, kNumber | kString) \ | 161 V(NumberOrString, kNumber | kString) \ |
| 161 V(NumberOrUndefined, kNumber | kUndefined) \ | 162 V(NumberOrUndefined, kNumber | kUndefined) \ |
| 162 V(PlainPrimitive, kNumberOrString | kBoolean | \ | 163 V(PlainPrimitive, kNumberOrString | kBoolean | \ |
| 163 kNullOrUndefined) \ | 164 kNullOrUndefined) \ |
| 164 V(Primitive, kSymbol | kPlainPrimitive) \ | 165 V(Primitive, kSymbol | kPlainPrimitive) \ |
| 165 V(OtherUndetectableOrUndefined, kOtherUndetectable | kUndefined) \ | 166 V(OtherUndetectableOrUndefined, kOtherUndetectable | kUndefined) \ |
| 166 V(Proxy, kCallableProxy | kOtherProxy) \ | 167 V(Proxy, kCallableProxy | kOtherProxy) \ |
| 167 V(DetectableCallable, kFunction | kBoundFunction | \ | 168 V(DetectableCallable, kFunction | kBoundFunction | \ |
| (...skipping 494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 662 RangeType::Limits* limits, Zone* zone); | 663 RangeType::Limits* limits, Zone* zone); |
| 663 static Type* NormalizeUnion(Type* unioned, int size, Zone* zone); | 664 static Type* NormalizeUnion(Type* unioned, int size, Zone* zone); |
| 664 static Type* NormalizeRangeAndBitset(Type* range, bitset* bits, Zone* zone); | 665 static Type* NormalizeRangeAndBitset(Type* range, bitset* bits, Zone* zone); |
| 665 }; | 666 }; |
| 666 | 667 |
| 667 } // namespace compiler | 668 } // namespace compiler |
| 668 } // namespace internal | 669 } // namespace internal |
| 669 } // namespace v8 | 670 } // namespace v8 |
| 670 | 671 |
| 671 #endif // V8_COMPILER_TYPES_H_ | 672 #endif // V8_COMPILER_TYPES_H_ |
| OLD | NEW |