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
|
#include "mkql_builtins_decimal.h" // Y_IGNORE
namespace NKikimr {
namespace NMiniKQL {
namespace {
template<typename TInput, typename TOutput>
struct TDecrement : public TSimpleArithmeticUnary<TInput, TOutput, TDecrement<TInput, TOutput>> {
static TOutput Do(TInput val)
{
return --val;
}
#ifndef MKQL_DISABLE_CODEGEN
static Value* Gen(Value* arg, const TCodegenContext&, BasicBlock*& block)
{
return std::is_integral<TOutput>() ?
BinaryOperator::CreateSub(arg, ConstantInt::get(arg->getType(), 1), "dec", block):
BinaryOperator::CreateFSub(arg, ConstantFP::get(arg->getType(), 1.0), "dec", block);
}
#endif
};
template <ui8 Precision>
struct TDecimalDec {
static NUdf::TUnboxedValuePod Execute(const NUdf::TUnboxedValuePod& arg) {
auto v = arg.GetInt128();
using namespace NYql::NDecimal;
const auto& bounds = GetBounds<Precision, true, false>();
if (v > bounds.first && v < bounds.second)
return NUdf::TUnboxedValuePod(--v);
return NUdf::TUnboxedValuePod(IsNan(v) ? Nan() : (v > 0 ? +Inf() : -Inf()));
}
#ifndef MKQL_DISABLE_CODEGEN
static Value* Generate(Value* arg, const TCodegenContext& ctx, BasicBlock*& block)
{
auto& context = ctx.Codegen.GetContext();
const auto& bounds = NDecimal::GenBounds<Precision, true, false>(context);
const auto val = GetterForInt128(arg, block);
const auto sub = BinaryOperator::CreateSub(val, ConstantInt::get(val->getType(), 1), "sub", block);
const auto gt = CmpInst::Create(Instruction::ICmp, FCmpInst::ICMP_SGT, sub, bounds.first, "gt", block);
const auto lt = CmpInst::Create(Instruction::ICmp, FCmpInst::ICMP_SLT, val, bounds.second, "lt", block);
const auto good = BinaryOperator::CreateAnd(lt, gt, "and", block);
const auto nan = NDecimal::GenIsNonComparable(val, context, block);
const auto plus = CmpInst::Create(Instruction::ICmp, ICmpInst::ICMP_SGT, val, ConstantInt::get(val->getType(), 0), "plus", block);
const auto inf = SelectInst::Create(plus, GetDecimalPlusInf(context), GetDecimalMinusInf(context), "inf", block);
const auto bad = SelectInst::Create(nan, GetDecimalNan(context), inf, "bad", block);
const auto dec = SelectInst::Create(good, sub, bad, "dec", block);
return SetterForInt128(dec, block);
}
#endif
static_assert(Precision <= NYql::NDecimal::MaxPrecision, "Too large precision!");
};
}
void RegisterDecrement(IBuiltinFunctionRegistry& registry) {
RegisterUnaryNumericFunctionOpt<TDecrement, TUnaryArgsOpt>(registry, "Decrement");
NDecimal::RegisterUnaryFunctionForAllPrecisions<TDecimalDec, TUnaryArgsOpt>(registry, "Dec_");
}
} // namespace NMiniKQL
} // namespace NKikimr
|