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

References

lib/Transforms/Instrumentation/MemorySanitizer.cpp
 4480     IRB.CreateStore(TotalVAArgSize, MS.VAArgOverflowSizeTLS);
 4489     Value *Base = IRB.CreatePointerCast(MS.VAArgTLS, MS.IntptrTy);
 4489     Value *Base = IRB.CreatePointerCast(MS.VAArgTLS, MS.IntptrTy);
 4490     Base = IRB.CreateAdd(Base, ConstantInt::get(MS.IntptrTy, ArgOffset));
 4524     VAArgSize = IRB.CreateLoad(IRB.getInt64Ty(), MS.VAArgOverflowSizeTLS);
 4525     Value *CopySize = IRB.CreateAdd(ConstantInt::get(MS.IntptrTy, 0),
 4531       VAArgTLSCopy = IRB.CreateAlloca(Type::getInt8Ty(*MS.C), CopySize);
 4532       IRB.CreateMemCpy(VAArgTLSCopy, 8, MS.VAArgTLS, 8, CopySize);
 4541       Type *RegSaveAreaPtrTy = Type::getInt64PtrTy(*MS.C);
 4543           IRB.CreateIntToPtr(IRB.CreatePtrToInt(VAListTag, MS.IntptrTy),