/freebsd/contrib/llvm-project/clang/lib/Lex/ |
H A D | Preprocessor.cpp | 738 void Preprocessor::PoisonSEHIdentifiers(bool Poison) { in PoisonSEHIdentifiers() argument 741 Ident__exception_code->setIsPoisoned(Poison); in PoisonSEHIdentifiers() 742 Ident___exception_code->setIsPoisoned(Poison); in PoisonSEHIdentifiers() 743 Ident_GetExceptionCode->setIsPoisoned(Poison); in PoisonSEHIdentifiers() 744 Ident__exception_info->setIsPoisoned(Poison); in PoisonSEHIdentifiers() 745 Ident___exception_info->setIsPoisoned(Poison); in PoisonSEHIdentifiers() 746 Ident_GetExceptionInfo->setIsPoisoned(Poison); in PoisonSEHIdentifiers() 747 Ident__abnormal_termination->setIsPoisoned(Poison); in PoisonSEHIdentifiers() 748 Ident___abnormal_termination->setIsPoisoned(Poison); in PoisonSEHIdentifiers() 749 Ident_AbnormalTermination->setIsPoisoned(Poison); in PoisonSEHIdentifiers()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
H A D | asan_flags.inc | 111 "Poison (or not) the heap memory on [de]allocation. Zero value is useful " 118 "Poison (or not) the array cookie after operator new[].")
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | DebugProgramInstruction.cpp | 363 Value *Poison = PoisonValue::get(OldValue->getType()); in setKillLocation() local 364 replaceVariableLocationOp(OldValue, Poison); in setKillLocation()
|
H A D | IRBuilder.cpp | 1204 Value *Poison = PoisonValue::get(VectorType::get(V->getType(), EC)); in CreateVectorSplat() local 1205 V = CreateInsertElement(Poison, V, getInt64(0), Name + ".splatinsert"); in CreateVectorSplat()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombinePHI.cpp | 1276 Value *Poison = PoisonValue::get(FirstPhi.getType()); in SliceUpIllegalIntegerPHI() local 1278 replaceInstUsesWith(*PHI, Poison); in SliceUpIllegalIntegerPHI() 1279 return replaceInstUsesWith(FirstPhi, Poison); in SliceUpIllegalIntegerPHI()
|
H A D | InstCombineSimplifyDemanded.cpp | 1427 Constant *Poison = PoisonValue::get(EltTy); in SimplifyDemandedVectorElts() local 1431 Elts.push_back(Poison); in SimplifyDemandedVectorElts()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyLowerEmscriptenEHSjLj.cpp | 1221 Value *Poison = PoisonValue::get(LPI->getType()); in runEHOnFunction() local 1222 Value *Pair0 = IRB.CreateInsertValue(Poison, FMCI, 0, "pair0"); in runEHOnFunction()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | IntrinsicInst.h | 352 Value *Poison = PoisonValue::get(OldValue->getType()); in setKillLocation() local 353 replaceVariableLocationOp(OldValue, Poison); in setKillLocation()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | Reassociate.cpp | 700 Constant *Poison = PoisonValue::get(I->getType()); in RewriteExprTree() local 701 NewOp = BinaryOperator::Create(Instruction::BinaryOps(Opcode), Poison, in RewriteExprTree() 702 Poison, "", I->getIterator()); in RewriteExprTree()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | LoopUtils.cpp | 621 auto *Poison = PoisonValue::get(I.getType()); in deleteDeadLoop() local 631 U.set(Poison); in deleteDeadLoop()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64AsmPrinter.cpp | 71 enum PtrauthCheckMode { Default, Unchecked, Poison, Trap }; enumerator 75 clEnumValN(Poison, "poison", "poison on failure"), 1852 case PtrauthCheckMode::Poison: in emitPtrauthAuthResign()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPULowerBufferFatPointers.cpp | 1003 Value *Poison = PoisonValue::get(I->getType()); in killAndReplaceSplitInstructions() local 1004 I->replaceUsesWithIf(Poison, [&](const Use &U) -> bool { in killAndReplaceSplitInstructions()
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | DiagnosticCommonKinds.td | 453 // Poison system directories.
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
H A D | AddressSanitizer.cpp | 3186 Value *Poison = IRB.getIntN(StoreSizeInBytes * 8, Val); in copyToShadowInline() local 3188 Poison, IRB.CreateIntToPtr(Ptr, PointerType::getUnqual(Poison->getContext())), in copyToShadowInline()
|
/freebsd/contrib/llvm-project/clang/include/clang/Lex/ |
H A D | Preprocessor.h | 2289 void PoisonSEHIdentifiers(bool Poison = true); // Borland
|
/freebsd/crypto/openssl/crypto/objects/ |
H A D | objects.txt | 1629 1 3 6 1 4 1 11129 2 4 3 : ct_precert_poison : CT Precertificate Poison
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
H A D | LoopVectorize.cpp | 9149 Value *Poison = PoisonValue::get( in execute() local 9151 State.set(this, Poison, State.Instance->Part); in execute()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAGBuilder.cpp | 1577 Value *Poison = PoisonValue::get(Type::getInt1Ty(*Context)); in handleKillDebugValue() local 1580 handleDebugValue(Poison, Var, NewExpr, DbgLoc, Order, in handleKillDebugValue()
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | ScalarEvolution.cpp | 7375 const Instruction *Poison = Worklist.pop_back_val(); in isAddRecNeverPoison() local 7377 for (const Use &U : Poison->uses()) { in isAddRecNeverPoison()
|