Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp1588 if (!ShadowTy) in getCleanShadow()
1603 assert(ShadowTy); in getPoisonedShadow()
1604 if (isa<IntegerType>(ShadowTy) || isa<VectorType>(ShadowTy)) in getPoisonedShadow()
1622 Type *ShadowTy = getShadowTy(V); in getPoisonedShadow() local
1623 if (!ShadowTy) in getPoisonedShadow()
1780 assert((isa<IntegerType>(ShadowTy) || isa<VectorType>(ShadowTy) || in insertShadowCheck()
1781 isa<StructType>(ShadowTy) || isa<ArrayType>(ShadowTy)) && in insertShadowCheck()
1897 Type *ShadowTy = getShadowTy(&I); in visitLoadInst() local
2221 Type *ShadowTy = getShadowTy(V); in CreateAppToShadowCast() local
2222 if (V->getType() == ShadowTy) in CreateAppToShadowCast()
[all …]
H A DDataFlowSanitizer.cpp869 Type *ShadowTy = getShadowTy(OrigTy); in getZeroShadow() local
870 return ConstantAggregateZero::get(ShadowTy); in getZeroShadow()
912 Type *ShadowTy = DFS.getShadowTy(T); in expandFromPrimitiveShadow() local
914 if (!isa<ArrayType>(ShadowTy) && !isa<StructType>(ShadowTy)) in expandFromPrimitiveShadow()
918 return DFS.getZeroShadow(ShadowTy); in expandFromPrimitiveShadow()
922 Value *Shadow = UndefValue::get(ShadowTy); in expandFromPrimitiveShadow()
950 Type *ShadowTy = Shadow->getType(); in collapseToPrimitiveShadow() local
951 if (!isa<ArrayType>(ShadowTy) && !isa<StructType>(ShadowTy)) in collapseToPrimitiveShadow()
962 Type *ShadowTy = Shadow->getType(); in collapseToPrimitiveShadow() local
963 if (!isa<ArrayType>(ShadowTy) && !isa<StructType>(ShadowTy)) in collapseToPrimitiveShadow()
[all …]
H A DMemProfiler.cpp499 Type *ShadowTy = Type::getInt64Ty(*C); in instrumentAddress() local
500 Type *ShadowPtrTy = PointerType::get(ShadowTy, 0); in instrumentAddress()
503 Value *ShadowValue = IRB.CreateLoad(ShadowTy, ShadowAddr); in instrumentAddress()
H A DAddressSanitizer.cpp1602 Type *ShadowTy = in instrumentAddress() local
1604 Type *ShadowPtrTy = PointerType::get(ShadowTy, 0); in instrumentAddress()
1606 Value *CmpVal = Constant::getNullValue(ShadowTy); in instrumentAddress()
1608 IRB.CreateLoad(ShadowTy, IRB.CreateIntToPtr(ShadowPtr, ShadowPtrTy)); in instrumentAddress()