Searched defs:Poison (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/Lex/
H A DPreprocessor.cpp111 // "Poison" __VA_ARGS__, which can only appear in the expansion of a macro.
272 llvm::errs() << "\n Poison Reasons: "
562 void Preprocessor::PoisonSEHIdentifiers(bool Poison) { argument
565 Ident__exception_code->setIsPoisoned(Poison);
566 Ident___exception_code->setIsPoisoned(Poison);
567 Ident_GetExceptionCode->setIsPoisoned(Poison);
568 Ident__exception_info->setIsPoisoned(Poison);
569 Ident___exception_info->setIsPoisoned(Poison);
570 Ident_GetExceptionInfo->setIsPoisoned(Poison);
571 Ident__abnormal_termination->setIsPoisoned(Poison);
[all...]
/external/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp538 bool Poison; member in struct:__anon10987::FunctionStackPoisoner::DynamicAllocaCall
544 Poison(true) {}
595 if (!AllocaCall.Poison) return;
1633 // We need to (un)poison n bytes of stack shadow. Poison as many as we can
1649 Value *Poison = ConstantInt::get(StoreTy, DoPoison ? Val : 0); local
1650 IRB.CreateStore(Poison, IRB.CreateIntToPtr(Ptr, StoreTy->getPointerTo()));
1854 // Poison the stack redzones at the entry.
2013 AllocaCall.Poison = false;

Completed in 190 milliseconds