Home
last modified time | relevance | path

Searched refs:Interpreter (Results 1 - 18 of 18) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.cpp1 //===- 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 DExecution.cpp13 #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 DInterpreter.h1 //===-- 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 DExternalFunctions.cpp13 // 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 Dinterpreter.h38 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 Dinterpreter.cc69 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 Dinterpreters.py14 '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 Dtest_interpreters.py73 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 Dtest__xxsubinterpreters.py103 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 DSpeculation.h184 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 DTargetSelect.cpp29 // 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 DExecutionEngineBindings.cpp123 builder.setEngineKind(EngineKind::Interpreter) in LLVMCreateInterpreterForModule()
H A DExecutionEngine.cpp558 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 DExecutionEngine.h378 // 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 Ddump_state.py760 class Interpreter(parser.SimpleTraceDumper): class
881 parser = Interpreter(stream, options, formatter, model.TraceStateData())
/third_party/node/deps/v8/src/execution/
H A Disolate.h149 class Interpreter;
1739 interpreter::Interpreter* interpreter() const { return interpreter_; } in interpreter()
2228 interpreter::Interpreter* interpreter_ = nullptr;
H A Disolate.cc3925 interpreter_ = new interpreter::Interpreter(this); in ThrowInternal()
/third_party/node/deps/v8/src/codegen/
H A Dcompiler.cc768 interpreter::Interpreter::NewCompilationJob( in ExecuteSingleUnoptimizedCompilationJob()
1949 job = interpreter::Interpreter::NewSourcePositionCollectionJob( in CollectSourcePositions()

Completed in 45 milliseconds