OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Distance.h
Go to the documentation of this file.
1 /*
2  * Copyright 2022 HEAVY.AI, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #pragma once
18 
20 
21 namespace spatial_type {
22 
23 class Distance : public Codegen {
24  public:
25  Distance(const Analyzer::GeoOperator* geo_operator) : Codegen(geo_operator) {
26  CHECK_EQ(operator_->size(), size_t(2));
27  const auto& ti = operator_->get_type_info();
28  is_nullable_ = !ti.get_notnull();
29  }
30 
31  size_t size() const final { return 2; }
32 
33  SQLTypeInfo getNullType() const final { return SQLTypeInfo(kBOOLEAN); }
34 
35  std::tuple<std::vector<llvm::Value*>, llvm::Value*> codegenLoads(
36  const std::vector<llvm::Value*>& arg_lvs,
37  const std::vector<llvm::Value*>& pos_lvs,
38  CgenState* cgen_state) final {
39  CHECK_EQ(pos_lvs.size(), size());
40  std::string size_fn_name = "array_size";
41  if (is_nullable_) {
42  size_fn_name += "_nullable";
43  }
44 
45  auto& builder = cgen_state->ir_builder_;
46  llvm::Value* is_null = cgen_state->llBool(false);
47 
48  std::vector<llvm::Value*> operand_lvs;
49  size_t arg_lvs_index{0};
50  for (size_t i = 0; i < size(); i++) {
51  const auto operand = getOperand(i);
52  CHECK(operand);
53  const auto& operand_ti = operand->get_type_info();
54  CHECK(IS_GEO(operand_ti.get_type()));
55  const size_t num_physical_coord_lvs = operand_ti.get_physical_coord_cols();
56 
57  // iterate over column inputs
58  bool is_coords_lv{true};
59  if (dynamic_cast<const Analyzer::ColumnVar*>(operand)) {
60  for (size_t j = 0; j < num_physical_coord_lvs; j++) {
61  CHECK_LT(arg_lvs_index, arg_lvs.size());
62  auto lv = arg_lvs[arg_lvs_index++];
63  // TODO: fast fixlen array buff for coords
64  auto array_buff_lv =
65  cgen_state->emitExternalCall("array_buff",
66  llvm::Type::getInt8PtrTy(cgen_state->context_),
67  {lv, pos_lvs[i]});
68  auto const is_coords = (j == 0);
69  if (!is_coords) {
70  // cast additional columns to i32*
71  array_buff_lv = builder.CreateBitCast(
72  array_buff_lv, llvm::Type::getInt32PtrTy(cgen_state->context_));
73  }
74  operand_lvs.push_back(array_buff_lv);
75 
76  const auto ptr_type = llvm::dyn_cast_or_null<llvm::PointerType>(lv->getType());
77  CHECK(ptr_type);
78  const auto elem_type = ptr_type->getPointerElementType();
79  CHECK(elem_type);
80  auto const shift = log2_bytes(is_coords ? 1 : 4);
81  std::vector<llvm::Value*> array_sz_args{
82  lv, pos_lvs[i], cgen_state->llInt(shift)};
83  if (is_nullable_) { // TODO: should we do this for all arguments, or just
84  // coords?
85  array_sz_args.push_back(cgen_state->llInt(
86  static_cast<int32_t>(inline_int_null_value<int32_t>())));
87  }
88  operand_lvs.push_back(cgen_state->emitExternalCall(
89  size_fn_name, get_int_type(32, cgen_state->context_), array_sz_args));
90  llvm::Value* operand_is_null_lv{nullptr};
91  if (is_nullable_ && is_coords_lv) {
92  if (operand_ti.get_type() == kPOINT) {
93  operand_is_null_lv = cgen_state->emitExternalCall(
94  "point_coord_array_is_null",
95  llvm::Type::getInt1Ty(cgen_state->context_),
96  {lv, pos_lvs[i]});
97  } else {
98  operand_is_null_lv = builder.CreateICmpEQ(
99  operand_lvs.back(),
100  cgen_state->llInt(
101  static_cast<int32_t>(inline_int_null_value<int32_t>())));
102  }
103  is_null = builder.CreateOr(is_null, operand_is_null_lv);
104  }
105  is_coords_lv = false;
106  }
107  } else {
108  bool is_coords_lv{true};
109  for (size_t j = 0; j < num_physical_coord_lvs; j++) {
110  // ptr
111  CHECK_LT(arg_lvs_index, arg_lvs.size());
112  auto array_buff_lv = arg_lvs[arg_lvs_index++];
113  if (j == 0) {
114  // cast alloca to i8*
115  array_buff_lv = builder.CreateBitCast(
116  array_buff_lv, llvm::Type::getInt8PtrTy(cgen_state->context_));
117  } else {
118  // cast additional columns to i32*
119  array_buff_lv = builder.CreateBitCast(
120  array_buff_lv, llvm::Type::getInt32PtrTy(cgen_state->context_));
121  }
122  operand_lvs.push_back(array_buff_lv);
123  if (is_nullable_ && is_coords_lv) {
124  auto coords_array_type =
125  llvm::dyn_cast<llvm::PointerType>(operand_lvs.back()->getType());
126  CHECK(coords_array_type);
127  is_null = builder.CreateOr(
128  is_null,
129  builder.CreateICmpEQ(operand_lvs.back(),
130  llvm::ConstantPointerNull::get(coords_array_type)));
131  }
132  is_coords_lv = false;
133  CHECK_LT(arg_lvs_index, arg_lvs.size());
134  operand_lvs.push_back(arg_lvs[arg_lvs_index++]);
135  }
136  }
137  }
138  CHECK_EQ(arg_lvs_index, arg_lvs.size());
139 
140  // use the points array size argument for nullability
141  return std::make_tuple(operand_lvs, is_nullable_ ? is_null : nullptr);
142  }
143 
144  std::vector<llvm::Value*> codegen(const std::vector<llvm::Value*>& args,
145  CodeGenerator::NullCheckCodegen* nullcheck_codegen,
146  CgenState* cgen_state,
147  const CompilationOptions& co) final {
148  const auto& first_operand_ti = getOperand(0)->get_type_info();
149  const auto& second_operand_ti = getOperand(1)->get_type_info();
150 
151  const bool is_geodesic = first_operand_ti.get_subtype() == kGEOGRAPHY &&
152  first_operand_ti.get_output_srid() == 4326;
153 
154  if (is_geodesic && !((first_operand_ti.get_type() == kPOINT &&
155  second_operand_ti.get_type() == kPOINT) ||
156  (first_operand_ti.get_type() == kLINESTRING &&
157  second_operand_ti.get_type() == kPOINT) ||
158  (first_operand_ti.get_type() == kPOINT &&
159  second_operand_ti.get_type() == kLINESTRING))) {
160  throw std::runtime_error(getName() +
161  " currently doesn't accept non-POINT geographies");
162  }
163 
164  bool unsupported_args = false;
165  if (first_operand_ti.get_type() == kMULTILINESTRING) {
166  unsupported_args = (second_operand_ti.get_type() != kPOINT);
167  } else if (second_operand_ti.get_type() == kMULTILINESTRING) {
168  unsupported_args = (first_operand_ti.get_type() != kPOINT);
169  }
170  if (unsupported_args) {
171  throw std::runtime_error(getName() +
172  " currently doesn't support this argument combination");
173  }
174 
175  std::string func_name = getName() + suffix(first_operand_ti.get_type()) +
176  suffix(second_operand_ti.get_type());
177  if (is_geodesic) {
178  func_name += "_Geodesic";
179  }
180  auto& builder = cgen_state->ir_builder_;
181 
182  std::vector<llvm::Value*> operand_lvs;
183  for (size_t i = 0; i < args.size(); i += 2) {
184  operand_lvs.push_back(args[i]);
185  operand_lvs.push_back(
186  builder.CreateSExt(args[i + 1], llvm::Type::getInt64Ty(cgen_state->context_)));
187  }
188 
189  const auto& ret_ti = operator_->get_type_info();
190  // push back ic, isr, osr for now
191  operand_lvs.push_back(
192  cgen_state->llInt(Geospatial::get_compression_scheme(first_operand_ti))); // ic 1
193  operand_lvs.push_back(
194  cgen_state->llInt(first_operand_ti.get_input_srid())); // in srid 1
195  operand_lvs.push_back(cgen_state->llInt(
196  Geospatial::get_compression_scheme(second_operand_ti))); // ic 2
197  operand_lvs.push_back(
198  cgen_state->llInt(second_operand_ti.get_input_srid())); // in srid 2
199  const auto srid_override = operator_->getOutputSridOverride();
200  operand_lvs.push_back(
201  cgen_state->llInt(srid_override ? *srid_override : 0)); // out srid
202 
203  if (getName() == "ST_Distance" && first_operand_ti.get_subtype() != kGEOGRAPHY &&
204  (first_operand_ti.get_type() != kPOINT ||
205  second_operand_ti.get_type() != kPOINT)) {
206  operand_lvs.push_back(cgen_state->llFp(double(0.0)));
207  }
208 
209  CHECK(ret_ti.get_type() == kDOUBLE);
210  auto ret = cgen_state->emitExternalCall(
211  func_name, llvm::Type::getDoubleTy(cgen_state->context_), operand_lvs);
212  if (is_nullable_) {
213  CHECK(nullcheck_codegen);
214  ret = nullcheck_codegen->finalize(cgen_state->inlineFpNull(ret_ti), ret);
215  }
216  return {ret};
217  }
218 };
219 
220 } // namespace spatial_type
#define CHECK_EQ(x, y)
Definition: Logger.h:301
int32_t get_compression_scheme(const SQLTypeInfo &ti)
Definition: Compression.cpp:23
llvm::Type * get_int_type(const int width, llvm::LLVMContext &context)
std::string suffix(SQLTypes type)
Definition: Codegen.cpp:69
std::tuple< std::vector< llvm::Value * >, llvm::Value * > codegenLoads(const std::vector< llvm::Value * > &arg_lvs, const std::vector< llvm::Value * > &pos_lvs, CgenState *cgen_state) final
Definition: Distance.h:35
CONSTEXPR DEVICE bool is_null(const T &value)
std::vector< llvm::Value * > codegen(const std::vector< llvm::Value * > &args, CodeGenerator::NullCheckCodegen *nullcheck_codegen, CgenState *cgen_state, const CompilationOptions &co) final
Definition: Distance.h:144
const SQLTypeInfo & get_type_info() const
Definition: Analyzer.h:79
#define CHECK_LT(x, y)
Definition: Logger.h:303
const Analyzer::GeoOperator * operator_
Definition: Codegen.h:67
Distance(const Analyzer::GeoOperator *geo_operator)
Definition: Distance.h:25
size_t size() const
Definition: Analyzer.cpp:4182
size_t size() const final
Definition: Distance.h:31
#define CHECK(condition)
Definition: Logger.h:291
virtual const Analyzer::Expr * getOperand(const size_t index)
Definition: Codegen.cpp:64
uint32_t log2_bytes(const uint32_t bytes)
Definition: Execute.h:198
#define IS_GEO(T)
Definition: sqltypes.h:310
SQLTypeInfo getNullType() const final
Definition: Distance.h:33