Home
last modified time | relevance | path

Searched refs:jit (Results 1 - 21 of 21) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/src/Reactor/
H A DLLVMReactor.cpp72 thread_local rr::JITBuilder *jit = nullptr; member
93 x = jit->builder->CreateZExt(x, extTy); in lowerPAVG()
94 y = jit->builder->CreateZExt(y, extTy); in lowerPAVG()
98 llvm::Value *res = jit->builder->CreateAdd(x, y); in lowerPAVG()
99 res = jit->builder->CreateAdd(res, one); in lowerPAVG()
100 res = jit->builder->CreateLShr(res, one); in lowerPAVG()
101 return jit->builder->CreateTrunc(res, ty); in lowerPAVG()
107 return jit->builder->CreateSelect(jit->builder->CreateICmp(pred, x, y), x, y); in lowerPMINMAX()
113 return jit in lowerPCMP()
[all...]
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_linear.c119 struct lp_jit_linear_context jit; in lp_fs_linear_run() local
120 jit.constants = (const uint8_t (*)[4])constants; in lp_fs_linear_run()
126 jit.blend_color = in lp_fs_linear_run()
132 jit.alpha_ref_value = float_to_ubyte(state->jit_context.alpha_ref_value); in lp_fs_linear_run()
159 jit.inputs[i] = &interp[i].base; in lp_fs_linear_run()
191 jit.tex[i] = &samp[i].base; in lp_fs_linear_run()
195 jit.color0 = color + x * 4 + y * stride; in lp_fs_linear_run()
199 jit_func(&jit, 0, 0, width); // x=0, y=0 in lp_fs_linear_run()
200 jit.color0 += stride; in lp_fs_linear_run()
220 struct lp_jit_linear_context jit; in check_linear_interp_mask_a() local
[all...]
/third_party/pcre2/pcre2/
H A 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
68 %pcre2test% -C jit >NUL
69 set jit=%ERRORLEVEL% variable
305 if %jit% EQU 1 call :runsub 1 testoutjit "Test with JIT Override" -q -jit
312 if %jit% EQU 1 call :runsub 2 testoutjit "Test with JIT Override" -q -jit
317 if %jit
[all...]
H A DRunTest157 # $3 the $opt value (empty, -jit, or -dfa)
168 -jit) with=" with JIT";;
422 $sim ./pcre2test -C jit >/dev/null
423 jit=$?
424 if [ $jit -ne 0 -a "$nojit" != "yes" ] ; then
425 jitopt=-jit
427 vjs="--suppressions=$testdata/valgrind-jit.supp"
499 echo '/abc/jit,memory,framesize' >testSinput
586 -jit) with=" with JIT";;
771 if [ $jit
[all...]
H A DRunGrepTest56 $pcre2test -C jit >/dev/null
58 vjs="--suppressions=./testdata/valgrind-jit.supp"
390 (cd $srcdir; $valgrind $pcre2grep --match-limit=1000 --no-jit -M 'This is a file(.|\R)*file.' ./testdata/grepinput) >>testtrygrep 2>&1
394 (cd $srcdir; $valgrind $pcre2grep --recursion-limit=1K --no-jit -M 'This is a file(.|\R)*file.' ./testdata/grepinput) >>testtrygrep 2>&1
752 $valgrind $vjs $pcre2grep --no-jit --heap-limit=0 b testtemp1grep >>testtrygrep 2>&1
H A DRunGrepTest.bat347 (pushd %srcdir% & %pcre2grep% --match-limit=1000 --no-jit -M "This is a file(.|\R)*file." ./testdata/grepinput & popd) >>testtrygrep 2>&1
351 (pushd %srcdir% & %pcre2grep% --recursion-limit=1000 --no-jit -M "This is a file(.|\R)*file." ./testdata/grepinput & popd) >>testtrygrep 2>&1
/third_party/pcre2/pcre2/maint/
H A DManyConfigTests25 # only those groups named with '+' are run (e.g. +jit). If -dummy is given,
76 +jit) usejit=1; usejitvalgrind=1;;
192 ./pcre2test -C jit >/dev/null
193 jit=$?
225 if [ "$jit" -gt 0 ]; then
267 enable_jit=--enable-jit
353 "--disable-unicode --enable-jit --disable-shared" \
354 "--enable-jit --disable-shared" \
355 "--enable-jit --with-link-size=3 --disable-shared" \
356 "--enable-jit
[all...]
/third_party/skia/modules/skottie/src/layers/
H A DTextLayer.cpp138 const skjson::ArrayValue* jit = (*jgrp)["it"]; in parse_glyph_path() local
139 if (!jit) { in parse_glyph_path()
143 for (const skjson::ObjectValue* jshape : *jit) { in parse_glyph_path()
/third_party/json/tests/src/
H A Dunit-regression2.cpp861 auto jit = jobj.begin(); variable
864 CHECK(jit->first == ojit->first);
865 CHECK(jit->second.get<std::string>() == ojit->second.get<std::string>());
/third_party/node/deps/v8/src/utils/
H A Dallocation.cc249 void* hint, size_t alignment, JitPermission jit) in VirtualMemory()
256 jit == kMapAsJittable ? PageAllocator::kNoAccessWillJitLater in VirtualMemory()
248 VirtualMemory(v8::PageAllocator* page_allocator, size_t size, void* hint, size_t alignment, JitPermission jit) VirtualMemory() argument
H A Dallocation.h208 JitPermission jit = kNoJit);
/third_party/python/Lib/idlelib/
H A Drun.py599 jit = self.rpchandler.console.getvar("<<toggle-jit-stack-viewer>>")
600 if jit:
/third_party/pcre2/pcre2/src/
H A Dpcre2_jit_test.c102 int jit = 0; in main() local
104 pcre2_config_8(PCRE2_CONFIG_JIT, &jit); in main()
106 pcre2_config_16(PCRE2_CONFIG_JIT, &jit); in main()
108 pcre2_config_32(PCRE2_CONFIG_JIT, &jit); in main()
110 if (!jit) { in main()
H A Dpcre2test.c568 uint32_t jit; member
687 { "jit", MOD_PAT, MOD_IND, 7, PO(jit) },
903 { "jit", CONF_INT, PCRE2_CONFIG_JIT },
4337 if (pat_patctl.jit != 0) in show_memory_info()
4775 if (pat_patctl.jit != 0 && (pat_patctl.control & CTL_JITVERIFY) != 0) in show_pattern_info()
4944 if (def_patctl.jit == 0 && (def_patctl.control & CTL_JITVERIFY) != 0) in process_command()
4945 def_patctl.jit = JIT_DEFAULT; in process_command()
5003 if (pat_patctl.jit != 0) in process_command()
5005 PCRE2_JIT_COMPILE(jitrc, compiled_code, pat_patctl.jit); in process_command()
[all...]
/third_party/skia/tools/fm/
H A Dfm.cpp65 static DEFINE_bool (jit , true, "JIT SkVM?");
/third_party/skia/bench/
H A Dnanobench.cpp145 static DEFINE_bool(jit, true, "JIT SkVM?");
/third_party/skia/dm/
H A DDM.cpp96 static DEFINE_bool(jit, true, "sets gSkVMAllowJIT");
/third_party/skia/src/core/
H A DSkVM.h1056 bool jit(const std::vector<OptimizedInstruction>&,
H A DSkVM.cpp611 char buf[64] = "skvm-jit-"; in done()
3216 bool Program::jit(const std::vector<OptimizedInstruction>& instructions,
3297 // The second pass of jit() shouldn't use any register it didn't in the first pass.
4367 // and stack_hint/registers_used to feed forward into the next jit() call.
4371 if (!this->jit(instructions, &stack_hint, &registers_used, &a)) {
4381 SkAssertResult(this->jit(instructions, &stack_hint, &registers_used, &a));
4428 o->writeText("Program not JIT'd. Did you pass --jit?\n");
4432 char path[] = "/tmp/skvm-jit.XXXXXX";
/third_party/skia/tools/viewer/
H A DViewer.cpp182 static DEFINE_bool(jit, true, "JIT SkVM?");
/third_party/rust/crates/bindgen/bindgen-tests/tests/
H A Dstylo.hpp[all...]

Completed in 69 milliseconds