Home
last modified time | relevance | path

Searched refs:Interpreter (Results 1 – 25 of 78) sorted by relevance

1234

/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
DTestTokenRewriteStream.java34 import org.antlr.tool.Interpreter;
50 Interpreter lexEngine = new Interpreter(g, input); in testInsertBeforeIndex0()
65 Interpreter lexEngine = new Interpreter(g, input); in testInsertAfterLastIndex()
80 Interpreter lexEngine = new Interpreter(g, input); in test2InsertBeforeAfterMiddleIndex()
97 Interpreter lexEngine = new Interpreter(g, input); in testReplaceIndex0()
113 Interpreter lexEngine = new Interpreter(g, input); in testReplaceLastIndex()
129 Interpreter lexEngine = new Interpreter(g, input); in testReplaceMiddleIndex()
150 Interpreter lexEngine = new Interpreter(g, input); in testToStringStartStop()
185 Interpreter lexEngine = new Interpreter(g, input); in testToStringStartStop2()
232 Interpreter lexEngine = new Interpreter(g, input); in test2ReplaceMiddleIndex()
[all …]
DTestInterpretedLexing.java35 import org.antlr.tool.Interpreter;
84 Interpreter engine = new Interpreter(g, new ANTLRStringStream("a")); in testSimpleAltCharTest()
85 engine = new Interpreter(g, new ANTLRStringStream("b")); in testSimpleAltCharTest()
88 engine = new Interpreter(g, new ANTLRStringStream("c")); in testSimpleAltCharTest()
99 Interpreter engine = new Interpreter(g, new ANTLRStringStream("abc")); // should ignore the x in testSingleRuleRef()
110 Interpreter engine = new Interpreter(g, new ANTLRStringStream("12x")); // should ignore the x in testSimpleLoop()
113 engine = new Interpreter(g, new ANTLRStringStream("1234")); in testSimpleLoop()
123 Interpreter engine = new Interpreter(g, new ANTLRStringStream("a")); in testMultAltLoop()
125 engine = new Interpreter(g, new ANTLRStringStream("a")); in testMultAltLoop()
128 engine = new Interpreter(g, new ANTLRStringStream("1234")); in testMultAltLoop()
[all …]
DTestInterpretedParsing.java34 import org.antlr.tool.Interpreter;
64 Interpreter lexEngine = new Interpreter(g, input); in testSimpleParse()
69 Interpreter parseEngine = new Interpreter(pg, tokens); in testSimpleParse()
99 Interpreter lexEngine = new Interpreter(g, input); in testMismatchedTokenError()
104 Interpreter parseEngine = new Interpreter(pg, tokens); in testMismatchedTokenError()
134 Interpreter lexEngine = new Interpreter(g, input); in testMismatchedSetError()
139 Interpreter parseEngine = new Interpreter(pg, tokens); in testMismatchedSetError()
169 Interpreter lexEngine = new Interpreter(g, input); in testNoViableAltError()
174 Interpreter parseEngine = new Interpreter(pg, tokens); in testNoViableAltError()
DTestCommonTokenStream.java33 import org.antlr.tool.Interpreter;
51 Interpreter lexEngine = new Interpreter(g, input); in testFirstToken()
72 Interpreter lexEngine = new Interpreter(g, input); in test2ndToken()
93 Interpreter lexEngine = new Interpreter(g, input); in testCompleteBuffer()
123 Interpreter lexEngine = new Interpreter(g, input); in testCompleteBufferAfterConsuming()
154 Interpreter lexEngine = new Interpreter(g, input); in testLookback()
/external/llvm/lib/ExecutionEngine/Interpreter/
DInterpreter.cpp26 RegisterInterp() { Interpreter::Register(); } in RegisterInterp()
35 ExecutionEngine *Interpreter::create(Module *M, std::string* ErrStr) { in create()
41 return new Interpreter(M); in create()
47 Interpreter::Interpreter(Module *M) in Interpreter() function in Interpreter
60 Interpreter::~Interpreter() { in ~Interpreter()
64 void Interpreter::runAtExitHandlers () { in runAtExitHandlers()
75 Interpreter::runFunction(Function *F, in runFunction()
DExecution.cpp257 void Interpreter::visitICmpInst(ICmpInst &I) { in visitICmpInst()
445 void Interpreter::visitFCmpInst(FCmpInst &I) { in visitFCmpInst()
521 void Interpreter::visitBinaryOperator(BinaryOperator &I) { in visitBinaryOperator()
557 void Interpreter::visitSelectInst(SelectInst &I) { in visitSelectInst()
571 void Interpreter::exitCalled(GenericValue GV) { in exitCalled()
588 void Interpreter::popStackAndReturnValueToCaller(Type *RetTy, in popStackAndReturnValueToCaller()
614 void Interpreter::visitReturnInst(ReturnInst &I) { in visitReturnInst()
628 void Interpreter::visitUnreachableInst(UnreachableInst &I) { in visitUnreachableInst()
632 void Interpreter::visitBranchInst(BranchInst &I) { in visitBranchInst()
645 void Interpreter::visitSwitchInst(SwitchInst &I) { in visitSwitchInst()
[all …]
DLLVMBuild.txt1 ;===- ./lib/ExecutionEngine/Interpreter/LLVMBuild.txt ----------*- Conf -*--===;
20 name = Interpreter
DInterpreter.h83 class Interpreter : public ExecutionEngine, public InstVisitor<Interpreter> {
97 explicit Interpreter(Module *M);
98 ~Interpreter();
DCMakeLists.txt12 Interpreter.cpp
/external/llvm/tools/bugpoint/
DExecutionDriver.cpp153 if (!Interpreter) { in initializeExecutionEnvironment()
155 Interpreter = AbstractInterpreter::createJIT(getToolName(), Message, in initializeExecutionEnvironment()
158 if (!Interpreter) { in initializeExecutionEnvironment()
160 Interpreter = AbstractInterpreter::createLLC(getToolName(), Message, in initializeExecutionEnvironment()
164 if (!Interpreter) { in initializeExecutionEnvironment()
166 Interpreter = AbstractInterpreter::createLLI(getToolName(), Message, in initializeExecutionEnvironment()
169 if (!Interpreter) { in initializeExecutionEnvironment()
175 Interpreter = AbstractInterpreter::createLLI(getToolName(), Message, in initializeExecutionEnvironment()
181 Interpreter = AbstractInterpreter::createLLC(getToolName(), Message, in initializeExecutionEnvironment()
187 Interpreter = AbstractInterpreter::createJIT(getToolName(), Message, in initializeExecutionEnvironment()
[all …]
DBugDriver.h52 AbstractInterpreter *Interpreter; // How to run the program variable
149 AbstractInterpreter *Old = Interpreter; in switchToSafeInterpreter()
150 Interpreter = (AbstractInterpreter*)SafeInterpreter; in switchToSafeInterpreter()
155 Interpreter = AI; in switchToInterpreter()
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
DInterp.java113 Interpreter lexEngine = new Interpreter(lexer, input); in main()
125 Interpreter parseEngine = new Interpreter(parser, tokens); in main()
/external/webkit/Source/JavaScriptCore/
DChangeLog-2009-06-16111 * interpreter/Interpreter.cpp:
1085 * interpreter/Interpreter.h: Remove wtf from includes so that
1099 * interpreter/Interpreter.h:
1232 * interpreter/Interpreter.h:
1333 Inherits Interpreter class from FastAllocBase because it has been
1336 * interpreter/Interpreter.h:
1654 * interpreter/Interpreter.cpp:
1655 (JSC::Interpreter::privateExecute):
1656 * interpreter/Interpreter.h:
1724 * interpreter/Interpreter.cpp:
[all …]
DChangeLog-2011-02-1645 * interpreter/Interpreter.cpp:
46 (JSC::Interpreter::privateExecute):
149 * interpreter/Interpreter.cpp:
150 (JSC::Interpreter::privateExecute):
298 * interpreter/Interpreter.cpp:
299 (JSC::Interpreter::Interpreter):
300 * interpreter/Interpreter.h:
1485 (JSC::Yarr::Interpreter::InputStream::readChecked): Use
1487 (JSC::Yarr::Interpreter::InputStream::checkInput): Remove
1489 (JSC::Yarr::Interpreter::matchAssertionEOL): Ditto.
[all …]
/external/webkit/Source/WebCore/bridge/
Dtestqtbindings.cpp100 RefPtr<Interpreter> interp = new Interpreter(global); in main()
/external/webkit/Source/JavaScriptCore/bytecode/
DSamplingTool.h93 class Interpreter; variable
193 SamplingTool(Interpreter* interpreter) in SamplingTool()
260 Interpreter* m_interpreter;
/external/llvm/lib/ExecutionEngine/
DMakefile14 PARALLEL_DIRS = Interpreter JIT MCJIT RuntimeDyld
DCMakeLists.txt9 add_subdirectory(Interpreter)
DLLVMBuild.txt19 subdirectories = Interpreter JIT MCJIT RuntimeDyld IntelJITEvents OProfileJIT
/external/webkit/Source/JavaScriptCore/interpreter/
DInterpreter.h67 class Interpreter {
72 Interpreter(JSGlobalData&);
DInterpreter.cpp92 NEVER_INLINE bool Interpreter::resolve(CallFrame* callFrame, Instruction* vPC, JSValue& exceptionVa… in resolve()
120 NEVER_INLINE bool Interpreter::resolveSkip(CallFrame* callFrame, Instruction* vPC, JSValue& excepti… in resolveSkip()
160 NEVER_INLINE bool Interpreter::resolveGlobal(CallFrame* callFrame, Instruction* vPC, JSValue& excep… in resolveGlobal()
197 NEVER_INLINE bool Interpreter::resolveGlobalDynamic(CallFrame* callFrame, Instruction* vPC, JSValue… in resolveGlobalDynamic()
274 NEVER_INLINE void Interpreter::resolveBase(CallFrame* callFrame, Instruction* vPC) in resolveBase()
288 NEVER_INLINE bool Interpreter::resolveBaseAndProperty(CallFrame* callFrame, Instruction* vPC, JSVal… in resolveBaseAndProperty()
326 ALWAYS_INLINE CallFrame* Interpreter::slideRegisterWindowForCall(CodeBlock* newCodeBlock, RegisterF… in slideRegisterWindowForCall()
381 NEVER_INLINE JSValue Interpreter::callEval(CallFrame* callFrame, RegisterFile* registerFile, Regist… in callEval()
415 Interpreter::Interpreter(JSGlobalData& globalData) in Interpreter() function in JSC::Interpreter
434 void Interpreter::dumpCallFrame(CallFrame* callFrame) in dumpCallFrame()
[all …]
DCallFrame.h34 class Interpreter; variable
73 Interpreter* interpreter() { return globalData().interpreter; } in interpreter()
/external/webkit/Source/JavaScriptCore/runtime/
DJSGlobalData.h63 class Interpreter; variable
208 Interpreter* interpreter;
/external/llvm/tools/lli/
DLLVMBuild.txt22 required_libraries = AsmParser BitReader Interpreter JIT MCJIT NativeCodeGen SelectionDAG Native
/external/llvm/tools/llvm-jitlistener/
DLLVMBuild.txt22 required_libraries = AsmParser BitReader Interpreter JIT MCJIT NativeCodeGen Object SelectionDAG Na…

1234