Home
last modified time | relevance | path

Searched refs:jit (Results 1 – 25 of 163) sorted by relevance

1234567

/external/webrtc/webrtc/p2p/client/
Dautoportallocator.h33 buzz::JingleInfoTask* jit = new buzz::JingleInfoTask(client); in SetXmppClient() local
34 jit->SignalJingleInfo.connect(this, &AutoPortAllocator::OnJingleInfo); in SetXmppClient()
35 jit->Start(); in SetXmppClient()
36 jit->RefreshJingleInfoNow(); in SetXmppClient()
/external/pcre/dist2/
DRunTest.bat18 @rem 16 requires absence of jit support
19 @rem 17 requires presence of jit support
20 @rem Sheri P also added override tests for study and jit testing
67 %pcre2test% -C jit >NUL
68 set jit=%ERRORLEVEL% variable
313 if %jit% EQU 1 call :runsub 1 testoutjit "Test with JIT Override" -q -jit
318 if %jit% EQU 1 call :runsub 2 testoutjit "Test with JIT Override" -q -jit
323 if %jit% EQU 1 call :runsub 3 testoutjit "Test with JIT Override" -q -jit
332 if %jit% EQU 1 call :runsub 4 testoutjit "Test with JIT Override" -q -jit
341 if %jit% EQU 1 call :runsub 5 testoutjit "Test with JIT Override" -q -jit
[all …]
DRunTest148 -jit) with=" with JIT";;
406 $sim ./pcre2test -C jit >/dev/null
407 jit=$?
408 if [ $jit -ne 0 -a "$nojit" != "yes" ] ; then
409 jitopt=-jit
583 -jit) with=" with JIT";;
768 if [ $jit -ne 0 ] ; then
780 if [ $jit -eq 0 -o "$nojit" = "yes" ] ; then
/external/swiftshader/third_party/LLVM/utils/
DimportNLT.pl26 $mc, $gcc, $cbe, $llc, $llcbeta, $jit, $foo1, $foo2, $foo3) = split " ", $d;
72 if ($jit =~ /\d/)
75 … ('$prog', STR_TO_DATE('$day $mon $year', '\%d \%M \%Y'), 'jit', $jit)") || die DBI->errstr;
/external/llvm/test/ExecutionEngine/OrcMCJIT/
Dload-object-a.ll4 ; RUN: %lli -jit-kind=orc-mcjit -extra-module=%p/Inputs/multi-module-b.ll -extra-module=%p/Inputs/m…
10 ; RUN: %lli -jit-kind=orc-mcjit -extra-object=%t.cachedir2/multi-module-b.o -extra-object=%t.cached…
17 ; RUN: %lli -jit-kind=orc-mcjit -extra-archive=%t.cachedir3/load-object.a %s
Dsimplesttest.ll1 ; RUN: %lli -jit-kind=orc-mcjit %s > /dev/null
Dtest-return.ll1 ; RUN: %lli -jit-kind=orc-mcjit %s > /dev/null
Dsimpletest.ll1 ; RUN: %lli -jit-kind=orc-mcjit %s > /dev/null
Dcross-module-a.ll1 ; RUN: %lli -jit-kind=orc-mcjit -extra-module=%p/Inputs/cross-module-b.ll %s > /dev/null
/external/v8/src/third_party/vtune/
DBUILD.gn14 "vtune-jit.cc",
15 "vtune-jit.h",
Dv8vtune.gyp46 'vtune-jit.cc',
47 'vtune-jit.h',
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
DJITEmitter.cpp116 JITResolverState(JIT *jit) : FunctionToLazyStubMap(this), in JITResolverState() argument
118 TheJIT(jit) {} in JITResolverState()
194 explicit JITResolver(JIT &jit, JITEmitter &je) in JITResolver() argument
195 : state(&jit), nextGOTIndex(0), JE(je), TheJIT(&jit) { in JITResolver()
196 LazyResolverFn = jit.getJITInfo().getLazyResolverFunction(JITCompilerFn); in JITResolver()
366 JITEmitter(JIT &jit, JITMemoryManager *JMM, TargetMachine &TM) in JITEmitter() argument
367 : SizeEstimate(0), Resolver(jit, *this), MMI(0), CurFn(0), in JITEmitter()
368 EmittedFunctions(this), TheJIT(&jit) { in JITEmitter()
370 if (jit.getJITInfo().needsGOT()) { in JITEmitter()
376 DE.reset(new JITDwarfEmitter(jit)); in JITEmitter()
[all …]
/external/swiftshader/third_party/LLVM/examples/HowToUseJIT/
DMakefile13 LINK_COMPONENTS := jit interpreter nativecodegen
/external/swiftshader/third_party/LLVM/examples/Fibonacci/
DMakefile15 LINK_COMPONENTS := jit interpreter nativecodegen
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter5/
DMakefile13 LINK_COMPONENTS := core jit native
/external/swiftshader/third_party/LLVM/examples/ExceptionDemo/
DMakefile14 LINK_COMPONENTS := jit interpreter nativecodegen
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter4/
DMakefile13 LINK_COMPONENTS := core jit native
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/
DMakefile13 LINK_COMPONENTS := core jit native
/external/swiftshader/third_party/LLVM/examples/BrainF/
DMakefile13 LINK_COMPONENTS := jit bitwriter nativecodegen interpreter
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter7/
DMakefile14 LINK_COMPONENTS := core jit native
/external/swiftshader/third_party/LLVM/examples/ParallelJIT/
DMakefile13 LINK_COMPONENTS := jit interpreter nativecodegen
/external/swiftshader/third_party/LLVM/bindings/ocaml/executionengine/
DMakefile16 UsedComponents := executionengine jit interpreter native
/external/swiftshader/third_party/LLVM/tools/lli/
DMakefile12 LINK_COMPONENTS := mcjit jit interpreter nativecodegen bitreader asmparser selectiondag
/external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/JIT/
DMakefile12 LINK_COMPONENTS := asmparser bitreader bitwriter core jit native support
/external/llvm/test/ExecutionEngine/OrcLazy/
Dprivate_linkage.ll1 ; RUN: lli -jit-kind=orc-lazy %s

1234567