Home
last modified time | relevance | path

Searched refs:Recover (Results 1 – 21 of 21) sorted by relevance

/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_memintrinsics.cpp25 CheckAddressSized<ErrorAction::Recover, AccessType::Store>( in __hwasan_memset()
31 CheckAddressSized<ErrorAction::Recover, AccessType::Store>( in __hwasan_memcpy()
33 CheckAddressSized<ErrorAction::Recover, AccessType::Load>( in __hwasan_memcpy()
39 CheckAddressSized<ErrorAction::Recover, AccessType::Store>( in __hwasan_memmove()
41 CheckAddressSized<ErrorAction::Recover, AccessType::Load>( in __hwasan_memmove()
H A Dhwasan.cpp451 CheckAddressSized<ErrorAction::Recover, AccessType::Load>(p, sz); in __hwasan_loadN_noabort()
454 CheckAddress<ErrorAction::Recover, AccessType::Load, 0>(p); in __hwasan_load1_noabort()
457 CheckAddress<ErrorAction::Recover, AccessType::Load, 1>(p); in __hwasan_load2_noabort()
460 CheckAddress<ErrorAction::Recover, AccessType::Load, 2>(p); in __hwasan_load4_noabort()
463 CheckAddress<ErrorAction::Recover, AccessType::Load, 3>(p); in __hwasan_load8_noabort()
466 CheckAddress<ErrorAction::Recover, AccessType::Load, 4>(p); in __hwasan_load16_noabort()
492 CheckAddress<ErrorAction::Recover, AccessType::Store, 0>(p); in __hwasan_store1_noabort()
495 CheckAddress<ErrorAction::Recover, AccessType::Store, 1>(p); in __hwasan_store2_noabort()
498 CheckAddress<ErrorAction::Recover, AccessType::Store, 2>(p); in __hwasan_store4_noabort()
501 CheckAddress<ErrorAction::Recover, AccessType::Store, 3>(p); in __hwasan_store8_noabort()
[all …]
H A Dhwasan_checks.h80 enum class ErrorAction { Abort, Recover }; enumerator
90 SigTrap<0x20 * (EA == ErrorAction::Recover) + in CheckAddress()
108 SigTrap<0x20 * (EA == ErrorAction::Recover) + in CheckAddressSized()
118 SigTrap<0x20 * (EA == ErrorAction::Recover) + in CheckAddressSized()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/
H A DAddressSanitizer.h103 bool CompileKernel = false, bool Recover = false,
112 bool Recover; variable
126 bool CompileKernel = false, bool Recover = false, bool UseGlobalGC = true,
134 bool Recover; variable
142 bool CompileKernel = false, bool Recover = false,
147 bool CompileKernel = false, bool Recover = false, bool UseGlobalsGC = true,
H A DHWAddressSanitizer.h28 bool Recover = false,
35 bool Recover; variable
41 bool Recover = false,
H A DMemorySanitizer.h23 MemorySanitizerOptions(int TrackOrigins, bool Recover, bool Kernel);
26 bool Recover; member
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DHWAddressSanitizer.cpp230 this->Recover = ClRecover.getNumOccurrences() > 0 ? ClRecover : Recover; in HWAddressSanitizer()
328 bool Recover; member in __anonb30972230111::HWAddressSanitizer
363 bool Recover = false, in HWAddressSanitizerLegacyPass() argument
365 : FunctionPass(ID), CompileKernel(CompileKernel), Recover(Recover), in HWAddressSanitizerLegacyPass()
407 bool Recover; member in __anonb30972230111::HWAddressSanitizerLegacyPass
428 assert(!CompileKernel || Recover); in INITIALIZE_PASS_DEPENDENCY()
435 : CompileKernel(CompileKernel), Recover(Recover), in HWAddressSanitizerPass()
444 HWAddressSanitizer HWASan(M, CompileKernel, Recover, SSI); in run()
643 const std::string EndingStr = Recover ? "_noabort" : ""; in initializeCallbacks()
820 (Recover << HWASanAccessInfo::RecoverShift) + in instrumentMemAccessInline()
[all …]
H A DAddressSanitizer.cpp618 Recover(ClRecover.getNumOccurrences() > 0 ? ClRecover : Recover), in AddressSanitizer()
712 bool Recover; member
747 : FunctionPass(ID), CompileKernel(CompileKernel), Recover(Recover), in AddressSanitizerLegacyPass()
773 bool Recover; member in __anonf69996040211::AddressSanitizerLegacyPass
787 Recover(ClRecover.getNumOccurrences() > 0 ? ClRecover : Recover), in ModuleAddressSanitizer()
853 bool Recover; member in __anonf69996040211::ModuleAddressSanitizer
884 : ModulePass(ID), CompileKernel(CompileKernel), Recover(Recover), in ModuleAddressSanitizerLegacyPass()
908 bool Recover; member in __anonf69996040211::ModuleAddressSanitizerLegacyPass
1218 : CompileKernel(CompileKernel), Recover(Recover), in AddressSanitizerPass()
1243 : CompileKernel(CompileKernel), Recover(Recover), UseGlobalGC(UseGlobalGC), in ModuleAddressSanitizerPass()
[all …]
H A DMemorySanitizer.cpp490 Recover(Options.Recover) { in MemorySanitizer()
519 bool Recover; member in __anon158d17f70211::MemorySanitizer
666 Recover(getOptOrDefault(ClKeepGoing, Kernel || R)) {} in MemorySanitizerOptions()
782 StringRef WarningFnName = Recover ? "__msan_warning_with_origin" in createUserspaceApi()
987 if (Recover) in initializeModule()
991 IRB.getInt32(Recover), "__msan_keep_going"); in initializeModule()
1264 /* Unreachable */ !MS.Recover, MS.ColdCallWeights); in materializeOneCheck()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DBackendUtil.cpp287 bool Recover = CGOpts.SanitizeRecover.has(SanitizerKind::Address); in addAddressSanitizerPasses() local
297 /*CompileKernel*/ false, Recover, UseGlobalsGC, UseOdrIndicator, in addAddressSanitizerPasses()
316 bool Recover = CGOpts.SanitizeRecover.has(SanitizerKind::HWAddress); in addHWAddressSanitizerPasses() local
318 /*CompileKernel*/ false, Recover, in addHWAddressSanitizerPasses()
339 bool Recover = CGOpts.SanitizeRecover.has(SanitizerKind::Memory); in addGeneralOptsForMemorySanitizer() local
341 MemorySanitizerOptions{TrackOrigins, Recover, CompileKernel})); in addGeneralOptsForMemorySanitizer()
1118 bool Recover = CodeGenOpts.SanitizeRecover.has(Mask); in addSanitizers() local
1150 bool Recover = CodeGenOpts.SanitizeRecover.has(Mask); in addSanitizers() local
1163 CompileKernel, Recover, UseAfterScope, UseAfterReturn))); in addSanitizers()
1171 bool Recover = CodeGenOpts.SanitizeRecover.has(Mask); in addSanitizers() local
[all …]
/freebsd-13.1/crypto/openssl/doc/man3/
H A DEVP_PKEY_verify_recover.pod54 Recover digest originally signed using PKCS#1 and SHA256 digest:
/freebsd-13.1/crypto/openssl/doc/man1/
H A Drsautl.pod128 Recover the signed data
H A Dpkeyutl.pod305 Recover the signed data (e.g. if an RSA key is used):
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaLookup.cpp5342 MissingImportKind MIK, bool Recover) { in diagnoseMissingImport() argument
5358 Recover); in diagnoseMissingImport()
5374 MissingImportKind MIK, bool Recover) { in diagnoseMissingImport() argument
5412 if (Recover) in diagnoseMissingImport()
5442 if (Recover) in diagnoseMissingImport()
H A DSemaTemplate.cpp802 bool Recover = Complain && !isSFINAEContext(); in DiagnoseUninstantiableTemplate() local
805 Sema::MissingImportKind::Definition, Recover); in DiagnoseUninstantiableTemplate()
806 return !Recover; in DiagnoseUninstantiableTemplate()
11018 const bool Recover = true; in diagnose() local
11024 S.diagnoseMissingImport(Loc, D, Kind, Recover); in diagnose()
11026 S.diagnoseMissingImport(Loc, D, D->getLocation(), Modules, Kind, Recover); in diagnose()
/freebsd-13.1/share/misc/
H A Dscsi_modes390 {Recover Buffer Order} t1
/freebsd-13.1/contrib/llvm-project/llvm/lib/Passes/
H A DPassBuilder.cpp2153 Result.Recover = true; in parseMSanPassOptions()
/freebsd-13.1/contrib/expat/
H A DChanges703 #4 #5 #7 Recover correctly when some reallocations fail
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h2959 MissingImportKind MIK, bool Recover = true);
2962 MissingImportKind MIK, bool Recover);
/freebsd-13.1/sys/contrib/dev/acpica/
H A Dchanges.txt961 New Error Disconnect Recover Notification value. There are a number of
/freebsd-13.1/contrib/ntp/
H A DCommitLog213827 Recover eaten patches
213830 Recover eaten patches