| /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/clang/lib/Interpreter/ |
| H A D | Interpreter.cpp | 254 Interpreter &Interp; 257 InProcessPrintingASTConsumer(std::unique_ptr<ASTConsumer> C, Interpreter &I) in InProcessPrintingASTConsumer() 292 Interpreter &Interp; 297 llvm::Error &Err, Interpreter &I, in IncrementalAction() 367 Interpreter::Interpreter(std::unique_ptr<CompilerInstance> Instance, in Interpreter() function in clang::Interpreter 421 Interpreter::~Interpreter() { in ~Interpreter() 462 llvm::Expected<std::unique_ptr<Interpreter>> 463 Interpreter::create(std::unique_ptr<CompilerInstance> CI, in create() 466 auto Interp = std::unique_ptr<Interpreter>( in create() 467 new Interpreter(std::move(CI), Err, JB ? std::move(JB) : nullptr)); in create() [all …]
|
| H A D | Value.cpp | 120 Value::Value(Interpreter *In, void *Ty) : Interp(In), OpaqueType(Ty) { in Value() 130 Interpreter &Interp = getInterpreter(); in Value() 235 Interpreter &Value::getInterpreter() { in getInterpreter() 241 const Interpreter &Value::getInterpreter() const { in getInterpreter()
|
| H A D | InterpreterValuePrinter.cpp | 34 Interpreter::CompileDtorCall(CXXRecordDecl *CXXRD) { in CompileDtorCall() 157 llvm::Expected<Expr *> Interpreter::ExtractValueFromExpr(Expr *E) { in ExtractValueFromExpr() 307 VRef = Value(static_cast<Interpreter *>(This), OpaqueType); in __clang_Interpreter_SetValueWithAlloc() 314 Interpreter *I = static_cast<Interpreter *>(This); in __clang_Interpreter_SetValueNoAlloc()
|
| /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 | 301 SRCS+= Interpreter/CommandAlias.cpp 302 SRCS+= Interpreter/CommandHistory.cpp 303 SRCS+= Interpreter/CommandInterpreter.cpp 304 SRCS+= Interpreter/CommandObject.cpp 305 SRCS+= Interpreter/CommandOptionValidators.cpp 306 SRCS+= Interpreter/CommandReturnObject.cpp 307 SRCS+= Interpreter/Interfaces/ScriptedInterfaceUsages.cpp 308 SRCS+= Interpreter/OptionArgParser.cpp 309 SRCS+= Interpreter/OptionGroupArchitecture.cpp 310 SRCS+= Interpreter/OptionGroupBoolean.cpp [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/Interpreter/ |
| H A D | Value.h | 53 class Interpreter; variable 114 Value(Interpreter *In, void *Ty); 129 Interpreter &getInterpreter(); 130 const Interpreter &getInterpreter() const; 196 Interpreter *Interp = nullptr;
|
| H A D | Interpreter.h | 87 class Interpreter { 125 Interpreter(std::unique_ptr<CompilerInstance> Instance, llvm::Error &Err, 138 virtual ~Interpreter(); 139 static llvm::Expected<std::unique_ptr<Interpreter>> 142 static llvm::Expected<std::unique_ptr<Interpreter>>
|
| /freebsd/contrib/llvm-project/lldb/source/ValueObject/ |
| H A D | DILEval.cpp | 136 Interpreter::Interpreter(lldb::TargetSP target, llvm::StringRef expr, in Interpreter() function in lldb_private::dil::Interpreter 145 llvm::Expected<lldb::ValueObjectSP> Interpreter::Evaluate(const ASTNode *node) { in Evaluate() 154 Interpreter::Visit(const IdentifierNode *node) { in Visit() 174 Interpreter::Visit(const UnaryOpNode *node) { in Visit() 218 Interpreter::Visit(const MemberOfNode *node) { in Visit() 327 Interpreter::Visit(const ArraySubscriptNode *node) { in Visit() 374 Interpreter::Visit(const BitFieldExtractionNode *node) { in Visit()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/ValueObject/ |
| H A D | DILEval.h | 39 class Interpreter : Visitor { 41 Interpreter(lldb::TargetSP target, llvm::StringRef expr,
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | Speculation.h | 180 MangleAndInterner &Mangle, ResultEval Interpreter) in IRSpeculationLayer() argument 182 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 | 123 builder.setEngineKind(EngineKind::Interpreter) in LLVMCreateInterpreterForModule()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/ |
| H A D | ExecutionEngine.h | 526 Interpreter = 0x2 enumerator 528 const static Kind Either = (Kind)(JIT | Interpreter);
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/ |
| H A D | BreakpointOptions.h | 72 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"
|
| /freebsd/contrib/llvm-project/lldb/docs/design/ |
| H A D | overview.rst | |