mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-26 12:20:42 +00:00
[tsan] fix instrumentation of vector vptr updates (https://code.google.com/p/thread-sanitizer/issues/detail?id=43)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@196079 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -402,13 +402,16 @@ bool ThreadSanitizer::instrumentLoadOrStore(Instruction *I) {
|
||||
if (IsWrite && isVtableAccess(I)) {
|
||||
DEBUG(dbgs() << " VPTR : " << *I << "\n");
|
||||
Value *StoredValue = cast<StoreInst>(I)->getValueOperand();
|
||||
// StoredValue does not necessary have a pointer type.
|
||||
if (isa<IntegerType>(StoredValue->getType()))
|
||||
StoredValue = IRB.CreateIntToPtr(StoredValue, IRB.getInt8PtrTy());
|
||||
// StoredValue may be a vector type if we are storing several vptrs at once.
|
||||
// In this case, just take the first element of the vector since this is
|
||||
// enough to find vptr races.
|
||||
if (isa<VectorType>(StoredValue->getType()))
|
||||
StoredValue = IRB.CreateExtractElement(
|
||||
StoredValue, ConstantInt::get(IRB.getInt32Ty(), 0));
|
||||
// Call TsanVptrUpdate.
|
||||
IRB.CreateCall2(TsanVptrUpdate,
|
||||
IRB.CreatePointerCast(Addr, IRB.getInt8PtrTy()),
|
||||
IRB.CreatePointerCast(StoredValue, IRB.getInt8PtrTy()));
|
||||
IRB.CreateBitCast(StoredValue, IRB.getInt8PtrTy()));
|
||||
NumInstrumentedVtableWrites++;
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user