/js/src/yarr/ASCIICType.h

http://github.com/zpao/v8monkey · C Header · 183 lines · 110 code · 20 blank · 53 comment · 93 complexity · 8d66427dd3249bb1f1c542f2a6748d01 MD5 · raw file

  1. /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  2. * vim: set ts=8 sw=4 et tw=99 ft=cpp:
  3. *
  4. * ***** BEGIN LICENSE BLOCK *****
  5. * Copyright (C) 2007, 2008, 2009 Apple Inc. All rights reserved.
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification, are permitted provided that the following conditions
  9. * are met:
  10. *
  11. * 1. Redistributions of source code must retain the above copyright
  12. * notice, this list of conditions and the following disclaimer.
  13. * 2. Redistributions in binary form must reproduce the above copyright
  14. * notice, this list of conditions and the following disclaimer in the
  15. * documentation and/or other materials provided with the distribution.
  16. * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
  17. * its contributors may be used to endorse or promote products derived
  18. * from this software without specific prior written permission.
  19. *
  20. * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
  21. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  22. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  23. * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
  24. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  25. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  26. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  27. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  28. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  29. * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  30. *
  31. * ***** END LICENSE BLOCK ***** */
  32. #ifndef WTF_ASCIICType_h
  33. #define WTF_ASCIICType_h
  34. #include "assembler/wtf/Assertions.h"
  35. // The behavior of many of the functions in the <ctype.h> header is dependent
  36. // on the current locale. But in the WebKit project, all uses of those functions
  37. // are in code processing something that's not locale-specific. These equivalents
  38. // for some of the <ctype.h> functions are named more explicitly, not dependent
  39. // on the C library locale, and we should also optimize them as needed.
  40. // All functions return false or leave the character unchanged if passed a character
  41. // that is outside the range 0-7F. So they can be used on Unicode strings or
  42. // characters if the intent is to do processing only if the character is ASCII.
  43. namespace WTF {
  44. inline bool isASCII(char c) { return !(c & ~0x7F); }
  45. inline bool isASCII(unsigned short c) { return !(c & ~0x7F); }
  46. #if !WTF_COMPILER_MSVC || defined(_NATIVE_WCHAR_T_DEFINED)
  47. inline bool isASCII(wchar_t c) { return !(c & ~0x7F); }
  48. #endif
  49. inline bool isASCII(int c) { return !(c & ~0x7F); }
  50. inline bool isASCII(unsigned c) { return !(c & ~0x7F); }
  51. inline bool isASCIIAlpha(char c) { return (c | 0x20) >= 'a' && (c | 0x20) <= 'z'; }
  52. inline bool isASCIIAlpha(unsigned short c) { return (c | 0x20) >= 'a' && (c | 0x20) <= 'z'; }
  53. #if !WTF_COMPILER_MSVC || defined(_NATIVE_WCHAR_T_DEFINED)
  54. inline bool isASCIIAlpha(wchar_t c) { return (c | 0x20) >= 'a' && (c | 0x20) <= 'z'; }
  55. #endif
  56. inline bool isASCIIAlpha(int c) { return (c | 0x20) >= 'a' && (c | 0x20) <= 'z'; }
  57. inline bool isASCIIAlpha(unsigned c) { return (c | 0x20) >= 'a' && (c | 0x20) <= 'z'; }
  58. inline bool isASCIIAlphanumeric(char c) { return (c >= '0' && c <= '9') || ((c | 0x20) >= 'a' && (c | 0x20) <= 'z'); }
  59. inline bool isASCIIAlphanumeric(unsigned short c) { return (c >= '0' && c <= '9') || ((c | 0x20) >= 'a' && (c | 0x20) <= 'z'); }
  60. #if !WTF_COMPILER_MSVC || defined(_NATIVE_WCHAR_T_DEFINED)
  61. inline bool isASCIIAlphanumeric(wchar_t c) { return (c >= '0' && c <= '9') || ((c | 0x20) >= 'a' && (c | 0x20) <= 'z'); }
  62. #endif
  63. inline bool isASCIIAlphanumeric(int c) { return (c >= '0' && c <= '9') || ((c | 0x20) >= 'a' && (c | 0x20) <= 'z'); }
  64. inline bool isASCIIAlphanumeric(unsigned c) { return (c >= '0' && c <= '9') || ((c | 0x20) >= 'a' && (c | 0x20) <= 'z'); }
  65. inline bool isASCIIDigit(char c) { return (c >= '0') & (c <= '9'); }
  66. inline bool isASCIIDigit(unsigned short c) { return (c >= '0') & (c <= '9'); }
  67. #if !WTF_COMPILER_MSVC || defined(_NATIVE_WCHAR_T_DEFINED)
  68. inline bool isASCIIDigit(wchar_t c) { return (c >= '0') & (c <= '9'); }
  69. #endif
  70. inline bool isASCIIDigit(int c) { return (c >= '0') & (c <= '9'); }
  71. inline bool isASCIIDigit(unsigned c) { return (c >= '0') & (c <= '9'); }
  72. inline bool isASCIIHexDigit(char c) { return (c >= '0' && c <= '9') || ((c | 0x20) >= 'a' && (c | 0x20) <= 'f'); }
  73. inline bool isASCIIHexDigit(unsigned short c) { return (c >= '0' && c <= '9') || ((c | 0x20) >= 'a' && (c | 0x20) <= 'f'); }
  74. #if !WTF_COMPILER_MSVC || defined(_NATIVE_WCHAR_T_DEFINED)
  75. inline bool isASCIIHexDigit(wchar_t c) { return (c >= '0' && c <= '9') || ((c | 0x20) >= 'a' && (c | 0x20) <= 'f'); }
  76. #endif
  77. inline bool isASCIIHexDigit(int c) { return (c >= '0' && c <= '9') || ((c | 0x20) >= 'a' && (c | 0x20) <= 'f'); }
  78. inline bool isASCIIHexDigit(unsigned c) { return (c >= '0' && c <= '9') || ((c | 0x20) >= 'a' && (c | 0x20) <= 'f'); }
  79. inline bool isASCIIOctalDigit(char c) { return (c >= '0') & (c <= '7'); }
  80. inline bool isASCIIOctalDigit(unsigned short c) { return (c >= '0') & (c <= '7'); }
  81. #if !WTF_COMPILER_MSVC || defined(_NATIVE_WCHAR_T_DEFINED)
  82. inline bool isASCIIOctalDigit(wchar_t c) { return (c >= '0') & (c <= '7'); }
  83. #endif
  84. inline bool isASCIIOctalDigit(int c) { return (c >= '0') & (c <= '7'); }
  85. inline bool isASCIIOctalDigit(unsigned c) { return (c >= '0') & (c <= '7'); }
  86. inline bool isASCIILower(char c) { return c >= 'a' && c <= 'z'; }
  87. inline bool isASCIILower(unsigned short c) { return c >= 'a' && c <= 'z'; }
  88. #if !WTF_COMPILER_MSVC || defined(_NATIVE_WCHAR_T_DEFINED)
  89. inline bool isASCIILower(wchar_t c) { return c >= 'a' && c <= 'z'; }
  90. #endif
  91. inline bool isASCIILower(int c) { return c >= 'a' && c <= 'z'; }
  92. inline bool isASCIILower(unsigned c) { return c >= 'a' && c <= 'z'; }
  93. inline bool isASCIIUpper(char c) { return c >= 'A' && c <= 'Z'; }
  94. inline bool isASCIIUpper(unsigned short c) { return c >= 'A' && c <= 'Z'; }
  95. #if !WTF_COMPILER_MSVC || defined(_NATIVE_WCHAR_T_DEFINED)
  96. inline bool isASCIIUpper(wchar_t c) { return c >= 'A' && c <= 'Z'; }
  97. #endif
  98. inline bool isASCIIUpper(int c) { return c >= 'A' && c <= 'Z'; }
  99. inline bool isASCIIUpper(unsigned c) { return c >= 'A' && c <= 'Z'; }
  100. /*
  101. Statistics from a run of Apple's page load test for callers of isASCIISpace:
  102. character count
  103. --------- -----
  104. non-spaces 689383
  105. 20 space 294720
  106. 0A \n 89059
  107. 09 \t 28320
  108. 0D \r 0
  109. 0C \f 0
  110. 0B \v 0
  111. */
  112. inline bool isASCIISpace(char c) { return c <= ' ' && (c == ' ' || (c <= 0xD && c >= 0x9)); }
  113. inline bool isASCIISpace(unsigned short c) { return c <= ' ' && (c == ' ' || (c <= 0xD && c >= 0x9)); }
  114. #if !WTF_COMPILER_MSVC || defined(_NATIVE_WCHAR_T_DEFINED)
  115. inline bool isASCIISpace(wchar_t c) { return c <= ' ' && (c == ' ' || (c <= 0xD && c >= 0x9)); }
  116. #endif
  117. inline bool isASCIISpace(int c) { return c <= ' ' && (c == ' ' || (c <= 0xD && c >= 0x9)); }
  118. inline bool isASCIISpace(unsigned c) { return c <= ' ' && (c == ' ' || (c <= 0xD && c >= 0x9)); }
  119. inline char toASCIILower(char c) { return c | ((c >= 'A' && c <= 'Z') << 5); }
  120. inline unsigned short toASCIILower(unsigned short c) { return c | ((c >= 'A' && c <= 'Z') << 5); }
  121. #if !WTF_COMPILER_MSVC || defined(_NATIVE_WCHAR_T_DEFINED)
  122. inline wchar_t toASCIILower(wchar_t c) { return c | ((c >= 'A' && c <= 'Z') << 5); }
  123. #endif
  124. inline int toASCIILower(int c) { return c | ((c >= 'A' && c <= 'Z') << 5); }
  125. inline unsigned toASCIILower(unsigned c) { return c | ((c >= 'A' && c <= 'Z') << 5); }
  126. // FIXME: Why do these need static_cast?
  127. inline char toASCIIUpper(char c) { return static_cast<char>(c & ~((c >= 'a' && c <= 'z') << 5)); }
  128. inline unsigned short toASCIIUpper(unsigned short c) { return static_cast<unsigned short>(c & ~((c >= 'a' && c <= 'z') << 5)); }
  129. #if !WTF_COMPILER_MSVC || defined(_NATIVE_WCHAR_T_DEFINED)
  130. inline wchar_t toASCIIUpper(wchar_t c) { return static_cast<wchar_t>(c & ~((c >= 'a' && c <= 'z') << 5)); }
  131. #endif
  132. inline int toASCIIUpper(int c) { return static_cast<int>(c & ~((c >= 'a' && c <= 'z') << 5)); }
  133. inline unsigned toASCIIUpper(unsigned c) { return static_cast<unsigned>(c & ~((c >= 'a' && c <= 'z') << 5)); }
  134. inline int toASCIIHexValue(char c) { ASSERT(isASCIIHexDigit(c)); return c < 'A' ? c - '0' : (c - 'A' + 10) & 0xF; }
  135. inline int toASCIIHexValue(unsigned short c) { ASSERT(isASCIIHexDigit(c)); return c < 'A' ? c - '0' : (c - 'A' + 10) & 0xF; }
  136. #if !WTF_COMPILER_MSVC || defined(_NATIVE_WCHAR_T_DEFINED)
  137. inline int toASCIIHexValue(wchar_t c) { ASSERT(isASCIIHexDigit(c)); return c < 'A' ? c - '0' : (c - 'A' + 10) & 0xF; }
  138. #endif
  139. inline int toASCIIHexValue(int c) { ASSERT(isASCIIHexDigit(c)); return c < 'A' ? c - '0' : (c - 'A' + 10) & 0xF; }
  140. inline int toASCIIHexValue(unsigned c) { ASSERT(isASCIIHexDigit(c)); return c < 'A' ? c - '0' : (c - 'A' + 10) & 0xF; }
  141. inline bool isASCIIPrintable(char c) { return c >= ' ' && c <= '~'; }
  142. inline bool isASCIIPrintable(unsigned short c) { return c >= ' ' && c <= '~'; }
  143. #if !WTF_COMPILER_MSVC || defined(_NATIVE_WCHAR_T_DEFINED)
  144. inline bool isASCIIPrintable(wchar_t c) { return c >= ' ' && c <= '~'; }
  145. #endif
  146. inline bool isASCIIPrintable(int c) { return c >= ' ' && c <= '~'; }
  147. inline bool isASCIIPrintable(unsigned c) { return c >= ' ' && c <= '~'; }
  148. }
  149. using WTF::isASCII;
  150. using WTF::isASCIIAlpha;
  151. using WTF::isASCIIAlphanumeric;
  152. using WTF::isASCIIDigit;
  153. using WTF::isASCIIHexDigit;
  154. using WTF::isASCIILower;
  155. using WTF::isASCIIOctalDigit;
  156. using WTF::isASCIIPrintable;
  157. using WTF::isASCIISpace;
  158. using WTF::isASCIIUpper;
  159. using WTF::toASCIIHexValue;
  160. using WTF::toASCIILower;
  161. using WTF::toASCIIUpper;
  162. #endif