reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45
   46
   47
   48
   49
   50
   51
   52
   53
   54
   55
   56
   57
   58
   59
   60
   61
   62
   63
   64
   65
   66
   67
   68
   69
   70
   71
   72
   73
   74
   75
   76
   77
   78
   79
   80
   81
   82
   83
   84
   85
   86
   87
   88
   89
   90
   91
   92
   93
   94
   95
   96
   97
   98
   99
  100
  101
  102
  103
  104
  105
  106
  107
#include "clang/AST/Type.h"
#include "llvm/ADT/APSInt.h"
#include "llvm/ADT/SmallString.h"
#include "gtest/gtest.h"

using clang::FixedPointValueToString;
using llvm::APSInt;
using llvm::SmallString;

namespace {

TEST(FixedPointString, DifferentTypes) {
  SmallString<64> S;
  FixedPointValueToString(S, APSInt::get(320), 7);
  ASSERT_STREQ(S.c_str(), "2.5");

  S.clear();
  FixedPointValueToString(S, APSInt::get(0), 7);
  ASSERT_STREQ(S.c_str(), "0.0");

  // signed short _Accum
  S.clear();
  FixedPointValueToString(S, APSInt::getMaxValue(16, /*Unsigned=*/false), 7);
  ASSERT_STREQ(S.c_str(), "255.9921875");

  // signed _Accum
  S.clear();
  FixedPointValueToString(S, APSInt::getMaxValue(32, /*Unsigned=*/false), 15);
  ASSERT_STREQ(S.c_str(), "65535.999969482421875");

  // signed long _Accum
  S.clear();
  FixedPointValueToString(S, APSInt::getMaxValue(64, /*Unsigned=*/false), 31);
  ASSERT_STREQ(S.c_str(), "4294967295.9999999995343387126922607421875");

  // unsigned short _Accum
  S.clear();
  FixedPointValueToString(S, APSInt::getMaxValue(16, /*Unsigned=*/true), 8);
  ASSERT_STREQ(S.c_str(), "255.99609375");

  // unsigned _Accum
  S.clear();
  FixedPointValueToString(S, APSInt::getMaxValue(32, /*Unsigned=*/true), 16);
  ASSERT_STREQ(S.c_str(), "65535.9999847412109375");

  // unsigned long _Accum
  S.clear();
  FixedPointValueToString(S, APSInt::getMaxValue(64, /*Unsigned=*/true), 32);
  ASSERT_STREQ(S.c_str(), "4294967295.99999999976716935634613037109375");

  // signed short _Fract
  S.clear();
  FixedPointValueToString(S, APSInt::getMaxValue(8, /*Unsigned=*/false), 7);
  ASSERT_STREQ(S.c_str(), "0.9921875");

  // signed _Fract
  S.clear();
  FixedPointValueToString(S, APSInt::getMaxValue(16, /*Unsigned=*/false), 15);
  ASSERT_STREQ(S.c_str(), "0.999969482421875");

  // signed long _Fract
  S.clear();
  FixedPointValueToString(S, APSInt::getMaxValue(32, /*Unsigned=*/false), 31);
  ASSERT_STREQ(S.c_str(), "0.9999999995343387126922607421875");

  // unsigned short _Fract
  S.clear();
  FixedPointValueToString(S, APSInt::getMaxValue(8, /*Unsigned=*/true), 8);
  ASSERT_STREQ(S.c_str(), "0.99609375");

  // unsigned _Fract
  S.clear();
  FixedPointValueToString(S, APSInt::getMaxValue(16, /*Unsigned=*/true), 16);
  ASSERT_STREQ(S.c_str(), "0.9999847412109375");

  // unsigned long _Fract
  S.clear();
  FixedPointValueToString(S, APSInt::getMaxValue(32, /*Unsigned=*/true), 32);
  ASSERT_STREQ(S.c_str(), "0.99999999976716935634613037109375");
}

TEST(FixedPointString, Negative) {
  SmallString<64> S;
  FixedPointValueToString(S, APSInt::get(-320), 7);
  ASSERT_STREQ(S.c_str(), "-2.5");

  S.clear();
  FixedPointValueToString(S, APSInt::get(-64), 7);
  ASSERT_STREQ(S.c_str(), "-0.5");

  // signed short _Accum
  S.clear();
  FixedPointValueToString(S, APSInt::getMinValue(16, /*Unsigned=*/false), 7);
  ASSERT_STREQ(S.c_str(), "-256.0");

  // signed _Accum
  S.clear();
  FixedPointValueToString(S, APSInt::getMinValue(32, /*Unsigned=*/false), 15);
  ASSERT_STREQ(S.c_str(), "-65536.0");

  // signed long _Accum
  S.clear();
  FixedPointValueToString(S, APSInt::getMinValue(64, /*Unsigned=*/false), 31);
  ASSERT_STREQ(S.c_str(), "-4294967296.0");
}

} // namespace