ClickHouse/dbms/src/Interpreters/ExpressionJIT.h

80 lines
2.6 KiB
C++
Raw Normal View History

#pragma once
#include "config_core.h"
#if USE_EMBEDDED_COMPILER
#include <Functions/IFunction.h>
#include <Interpreters/Context.h>
2018-05-06 09:32:36 +00:00
#include <Interpreters/ExpressionActions.h>
2018-09-03 10:14:05 +00:00
#include <Common/LRUCache.h>
#include <set>
2018-05-06 09:32:36 +00:00
namespace DB
{
2018-09-03 10:14:05 +00:00
using CompilableExpression = std::function<llvm::Value * (llvm::IRBuilderBase &, const ValuePlaceholders &)>;
struct LLVMModuleState;
class LLVMFunction : public IFunctionBase
{
std::string name;
Names arg_names;
DataTypes arg_types;
std::vector<FunctionBasePtr> originals;
2019-01-11 21:18:57 +00:00
std::unordered_map<StringRef, CompilableExpression> subexpressions;
std::unique_ptr<LLVMModuleState> module_state;
public:
LLVMFunction(const ExpressionActions::Actions & actions, const Block & sample_block);
bool isCompilable() const override { return true; }
llvm::Value * compile(llvm::IRBuilderBase & builder, ValuePlaceholders values) const override;
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 ColumnNumbers &, size_t) 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;
2018-09-03 10:14:05 +00:00
const LLVMModuleState * getLLVMModuleState() const { return module_state.get(); }
};
2018-09-03 10:14:05 +00:00
/** This child of LRUCache breaks one of it's invariants: total weight may be changed after insertion.
* We have to do so, because we don't known real memory consumption of generated LLVM code for every function.
*/
class CompiledExpressionCache : public LRUCache<UInt128, LLVMFunction, UInt128Hash>
2018-09-03 10:14:05 +00:00
{
public:
using Base = LRUCache<UInt128, LLVMFunction, UInt128Hash>;
2018-09-03 10:14:05 +00:00
using Base::Base;
};
/// 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<CompiledExpressionCache> compilation_cache, size_t min_count_to_compile_expression);
}
#endif