HomeSort by: relevance | last modified time | path
    Searched defs:Recover (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Instrumentation/
MemorySanitizer.h 23 MemorySanitizerOptions(int TrackOrigins, bool Recover, bool Kernel);
26 bool Recover;
HWAddressSanitizer.h 28 bool Recover = false);
34 bool Recover;
38 bool Recover = false);
AddressSanitizer.h 103 bool Recover = false,
110 bool Recover;
123 bool CompileKernel = false, bool Recover = false, bool UseGlobalGC = true,
131 bool Recover;
139 bool Recover = false,
142 bool CompileKernel = false, bool Recover = false, bool UseGlobalsGC = true,
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp 490 Recover(Options.Recover) {
519 bool Recover;
666 Recover(getOptOrDefault(ClKeepGoing, Kernel || R)) {}
782 StringRef WarningFnName = Recover ? "__msan_warning_with_origin"
987 if (Recover)
991 IRB.getInt32(Recover), "__msan_keep_going");
1228 // FIXME: Insert UnreachableInst if !MS.Recover?
1264 /* Unreachable */ !MS.Recover, MS.ColdCallWeights);
HWAddressSanitizer.cpp 105 ClRecover("hwasan-recover",
196 bool Recover = false)
198 this->Recover = ClRecover.getNumOccurrences() > 0 ? ClRecover : Recover;
286 bool Recover;
318 bool Recover = false)
319 : FunctionPass(ID), CompileKernel(CompileKernel), Recover(Recover) {
327 HWASan = std::make_unique<HWAddressSanitizer>(M, CompileKernel, Recover);
343 bool Recover;
    [all...]
AddressSanitizer.cpp 192 "asan-recover",
613 bool CompileKernel = false, bool Recover = false,
617 Recover(ClRecover.getNumOccurrences() > 0 ? ClRecover : Recover),
706 bool Recover;
736 bool Recover = false,
738 : FunctionPass(ID), CompileKernel(CompileKernel), Recover(Recover),
757 AddressSanitizer ASan(*F.getParent(), &GlobalsMD, CompileKernel, Recover,
764 bool Recover;
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
BackendUtil.cpp 286 bool Recover = CGOpts.SanitizeRecover.has(SanitizerKind::Address);
291 PM.add(createAddressSanitizerFunctionPass(/*CompileKernel*/ false, Recover,
294 /*CompileKernel*/ false, Recover, UseGlobalsGC, UseOdrIndicator,
301 /*CompileKernel*/ true, /*Recover*/ true, /*UseAfterScope*/ false));
303 /*CompileKernel*/ true, /*Recover*/ true, /*UseGlobalsGC*/ true,
312 bool Recover = CGOpts.SanitizeRecover.has(SanitizerKind::HWAddress);
314 createHWAddressSanitizerLegacyPassPass(/*CompileKernel*/ false, Recover));
320 /*CompileKernel*/ true, /*Recover*/ true));
330 bool Recover = CGOpts.SanitizeRecover.has(SanitizerKind::Memory);
332 MemorySanitizerOptions{TrackOrigins, Recover, CompileKernel}))
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaTemplate.cpp 351 // We can't recover unless there's a dependent scope specifier preceding the
608 // Recover by taking the template that we found in the object
801 // If we're allowed to diagnose this and recover, do so.
802 bool Recover = Complain && !isSFINAEContext();
805 Sema::MissingImportKind::Definition, Recover);
806 return !Recover;
1540 T = Context.IntTy; // Recover with an 'int' type.
1874 // Recover by ignoring the old declaration.
3925 // Recover as if 'typename' were specified.
4366 // FIXME: Recover from this by treating the declaration as a redeclaratio
    [all...]

Completed in 33 milliseconds