Lines Matching refs:Recover
407 explicit AddressSanitizer(bool CompileKernel = false, bool Recover = false) in AddressSanitizer()
409 Recover(Recover || ClRecover) { in AddressSanitizer()
485 bool Recover; member
510 bool Recover = false) in AddressSanitizerModule() argument
512 Recover(Recover || ClRecover) {} in AddressSanitizerModule()
530 bool Recover; member in __anone3a95e720111::AddressSanitizerModule
763 bool Recover) { in INITIALIZE_PASS_DEPENDENCY()
764 assert(!CompileKernel || Recover); in INITIALIZE_PASS_DEPENDENCY()
765 return new AddressSanitizer(CompileKernel, Recover); in INITIALIZE_PASS_DEPENDENCY()
775 bool Recover) { in createAddressSanitizerModulePass() argument
776 assert(!CompileKernel || Recover); in createAddressSanitizerModulePass()
777 return new AddressSanitizerModule(CompileKernel, Recover); in createAddressSanitizerModulePass()
1106 if (Recover) { in instrumentAddress()
1116 CrashTerm = SplitBlockAndInsertIfThen(Cmp, InsertBefore, !Recover); in instrumentAddress()
1458 const std::string EndingStr = Recover ? "_noabort" : ""; in initializeCallbacks()