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

Method LoadFunctionIRs

cpp/src/gandiva/engine.cc:357–365  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

355}
356
357Status Engine::LoadFunctionIRs() {
358 if (!functions_loaded_) {
359 ARROW_RETURN_NOT_OK(LoadPreCompiledIR());
360 ARROW_RETURN_NOT_OK(DecimalIR::AddFunctions(this));
361 ARROW_RETURN_NOT_OK(LoadExternalPreCompiledIR());
362 functions_loaded_ = true;
363 }
364 return Status::OK();
365}
366
367llvm::Constant* Engine::CreateGlobalStringPtr(const std::string& string) {
368 auto gloval_variable = ir_builder()->CreateGlobalString(string);

Callers 3

AddMethod · 0.80
VerifyFunctionMappingMethod · 0.80
TEST_FFunction · 0.80

Calls 1

OKFunction · 0.50

Tested by 2

VerifyFunctionMappingMethod · 0.64
TEST_FFunction · 0.64