HomeSort by relevance Sort by last modified time
    Searched refs:Interpreter (Results 1 - 25 of 70) sorted by null

1 2 3

  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.cpp 1 //===- Interpreter.cpp - Top-Level LLVM Interpreter Implementation --------===//
10 // This file implements the top-level functionality for the LLVM interpreter.
11 // This interpreter is designed to be a very simple, portable, inefficient
12 // interpreter.
16 #include "Interpreter.h"
26 RegisterInterp() { Interpreter::Register(); }
33 /// create - Create a new interpreter object. This can never fail.
35 ExecutionEngine *Interpreter::create(Module *M, std::string* ErrStr) {
44 return new Interpreter(M)
    [all...]
Android.mk 10 Interpreter.cpp \
Interpreter.h 1 //===-- Interpreter.h ------------------------------------------*- C++ -*--===//
10 // This header file defines the interpreter structure
81 // Interpreter - This class represents the entirety of the interpreter.
83 class Interpreter : public ExecutionEngine, public InstVisitor<Interpreter> {
97 explicit Interpreter(Module *M);
98 ~Interpreter();
109 /// create - Create an interpreter ExecutionEngine. This can never fail.
124 /// recompileAndRelinkFunction - For the interpreter, functions are alway
    [all...]
Execution.cpp 10 // This file contains the actual instruction interpreter.
14 #include "Interpreter.h"
30 #define DEBUG_TYPE "interpreter"
34 static cl::opt<bool> PrintVolatile("interpreter-print-volatile", cl::Hidden,
35 cl::desc("make the interpreter print every volatile load and store"));
277 void Interpreter::visitICmpInst(ICmpInst &I) {
609 void Interpreter::visitFCmpInst(FCmpInst &I) {
680 void Interpreter::visitBinaryOperator(BinaryOperator &I) {
805 void Interpreter::visitSelectInst(SelectInst &I) {
    [all...]
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestInterpretedLexing.java 35 import org.antlr.tool.Interpreter;
84 Interpreter engine = new Interpreter(g, new ANTLRStringStream("a"));
85 engine = new Interpreter(g, new ANTLRStringStream("b"));
88 engine = new Interpreter(g, new ANTLRStringStream("c"));
99 Interpreter engine = new Interpreter(g, new ANTLRStringStream("abc")); // should ignore the x
110 Interpreter engine = new Interpreter(g, new ANTLRStringStream("12x")); // should ignore the x
113 engine = new Interpreter(g, new ANTLRStringStream("1234"))
    [all...]
TestInterpretedParsing.java 34 import org.antlr.tool.Interpreter;
64 Interpreter lexEngine = new Interpreter(g, input);
69 Interpreter parseEngine = new Interpreter(pg, tokens);
99 Interpreter lexEngine = new Interpreter(g, input);
104 Interpreter parseEngine = new Interpreter(pg, tokens);
134 Interpreter lexEngine = new Interpreter(g, input)
    [all...]
TestTokenRewriteStream.java 34 import org.antlr.tool.Interpreter;
50 Interpreter lexEngine = new Interpreter(g, input);
65 Interpreter lexEngine = new Interpreter(g, input);
80 Interpreter lexEngine = new Interpreter(g, input);
97 Interpreter lexEngine = new Interpreter(g, input);
113 Interpreter lexEngine = new Interpreter(g, input)
    [all...]
TestCommonTokenStream.java 33 import org.antlr.tool.Interpreter;
51 Interpreter lexEngine = new Interpreter(g, input);
72 Interpreter lexEngine = new Interpreter(g, input);
93 Interpreter lexEngine = new Interpreter(g, input);
123 Interpreter lexEngine = new Interpreter(g, input);
154 Interpreter lexEngine = new Interpreter(g, input)
    [all...]
  /external/llvm/lib/ExecutionEngine/
Makefile 14 PARALLEL_DIRS = Interpreter JIT MCJIT RuntimeDyld
TargetSelect.cpp 31 // MCJIT can generate code for remote targets, but the old JIT and Interpreter
33 if (UseMCJIT && WhichEngine != EngineKind::Interpreter && M)
  /external/llvm/tools/bugpoint/
ExecutionDriver.cpp 45 "Execute with the interpreter"),
153 if (!Interpreter) {
155 Interpreter = AbstractInterpreter::createJIT(getToolName(), Message,
158 if (!Interpreter) {
160 Interpreter = AbstractInterpreter::createLLC(getToolName(), Message,
164 if (!Interpreter) {
166 Interpreter = AbstractInterpreter::createLLI(getToolName(), Message,
169 if (!Interpreter) {
171 Message = "Sorry, I can't automatically select an interpreter!\n";
175 Interpreter = AbstractInterpreter::createLLI(getToolName(), Message
    [all...]
BugDriver.cpp 39 // otherwise the raw input run through an interpreter is used as the reference
73 Program(nullptr), Interpreter(nullptr), SafeInterpreter(nullptr),
79 if (Interpreter != SafeInterpreter)
80 delete Interpreter;
BugDriver.h 52 AbstractInterpreter *Interpreter; // How to run the program
149 AbstractInterpreter *Old = Interpreter;
150 Interpreter = (AbstractInterpreter*)SafeInterpreter;
155 Interpreter = AI;
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Interp.java 113 Interpreter lexEngine = new Interpreter(lexer, input);
125 Interpreter parseEngine = new Interpreter(parser, tokens);
  /external/lldb/source/
Makefile 11 DIRS := API Breakpoint Commands Core DataFormatters Expression Host Interpreter Plugins Symbol Target Utility
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
Interpreter.java 38 * A semantic bytecode interpreter. More precisely, this interpreter only
47 public interface Interpreter {
SourceInterpreter.java 44 * An {@link Interpreter} for {@link SourceValue} values.
48 public class SourceInterpreter implements Opcodes, Interpreter {
  /external/lldb/
Android.mk 20 source/Interpreter \
  /device/moto/shamu/camera/QCamera2/HAL/test/
qcamera_test.h 231 class Interpreter
268 Interpreter()
272 Interpreter(const char *file);
273 ~Interpreter();
300 friend class Interpreter;
316 Interpreter *mInterpreter;
qcamera_test.cpp     [all...]
  /external/chromium_org/v8/test/webkit/
regexp-alternatives.js 33 // Force YARR to use Interpreter by using iterative parentheses
38 // Force YARR to use Interpreter by using backreference
  /external/owasp/sanitizer/tools/findbugs/lib/
asm-analysis-3.3.jar 
  /external/llvm/utils/
GenLibDeps.pl 103 $libpath =~ s/^Interpreter/ExecutionEngine\/Interpreter/;
144 $libpath =~ s/^Interpreter/ExecutionEngine\/Interpreter/;
  /external/llvm/
Android.mk 18 lib/ExecutionEngine/Interpreter \
  /external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 103 /// designed to support both interpreter and just-in-time (JIT) compiler
141 // To avoid having libexecutionengine depend on the JIT and interpreter
193 /// machine, it does not fall back to the interpreter. This takes ownership
398 /// This function should not be called with the JIT or interpreter engines.
400 // Default implementation for JIT and interpreter. MCJIT will override this.
401 // JIT and interpreter clients should use getPointerToGlobal instead.
408 // Default implementation for JIT and interpreter. MCJIT will override this.
409 // JIT and interpreter clients should use getPointerToFunction instead.
562 Interpreter = 0x2
564 const static Kind Either = (Kind)(JIT | Interpreter);
    [all...]

Completed in 344 milliseconds

1 2 3