ClickHouse/src/Functions/bitAnd.cpp

50 lines
1.1 KiB
C++
Raw Normal View History

#include <Functions/FunctionFactory.h>
#include <Functions/FunctionBinaryArithmetic.h>
2019-12-29 01:13:17 +00:00
namespace DB
{
2020-02-25 18:10:48 +00:00
namespace ErrorCodes
{
extern const int LOGICAL_ERROR;
}
2020-09-07 18:00:37 +00:00
namespace
{
template <typename A, typename B>
struct BitAndImpl
{
using ResultType = typename NumberTraits::ResultOfBit<A, B>::Type;
static constexpr const bool allow_fixed_string = true;
template <typename Result = ResultType>
static inline Result apply(A a, B b)
{
return bigint_cast<Result>(a) & bigint_cast<Result>(b);
}
#if USE_EMBEDDED_COMPILER
static constexpr bool compilable = true;
static inline llvm::Value * compile(llvm::IRBuilder<> & b, llvm::Value * left, llvm::Value * right, bool)
{
if (!left->getType()->isIntegerTy())
throw Exception("BitAndImpl expected an integral type", ErrorCodes::LOGICAL_ERROR);
return b.CreateAnd(left, right);
}
#endif
};
struct NameBitAnd { static constexpr auto name = "bitAnd"; };
2020-09-05 14:12:47 +00:00
using FunctionBitAnd = BinaryArithmeticOverloadResolver<BitAndImpl, NameBitAnd, true>;
2020-09-07 18:00:37 +00:00
}
void registerFunctionBitAnd(FunctionFactory & factory)
{
factory.registerFunction<FunctionBitAnd>();
}
}