Home
last modified time | relevance | path

Searched refs:Interpreter (Results 1 – 25 of 36) sorted by relevance

12

/freebsd-14.2/contrib/llvm-project/clang/lib/Interpreter/
H A DInterpreter.cpp229 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 DIncrementalParser.h35 class Interpreter; variable
68 IncrementalParser(Interpreter &Interp,
H A DValue.cpp123 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 DDeviceOffload.h25 Interpreter &Interp, std::unique_ptr<CompilerInstance> Instance,
H A DIncrementalParser.cpp35 Interpreter &Interp;
39 IncrementalASTConsumer(Interpreter &InterpRef, std::unique_ptr<ASTConsumer> C) in IncrementalASTConsumer()
202 IncrementalParser::IncrementalParser(Interpreter &Interp, in IncrementalParser()
H A DDeviceOffload.cpp26 Interpreter &Interp, std::unique_ptr<CompilerInstance> Instance, in IncrementalCUDADeviceParser()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.cpp25 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 DExecution.cpp332 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 DInterpreter.h74 class Interpreter : public ExecutionEngine, public InstVisitor<Interpreter> {
87 explicit Interpreter(std::unique_ptr<Module> M);
88 ~Interpreter() override;
H A DExternalFunctions.cpp80 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 DTFLiteUtils.cpp64 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 DExecutionDriver.cpp157 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 DBugDriver.h50 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 DBugDriver.cpp81 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 DMakefile286 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 DInterpreter.h76 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 DValue.h52 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 DClangRepl.cpp86 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 DSpeculation.h179 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 DTargetSelect.cpp31 if (WhichEngine != EngineKind::Interpreter && M) in selectTarget()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DExecutionEngine.h525 Interpreter = 0x2 enumerator
527 const static Kind Either = (Kind)(JIT | Interpreter);
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointOptions.h71 Interpreter, enumerator
/freebsd-14.2/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointOptions.cpp54 GetKey(OptionNames::Interpreter), in SerializeToStructuredData()
70 GetKey(OptionNames::Interpreter), interpreter_str); in CreateFromStructuredData()
/freebsd-14.2/contrib/llvm-project/lldb/include/
H A Dmodule.modulemap105 umbrella "lldb/Interpreter"
/freebsd-14.2/usr.bin/vi/catalog/
H A Dgerman.UTF-8.base291 302 "Vi wurde nicht mit dem Tcl Interpreter gelinkt"
295 306 "Vi wurde nicht mit einem Perl Interpreter geladen"

12