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

1 2 3

  /external/webkit/Source/WebCore/ForwardingHeaders/interpreter/
Interpreter.h 3 #include <JavaScriptCore/Interpreter.h>
  /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) {
41 return new Interpreter(M)
    [all...]
Execution.cpp 10 // This file contains the actual instruction interpreter.
14 #define DEBUG_TYPE "interpreter"
15 #include "Interpreter.h"
33 static cl::opt<bool> PrintVolatile("interpreter-print-volatile", cl::Hidden,
34 cl::desc("make the interpreter print every volatile load and store"));
257 void Interpreter::visitICmpInst(ICmpInst &I) {
445 void Interpreter::visitFCmpInst(FCmpInst &I) {
521 void Interpreter::visitBinaryOperator(BinaryOperator &I) {
557 void Interpreter::visitSelectInst(SelectInst &I) {
571 void Interpreter::exitCalled(GenericValue GV)
    [all...]
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...]
ExternalFunctions.cpp 14 // Interpreter. The first is to implement lle_* wrapper functions that are
17 // not exist, and libffi is available, then the Interpreter will attempt to
22 #include "Interpreter.h"
61 static Interpreter *TheInterpreter;
86 // Please note, that interpreter doesn't know how to assemble a
192 + "' is not supported by the Interpreter.");
247 GenericValue Interpreter::callExternalFunction(Function *F,
473 void Interpreter::initializeExternalFunctions() {
  /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.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/webkit/Source/WebCore/bridge/
testqtbindings.cpp 30 #include "interpreter.h"
96 // create interpreter w/ global object
99 // create interpreter
100 RefPtr<Interpreter> interp = new Interpreter(global);
134 } // end block, so that Interpreter and global get deleted
runtime_root.h 42 class Interpreter;
  /external/webkit/Source/JavaScriptCore/interpreter/
CachedCall.h 32 #include "Interpreter.h"
40 , m_interpreter(callFrame->interpreter())
71 Interpreter* m_interpreter;
CallFrame.h 34 class Interpreter;
73 Interpreter* interpreter() { return globalData().interpreter; } function in class:JSC::ExecState
97 #if ENABLE(INTERPRETER)
Interpreter.h 67 class Interpreter {
72 Interpreter(JSGlobalData&);
126 #if ENABLE(INTERPRETER)
139 #endif // ENABLE(INTERPRETER)
Interpreter.cpp 31 #include "Interpreter.h"
86 #if ENABLE(INTERPRETER)
92 NEVER_INLINE bool Interpreter::resolve(CallFrame* callFrame, Instruction* vPC, JSValue& exceptionValue)
120 NEVER_INLINE bool Interpreter::resolveSkip(CallFrame* callFrame, Instruction* vPC, JSValue& exceptionValue)
160 NEVER_INLINE bool Interpreter::resolveGlobal(CallFrame* callFrame, Instruction* vPC, JSValue& exceptionValue)
197 NEVER_INLINE bool Interpreter::resolveGlobalDynamic(CallFrame* callFrame, Instruction* vPC, JSValue& exceptionValue)
274 NEVER_INLINE void Interpreter::resolveBase(CallFrame* callFrame, Instruction* vPC)
288 NEVER_INLINE bool Interpreter::resolveBaseAndProperty(CallFrame* callFrame, Instruction* vPC, JSValue& exceptionValue)
324 #endif // ENABLE(INTERPRETER)
326 ALWAYS_INLINE CallFrame* Interpreter::slideRegisterWindowForCall(CodeBlock* newCodeBlock, RegisterFile* registerFile, CallFrame* callFr (…)
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
ScriptCallStackFactory.cpp 39 #include <interpreter/CallFrame.h>
40 #include <interpreter/Interpreter.h>
67 exec->interpreter()->retrieveLastCaller(callFrame, signedLineNumber, sourceID, urlString, function);
JSWorkerContextCustom.cpp 46 #include <interpreter/Interpreter.h>
  /external/webkit/Source/JavaScriptCore/bytecode/
SamplingTool.h 93 class Interpreter;
193 SamplingTool(Interpreter* interpreter)
194 : m_interpreter(interpreter)
260 Interpreter* m_interpreter;
  /external/llvm/utils/
GenLibDeps.pl 103 $libpath =~ s/^Interpreter/ExecutionEngine\/Interpreter/;
144 $libpath =~ s/^Interpreter/ExecutionEngine\/Interpreter/;
  /external/webkit/Source/JavaScriptCore/runtime/
JSGlobalData.h 63 class Interpreter;
192 bool canUseJIT() { return false; } // interpreter only
193 #elif !ENABLE(INTERPRETER)
208 Interpreter* interpreter; member in class:JSC::JSGlobalData
276 #if ENABLE(JIT) && ENABLE(INTERPRETER)

Completed in 402 milliseconds

1 2 3