Searched defs:Interpreter (Results 1 - 24 of 24) sorted by relevance

/external/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.cpp1 //===- Interpreter.cpp - Top-Level LLVM Interpreter Implementation --------===//
16 #include "Interpreter.h"
26 RegisterInterp() { Interpreter::Register(); }
35 ExecutionEngine *Interpreter::create(std::unique_ptr<Module> M,
45 return new Interpreter(std::move(M));
49 // Interpreter ctor - Initialize stuff
51 Interpreter::Interpreter(std::unique_ptr<Module> M) function in class:Interpreter
63 Interpreter
[all...]
H A DInterpreter.h1 //===-- Interpreter.h ------------------------------------------*- C++ -*--===//
93 // Interpreter - This class represents the entirety of the interpreter.
95 class Interpreter : public ExecutionEngine, public InstVisitor<Interpreter> { class in namespace:llvm
108 explicit Interpreter(std::unique_ptr<Module> M);
109 ~Interpreter() override;
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/Interpreter/
H A DInterpreter.cpp1 //===- Interpreter.cpp - Top-Level LLVM Interpreter Implementation --------===//
16 #include "Interpreter.h"
26 RegisterInterp() { Interpreter::Register(); }
35 ExecutionEngine *Interpreter::create(Module *M, std::string* ErrStr) {
41 return new Interpreter(M);
45 // Interpreter ctor - Initialize stuff
47 Interpreter::Interpreter(Module *M) function in class:Interpreter
60 Interpreter
[all...]
H A DInterpreter.h1 //===-- Interpreter.h ------------------------------------------*- C++ -*--===//
81 // Interpreter - This class represents the entirety of the interpreter.
83 class Interpreter : public ExecutionEngine, public InstVisitor<Interpreter> { class in namespace:llvm
97 explicit Interpreter(Module *M);
98 ~Interpreter();
/external/v8/src/interpreter/
H A Dinterpreter.h35 class Interpreter { class in namespace:v8::internal::interpreter
37 explicit Interpreter(Isolate* isolate);
38 virtual ~Interpreter() {}
79 typedef void (Interpreter::*BytecodeGeneratorFunc)(InterpreterAssembler*);
184 DISALLOW_COPY_AND_ASSIGN(Interpreter);
H A Dinterpreter.cc90 Interpreter::Interpreter(Isolate* isolate) : isolate_(isolate) { function in class:v8::internal::interpreter::Interpreter
94 void Interpreter::Initialize() {
117 &Interpreter::Do##Name);
135 void Interpreter::InstallBytecodeHandler(Zone* zone, Bytecode bytecode,
159 Code* Interpreter::GetBytecodeHandler(Bytecode bytecode,
169 size_t Interpreter::GetDispatchTableIndex(Bytecode bytecode,
185 void Interpreter::IterateDispatchTable(ObjectVisitor* v) {
200 int Interpreter::InterruptBudget() {
283 CompilationJob* Interpreter
[all...]
/external/annotation-tools/asmx/src/org/objectweb/asm/tree/analysis/
H A DInterpreter.java47 public interface Interpreter { interface
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DInterpreter.java49 public class Interpreter implements TokenSource { class in inherits:TokenSource
74 public Interpreter(Grammar grammar, IntStream input) { method in class:Interpreter
/external/tensorflow/tensorflow/contrib/lite/java/src/main/java/org/tensorflow/lite/
H A DInterpreter.java27 * <p>A {@code Interpreter} encapsulates a pre-trained TensorFlow Lite model, in which operations
33 * try (Interpreter interpreter = new Interpreter(file_of_a_tensorflowlite_model)) {
45 * try (Interpreter interpreter = new Interpreter(file_of_a_tensorflowlite_model)) {
53 * <p><b>WARNING:</b>Instances of a {@code Interpreter} is <b>not</b> thread-safe. A {@code
54 * Interpreter} owns resources that <b>must</b> be explicitly freed by invoking {@link #close()}
56 public final class Interpreter implements AutoCloseable { class in inherits:AutoCloseable
59 * Initializes a {@code Interpreter}
63 public Interpreter( method in class:Interpreter
76 public Interpreter(@NotNull MappedByteBuffer mappedByteBuffer) { method in class:Interpreter
[all...]
/external/llvm/tools/bugpoint/
H A DBugDriver.h53 AbstractInterpreter *Interpreter; // How to run the program member in class:llvm::BugDriver
144 AbstractInterpreter *Old = Interpreter;
145 Interpreter = (AbstractInterpreter*)SafeInterpreter;
150 Interpreter = AI;
/external/swiftshader/third_party/LLVM/tools/bugpoint/
H A DBugDriver.h52 AbstractInterpreter *Interpreter; // How to run the program member in class:llvm::BugDriver
149 AbstractInterpreter *Old = Interpreter;
150 Interpreter = (AbstractInterpreter*)SafeInterpreter;
155 Interpreter = AI;
/external/tensorflow/tensorflow/contrib/lite/
H A Dinterpreter.cc38 // A trivial implementation of GraphInfo around the Interpreter.
45 explicit InterpreterInfo(Interpreter* interpreter)
67 Interpreter* interpreter_;
70 Interpreter::Interpreter(ErrorReporter* error_reporter) function in class:tflite::Interpreter
93 Interpreter::~Interpreter() {
109 TfLiteStatus Interpreter::ReplaceSubgraphsWithDelegateKernels(
112 return static_cast<Interpreter*>(context->impl_)
116 TfLiteStatus Interpreter
[all...]
H A Dinterpreter.h52 // Forward declare since NNAPIDelegate uses Interpreter.
62 // Interpreter foo(2, 1);
89 class Interpreter { class in namespace:tflite
96 explicit Interpreter(ErrorReporter* error_reporter = DefaultErrorReporter());
98 ~Interpreter();
100 Interpreter(const Interpreter&) = delete;
101 Interpreter& operator=(const Interpreter&) = delete;
116 // node in `node_index` (optionally). Interpreter wil
[all...]
/external/sl4a/Common/src/com/googlecode/android_scripting/interpreter/
H A DInterpreter.java35 public class Interpreter implements InterpreterPropertyNames { class in inherits:InterpreterPropertyNames
48 public Interpreter() { method in class:Interpreter
53 public static Interpreter buildFromMaps(Map<String, String> data,
69 Interpreter interpreter = new Interpreter();
/external/llvm/include/llvm/ExecutionEngine/
H A DExecutionEngine.h366 // Interpreter clients should use getPointerToFunction instead.
504 Interpreter = 0x2 enumerator in enum:llvm::EngineKind::Kind
506 const static Kind Either = (Kind)(JIT | Interpreter);
/external/swiftshader/third_party/LLVM/include/llvm/ExecutionEngine/
H A DExecutionEngine.h449 Interpreter = 0x2 enumerator in enum:llvm::EngineKind::Kind
451 const static Kind Either = (Kind)(JIT | Interpreter);
/external/mesa3d/src/gallium/tools/trace/
H A Ddump_state.py688 class Interpreter(parser.TraceDumper): class in inherits:parser.TraceDumper
782 parser = Interpreter(stream, options)
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dasm-analysis-3.3.jarMETA-INF/MANIFEST.MF org/objectweb/asm/tree/analysis/Analyzer.class " package org.objectweb. ...
/external/robolectric/v1/lib/main/
H A Dsqlite-jdbc-3.7.2.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/org. ...
/external/slf4j/log4j-over-slf4j/compatibility/lib/
H A Dlogback-core-0.9.8-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF ch/ ch/qos/ ch/qos/logback/ ch/qos/logback/core/ ...
H A Dlog4j-1.3alpha-8.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/log4j/ org/apache/log4j/Appender ...
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/robolectric/v1/lib/test/
H A Dmockito-core-1.8.5.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...
/external/annotation-tools/annotation-file-utilities/
H A Dannotation-file-utilities.jarMETA-INF/ META-INF/MANIFEST.MF annotations/ annotations/el/ annotations/field/ annotations/io/ annotations/io/classfile/ ...

Completed in 676 milliseconds