char-predicates-inl.h 1.9 KB
Newer Older
1
// Copyright 2011 the V8 project authors. All rights reserved.
2 3
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
4 5 6 7

#ifndef V8_CHAR_PREDICATES_INL_H_
#define V8_CHAR_PREDICATES_INL_H_

8
#include "src/char-predicates.h"
9

10 11
namespace v8 {
namespace internal {
12 13


14 15 16 17 18 19 20 21
// If c is in 'A'-'Z' or 'a'-'z', return its lower-case.
// Else, return something outside of 'A'-'Z' and 'a'-'z'.
// Note: it ignores LOCALE.
inline int AsciiAlphaToLower(uc32 c) {
  return c | 0x20;
}


22 23 24 25 26 27 28 29 30 31
inline bool IsCarriageReturn(uc32 c) {
  return c == 0x000D;
}


inline bool IsLineFeed(uc32 c) {
  return c == 0x000A;
}


32
inline bool IsInRange(int value, int lower_limit, int higher_limit) {
33
  DCHECK(lower_limit <= higher_limit);
34 35 36 37
  return static_cast<unsigned int>(value - lower_limit) <=
      static_cast<unsigned int>(higher_limit - lower_limit);
}

38 39 40 41 42 43 44
inline bool IsAsciiIdentifier(uc32 c) {
  return IsAlphaNumeric(c) || c == '$' || c == '_';
}

inline bool IsAlphaNumeric(uc32 c) {
  return IsInRange(AsciiAlphaToLower(c), 'a', 'z') || IsDecimalDigit(c);
}
45

46 47
inline bool IsDecimalDigit(uc32 c) {
  // ECMA-262, 3rd, 7.8.3 (p 16)
48
  return IsInRange(c, '0', '9');
49 50 51 52 53
}


inline bool IsHexDigit(uc32 c) {
  // ECMA-262, 3rd, 7.6 (p 15)
54
  return IsDecimalDigit(c) || IsInRange(AsciiAlphaToLower(c), 'a', 'f');
55 56 57
}


58 59 60 61 62 63 64 65 66 67 68 69
inline bool IsOctalDigit(uc32 c) {
  // ECMA-262, 6th, 7.8.3
  return IsInRange(c, '0', '7');
}


inline bool IsBinaryDigit(uc32 c) {
  // ECMA-262, 6th, 7.8.3
  return c == '0' || c == '1';
}


70
inline bool IsRegExpWord(uc16 c) {
71
  return IsInRange(AsciiAlphaToLower(c), 'a', 'z')
72
      || IsDecimalDigit(c)
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
      || (c == '_');
}


inline bool IsRegExpNewline(uc16 c) {
  switch (c) {
    //   CR           LF           LS           PS
    case 0x000A: case 0x000D: case 0x2028: case 0x2029:
      return false;
    default:
      return true;
  }
}


88 89 90
} }  // namespace v8::internal

#endif  // V8_CHAR_PREDICATES_INL_H_