HomeSort by relevance Sort by last modified time
    Searched refs:ShadowTy (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp 628 Value *getShadowPtr(Value *Addr, Type *ShadowTy,
633 return IRB.CreateIntToPtr(ShadowLong, PointerType::get(ShadowTy, 0));
705 Type *ShadowTy = getShadowTy(V);
706 if (!ShadowTy)
708 return Constant::getNullValue(ShadowTy);
712 Constant *getPoisonedShadow(Type *ShadowTy) {
713 assert(ShadowTy);
714 if (isa<IntegerType>(ShadowTy) || isa<VectorType>(ShadowTy))
715 return Constant::getAllOnesValue(ShadowTy);
    [all...]
AddressSanitizer.cpp 740 Type *ShadowTy = IntegerType::get(
742 Type *ShadowPtrTy = PointerType::get(ShadowTy, 0);
744 Value *CmpVal = Constant::getNullValue(ShadowTy);
    [all...]

Completed in 155 milliseconds