/external/pcre/dist/testdata/ |
D | testoutput12 | 1 /-- This test is run only when JIT support is available. It checks for a 2 successful and an unsuccessful JIT compile and save and restore behaviour, 3 and a couple of things that are different with JIT. --/ 12 JIT study was successful 21 JIT study was not successful 31 JIT study was not successful 40 JIT study was successful 60 Error -27 (JIT stack limit reached) 66 0: abcd (JIT) 68 No match (JIT) [all …]
|
D | testoutput13 | 1 /-- This test is run only when JIT support is not available. It checks that an 3 are different without JIT. --/ 12 JIT support is not available in this version of PCRE
|
D | testinput12 | 1 /-- This test is run only when JIT support is available. It checks for a 2 successful and an unsuccessful JIT compile and save and restore behaviour, 3 and a couple of things that are different with JIT. --/
|
D | testinput13 | 1 /-- This test is run only when JIT support is not available. It checks that an 3 are different without JIT. --/
|
/external/llvm/include/llvm/ExecutionEngine/Orc/ |
D | IndirectionUtils.h | 129 JITCompileCallbackManager(JITLayerT &JIT, RuntimeDyld::MemoryManager &MemMgr, in JITCompileCallbackManager() argument 135 JIT(JIT), MemMgr(MemMgr) { in JITCompileCallbackManager() 162 auto H = JIT.addModuleSet(SingletonSet(std::move(M)), &MemMgr, in emitResolverBlock() 165 JIT.emitAndFinalize(H); in emitResolverBlock() 167 JIT.findSymbolIn(H, TargetT::ResolverBlockName, false); in emitResolverBlock() 189 auto H = JIT.addModuleSet(SingletonSet(std::move(M)), &MemMgr, in grow() 192 JIT.emitAndFinalize(H); in grow() 195 auto TrampolineSymbol = JIT.findSymbolIn(H, Name, false); in grow() 201 JITLayerT &JIT; variable 210 getLocalFPUpdater(JITLayerT &JIT, typename JITLayerT::ModuleSetHandleT H, in getLocalFPUpdater() argument [all …]
|
/external/llvm/examples/Kaleidoscope/Orc/fully_lazy/ |
D | README.txt | 6 Building on the lazy-irgen version of the tutorial, this version injects JIT 10 When a function definition is entered, a JIT callback is created and a stub 13 the indirect call is initialized to point at the JIT callback, and the compile 15 function and adds it to the JIT. The function pointer is updated by the JIT 17 calls to the stub will go straight to the body, not through the JIT.
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_misc.cpp | 254 builder.setEngineKind(EngineKind::JIT) in lp_build_create_mcjit_compiler_for_module() 273 ExecutionEngine *JIT; in lp_build_create_mcjit_compiler_for_module() local 275 JIT = builder.create(); in lp_build_create_mcjit_compiler_for_module() 283 JIT = builder.create(builder.selectTarget(TT, MArch, MCPU, MAttrs)); in lp_build_create_mcjit_compiler_for_module() 285 if (JIT) { in lp_build_create_mcjit_compiler_for_module() 286 *OutJIT = wrap(JIT); in lp_build_create_mcjit_compiler_for_module()
|
/external/llvm/docs/tutorial/ |
D | LangImpl4.rst | 2 Kaleidoscope: Adding JIT and Optimizer Support 15 language, and adding JIT compiler support. These additions will 159 "``TheExecutionEngine``" variable is related to the JIT, which we will 216 Adding a JIT Compiler 222 the code to an assembly file (.s) for some target, or you can JIT 226 In this section, we'll add JIT compiler support to our interpreter. The 233 In order to do this, we first declare and initialize the JIT. This is 242 // Create the JIT. This takes ownership of the module. 247 This creates an abstract "Execution Engine" which can be either a JIT 248 compiler or the LLVM interpreter. LLVM will automatically pick a JIT [all …]
|
D | OCamlLangImpl4.rst | 2 Kaleidoscope: Adding JIT and Optimizer Support 15 language, and adding JIT compiler support. These additions will 139 (* Create the JIT. *) 169 The "``the_execution_engine``" variable is related to the JIT, which we 229 Adding a JIT Compiler 235 the code to an assembly file (.s) for some target, or you can JIT 239 In this section, we'll add JIT compiler support to our interpreter. The 246 In order to do this, we first declare and initialize the JIT. This is 254 (* Create the JIT. *) 258 This creates an abstract "Execution Engine" which can be either a JIT [all …]
|
/external/pcre/dist/ |
D | RunTest.bat | 312 if %jit% EQU 1 call :runsub 1 testoutjit "Test with JIT Override" -q -s+ 318 if %jit% EQU 1 call :runsub 2 testoutjit "Test with JIT Override" -q -s+ 324 if %jit% EQU 1 call :runsub 3 testoutjit "Test with JIT Override" -q -s+ 334 if %jit% EQU 1 call :runsub 4 testoutjit "Test with JIT Override" -q -s+ 344 if %jit% EQU 1 call :runsub 5 testoutjit "Test with JIT Override" -q -s+ 354 if %jit% EQU 1 call :runsub 6 testoutjit "Test with JIT Override" -q -s+ 364 if %jit% EQU 1 call :runsub 7 testoutjit "Test with JIT Override" -q -s+ 405 echo Test 12 Skipped due to absence of JIT support. 408 call :runsub 12 testout "JIT-specific features (JIT available)" -q 413 echo Test 13 Skipped due to presence of JIT support. [all …]
|
/external/linux-tools-perf/src/tools/perf/Documentation/ |
D | jit-interface.txt | 1 perf supports a simple JIT interface to resolve symbols for dynamic code generated 2 by a JIT. 4 The JIT has to write a /tmp/perf-%d.map (%d = pid of process) file
|
/external/llvm/examples/BrainF/ |
D | BrainFDriver.cpp | 54 JIT("jit", cl::desc("Run program Just-In-Time")); variable 101 if (!JIT) { in main() 139 if (JIT) { in main()
|
/external/llvm/lib/Target/X86/ |
D | X86CompilationCallback_Win64.asm | 1 ;;===-- X86CompilationCallback_Win64.asm - Implement Win64 JIT callback ---=== 10 ;; This file implements the JIT interfaces for the X86 target.
|
/external/llvm/docs/ |
D | DebuggingJITedCode.rst | 2 Debugging JIT-ed Code With GDB 29 In order to debug code JIT-ed by LLVM, you need GDB 7.0 or newer, which is 32 better option for debugging JIT-ed code on Mac OS X. 38 The emerging MCJIT component of LLVM allows full debugging of JIT-ed code with 42 Note that lli has to be passed the ``-use-mcjit`` flag to JIT the code with 43 MCJIT instead of the old JIT.
|
D | HowToSubmitABug.rst | 151 which code generator you wish to compile the program with (e.g. LLC or the JIT) 167 can debug incorrect code generation by either LLC or the JIT, using 174 To debug the JIT: 192 debug the JIT, LLC, and CBE, using the pre-written Makefile targets, which 202 backend and the *test* file which either LLC or the JIT 224 #. If debugging the JIT, load the shared object and supply the test
|
/external/llvm/lib/ExecutionEngine/ |
D | ExecutionEngineBindings.cpp | 137 builder.setEngineKind(EngineKind::JIT) in LLVMCreateJITCompilerForModule() 140 if (ExecutionEngine *JIT = builder.create()) { in LLVMCreateJITCompilerForModule() local 141 *OutJIT = wrap(JIT); in LLVMCreateJITCompilerForModule() 185 builder.setEngineKind(EngineKind::JIT) in LLVMCreateMCJITCompilerForModule() 193 if (ExecutionEngine *JIT = builder.create()) { in LLVMCreateMCJITCompilerForModule() local 194 *OutJIT = wrap(JIT); in LLVMCreateMCJITCompilerForModule()
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/ |
D | toplevel.ml | 2 * Top-Level parsing and JIT Driver 36 (* JIT the function, returning a function pointer. *)
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/ |
D | toplevel.ml | 2 * Top-Level parsing and JIT Driver 36 (* JIT the function, returning a function pointer. *)
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/ |
D | toplevel.ml | 2 * Top-Level parsing and JIT Driver 36 (* JIT the function, returning a function pointer. *)
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/ |
D | toplevel.ml | 2 * Top-Level parsing and JIT Driver 36 (* JIT the function, returning a function pointer. *)
|
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
D | README.txt | 7 to use the MCJIT execution engine instead of the older JIT engine. 12 old JIT-based implementation, into a single file for easy comparison with
|
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
D | README.txt | 7 to use the MCJIT execution engine instead of the older JIT engine. 14 The toy-jit.cpp file contains a version of the original JIT-based source code
|
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
D | README.txt | 7 to use the MCJIT execution engine instead of the older JIT engine. 15 The toy-jit.cpp file contains a version of the original JIT-based source code
|
/external/llvm/bindings/ocaml/executionengine/ |
D | llvm_executionengine.mli | 10 (** JIT Interpreter. 12 This interface provides an OCaml API for LLVM execution engine (JIT/ 23 (** An execution engine is either a JIT compiler or an interpreter, capable of
|
/external/llvm/tools/llvm-jitlistener/ |
D | CMakeLists.txt | 1 # This tool is excluded from the CMake build if Intel JIT events are disabled.
|