Lines Matching +defs:load +defs:file
9 // This file implements the execution engine for MLIR modules based on LLVM Orc
84 // Set up the output file.
86 auto file = openOutputFile(outputFilename, &errorMessage);
87 if (!file) {
92 // Dump the object generated for a single module to the output file.
95 file->os() << cachedObject->getBuffer();
96 file->keep();
103 llvm::errs() << "cannot dump ExecutionEngine object code to file: "
181 llvm::Value *load = builder.CreateLoad(argTy, argPtr);
182 args.push_back(load);
288 // destroy functions, we'll use them to register the library. Otherwise, load
350 errs() << "Could not load " << libPath << ":\n " << loaded.takeError()