| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 28 matching lines...) Expand all Loading... |
| 39 // STLPort doesn't import fpclassify into the std namespace. | 39 // STLPort doesn't import fpclassify into the std namespace. |
| 40 using std::fpclassify; | 40 using std::fpclassify; |
| 41 #endif | 41 #endif |
| 42 | 42 |
| 43 namespace v8 { | 43 namespace v8 { |
| 44 namespace internal { | 44 namespace internal { |
| 45 | 45 |
| 46 | 46 |
| 47 double StringToDouble(UnicodeCache* unicode_cache, | 47 double StringToDouble(UnicodeCache* unicode_cache, |
| 48 const char* str, int flags, double empty_string_val) { | 48 const char* str, int flags, double empty_string_val) { |
| 49 const char* end = str + StrLength(str); | 49 // We cast to const uint8_t* here to avoid instantiating the |
| 50 return InternalStringToDouble(unicode_cache, str, end, flags, | 50 // InternalStringToDouble() template for const char* as well. |
| 51 const uint8_t* start = reinterpret_cast<const uint8_t*>(str); |
| 52 const uint8_t* end = start + StrLength(str); |
| 53 return InternalStringToDouble(unicode_cache, start, end, flags, |
| 51 empty_string_val); | 54 empty_string_val); |
| 52 } | 55 } |
| 53 | 56 |
| 54 | 57 |
| 55 double StringToDouble(UnicodeCache* unicode_cache, | 58 double StringToDouble(UnicodeCache* unicode_cache, |
| 56 Vector<const char> str, | 59 Vector<const char> str, |
| 57 int flags, | 60 int flags, |
| 58 double empty_string_val) { | 61 double empty_string_val) { |
| 59 const char* end = str.start() + str.length(); | 62 // We cast to const uint8_t* here to avoid instantiating the |
| 60 return InternalStringToDouble(unicode_cache, str.start(), end, flags, | 63 // InternalStringToDouble() template for const char* as well. |
| 64 const uint8_t* start = reinterpret_cast<const uint8_t*>(str.start()); |
| 65 const uint8_t* end = start + str.length(); |
| 66 return InternalStringToDouble(unicode_cache, start, end, flags, |
| 61 empty_string_val); | 67 empty_string_val); |
| 62 } | 68 } |
| 63 | 69 |
| 70 |
| 64 double StringToDouble(UnicodeCache* unicode_cache, | 71 double StringToDouble(UnicodeCache* unicode_cache, |
| 65 Vector<const uc16> str, | 72 Vector<const uc16> str, |
| 66 int flags, | 73 int flags, |
| 67 double empty_string_val) { | 74 double empty_string_val) { |
| 68 const uc16* end = str.start() + str.length(); | 75 const uc16* end = str.start() + str.length(); |
| 69 return InternalStringToDouble(unicode_cache, str.start(), end, flags, | 76 return InternalStringToDouble(unicode_cache, str.start(), end, flags, |
| 70 empty_string_val); | 77 empty_string_val); |
| 71 } | 78 } |
| 72 | 79 |
| 73 | 80 |
| (...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 429 if (decimal_pos > 0) result_size++; | 436 if (decimal_pos > 0) result_size++; |
| 430 // Allocate result and fill in the parts. | 437 // Allocate result and fill in the parts. |
| 431 SimpleStringBuilder builder(result_size + 1); | 438 SimpleStringBuilder builder(result_size + 1); |
| 432 builder.AddSubstring(integer_buffer + integer_pos + 1, integer_part_size); | 439 builder.AddSubstring(integer_buffer + integer_pos + 1, integer_part_size); |
| 433 if (decimal_pos > 0) builder.AddCharacter('.'); | 440 if (decimal_pos > 0) builder.AddCharacter('.'); |
| 434 builder.AddSubstring(decimal_buffer, decimal_pos); | 441 builder.AddSubstring(decimal_buffer, decimal_pos); |
| 435 return builder.Finalize(); | 442 return builder.Finalize(); |
| 436 } | 443 } |
| 437 | 444 |
| 438 } } // namespace v8::internal | 445 } } // namespace v8::internal |
| OLD | NEW |