/freebsd/contrib/llvm-project/clang/lib/Interpreter/ |
H A D | Interpreter.cpp | 243 Interpreter::Interpreter(std::unique_ptr<CompilerInstance> CI, in Interpreter() function in Interpreter 272 Interpreter::~Interpreter() { in ~Interpreter() 307 llvm::Expected<std::unique_ptr<Interpreter>> 308 Interpreter::create(std::unique_ptr<CompilerInstance> CI) { in create() 311 std::unique_ptr<Interpreter>(new Interpreter(std::move(CI), Err)); in create() 326 llvm::Expected<std::unique_ptr<Interpreter>> 327 Interpreter::createWithCUDA(std::unique_ptr<CompilerInstance> CI, in createWithCUDA() 338 auto Interp = Interpreter::create(std::move(CI)); in createWithCUDA() 354 const CompilerInstance *Interpreter::getCompilerInstance() const { in getCompilerInstance() 358 CompilerInstance *Interpreter::getCompilerInstance() { in getCompilerInstance() [all …]
|
H A D | Value.cpp | 123 Value::Value(Interpreter *In, void *Ty) : Interp(In), OpaqueType(Ty) { in Value() 133 Interpreter &Interp = getInterpreter(); in Value() 238 Interpreter &Value::getInterpreter() { in getInterpreter() 244 const Interpreter &Value::getInterpreter() const { in getInterpreter()
|
H A D | IncrementalParser.h | 35 class Interpreter; variable 68 IncrementalParser(Interpreter &Interp,
|
H A D | DeviceOffload.h | 25 Interpreter &Interp, std::unique_ptr<CompilerInstance> Instance,
|
H A D | IncrementalParser.cpp | 35 Interpreter &Interp; 39 IncrementalASTConsumer(Interpreter &InterpRef, std::unique_ptr<ASTConsumer> C) in IncrementalASTConsumer() 202 IncrementalParser::IncrementalParser(Interpreter &Interp, in IncrementalParser()
|
H A D | DeviceOffload.cpp | 27 Interpreter &Interp, std::unique_ptr<CompilerInstance> Instance, in IncrementalCUDADeviceParser()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/ |
H A D | Interpreter.cpp | 25 RegisterInterp() { Interpreter::Register(); } in RegisterInterp() 34 ExecutionEngine *Interpreter::create(std::unique_ptr<Module> M, in create() 48 return new Interpreter(std::move(M)); in create() 54 Interpreter::Interpreter(std::unique_ptr<Module> M) in Interpreter() function in Interpreter 66 Interpreter::~Interpreter() { in ~Interpreter() 70 void Interpreter::runAtExitHandlers () { in runAtExitHandlers() 80 GenericValue Interpreter::runFunction(Function *F, in runFunction()
|
H A D | Execution.cpp | 62 void Interpreter::visitUnaryOperator(UnaryOperator &I) { in visitUnaryOperator() 332 void Interpreter::visitICmpInst(ICmpInst &I) { in visitICmpInst() 665 void Interpreter::visitFCmpInst(FCmpInst &I) { in visitFCmpInst() 700 void Interpreter::visitBinaryOperator(BinaryOperator &I) { in visitBinaryOperator() 825 void Interpreter::visitSelectInst(SelectInst &I) { in visitSelectInst() 839 void Interpreter::exitCalled(GenericValue GV) { in exitCalled() 856 void Interpreter::popStackAndReturnValueToCaller(Type *RetTy, in popStackAndReturnValueToCaller() 882 void Interpreter::visitReturnInst(ReturnInst &I) { in visitReturnInst() 896 void Interpreter::visitUnreachableInst(UnreachableInst &I) { in visitUnreachableInst() 900 void Interpreter::visitBranchInst(BranchInst &I) { in visitBranchInst() [all …]
|
H A D | Interpreter.h | 74 class Interpreter : public ExecutionEngine, public InstVisitor<Interpreter> { 87 explicit Interpreter(std::unique_ptr<Module> M); 88 ~Interpreter() override;
|
H A D | ExternalFunctions.cpp | 80 static Interpreter *TheInterpreter; 269 GenericValue Interpreter::callExternalFunction(Function *F, in callExternalFunction() 519 void Interpreter::initializeExternalFunctions() { in initializeExternalFunctions()
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | TFLiteUtils.cpp | 64 Interpreter->Invoke(); in evaluate() 78 std::unique_ptr<tflite::Interpreter> Interpreter; member in llvm::TFModelEvaluatorImpl 122 Builder(&Interpreter); in TFModelEvaluatorImpl() 124 if (!Interpreter) { in TFModelEvaluatorImpl() 134 for (size_t I = 0; I < Interpreter->inputs().size(); ++I) in TFModelEvaluatorImpl() 135 Interpreter->tensor(I)->allocation_type = in TFModelEvaluatorImpl() 138 if (Interpreter->AllocateTensors() != TfLiteStatus::kTfLiteOk) { in TFModelEvaluatorImpl() 145 for (size_t I = 0; I < Interpreter->inputs().size(); ++I) in TFModelEvaluatorImpl() 146 InputsMap[Interpreter in TFModelEvaluatorImpl() [all...] |
/freebsd/contrib/llvm-project/llvm/tools/bugpoint/ |
H A D | ExecutionDriver.cpp | 157 if (!Interpreter) { in initializeExecutionEnvironment() 159 Interpreter = in initializeExecutionEnvironment() 162 if (!Interpreter) { in initializeExecutionEnvironment() 164 Interpreter = AbstractInterpreter::createLLC( in initializeExecutionEnvironment() 167 if (!Interpreter) { in initializeExecutionEnvironment() 169 Interpreter = in initializeExecutionEnvironment() 172 if (!Interpreter) { in initializeExecutionEnvironment() 178 Interpreter = in initializeExecutionEnvironment() 183 Interpreter = AbstractInterpreter::createLLC( in initializeExecutionEnvironment() 188 Interpreter in initializeExecutionEnvironment() [all...] |
H A D | BugDriver.h | 50 AbstractInterpreter *Interpreter; // How to run the program 123 AbstractInterpreter *Old = Interpreter; in switchToSafeInterpreter() 124 Interpreter = (AbstractInterpreter *)SafeInterpreter; in switchToSafeInterpreter() 128 void switchToInterpreter(AbstractInterpreter *AI) { Interpreter = AI; } 51 AbstractInterpreter *Interpreter; // How to run the program global() variable
|
H A D | BugDriver.cpp | 81 Program(nullptr), Interpreter(nullptr), SafeInterpreter(nullptr), in BugDriver() 86 if (Interpreter != SafeInterpreter) in ~BugDriver() 87 delete Interpreter; in ~BugDriver()
|
/freebsd/lib/clang/liblldb/ |
H A D | Makefile | 293 SRCS+= Interpreter/CommandAlias.cpp 294 SRCS+= Interpreter/CommandHistory.cpp 295 SRCS+= Interpreter/CommandInterpreter.cpp 296 SRCS+= Interpreter/CommandObject.cpp 297 SRCS+= Interpreter/CommandOptionValidators.cpp 298 SRCS+= Interpreter/CommandReturnObject.cpp 299 SRCS+= Interpreter/OptionArgParser.cpp 300 SRCS+= Interpreter/OptionGroupArchitecture.cpp 301 SRCS+= Interpreter/OptionGroupBoolean.cpp 302 SRCS+= Interpreter/OptionGroupFile.cpp [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Interpreter/ |
H A D | Value.h | 52 class Interpreter; variable 113 Value(Interpreter *In, void *Ty); 128 Interpreter &getInterpreter(); 129 const Interpreter &getInterpreter() const; 195 Interpreter *Interp = nullptr;
|
H A D | Interpreter.h | 91 class Interpreter { 114 Interpreter(std::unique_ptr<CompilerInstance> CI, llvm::Error &Err, 132 virtual ~Interpreter(); 134 static llvm::Expected<std::unique_ptr<Interpreter>> 136 static llvm::Expected<std::unique_ptr<Interpreter>>
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
H A D | Speculation.h | 179 MangleAndInterner &Mangle, ResultEval Interpreter) in IRSpeculationLayer() argument 181 S(Spec), Mangle(Mangle), QueryAnalysis(Interpreter) {} in IRSpeculationLayer()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/ |
H A D | TargetSelect.cpp | 31 if (WhichEngine != EngineKind::Interpreter && M) in selectTarget()
|
H A D | ExecutionEngineBindings.cpp | 124 builder.setEngineKind(EngineKind::Interpreter) in LLVMCreateInterpreterForModule()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/ |
H A D | ExecutionEngine.h | 386 // Interpreter clients should use getPointerToFunction instead. in getFunctionAddress() 525 Interpreter = 0x2 enumerator 527 const static Kind Either = (Kind)(JIT | Interpreter);
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/ |
H A D | BreakpointOptions.h | 71 Interpreter, enumerator
|
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/ |
H A D | BreakpointOptions.cpp | 54 GetKey(OptionNames::Interpreter), in SerializeToStructuredData() 70 GetKey(OptionNames::Interpreter), interpreter_str); in CreateFromStructuredData()
|
/freebsd/contrib/llvm-project/lldb/include/ |
H A D | module.modulemap | 105 umbrella "lldb/Interpreter"
|
/freebsd/usr.bin/vi/catalog/ |
H A D | german.UTF-8.base | 291 302 "Vi wurde nicht mit dem Tcl Interpreter gelinkt" 295 306 "Vi wurde nicht mit einem Perl Interpreter geladen"
|