NumericStrings.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /*
  2. * Copyright (C) 2009 Apple Inc. All Rights Reserved.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions
  6. * are met:
  7. * 1. Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * 2. Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. *
  13. * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
  14. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  15. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  16. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
  17. * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  18. * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  19. * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  20. * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  21. * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  22. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  23. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  24. */
  25. #ifndef NumericStrings_h
  26. #define NumericStrings_h
  27. #include <wtf/FixedArray.h>
  28. #include <wtf/HashFunctions.h>
  29. #include <wtf/text/WTFString.h>
  30. namespace JSC {
  31. class NumericStrings {
  32. public:
  33. ALWAYS_INLINE String add(double d)
  34. {
  35. CacheEntry<double>& entry = lookup(d);
  36. if (d == entry.key && !entry.value.isNull())
  37. return entry.value;
  38. entry.key = d;
  39. entry.value = String::numberToStringECMAScript(d);
  40. #if ENABLE(DETACHED_JIT)
  41. entry.value = String(entry.value.characters(), entry.value.length(), String::StringShared);
  42. #endif
  43. return entry.value;
  44. }
  45. ALWAYS_INLINE String add(int i)
  46. {
  47. if (static_cast<unsigned>(i) < cacheSize)
  48. return lookupSmallString(static_cast<unsigned>(i));
  49. CacheEntry<int>& entry = lookup(i);
  50. if (i == entry.key && !entry.value.isNull())
  51. return entry.value;
  52. entry.key = i;
  53. entry.value = String::number(i);
  54. #if ENABLE(DETACHED_JIT)
  55. entry.value = String(entry.value.characters(), entry.value.length(), String::StringShared);
  56. #endif
  57. return entry.value;
  58. }
  59. ALWAYS_INLINE String add(unsigned i)
  60. {
  61. if (i < cacheSize)
  62. return lookupSmallString(static_cast<unsigned>(i));
  63. CacheEntry<unsigned>& entry = lookup(i);
  64. if (i == entry.key && !entry.value.isNull())
  65. return entry.value;
  66. entry.key = i;
  67. entry.value = String::number(i);
  68. #if ENABLE(DETACHED_JIT)
  69. entry.value = String(entry.value.characters(), entry.value.length(), String::StringShared);
  70. #endif
  71. return entry.value;
  72. }
  73. private:
  74. static const size_t cacheSize = 64;
  75. template<typename T>
  76. struct CacheEntry {
  77. T key;
  78. String value;
  79. };
  80. CacheEntry<double>& lookup(double d) { return doubleCache[WTF::FloatHash<double>::hash(d) & (cacheSize - 1)]; }
  81. CacheEntry<int>& lookup(int i) { return intCache[WTF::IntHash<int>::hash(i) & (cacheSize - 1)]; }
  82. CacheEntry<unsigned>& lookup(unsigned i) { return unsignedCache[WTF::IntHash<unsigned>::hash(i) & (cacheSize - 1)]; }
  83. ALWAYS_INLINE const String& lookupSmallString(unsigned i)
  84. {
  85. ASSERT(i < cacheSize);
  86. if (smallIntCache[i].isNull()) {
  87. #if ENABLE(DETACHED_JIT)
  88. String smalls = String::number(i);
  89. smallIntCache[i] = String(smalls.characters(), smalls.length(), String::StringShared);
  90. #else
  91. smallIntCache[i] = String::number(i);
  92. #endif
  93. }
  94. return smallIntCache[i];
  95. }
  96. FixedArray<CacheEntry<double>, cacheSize> doubleCache;
  97. FixedArray<CacheEntry<int>, cacheSize> intCache;
  98. FixedArray<CacheEntry<unsigned>, cacheSize> unsignedCache;
  99. FixedArray<String, cacheSize> smallIntCache;
  100. };
  101. } // namespace JSC
  102. #endif // NumericStrings_h