Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/clang/lib/Interpreter/
H A DInterpreter.cpp243 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 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 DIncrementalParser.h35 class Interpreter; variable
68 IncrementalParser(Interpreter &Interp,
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.cpp27 Interpreter &Interp, std::unique_ptr<CompilerInstance> Instance, in IncrementalCUDADeviceParser()
/freebsd/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.cpp62 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 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/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()
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 DExecutionDriver.cpp157 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 DBugDriver.h50 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 DBugDriver.cpp81 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 DMakefile293 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 DValue.h52 class Interpreter; variable
113 Value(Interpreter *In, void *Ty);
128 Interpreter &getInterpreter();
129 const Interpreter &getInterpreter() const;
195 Interpreter *Interp = nullptr;
H A DInterpreter.h91 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 DSpeculation.h179 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 DTargetSelect.cpp31 if (WhichEngine != EngineKind::Interpreter && M) in selectTarget()
H A DExecutionEngineBindings.cpp124 builder.setEngineKind(EngineKind::Interpreter) in LLVMCreateInterpreterForModule()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DExecutionEngine.h386 // 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 DBreakpointOptions.h71 Interpreter, enumerator
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointOptions.cpp54 GetKey(OptionNames::Interpreter), in SerializeToStructuredData()
70 GetKey(OptionNames::Interpreter), interpreter_str); in CreateFromStructuredData()
/freebsd/contrib/llvm-project/lldb/include/
H A Dmodule.modulemap105 umbrella "lldb/Interpreter"
/freebsd/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