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 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
350 case kTwoByteStringTag: | 350 case kTwoByteStringTag: |
351 return true; | 351 return true; |
352 default: // Cons or sliced string. Need to go deeper. | 352 default: // Cons or sliced string. Need to go deeper. |
353 return GetUnderlying()->IsTwoByteRepresentation(); | 353 return GetUnderlying()->IsTwoByteRepresentation(); |
354 } | 354 } |
355 } | 355 } |
356 | 356 |
357 | 357 |
358 bool String::HasOnlyAsciiChars() { | 358 bool String::HasOnlyAsciiChars() { |
359 uint32_t type = map()->instance_type(); | 359 uint32_t type = map()->instance_type(); |
360 #ifndef ENABLE_LATIN_1 | |
361 return (type & kStringEncodingMask) == kOneByteStringTag || | |
362 (type & kAsciiDataHintMask) == kAsciiDataHintTag; | |
363 #else | |
364 return (type & kAsciiDataHintMask) == kAsciiDataHintTag; | 360 return (type & kAsciiDataHintMask) == kAsciiDataHintTag; |
365 #endif | |
366 } | 361 } |
367 | 362 |
368 | 363 |
369 bool String::IsOneByteConvertible() { | 364 bool String::IsOneByteConvertible() { |
370 return HasOnlyAsciiChars() || IsOneByteRepresentation(); | 365 return HasOnlyAsciiChars() || IsOneByteRepresentation(); |
371 } | 366 } |
372 | 367 |
373 | 368 |
374 bool StringShape::IsCons() { | 369 bool StringShape::IsCons() { |
375 return (type_ & kStringRepresentationMask) == kConsStringTag; | 370 return (type_ & kStringRepresentationMask) == kConsStringTag; |
(...skipping 5609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5985 #undef WRITE_UINT32_FIELD | 5980 #undef WRITE_UINT32_FIELD |
5986 #undef READ_SHORT_FIELD | 5981 #undef READ_SHORT_FIELD |
5987 #undef WRITE_SHORT_FIELD | 5982 #undef WRITE_SHORT_FIELD |
5988 #undef READ_BYTE_FIELD | 5983 #undef READ_BYTE_FIELD |
5989 #undef WRITE_BYTE_FIELD | 5984 #undef WRITE_BYTE_FIELD |
5990 | 5985 |
5991 | 5986 |
5992 } } // namespace v8::internal | 5987 } } // namespace v8::internal |
5993 | 5988 |
5994 #endif // V8_OBJECTS_INL_H_ | 5989 #endif // V8_OBJECTS_INL_H_ |
OLD | NEW |