/third_party/glib/patch/ |
D | backport-gregex-use-g_debug-instead-of-g_warning-in-case-JIT-is-not-available.patch | 4 Subject: [PATCH] gregex: use g_debug instead of g_warning in case JIT is not 7 In case JIT is not available in pcre2 we printed warning about it. This 8 warning broke tests on systems which don't have JIT support in pcre2 26 - g_warning ("JIT compilation was requested with G_REGEX_OPTIMIZE, " 27 - "but JIT was unable to allocate executable memory for the " 29 + g_debug ("JIT compilation was requested with G_REGEX_OPTIMIZE, " 30 + "but JIT was unable to allocate executable memory for the " 35 - g_warning ("JIT compilation was requested with G_REGEX_OPTIMIZE, " 36 - "but JIT support is not available. Falling back to " 38 + g_debug ("JIT compilation was requested with G_REGEX_OPTIMIZE, " [all …]
|
D | backport-gregex-if-JIT-stack-limit-is-reached-fall-back-to-interpretive-matching.patch | 4 Subject: [PATCH 1/2] gregex: if JIT stack limit is reached, fall back to 32 + /* if the JIT stack limit was reached, fall back to non-JIT matching in 36 + g_info ("PCRE2 JIT stack limit reached, falling back to " 55 -/* A length of the test string in JIT stack test */ 56 +/* Lengths of test strings in JIT stack tests */ 74 + /* Test that gregex falls back to unoptimized matching when reaching the JIT 107 - g_info ("PCRE2 JIT stack limit reached, falling back to " 109 + g_debug ("PCRE2 JIT stack limit reached, falling back to "
|
D | backport-regex-Do-not-use-JIT-when-using-unsupported-match-options.patch | 4 Subject: [PATCH] glib/regex: Do not use JIT when using unsupported match 10 In fact there are some matching options that are incompatible with JIT, 14 supported by the just-in-time (JIT) compiler. If it is set, JIT 17 supported for JIT matching. 33 +/* Some match options are not supported when using JIT as stated in the 78 case 0: /* JIT enabled successfully */ 84 g_debug ("JIT compilation was requested with G_REGEX_OPTIMIZE, " 85 "but JIT was unable to allocate executable memory for the " 91 g_debug ("JIT compilation was requested with G_REGEX_OPTIMIZE, " 92 "but JIT support is not available. Falling back to " [all …]
|
D | backport-regex-Handle-JIT-errors-more-explicitly.patch | 4 Subject: [PATCH] regex: Handle JIT errors more explicitly 25 g_debug ("JIT compilation was requested with G_REGEX_OPTIMIZE, " 26 - "but request for JIT support had unexpectedly failed. " 28 + "but request for JIT support had unexpectedly failed (error %d). "
|
D | backport-gregex-set-default-max-stack-size-for-PCRE2-JIT-compiler-to-512KiB.patch | 7 There is no point to enable jit in g_regex_new, since JIT will be only 39 Subject: [PATCH 2/2] gregex: set default max stack size for PCRE2 JIT compiler 104 case 0: /* JIT enabled successfully */ 107 + /* Set min stack size for JIT to 32KiB and max to 512KiB */ 112 g_debug ("JIT compilation was requested with G_REGEX_OPTIMIZE, " 139 +/* A length of the test string in JIT stack test */ 157 + /* Test that JIT compiler has enough stack */
|
D | backport-gregex-use-G_REGEX_OPTIMIZE-flag-to-enable-JIT-compilation.patch | 4 Subject: [PATCH] gregex: use G_REGEX_OPTIMIZE flag to enable JIT compilation 6 Since we ported gregex to pcre2, the JIT compiler is now available to be 7 used. Let's undeprecate G_REGEX_OPTIMIZE flag to control whether the JIT 8 compilation is requested, since using JIT is itself an optimization. 66 + * case to request JIT compilation */ 97 + return _("matching mode is requested that was not compiled for JIT"); 130 + case 0: /* JIT enabled successfully */ 135 + g_warning ("JIT compilation was requested with G_REGEX_OPTIMIZE, " 136 + "but JIT was unable to allocate executable memory for the " 141 + g_warning ("JIT compilation was requested with G_REGEX_OPTIMIZE, " [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Sparc/ |
D | SparcTargetMachine.cpp | 75 bool Is64Bit, bool JIT) { in getEffectiveSparcCodeModel() argument 84 if (JIT) in getEffectiveSparcCodeModel() 95 Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT, bool is64bit) in SparcTargetMachine() argument 99 CM, getEffectiveRelocModel(RM), is64bit, JIT), in SparcTargetMachine() 197 CodeGenOpt::Level OL, bool JIT) in SparcV8TargetMachine() argument 198 : SparcTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, false) {} in SparcV8TargetMachine() 207 CodeGenOpt::Level OL, bool JIT) in SparcV9TargetMachine() argument 208 : SparcTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, true) {} in SparcV9TargetMachine() 217 CodeGenOpt::Level OL, bool JIT) in SparcelTargetMachine() argument 218 : SparcTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, false) {} in SparcelTargetMachine()
|
D | SparcTargetMachine.h | 31 CodeGenOpt::Level OL, bool JIT, bool is64bit); 52 CodeGenOpt::Level OL, bool JIT); 63 CodeGenOpt::Level OL, bool JIT); 73 CodeGenOpt::Level OL, bool JIT);
|
/third_party/pcre2/pcre2/testdata/ |
D | testoutput17 | 1 # This test is run only when JIT support is available. It checks JIT complete 2 # and partial modes, and things that are different with JIT. 6 # JIT does not support this pattern (callout at start of condition). 12 JIT compilation was not successful (no more memory) 14 # The following pattern cannot be compiled by JIT. 20 JIT compilation was not successful (no more memory) 26 Failed: error -46: JIT stack limit reached 33 JIT compilation was successful 35 0: abcd (JIT) 38 No match (JIT) [all …]
|
D | testinput15 | 4 # interpretive or JIT matching, so this test should not be run with JIT. The 5 # same tests are run using JIT in test 17. 7 # (2) Other tests that must not be run with JIT. 107 # The allusedtext modifier does not work with JIT, which does not maintain 182 # when JIT is used. 224 # These tests don't behave the same with JIT 232 # This test breaks the JIT stack limit
|
D | testoutput16 | 1 # This test is run only when JIT support is not available. It checks that an 3 # are different without JIT. 10 JIT support is not available in this version of PCRE2
|
D | testinput16 | 1 # This test is run only when JIT support is not available. It checks that an 3 # are different without JIT.
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/ |
D | MipsTargetMachine.cpp | 99 static Reloc::Model getEffectiveRelocModel(bool JIT, in getEffectiveRelocModel() argument 101 if (!RM.hasValue() || JIT) in getEffectiveRelocModel() 116 CodeGenOpt::Level OL, bool JIT, in MipsTargetMachine() argument 119 CPU, FS, Options, getEffectiveRelocModel(JIT, RM), in MipsTargetMachine() 145 CodeGenOpt::Level OL, bool JIT) in MipsebTargetMachine() argument 146 : MipsTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, false) {} in MipsebTargetMachine() 155 CodeGenOpt::Level OL, bool JIT) in MipselTargetMachine() argument 156 : MipsTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, true) {} in MipselTargetMachine()
|
D | MipsTargetMachine.h | 43 CodeGenOpt::Level OL, bool JIT, bool isLittle); 79 CodeGenOpt::Level OL, bool JIT); 91 CodeGenOpt::Level OL, bool JIT);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Target/ |
D | CodeGenCWrappers.h | 25 inline Optional<CodeModel::Model> unwrap(LLVMCodeModel Model, bool &JIT) { in unwrap() argument 26 JIT = false; in unwrap() 29 JIT = true; in unwrap()
|
/third_party/libwebsockets/READMEs/ |
D | README.jit-trust.md | 1 # JIT trust 3 ![JIT Trust logo](../doc-assets/jit-trust-logo.png) 29 "JIT trust". 31 ## JIT trust overview 37 ![JIT Trust overview](../doc-assets/jit-trust-overview.png) 73 ## Converting the Mozilla trust bundle for JIT trust 122 ## Format of the JIT trust blob 142 ## Enabling JIT Trust 148 ## Minimal example for JIT Trust 150 `minimal-examples/http-client/minimal-http-client-jit-trust` is built if JIT [all …]
|
/third_party/pcre2/pcre2/ |
D | RunTest.bat | 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% EQU 1 call :runsub 3 testoutjit "Test with JIT Override" -q -jit 326 if %jit% EQU 1 call :runsub 4 testoutjit "Test with JIT Override" -q -jit 335 if %jit% EQU 1 call :runsub 5 testoutjit "Test with JIT Override" -q -jit 368 if %jit% EQU 1 call :runsub 9 testoutjit "Test with JIT Override" -q -jit 381 if %jit% EQU 1 call :runsub 10 testoutjit "Test with JIT Override" -q -jit 390 if %jit% EQU 1 call :runsub 11 testoutjit "Test with JIT Override" -q -jit 403 if %jit% EQU 1 call :runsub 12 testoutjit "Test with JIT Override" -q -jit 423 call :runsub 15 testout "Non-JIT limits and other non_JIT tests" -q [all …]
|
/third_party/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_misc.cpp | 360 builder.setEngineKind(EngineKind::JIT) in lp_build_create_jit_compiler_for_module() 554 ExecutionEngine *JIT; in lp_build_create_jit_compiler_for_module() local 556 JIT = builder.create(); in lp_build_create_jit_compiler_for_module() 560 JIT->setObjectCache(objcache); in lp_build_create_jit_compiler_for_module() 566 JIT->RegisterJITEventListener(JEL); in lp_build_create_jit_compiler_for_module() 568 if (JIT) { in lp_build_create_jit_compiler_for_module() 569 *OutJIT = wrap(JIT); in lp_build_create_jit_compiler_for_module()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/ |
D | ExecutionEngineBindings.cpp | 139 builder.setEngineKind(EngineKind::JIT) in LLVMCreateJITCompilerForModule() 142 if (ExecutionEngine *JIT = builder.create()) { in LLVMCreateJITCompilerForModule() local 143 *OutJIT = wrap(JIT); in LLVMCreateJITCompilerForModule() 198 builder.setEngineKind(EngineKind::JIT) in LLVMCreateMCJITCompilerForModule() 202 bool JIT; in LLVMCreateMCJITCompilerForModule() local 203 if (Optional<CodeModel::Model> CM = unwrap(options.CodeModel, JIT)) in LLVMCreateMCJITCompilerForModule() 208 if (ExecutionEngine *JIT = builder.create()) { in LLVMCreateMCJITCompilerForModule() local 209 *OutJIT = wrap(JIT); in LLVMCreateMCJITCompilerForModule()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ |
D | AArch64TargetMachine.h | 34 CodeGenOpt::Level OL, bool JIT, bool IsLittleEndian); 65 bool JIT); 77 bool JIT);
|
D | AArch64TargetMachine.cpp | 235 bool JIT) { in getEffectiveAArch64CodeModel() argument 255 if (JIT && !TT.isOSWindows()) in getEffectiveAArch64CodeModel() 267 CodeGenOpt::Level OL, bool JIT, in AArch64TargetMachine() argument 272 getEffectiveAArch64CodeModel(TT, CM, JIT), OL), in AArch64TargetMachine() 349 Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT) in AArch64leTargetMachine() argument 350 : AArch64TargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, true) {} in AArch64leTargetMachine() 357 Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT) in AArch64beTargetMachine() argument 358 : AArch64TargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, false) {} in AArch64beTargetMachine()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/ |
D | SystemZTargetMachine.cpp | 133 bool JIT) { in getEffectiveSystemZCodeModel() argument 141 if (JIT) in getEffectiveSystemZCodeModel() 151 CodeGenOpt::Level OL, bool JIT) in SystemZTargetMachine() argument 155 getEffectiveSystemZCodeModel(CM, getEffectiveRelocModel(RM), JIT), in SystemZTargetMachine()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86TargetMachine.cpp | 159 bool JIT, in getEffectiveRelocModel() argument 165 if (JIT) in getEffectiveRelocModel() 201 bool JIT, bool Is64Bit) { in getEffectiveX86CodeModel() argument 207 if (JIT) in getEffectiveX86CodeModel() 219 CodeGenOpt::Level OL, bool JIT) in X86TargetMachine() argument 222 getEffectiveRelocModel(TT, JIT, RM), in X86TargetMachine() 223 getEffectiveX86CodeModel(CM, JIT, TT.getArch() == Triple::x86_64), in X86TargetMachine()
|
/third_party/glib/ |
D | backport-patch.log | 14 Patch6013: backport-gregex-use-G_REGEX_OPTIMIZE-flag-to-enable-JIT-compilation.patch 15 Patch6014: backport-gregex-use-g_debug-instead-of-g_warning-in-case-JIT-is-not-available.patch 31 Patch6030: backport-regex-Handle-JIT-errors-more-explicitly.patch 33 Patch6032: backport-regex-Do-not-use-JIT-when-using-unsupported-match-options.patch 65 Patch6064: backport-gregex-set-default-max-stack-size-for-PCRE2-JIT-compiler-to-512KiB.patch 66 Patch6065: backport-gregex-if-JIT-stack-limit-is-reached-fall-back-to-interpretive-matching.pa…
|
/third_party/node/deps/v8/third_party/ittapi/ |
D | README.md | 1 Intel® Instrumentation and Tracing Technology (ITT) and Just-In-Time (JIT) API 4 This ITT/JIT open source profiling API includes: 7 - Just-In-Time (JIT) Profiling API
|