| 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 4048 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4059 static const int kExternalTwoByteRepresentationTag = 0x02; | 4059 static const int kExternalTwoByteRepresentationTag = 0x02; |
| 4060 static const int kExternalAsciiRepresentationTag = 0x06; | 4060 static const int kExternalAsciiRepresentationTag = 0x06; |
| 4061 | 4061 |
| 4062 static const int kIsolateStateOffset = 0; | 4062 static const int kIsolateStateOffset = 0; |
| 4063 static const int kIsolateEmbedderDataOffset = 1 * kApiPointerSize; | 4063 static const int kIsolateEmbedderDataOffset = 1 * kApiPointerSize; |
| 4064 static const int kIsolateRootsOffset = 3 * kApiPointerSize; | 4064 static const int kIsolateRootsOffset = 3 * kApiPointerSize; |
| 4065 static const int kUndefinedValueRootIndex = 5; | 4065 static const int kUndefinedValueRootIndex = 5; |
| 4066 static const int kNullValueRootIndex = 7; | 4066 static const int kNullValueRootIndex = 7; |
| 4067 static const int kTrueValueRootIndex = 8; | 4067 static const int kTrueValueRootIndex = 8; |
| 4068 static const int kFalseValueRootIndex = 9; | 4068 static const int kFalseValueRootIndex = 9; |
| 4069 static const int kEmptySymbolRootIndex = 116; | 4069 static const int kEmptySymbolRootIndex = 117; |
| 4070 | 4070 |
| 4071 static const int kJSObjectType = 0xaa; | 4071 static const int kJSObjectType = 0xaa; |
| 4072 static const int kFirstNonstringType = 0x80; | 4072 static const int kFirstNonstringType = 0x80; |
| 4073 static const int kOddballType = 0x82; | 4073 static const int kOddballType = 0x82; |
| 4074 static const int kForeignType = 0x85; | 4074 static const int kForeignType = 0x85; |
| 4075 | 4075 |
| 4076 static const int kUndefinedOddballKind = 5; | 4076 static const int kUndefinedOddballKind = 5; |
| 4077 static const int kNullOddballKind = 3; | 4077 static const int kNullOddballKind = 3; |
| 4078 | 4078 |
| 4079 static inline bool HasHeapObjectTag(internal::Object* value) { | 4079 static inline bool HasHeapObjectTag(internal::Object* value) { |
| (...skipping 574 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4654 | 4654 |
| 4655 | 4655 |
| 4656 } // namespace v8 | 4656 } // namespace v8 |
| 4657 | 4657 |
| 4658 | 4658 |
| 4659 #undef V8EXPORT | 4659 #undef V8EXPORT |
| 4660 #undef TYPE_CHECK | 4660 #undef TYPE_CHECK |
| 4661 | 4661 |
| 4662 | 4662 |
| 4663 #endif // V8_H_ | 4663 #endif // V8_H_ |
| OLD | NEW |