#pragma once #include #if USE_EMBEDDED_COMPILER #include #include #include namespace DB { struct LLVMContext; using CompilableExpression = std::function; class LLVMFunction : public IFunctionBase { std::string name; Names arg_names; DataTypes arg_types; std::shared_ptr context; std::vector originals; std::unordered_map subexpressions; public: LLVMFunction(const ExpressionActions::Actions & actions, std::shared_ptr context, const Block & sample_block); bool isCompilable() const override { return true; } llvm::Value * compile(llvm::IRBuilderBase & builder, ValuePlaceholders values) const override { return subexpressions.at(name)(builder, values); } String getName() const override { return name; } const Names & getArgumentNames() const { return arg_names; } const DataTypes & getArgumentTypes() const override { return arg_types; } const DataTypePtr & getReturnType() const override { return originals.back()->getReturnType(); } PreparedFunctionPtr prepare(const Block &) const override; bool isDeterministic() const override; bool isDeterministicInScopeOfQuery() const override; bool isSuitableForConstantFolding() const override; bool isInjective(const Block & sample_block) override; bool hasInformationAboutMonotonicity() const override; Monotonicity getMonotonicityForRange(const IDataType & type, const Field & left, const Field & right) const override; }; /// For each APPLY_FUNCTION action, try to compile the function to native code; if the only uses of a compilable /// function's result are as arguments to other compilable functions, inline it and leave the now-redundant action as-is. void compileFunctions(ExpressionActions::Actions & actions, const Names & output_columns, const Block & sample_block, std::shared_ptr compilation_cache); } #endif