OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
CodeGenerator.h File Reference
#include <llvm/IR/Value.h>
#include "../Analyzer/Analyzer.h"
#include "Execute.h"
#include "Shared/DbObjectKeys.h"
+ Include dependency graph for CodeGenerator.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  CodeGenerator
 
struct  CodeGenerator::GPUTarget
 
struct  CodeGenerator::ExecutorRequired
 
struct  CodeGenerator::NullCheckCodegen
 
struct  CodeGenerator::ArgNullcheckBBs
 
class  ScalarCodeGenerator
 
struct  ScalarCodeGenerator::CompiledExpression
 

Functions

std::unique_ptr< llvm::Module > runtime_module_shallow_copy (CgenState *cgen_state)
 
std::vector< llvm::Value * > generate_column_heads_load (const int num_columns, llvm::Value *byte_stream_arg, llvm::IRBuilder<> &ir_builder, llvm::LLVMContext &ctx)
 

Function Documentation

std::vector<llvm::Value*> generate_column_heads_load ( const int  num_columns,
llvm::Value *  byte_stream_arg,
llvm::IRBuilder<> &  ir_builder,
llvm::LLVMContext &  ctx 
)

Loads individual columns from a single, packed pointers buffer (the byte stream arg)

Definition at line 3454 of file NativeCodegen.cpp.

Referenced by TableFunctionCompilationContext::generateEntryPoint().

3457  {
3458  CHECK(byte_stream_arg);
3459  const auto max_col_local_id = num_columns - 1;
3460 
3461  std::vector<llvm::Value*> col_heads;
3462  for (int col_id = 0; col_id <= max_col_local_id; ++col_id) {
3463  auto* gep = ir_builder.CreateGEP(
3464  byte_stream_arg->getType()->getScalarType()->getPointerElementType(),
3465  byte_stream_arg,
3466  llvm::ConstantInt::get(llvm::Type::getInt32Ty(ctx), col_id));
3467  auto* load_gep = ir_builder.CreateLoad(gep->getType()->getPointerElementType(), gep);
3468  load_gep->setName(byte_stream_arg->getName() + "_" + std::to_string(col_id) + "_ptr");
3469  col_heads.emplace_back(load_gep);
3470  }
3471  return col_heads;
3472 }
std::string to_string(char const *&&v)
#define CHECK(condition)
Definition: Logger.h:291

+ Here is the caller graph for this function:

std::unique_ptr<llvm::Module> runtime_module_shallow_copy ( CgenState cgen_state)

Makes a shallow copy (just declarations) of the runtime module. Function definitions are cloned only if they're used from the generated code.