Home
last modified time | relevance | path

Searched refs:ShadowTy (Results 1 – 4 of 4) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp1880 if (!ShadowTy) in getCleanShadow()
1893 assert(ShadowTy); in getPoisonedShadow()
1894 if (isa<IntegerType>(ShadowTy) || isa<VectorType>(ShadowTy)) in getPoisonedShadow()
1912 Type *ShadowTy = getShadowTy(V); in getPoisonedShadow() local
1913 if (!ShadowTy) in getPoisonedShadow()
2076 assert((isa<IntegerType>(ShadowTy) || isa<VectorType>(ShadowTy) || in insertShadowCheck()
2077 isa<StructType>(ShadowTy) || isa<ArrayType>(ShadowTy)) && in insertShadowCheck()
2195 Type *ShadowTy = getShadowTy(&I); in visitLoadInst() local
2521 Type *ShadowTy = getShadowTy(V); in CreateAppToShadowCast() local
2522 if (V->getType() == ShadowTy) in CreateAppToShadowCast()
[all …]
H A DDataFlowSanitizer.cpp936 Type *ShadowTy = getShadowTy(OrigTy); in getZeroShadow() local
937 return ConstantAggregateZero::get(ShadowTy); in getZeroShadow()
979 Type *ShadowTy = DFS.getShadowTy(T); in expandFromPrimitiveShadow() local
981 if (!isa<ArrayType>(ShadowTy) && !isa<StructType>(ShadowTy)) in expandFromPrimitiveShadow()
985 return DFS.getZeroShadow(ShadowTy); in expandFromPrimitiveShadow()
989 Value *Shadow = UndefValue::get(ShadowTy); in expandFromPrimitiveShadow()
1017 Type *ShadowTy = Shadow->getType(); in collapseToPrimitiveShadow() local
1018 if (!isa<ArrayType>(ShadowTy) && !isa<StructType>(ShadowTy)) in collapseToPrimitiveShadow()
1029 Type *ShadowTy = Shadow->getType(); in collapseToPrimitiveShadow() local
1030 if (!isa<ArrayType>(ShadowTy) && !isa<StructType>(ShadowTy)) in collapseToPrimitiveShadow()
[all …]
H A DMemProfiler.cpp456 Type *ShadowTy = Type::getInt64Ty(*C); in instrumentAddress() local
457 Type *ShadowPtrTy = PointerType::get(ShadowTy, 0); in instrumentAddress()
460 Value *ShadowValue = IRB.CreateLoad(ShadowTy, ShadowAddr); in instrumentAddress()
H A DAddressSanitizer.cpp1789 Type *ShadowTy = in instrumentAddress() local
1791 Type *ShadowPtrTy = PointerType::get(ShadowTy, 0); in instrumentAddress()
1796 ShadowTy, IRB.CreateIntToPtr(ShadowPtr, ShadowPtrTy), Align(ShadowAlign)); in instrumentAddress()