Home
last modified time | relevance | path

Searched refs:Poison (Results 1 – 8 of 8) sorted by relevance

/external/clang/lib/Lex/
DPreprocessor.cpp579 void Preprocessor::PoisonSEHIdentifiers(bool Poison) { in PoisonSEHIdentifiers() argument
582 Ident__exception_code->setIsPoisoned(Poison); in PoisonSEHIdentifiers()
583 Ident___exception_code->setIsPoisoned(Poison); in PoisonSEHIdentifiers()
584 Ident_GetExceptionCode->setIsPoisoned(Poison); in PoisonSEHIdentifiers()
585 Ident__exception_info->setIsPoisoned(Poison); in PoisonSEHIdentifiers()
586 Ident___exception_info->setIsPoisoned(Poison); in PoisonSEHIdentifiers()
587 Ident_GetExceptionInfo->setIsPoisoned(Poison); in PoisonSEHIdentifiers()
588 Ident__abnormal_termination->setIsPoisoned(Poison); in PoisonSEHIdentifiers()
589 Ident___abnormal_termination->setIsPoisoned(Poison); in PoisonSEHIdentifiers()
590 Ident_AbnormalTermination->setIsPoisoned(Poison); in PoisonSEHIdentifiers()
/external/conscrypt/openjdk/src/test/resources/
DREADME8 - cert-ct-poisoned.pem: Same certificate as cert.pem, but with an extra CT Poison extension
/external/swiftshader/third_party/subzero/src/
DIceASanInstrumentation.cpp323 int32_t Poison = ((CurVals[3] & 0xff) << 24) | ((CurVals[2] & 0xff) << 16) | in instrumentFuncStart() local
325 if (Poison == 0) in instrumentFuncStart()
327 auto *PoisonConst = ConstantInteger32::create(Ctx, IceType_i32, Poison); in instrumentFuncStart()
/external/compiler-rt/lib/asan/
Dasan_flags.inc91 "Poison (or not) the heap memory on [de]allocation. Zero value is useful "
98 "Poison (or not) the array cookie after operator new[].")
/external/clang/include/clang/Lex/
DPreprocessor.h1571 void PoisonSEHIdentifiers(bool Poison = true); // Borland
/external/llvm/lib/Transforms/Instrumentation/
DAddressSanitizer.cpp1944 Value *Poison = ConstantInt::get(StoreTy, DoPoison ? Val : 0); in poisonRedZones() local
1945 IRB.CreateStore(Poison, IRB.CreateIntToPtr(Ptr, StoreTy->getPointerTo())); in poisonRedZones()
/external/llvm/lib/Analysis/
DScalarEvolution.cpp4889 const Instruction *Poison = PoisonStack.pop_back_val(); in isAddRecNeverPoison() local
4891 for (auto *PoisonUser : Poison->users()) { in isAddRecNeverPoison()
/external/llvm/docs/
DLangRef.rst2918 Poison Values
2921 Poison values are similar to :ref:`undef values <undefvalues>`, however
2930 Poison value behavior is defined in terms of value *dependence*:
2961 Poison values have the same behavior as :ref:`undef values <undefvalues>`,
2975 store i32 %poison, i32* @g ; Poison value stored to memory.
2976 %poison2 = load i32, i32* @g ; Poison value loaded back from memory.