/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Interpreter/ |
H A D | Interpreter.cpp | 1 //===- Interpreter.cpp - Top-Level LLVM Interpreter Implementation --------===// 15 #include "Interpreter.h" 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() 52 // Interpreter ctor - Initialize stuff 54 Interpreter::Interpreter(std::unique_ptr<Module> M) in Interpreter() function in Interpreter 66 Interpreter [all...] |
H A D | Execution.cpp | 13 #include "Interpreter.h" 62 void Interpreter::visitUnaryOperator(UnaryOperator &I) { in visitUnaryOperator() 331 void Interpreter::visitICmpInst(ICmpInst &I) { 663 void Interpreter::visitFCmpInst(FCmpInst &I) { 734 void Interpreter::visitBinaryOperator(BinaryOperator &I) { 859 void Interpreter::visitSelectInst(SelectInst &I) { 873 void Interpreter::exitCalled(GenericValue GV) { 890 void Interpreter::popStackAndReturnValueToCaller(Type *RetTy, 916 void Interpreter::visitReturnInst(ReturnInst &I) { 930 void Interpreter [all...] |
H A D | Interpreter.h | 1 //===-- Interpreter.h ------------------------------------------*- C++ -*--===// 73 // Interpreter - This class represents the entirety of the interpreter. 75 class Interpreter : public ExecutionEngine, public InstVisitor<Interpreter> { class 88 explicit Interpreter(std::unique_ptr<Module> M); 89 ~Interpreter() override;
|
H A D | ExternalFunctions.cpp | 13 // Interpreter. The first is to implement lle_* wrapper functions that are 16 // not exist, and libffi is available, then the Interpreter will attempt to 21 #include "Interpreter.h" 71 static Interpreter *TheInterpreter; 201 + "' is not supported by the Interpreter."); in ffiInvoke() 257 GenericValue Interpreter::callExternalFunction(Function *F, in callExternalFunction() 496 void Interpreter::initializeExternalFunctions() { in initializeExternalFunctions()
|
/third_party/node/deps/v8/src/interpreter/ |
H A D | interpreter.h | 38 class Interpreter { class 40 explicit Interpreter(Isolate* isolate); 41 virtual ~Interpreter() = default; 42 Interpreter(const Interpreter&) = delete; 43 Interpreter& operator=(const Interpreter&) = delete;
|
H A D | interpreter.cc | 69 Interpreter::Interpreter(Isolate* isolate) in Interpreter() function in v8::internal::interpreter::Interpreter 79 void Interpreter::InitDispatchCounters() { in InitDispatchCounters() 118 CodeT Interpreter::GetBytecodeHandler(Bytecode bytecode, in GetBytecodeHandler() 124 void Interpreter::SetBytecodeHandler(Bytecode bytecode, in SetBytecodeHandler() 134 size_t Interpreter::GetDispatchTableIndex(Bytecode bytecode, in GetDispatchTableIndex() 307 std::unique_ptr<UnoptimizedCompilationJob> Interpreter::NewCompilationJob( in NewCompilationJob() 318 Interpreter::NewSourcePositionCollectionJob( in NewSourcePositionCollectionJob() 328 void Interpreter::ForEachBytecode( in ForEachBytecode() 343 void Interpreter [all...] |
/third_party/python/Lib/test/support/ |
H A D | interpreters.py | 14 'Interpreter', 'get_current', 'get_main', 'create', 'list_all', 25 return Interpreter(id, isolated=isolated) 30 return [Interpreter(id) for id in _interpreters.list_all()] 36 return Interpreter(id) 42 return Interpreter(id) 45 class Interpreter: class 63 if not isinstance(other, Interpreter):
|
/third_party/python/Lib/test/ |
H A D | test_interpreters.py | 73 self.assertIsInstance(interp, interpreters.Interpreter) 98 interp2 = interpreters.Interpreter(int(out)) 144 current = interpreters.Interpreter(int(out)) 193 interp = interpreters.Interpreter(1) 197 interpreters.Interpreter('1') 200 interp = interpreters.Interpreter(1) 222 interp = interpreters.Interpreter(1) 226 interp1 = interpreters.Interpreter(1, isolated=True) 227 interp2 = interpreters.Interpreter(1, isolated=False) 232 interp = interpreters.Interpreter( [all...] |
H A D | test__xxsubinterpreters.py | 103 class Interpreter(namedtuple('Interpreter', 'name id')): class 1906 interp = Interpreter.from_raw(interp) 1907 other = Interpreter.from_raw(other) 1908 extra = Interpreter.from_raw(extra) 1987 interp = self._known[name] = Interpreter(name)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/ |
H A D | Speculation.h | 184 ResultEval Interpreter) in IRSpeculationLayer() 186 S(Spec), Mangle(Mangle), QueryAnalysis(Interpreter) {} in IRSpeculationLayer() 182 IRSpeculationLayer(ExecutionSession &ES, IRCompileLayer &BaseLayer, Speculator &Spec, MangleAndInterner &Mangle, ResultEval Interpreter) IRSpeculationLayer() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/ |
H A D | TargetSelect.cpp | 29 // MCJIT can generate code for remote targets, but the old JIT and Interpreter in selectTarget() 31 if (WhichEngine != EngineKind::Interpreter && M) in selectTarget()
|
H A D | ExecutionEngineBindings.cpp | 123 builder.setEngineKind(EngineKind::Interpreter) in LLVMCreateInterpreterForModule()
|
H A D | ExecutionEngine.cpp | 558 if (WhichEngine & EngineKind::Interpreter) { in create() 562 *ErrorStr = "Interpreter has not been linked in."; in create()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/ |
H A D | ExecutionEngine.h | 378 // Interpreter clients should use getPointerToFunction instead. in getFunctionAddress() 517 Interpreter = 0x2 enumerator 519 const static Kind Either = (Kind)(JIT | Interpreter);
|
/third_party/mesa3d/src/gallium/tools/trace/ |
H A D | dump_state.py | 760 class Interpreter(parser.SimpleTraceDumper): class 881 parser = Interpreter(stream, options, formatter, model.TraceStateData())
|
/third_party/node/deps/v8/src/execution/ |
H A D | isolate.h | 149 class Interpreter; 1739 interpreter::Interpreter* interpreter() const { return interpreter_; } in interpreter() 2228 interpreter::Interpreter* interpreter_ = nullptr;
|
H A D | isolate.cc | 3925 interpreter_ = new interpreter::Interpreter(this); in ThrowInternal()
|
/third_party/node/deps/v8/src/codegen/ |
H A D | compiler.cc | 768 interpreter::Interpreter::NewCompilationJob( in ExecuteSingleUnoptimizedCompilationJob() 1949 job = interpreter::Interpreter::NewSourcePositionCollectionJob( in CollectSourcePositions()
|