| 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 14 matching lines...) Expand all Loading... |
| 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | 27 |
| 28 #ifndef V8_CONVERSIONS_INL_H_ | 28 #ifndef V8_CONVERSIONS_INL_H_ |
| 29 #define V8_CONVERSIONS_INL_H_ | 29 #define V8_CONVERSIONS_INL_H_ |
| 30 | 30 |
| 31 #include <limits.h> // Required for INT_MAX etc. | 31 #include <limits.h> // Required for INT_MAX etc. |
| 32 #include <float.h> // Required for DBL_MAX and on Win32 for finite() | 32 #include <float.h> // Required for DBL_MAX and on Win32 for finite() |
| 33 #include <stdarg.h> | 33 #include <stdarg.h> |
| 34 #include <cmath> | 34 #include <cmath> |
| 35 #include "globals.h" // Required for V8_INFINITY | 35 #include "base/globals.h" // Required for V8_INFINITY |
| 36 | 36 |
| 37 // ---------------------------------------------------------------------------- | 37 // ---------------------------------------------------------------------------- |
| 38 // Extra POSIX/ANSI functions for Win32/MSVC. | 38 // Extra POSIX/ANSI functions for Win32/MSVC. |
| 39 | 39 |
| 40 #include "conversions.h" | 40 #include "conversions.h" |
| 41 #include "double.h" | 41 #include "double.h" |
| 42 #include "platform.h" | 42 #include "platform.h" |
| 43 #include "scanner.h" | 43 #include "scanner.h" |
| 44 #include "strtod.h" | 44 #include "strtod.h" |
| 45 | 45 |
| (...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 695 SLOW_ASSERT(buffer_pos < kBufferSize); | 695 SLOW_ASSERT(buffer_pos < kBufferSize); |
| 696 buffer[buffer_pos] = '\0'; | 696 buffer[buffer_pos] = '\0'; |
| 697 | 697 |
| 698 double converted = Strtod(Vector<const char>(buffer, buffer_pos), exponent); | 698 double converted = Strtod(Vector<const char>(buffer, buffer_pos), exponent); |
| 699 return (sign == NEGATIVE) ? -converted : converted; | 699 return (sign == NEGATIVE) ? -converted : converted; |
| 700 } | 700 } |
| 701 | 701 |
| 702 } } // namespace v8::internal | 702 } } // namespace v8::internal |
| 703 | 703 |
| 704 #endif // V8_CONVERSIONS_INL_H_ | 704 #endif // V8_CONVERSIONS_INL_H_ |
| OLD | NEW |