| /freebsd-14.2/contrib/llvm-project/clang/lib/Interpreter/ |
| H A D | Interpreter.cpp | 229 Interpreter::Interpreter(std::unique_ptr<CompilerInstance> CI, in Interpreter() function in Interpreter 238 Interpreter::~Interpreter() { in ~Interpreter() 277 std::unique_ptr<Interpreter>(new Interpreter(std::move(CI), Err)); in create() 338 ASTContext &Interpreter::getASTContext() { in getASTContext() 353 Interpreter::Parse(llvm::StringRef Code) { in Parse() 369 llvm::Error Interpreter::CreateExecutor() { in CreateExecutor() 508 bool Interpreter::FindRuntimeInterface() { in FindRuntimeInterface() 546 clang::Interpreter &Interp; 648 Interpreter::InterfaceKind 653 Interpreter::InterfaceKind [all …]
|
| H A D | IncrementalParser.h | 35 class Interpreter; variable 68 IncrementalParser(Interpreter &Interp,
|
| 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 | 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 | 26 Interpreter &Interp, std::unique_ptr<CompilerInstance> Instance, in IncrementalCUDADeviceParser()
|
| /freebsd-14.2/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 | 332 void Interpreter::visitICmpInst(ICmpInst &I) { in visitICmpInst() 665 void Interpreter::visitFCmpInst(FCmpInst &I) { in visitFCmpInst() 875 void Interpreter::exitCalled(GenericValue GV) { in exitCalled() 1093 void Interpreter::visitLoadInst(LoadInst &I) { in visitLoadInst() 1104 void Interpreter::visitStoreInst(StoreInst &I) { in visitStoreInst() 1126 void Interpreter::visitVAEndInst(VAEndInst &I) { in visitVAEndInst() 1158 void Interpreter::visitCallBase(CallBase &I) { in visitCallBase() 1186 void Interpreter::visitShl(BinaryOperator &I) { in visitShl() 1707 void Interpreter::visitSExtInst(SExtInst &I) { in visitSExtInst() 1712 void Interpreter::visitZExtInst(ZExtInst &I) { in visitZExtInst() [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-14.2/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() 145 for (size_t I = 0; I < Interpreter->inputs().size(); ++I) in TFModelEvaluatorImpl() 146 InputsMap[Interpreter->GetInputName(I)] = I; in TFModelEvaluatorImpl() 148 OutputsMap[Interpreter->GetOutputName(I)] = I; in TFModelEvaluatorImpl() 159 Input[I] = Interpreter->tensor(MapI->second); in TFModelEvaluatorImpl() [all …]
|
| /freebsd-14.2/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() 167 if (!Interpreter) { in initializeExecutionEnvironment() 169 Interpreter = in initializeExecutionEnvironment() 172 if (!Interpreter) { in initializeExecutionEnvironment() 178 Interpreter = in initializeExecutionEnvironment() 188 Interpreter = in initializeExecutionEnvironment() 200 if (!Interpreter) in initializeExecutionEnvironment() 250 if (Interpreter == nullptr) in initializeExecutionEnvironment() [all …]
|
| H A D | BugDriver.h | 50 AbstractInterpreter *Interpreter; // How to run the program variable 123 AbstractInterpreter *Old = Interpreter; in switchToSafeInterpreter() 124 Interpreter = (AbstractInterpreter *)SafeInterpreter; in switchToSafeInterpreter() 128 void switchToInterpreter(AbstractInterpreter *AI) { Interpreter = AI; } in switchToInterpreter()
|
| 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-14.2/lib/clang/liblldb/ |
| H A D | Makefile | 286 SRCS+= Interpreter/CommandAlias.cpp 287 SRCS+= Interpreter/CommandHistory.cpp 289 SRCS+= Interpreter/CommandObject.cpp 292 SRCS+= Interpreter/OptionArgParser.cpp 295 SRCS+= Interpreter/OptionGroupFile.cpp 303 SRCS+= Interpreter/OptionGroupUUID.cpp 307 SRCS+= Interpreter/OptionValue.cpp 308 SRCS+= Interpreter/OptionValueArch.cpp 328 SRCS+= Interpreter/Options.cpp 329 SRCS+= Interpreter/Property.cpp [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Interpreter/ |
| H A D | Interpreter.h | 76 class Interpreter { 84 Interpreter(std::unique_ptr<CompilerInstance> CI, llvm::Error &Err); 95 ~Interpreter(); 96 static llvm::Expected<std::unique_ptr<Interpreter>> 98 static llvm::Expected<std::unique_ptr<Interpreter>>
|
| H A D | Value.h | 52 class Interpreter; variable 112 Value(Interpreter *In, void *Ty); 127 Interpreter &getInterpreter(); 128 const Interpreter &getInterpreter() const; 194 Interpreter *Interp = nullptr;
|
| /freebsd-14.2/contrib/llvm-project/clang/tools/clang-repl/ |
| H A D | ClangRepl.cpp | 86 clang::Interpreter &MainInterp; 88 clang::Interpreter &Interp) in ReplListCompleter() 120 auto Interp = clang::Interpreter::create(std::move(*CI)); in operator ()() 202 std::unique_ptr<clang::Interpreter> Interp; in main() 206 clang::Interpreter::createWithCUDA(std::move(CI), std::move(DeviceCI))); in main() 215 Interp = ExitOnErr(clang::Interpreter::create(std::move(CI))); in main()
|
| /freebsd-14.2/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-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/ |
| H A D | TargetSelect.cpp | 31 if (WhichEngine != EngineKind::Interpreter && M) in selectTarget()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/ |
| H A D | ExecutionEngine.h | 525 Interpreter = 0x2 enumerator 527 const static Kind Either = (Kind)(JIT | Interpreter);
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Breakpoint/ |
| H A D | BreakpointOptions.h | 71 Interpreter, enumerator
|
| /freebsd-14.2/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-14.2/contrib/llvm-project/lldb/include/ |
| H A D | module.modulemap | 105 umbrella "lldb/Interpreter"
|
| /freebsd-14.2/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"
|