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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
|
#include "mkql_enumerate.h"
#include <yql/essentials/minikql/computation/mkql_computation_node_holders.h>
#include <yql/essentials/minikql/computation/mkql_computation_node_codegen.h> // Y_IGNORE
#include <yql/essentials/minikql/computation/mkql_computation_node_holders_codegen.h>
#include <yql/essentials/minikql/computation/mkql_custom_list.h>
#include <yql/essentials/minikql/mkql_node_cast.h>
namespace NKikimr {
namespace NMiniKQL {
namespace {
class TEnumerateWrapper : public TMutableCodegeneratorNode<TEnumerateWrapper> {
typedef TMutableCodegeneratorNode<TEnumerateWrapper> TBaseComputation;
public:
using TSelf = TEnumerateWrapper;
class TValue : public TCustomListValue {
public:
class TIterator : public TComputationValue<TIterator> {
public:
TIterator(
TMemoryUsageInfo* memInfo,
NUdf::TUnboxedValue&& inner,
ui64 start, ui64 step,
TComputationContext& ctx, const TSelf* self)
: TComputationValue(memInfo)
, Inner(std::move(inner))
, Step(step)
, Counter(start - step)
, Ctx(ctx)
, Self(self)
{
}
private:
bool Next(NUdf::TUnboxedValue& value) override {
NUdf::TUnboxedValue item;
if (Inner.Next(item)) {
Counter += Step;
NUdf::TUnboxedValue* items = nullptr;
value = Self->ResPair.NewArray(Ctx, 2, items);
items[0] = NUdf::TUnboxedValuePod(Counter);
items[1] = std::move(item);
return true;
}
return false;
}
bool Skip() override {
if (Inner.Skip()) {
Counter += Step;
return true;
}
return false;
}
const NUdf::TUnboxedValue Inner;
const ui64 Step;
ui64 Counter;
TComputationContext& Ctx;
const TSelf* const Self;
};
TValue(
TMemoryUsageInfo* memInfo,
const NUdf::TUnboxedValue& list,
ui64 start, ui64 step,
TComputationContext& ctx,
const TSelf* self
)
: TCustomListValue(memInfo)
, List(list)
, Start(start)
, Step(step)
, Ctx(ctx)
, Self(self)
{}
private:
ui64 GetListLength() const override {
if (!Length) {
Length = List.GetListLength();
}
return *Length;
}
bool HasListItems() const override {
if (!HasItems) {
HasItems = List.HasListItems();
}
return *HasItems;
}
NUdf::TUnboxedValue GetListIterator() const override {
return Ctx.HolderFactory.Create<TIterator>(List.GetListIterator(), Start, Step, Ctx, Self);
}
const NUdf::TUnboxedValue List;
const ui64 Start;
const ui64 Step;
TComputationContext& Ctx;
const TSelf* const Self;
};
TEnumerateWrapper(TComputationMutables& mutables, IComputationNode* list, IComputationNode* start, IComputationNode* step)
: TBaseComputation(mutables, EValueRepresentation::Boxed)
, List(list)
, Start(start)
, Step(step)
, ResPair(mutables)
{}
NUdf::TUnboxedValuePod DoCalculate(TComputationContext& ctx) const {
return WrapList(ctx, List->GetValue(ctx).Release(), Start->GetValue(ctx).Get<ui64>(), Step->GetValue(ctx).Get<ui64>());
}
#ifndef MKQL_DISABLE_CODEGEN
Value* DoGenerateGetValue(const TCodegenContext& ctx, BasicBlock*& block) const {
auto& context = ctx.Codegen.GetContext();
const auto list = GetNodeValue(List, ctx, block);
const auto startv = GetNodeValue(Start, ctx, block);
const auto stepv = GetNodeValue(Step, ctx, block);
const auto start = GetterFor<ui64>(startv, context, block);
const auto step = GetterFor<ui64>(stepv, context, block);
const auto func = ConstantInt::get(Type::getInt64Ty(context), GetMethodPtr(&TEnumerateWrapper::WrapList));
const auto ptrType = PointerType::getUnqual(StructType::get(context));
const auto self = CastInst::Create(Instruction::IntToPtr, ConstantInt::get(Type::getInt64Ty(context), uintptr_t(this)), ptrType, "self", block);
if (NYql::NCodegen::ETarget::Windows != ctx.Codegen.GetEffectiveTarget()) {
const auto signature = FunctionType::get(list->getType(), {self->getType(), ctx.Ctx->getType(), list->getType(), start->getType(), step->getType()}, false);
const auto creator = CastInst::Create(Instruction::IntToPtr, func, PointerType::getUnqual(signature), "creator", block);
const auto output = CallInst::Create(signature, creator, {self, ctx.Ctx, list, start, step}, "output", block);
return output;
} else {
const auto place = new AllocaInst(list->getType(), 0U, "place", block);
new StoreInst(list, place, block);
const auto signature = FunctionType::get(Type::getVoidTy(context), {self->getType(), place->getType(), ctx.Ctx->getType(), place->getType(), start->getType(), step->getType()}, false);
const auto creator = CastInst::Create(Instruction::IntToPtr, func, PointerType::getUnqual(signature), "creator", block);
CallInst::Create(signature, creator, {self, place, ctx.Ctx, place, start, step}, "", block);
const auto output = new LoadInst(list->getType(), place, "output", block);
return output;
}
}
#endif
private:
NUdf::TUnboxedValuePod WrapList(TComputationContext& ctx, NUdf::TUnboxedValuePod list, ui64 start, ui64 step) const {
return ctx.HolderFactory.Create<TValue>(list, start, step, ctx, this);
}
void RegisterDependencies() const final {
DependsOn(List);
DependsOn(Start);
DependsOn(Step);
}
IComputationNode* const List;
IComputationNode* const Start;
IComputationNode* const Step;
const TContainerCacheOnContext ResPair;
};
}
IComputationNode* WrapEnumerate(TCallable& callable, const TComputationNodeFactoryContext& ctx) {
MKQL_ENSURE(callable.GetInputsCount() == 3, "Expected 3 args");
AS_TYPE(TListType, callable.GetInput(0));
MKQL_ENSURE(AS_TYPE(TDataType, callable.GetInput(1))->GetSchemeType() == NUdf::TDataType<ui64>::Id, "Expected Uint64");
MKQL_ENSURE(AS_TYPE(TDataType, callable.GetInput(2))->GetSchemeType() == NUdf::TDataType<ui64>::Id, "Expected Uint64");
return new TEnumerateWrapper(ctx.Mutables, LocateNode(ctx.NodeLocator, callable, 0),
LocateNode(ctx.NodeLocator, callable, 1), LocateNode(ctx.NodeLocator, callable, 2));
}
}
}
|