reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/Instrumentation/MemorySanitizer.cpp
 4044     IRB.CreateStore(TotalVAArgSize, MS.VAArgOverflowSizeTLS);
 4053     Value *Base = IRB.CreatePointerCast(MS.VAArgTLS, MS.IntptrTy);
 4053     Value *Base = IRB.CreatePointerCast(MS.VAArgTLS, MS.IntptrTy);
 4054     Base = IRB.CreateAdd(Base, ConstantInt::get(MS.IntptrTy, ArgOffset));
 4087     VAArgSize = IRB.CreateLoad(IRB.getInt64Ty(), MS.VAArgOverflowSizeTLS);
 4088     Value *CopySize = IRB.CreateAdd(ConstantInt::get(MS.IntptrTy, 0),
 4094       VAArgTLSCopy = IRB.CreateAlloca(Type::getInt8Ty(*MS.C), CopySize);
 4095       IRB.CreateMemCpy(VAArgTLSCopy, 8, MS.VAArgTLS, 8, CopySize);
 4104       Type *RegSaveAreaPtrTy = Type::getInt64PtrTy(*MS.C);
 4106           IRB.CreateIntToPtr(IRB.CreatePtrToInt(VAListTag, MS.IntptrTy),