/external/clang/examples/clang-interpreter/ |
README.txt | 1 This is an example of Clang based interpreter, for executing standalone C 16 C interpreter. It is designed to demonstrate a simple but functional use of the
|
Makefile | 1 ##===- examples/clang-interpreter/Makefile -----------------*- Makefile -*-===## 12 TOOLNAME = clang-interpreter 18 LINK_COMPONENTS := jit interpreter nativecodegen bitreader bitwriter ipo \
|
/build/core/combo/arch/arm/ |
armv5te-vfp.mk | 4 # interpreter loop for Dalvik.
|
/external/llvm/test/ExecutionEngine/MCJIT/ |
2010-01-15-UndefValue.ll | 1 ; RUN: %lli_mcjit -force-interpreter=true %s > /dev/null
|
/external/llvm/tools/lli/ |
CMakeLists.txt | 2 set(LLVM_LINK_COMPONENTS mcjit jit interpreter nativecodegen bitreader asmparser irreader selectiondag native instrumentation)
|
/external/llvm/tools/llvm-jitlistener/ |
CMakeLists.txt | 11 interpreter
|
/external/valgrind/main/none/tests/ |
shell.stdout.exp | 3 Execute a script with a bad interpreter name
|
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/ |
VCardParserTests.java | 96 MockVCardInterpreter interpreter = new MockVCardInterpreter(); local 97 interpreter.addExpectedOrder(Order.START) 102 parser.addInterpreter(interpreter); 104 interpreter.verify(); 114 MockVCardInterpreter interpreter = new MockVCardInterpreter(); local 115 interpreter.addExpectedOrder(Order.START) 130 parser.addInterpreter(interpreter); 132 interpreter.verify(); 148 MockVCardInterpreter interpreter = new MockVCardInterpreter(); local 149 interpreter.addExpectedOrder(Order.START 189 MockVCardInterpreter interpreter = new MockVCardInterpreter(); local [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
idle.bat | 2 rem Start IDLE using the appropriate Python interpreter
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
idle.bat | 2 rem Start IDLE using the appropriate Python interpreter
|
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/ |
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...] |
/dalvik/vm/compiler/template/armv5te/ |
TEMPLATE_MONITOR_ENTER.S | 5 * Instead, unconditionally transition to the interpreter to resume. 17 @ Bail to interpreter - no chain [note - r4 still contains rPC]
|
TEMPLATE_MONITOR_ENTER_DEBUG.S | 4 * exception and then bail out to the interpreter. 24 @ Bail to interpreter - no chain [note - r4 still contains rPC]
|
/dalvik/vm/compiler/template/mips/ |
TEMPLATE_MONITOR_ENTER.S | 5 * Instead, unconditionally transition to the interpreter to resume. 21 # Bail to interpreter - no chain [note - rPC still contains dPC]
|
TEMPLATE_MONITOR_ENTER_DEBUG.S | 4 * exception and then bail out to the interpreter. 24 # Bail to interpreter - no chain [note - rPC still contains dPC]
|
/dalvik/vm/interp/ |
InterpDefs.h | 17 * Dalvik interpreter definitions. These are internal to the interpreter. 20 * that are common to all interpreter implementations. 30 * saved by interpreter main because it doesn't use them (but Jit'd code 39 * Portable interpreter. 44 * "mterp" interpreter. 88 * selecting which interpreter to switch to. 96 * Hide the translations and stick with the interpreter as long as one of the
|
InterpState.h | 17 * Dalvik interpreter definitions. These are internal to the interpreter. 20 * that are common to all interpreter implementations. 35 * Execution mode, e.g. interpreter vs. JIT. 76 * Interpreter break flags. When set, causes the interpreter to 105 * to an interpreter activation. 134 * 3) dvmJitToInterpPunt: use the fast interpreter to execute the next 138 * 4) dvmJitToInterpSingleStep: use the portable interpreter to execute the 163 /* States of the interpreter when serving a JIT-related request * [all...] |
/external/llvm/lib/ExecutionEngine/Interpreter/ |
CMakeLists.txt | 12 Interpreter.cpp
|
/dalvik/vm/mterp/ |
NOTES.txt | 0 Interpreter Notes 6 The interpreter is expected to use a safe-point mechanism to allow thread 10 and method returns. The interpreter must also be prepared to switch in 11 and out of the "debug" interpreter at these points. 20 (A debugger can in theory cause the interpreter to advance one instruction 21 at a time, but since that only happens in the "debug" interpreter it's not 42 stack for the portable interpreter, and in glue->retval for asm). It's not
|
/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...] |
/external/llvm/include/llvm/ExecutionEngine/ |
Interpreter.h | 1 //===-- Interpreter.h - Abstract Execution Engine Interface -----*- C++ -*-===// 10 // This file forces the interpreter to link in on certain operating systems. 26 // We must reference the interpreter in such a way that compilers will not
|
/external/protobuf/gtest/ |
configure.ac | 32 # against the interpreter detected by AM_PATH_PYTHON, and so we condition 33 # HAVE_PYTHON by requiring "python" to be in the PATH, and that interpreter's 36 PYTHON= # We *do not* allow the user to specify a python interpreter
|
/external/chromium_org/content/test/data/npapi/ |
layout_test_plugin.html | 10 // interpreter got a chance to drop references.
|
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/ |
InterpretedTemplate.java | 17 package com.google.clearsilver.jsilver.interpreter; 35 * Template implementation that uses the interpreter to render itself. 64 TemplateInterpreter interpreter = local 67 syntaxTree.apply(interpreter);
|
/external/llvm/test/Transforms/LICM/ |
2003-12-11-SinkingToPHI.ll | 1 ; RUN: opt < %s -licm | lli -force-interpreter
|