1 //===-- ubsan_value.cc ----------------------------------------------------===//
3 // This file is distributed under the University of Illinois Open Source
4 // License. See LICENSE.TXT for details.
6 //===----------------------------------------------------------------------===//
8 // Representation of a runtime value, as marshaled from the generated code to
11 //===----------------------------------------------------------------------===//
13 #include "ubsan_value.h"
14 #include "sanitizer_common/sanitizer_common.h"
15 #include "sanitizer_common/sanitizer_libc.h"
17 using namespace __ubsan
;
19 SIntMax
Value::getSIntValue() const {
20 CHECK(getType().isSignedIntegerTy());
22 // Val was zero-extended to ValueHandle. Sign-extend from original width
24 const unsigned ExtraBits
=
25 sizeof(SIntMax
) * 8 - getType().getIntegerBitWidth();
26 return SIntMax(Val
) << ExtraBits
>> ExtraBits
;
28 if (getType().getIntegerBitWidth() == 64)
29 return *reinterpret_cast<s64
*>(Val
);
31 if (getType().getIntegerBitWidth() == 128)
32 return *reinterpret_cast<s128
*>(Val
);
34 if (getType().getIntegerBitWidth() == 128)
35 UNREACHABLE("libclang_rt.ubsan was built without __int128 support");
37 UNREACHABLE("unexpected bit width");
40 UIntMax
Value::getUIntValue() const {
41 CHECK(getType().isUnsignedIntegerTy());
44 if (getType().getIntegerBitWidth() == 64)
45 return *reinterpret_cast<u64
*>(Val
);
47 if (getType().getIntegerBitWidth() == 128)
48 return *reinterpret_cast<u128
*>(Val
);
50 if (getType().getIntegerBitWidth() == 128)
51 UNREACHABLE("libclang_rt.ubsan was built without __int128 support");
53 UNREACHABLE("unexpected bit width");
56 UIntMax
Value::getPositiveIntValue() const {
57 if (getType().isUnsignedIntegerTy())
58 return getUIntValue();
59 SIntMax Val
= getSIntValue();
64 /// Get the floating-point value of this object, extended to a long double.
65 /// These are always passed by address (our calling convention doesn't allow
66 /// them to be passed in floating-point registers, so this has little cost).
67 FloatMax
Value::getFloatValue() const {
68 CHECK(getType().isFloatTy());
69 if (isInlineFloat()) {
70 switch (getType().getFloatBitWidth()) {
72 // FIXME: OpenCL / NEON 'half' type. LLVM can't lower the conversion
73 // from '__fp16' to 'long double'.
76 internal_memcpy(&Value
, &Val
, 4);
82 internal_memcpy(&Value
, &Val
, 4);
87 internal_memcpy(&Value
, &Val
, 8);
92 switch (getType().getFloatBitWidth()) {
93 case 64: return *reinterpret_cast<double*>(Val
);
94 case 80: return *reinterpret_cast<long double*>(Val
);
95 case 128: return *reinterpret_cast<long double*>(Val
);
98 UNREACHABLE("unexpected floating point bit width");