MCPcopy Create free account
hub / github.com/apache/arrow / GetLocalBitMapReference

Method GetLocalBitMapReference

cpp/src/gandiva/llvm_generator.cc:221–225  ·  view source on GitHub ↗

Get reference to local bitmap array at specified index in the args list.

Source from the content-addressed store, hash-verified

219
220/// Get reference to local bitmap array at specified index in the args list.
221llvm::Value* LLVMGenerator::GetLocalBitMapReference(llvm::Value* arg_bitmaps, int idx) {
222 llvm::Value* load = LoadVectorAtIndex(arg_bitmaps, types()->i64_type(), idx, "");
223 return ir_builder()->CreateIntToPtr(load, types()->i64_ptr_type(),
224 std::to_string(idx) + "_lbmap");
225}
226
227/// \brief Generate code for one expression.
228

Callers

nothing calls this directly

Calls 3

to_stringFunction · 0.85
typesFunction · 0.70
ir_builderFunction · 0.70

Tested by

no test coverage detected