You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

326 line
11 KiB

  1. // Copyright 2010 the V8 project authors. All rights reserved.
  2. // Redistribution and use in source and binary forms, with or without
  3. // modification, are permitted provided that the following conditions are
  4. // met:
  5. //
  6. // * Redistributions of source code must retain the above copyright
  7. // notice, this list of conditions and the following disclaimer.
  8. // * Redistributions in binary form must reproduce the above
  9. // copyright notice, this list of conditions and the following
  10. // disclaimer in the documentation and/or other materials provided
  11. // with the distribution.
  12. // * Neither the name of Google Inc. nor the names of its
  13. // contributors may be used to endorse or promote products derived
  14. // from this software without specific prior written permission.
  15. //
  16. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  17. // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  18. // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  19. // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  20. // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  21. // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  22. // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  23. // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  24. // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  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.
  27. #ifndef DOUBLE_CONVERSION_UTILS_H_
  28. #define DOUBLE_CONVERSION_UTILS_H_
  29. #include <stdlib.h>
  30. #include <string.h>
  31. #include <assert.h>
  32. #ifndef ASSERT
  33. #define ASSERT(condition) (assert(condition))
  34. #endif
  35. #ifndef UNIMPLEMENTED
  36. #define UNIMPLEMENTED() (abort())
  37. #endif
  38. #ifndef UNREACHABLE
  39. #define UNREACHABLE() (abort())
  40. #endif
  41. // Double operations detection based on target architecture.
  42. // Linux uses a 80bit wide floating point stack on x86. This induces double
  43. // rounding, which in turn leads to wrong results.
  44. // An easy way to test if the floating-point operations are correct is to
  45. // evaluate: 89255.0/1e22. If the floating-point stack is 64 bits wide then
  46. // the result is equal to 89255e-22.
  47. // The best way to test this, is to create a division-function and to compare
  48. // the output of the division with the expected result. (Inlining must be
  49. // disabled.)
  50. // On Linux,x86 89255e-22 != Div_double(89255.0/1e22)
  51. #if defined(_M_X64) || defined(__x86_64__) || \
  52. defined(__ARMEL__) || defined(__avr32__) || \
  53. defined(__hppa__) || defined(__ia64__) || \
  54. defined(__mips__) || defined(__powerpc__) || \
  55. defined(__sparc__) || defined(__sparc) || defined(__s390__) || \
  56. defined(__SH4__) || defined(__alpha__) || \
  57. defined(_MIPS_ARCH_MIPS32R2)
  58. #define DOUBLE_CONVERSION_CORRECT_DOUBLE_OPERATIONS 1
  59. #elif defined(_M_IX86) || defined(__i386__) || defined(__i386)
  60. #if defined(_WIN32)
  61. // Windows uses a 64bit wide floating point stack.
  62. #define DOUBLE_CONVERSION_CORRECT_DOUBLE_OPERATIONS 1
  63. #else
  64. #undef DOUBLE_CONVERSION_CORRECT_DOUBLE_OPERATIONS
  65. #endif // _WIN32
  66. #else
  67. #error Target architecture was not detected as supported by Double-Conversion.
  68. #endif
  69. #if defined(_WIN32) && !defined(__MINGW32__)
  70. typedef signed char int8_t;
  71. typedef unsigned char uint8_t;
  72. typedef short int16_t; // NOLINT
  73. typedef unsigned short uint16_t; // NOLINT
  74. typedef int int32_t;
  75. typedef unsigned int uint32_t;
  76. typedef __int64 int64_t;
  77. typedef unsigned __int64 uint64_t;
  78. // intptr_t and friends are defined in crtdefs.h through stdio.h.
  79. #else
  80. #include <stdint.h>
  81. #endif
  82. // The following macro works on both 32 and 64-bit platforms.
  83. // Usage: instead of writing 0x1234567890123456
  84. // write UINT64_2PART_C(0x12345678,90123456);
  85. #define UINT64_2PART_C(a, b) (((static_cast<uint64_t>(a) << 32) + 0x##b##u))
  86. // The expression ARRAY_SIZE(a) is a compile-time constant of type
  87. // size_t which represents the number of elements of the given
  88. // array. You should only use ARRAY_SIZE on statically allocated
  89. // arrays.
  90. #ifndef ARRAY_SIZE
  91. #define ARRAY_SIZE(a) \
  92. ((sizeof(a) / sizeof(*(a))) / \
  93. static_cast<size_t>(!(sizeof(a) % sizeof(*(a)))))
  94. #endif
  95. // A macro to disallow the evil copy constructor and operator= functions
  96. // This should be used in the private: declarations for a class
  97. #ifndef DISALLOW_COPY_AND_ASSIGN
  98. #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
  99. TypeName(const TypeName&); \
  100. void operator=(const TypeName&)
  101. #endif
  102. // A macro to disallow all the implicit constructors, namely the
  103. // default constructor, copy constructor and operator= functions.
  104. //
  105. // This should be used in the private: declarations for a class
  106. // that wants to prevent anyone from instantiating it. This is
  107. // especially useful for classes containing only static methods.
  108. #ifndef DISALLOW_IMPLICIT_CONSTRUCTORS
  109. #define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \
  110. TypeName(); \
  111. DISALLOW_COPY_AND_ASSIGN(TypeName)
  112. #endif
  113. namespace double_conversion {
  114. static const int kCharSize = sizeof(char);
  115. // Returns the maximum of the two parameters.
  116. template <typename T>
  117. static T Max(T a, T b) {
  118. return a < b ? b : a;
  119. }
  120. // Returns the minimum of the two parameters.
  121. template <typename T>
  122. static T Min(T a, T b) {
  123. return a < b ? a : b;
  124. }
  125. inline int StrLength(const char* string) {
  126. size_t length = strlen(string);
  127. ASSERT(length == static_cast<size_t>(static_cast<int>(length)));
  128. return static_cast<int>(length);
  129. }
  130. // This is a simplified version of V8's Vector class.
  131. template <typename T>
  132. class Vector {
  133. public:
  134. Vector() : start_(NULL), length_(0) {}
  135. Vector(T* data, int length) : start_(data), length_(length) {
  136. ASSERT(length == 0 || (length > 0 && data != NULL));
  137. }
  138. // Returns a vector using the same backing storage as this one,
  139. // spanning from and including 'from', to but not including 'to'.
  140. Vector<T> SubVector(int from, int to) {
  141. ASSERT(to <= length_);
  142. ASSERT(from < to);
  143. ASSERT(0 <= from);
  144. return Vector<T>(start() + from, to - from);
  145. }
  146. // Returns the length of the vector.
  147. int length() const { return length_; }
  148. // Returns whether or not the vector is empty.
  149. bool is_empty() const { return length_ == 0; }
  150. // Returns the pointer to the start of the data in the vector.
  151. T* start() const { return start_; }
  152. // Access individual vector elements - checks bounds in debug mode.
  153. T& operator[](int index) const {
  154. ASSERT(0 <= index && index < length_);
  155. return start_[index];
  156. }
  157. T& first() { return start_[0]; }
  158. T& last() { return start_[length_ - 1]; }
  159. private:
  160. T* start_;
  161. int length_;
  162. };
  163. // Helper class for building result strings in a character buffer. The
  164. // purpose of the class is to use safe operations that checks the
  165. // buffer bounds on all operations in debug mode.
  166. class StringBuilder {
  167. public:
  168. StringBuilder(char* buffer, int size)
  169. : buffer_(buffer, size), position_(0) { }
  170. ~StringBuilder() { if (!is_finalized()) Finalize(); }
  171. int size() const { return buffer_.length(); }
  172. // Get the current position in the builder.
  173. int position() const {
  174. ASSERT(!is_finalized());
  175. return position_;
  176. }
  177. // Reset the position.
  178. void Reset() { position_ = 0; }
  179. // Add a single character to the builder. It is not allowed to add
  180. // 0-characters; use the Finalize() method to terminate the string
  181. // instead.
  182. void AddCharacter(char c) {
  183. ASSERT(c != '\0');
  184. ASSERT(!is_finalized() && position_ < buffer_.length());
  185. buffer_[position_++] = c;
  186. }
  187. // Add an entire string to the builder. Uses strlen() internally to
  188. // compute the length of the input string.
  189. void AddString(const char* s) {
  190. AddSubstring(s, StrLength(s));
  191. }
  192. // Add the first 'n' characters of the given string 's' to the
  193. // builder. The input string must have enough characters.
  194. void AddSubstring(const char* s, int n) {
  195. ASSERT(!is_finalized() && position_ + n < buffer_.length());
  196. ASSERT(static_cast<size_t>(n) <= strlen(s));
  197. memmove(&buffer_[position_], s, n * kCharSize);
  198. position_ += n;
  199. }
  200. // Add character padding to the builder. If count is non-positive,
  201. // nothing is added to the builder.
  202. void AddPadding(char c, int count) {
  203. for (int i = 0; i < count; i++) {
  204. AddCharacter(c);
  205. }
  206. }
  207. // Finalize the string by 0-terminating it and returning the buffer.
  208. char* Finalize() {
  209. ASSERT(!is_finalized() && position_ < buffer_.length());
  210. buffer_[position_] = '\0';
  211. // Make sure nobody managed to add a 0-character to the
  212. // buffer while building the string.
  213. ASSERT(strlen(buffer_.start()) == static_cast<size_t>(position_));
  214. position_ = -1;
  215. ASSERT(is_finalized());
  216. return buffer_.start();
  217. }
  218. private:
  219. Vector<char> buffer_;
  220. int position_;
  221. bool is_finalized() const { return position_ < 0; }
  222. DISALLOW_IMPLICIT_CONSTRUCTORS(StringBuilder);
  223. };
  224. // The type-based aliasing rule allows the compiler to assume that pointers of
  225. // different types (for some definition of different) never alias each other.
  226. // Thus the following code does not work:
  227. //
  228. // float f = foo();
  229. // int fbits = *(int*)(&f);
  230. //
  231. // The compiler 'knows' that the int pointer can't refer to f since the types
  232. // don't match, so the compiler may cache f in a register, leaving random data
  233. // in fbits. Using C++ style casts makes no difference, however a pointer to
  234. // char data is assumed to alias any other pointer. This is the 'memcpy
  235. // exception'.
  236. //
  237. // Bit_cast uses the memcpy exception to move the bits from a variable of one
  238. // type of a variable of another type. Of course the end result is likely to
  239. // be implementation dependent. Most compilers (gcc-4.2 and MSVC 2005)
  240. // will completely optimize BitCast away.
  241. //
  242. // There is an additional use for BitCast.
  243. // Recent gccs will warn when they see casts that may result in breakage due to
  244. // the type-based aliasing rule. If you have checked that there is no breakage
  245. // you can use BitCast to cast one pointer type to another. This confuses gcc
  246. // enough that it can no longer see that you have cast one pointer type to
  247. // another thus avoiding the warning.
  248. //
  249. // Adding an unused attribute for this static check. Apparently GCC 4.8
  250. // now throws an error for unused typedefs which triggers -Werror.
  251. //
  252. // PJD: 4-24-2013
  253. //
  254. #if defined(__GCC__)
  255. #define UNUSED __atribute__((unused))
  256. #else
  257. #define UNUSED
  258. #endif
  259. template <class Dest, class Source>
  260. inline Dest BitCast(const Source& source) {
  261. // Compile time assertion: sizeof(Dest) == sizeof(Source)
  262. // A compile error here means your Dest and Source have different sizes.
  263. UNUSED typedef char VerifySizesAreEqual[sizeof(Dest) == sizeof(Source) ? 1 : -1];
  264. Dest dest;
  265. memmove(&dest, &source, sizeof(dest));
  266. return dest;
  267. }
  268. template <class Dest, class Source>
  269. inline Dest BitCast(Source* source) {
  270. return BitCast<Dest>(reinterpret_cast<uintptr_t>(source));
  271. }
  272. } // namespace double_conversion
  273. #endif // DOUBLE_CONVERSION_UTILS_H_