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 617 Value *getShadowPtr(Value *Addr, Type *ShadowTy,
622 return IRB.CreateIntToPtr(ShadowLong, PointerType::get(ShadowTy, 0));
694 Type *ShadowTy = getShadowTy(V);
695 if (!ShadowTy)
697 return Constant::getNullValue(ShadowTy);
701 Constant *getPoisonedShadow(Type *ShadowTy) {
702 assert(ShadowTy);
703 if (isa<IntegerType>(ShadowTy) || isa<VectorType>(ShadowTy))
704 return Constant::getAllOnesValue(ShadowTy);
    [all...]
AddressSanitizer.cpp 721 Type *ShadowTy = IntegerType::get(
723 Type *ShadowPtrTy = PointerType::get(ShadowTy, 0);
725 Value *CmpVal = Constant::getNullValue(ShadowTy);
    [all...]

Completed in 42 milliseconds