This is an archive of the discontinued LLVM Phabricator instance.

[NFC][sanitizer] Combine MSAN data in single field
ClosedPublic

Authored by vitalybuka on Oct 4 2021, 10:48 PM.

Diff Detail

Event Timeline

vitalybuka requested review of this revision.Oct 4 2021, 10:48 PM
vitalybuka created this revision.
Herald added a project: Restricted Project. · View Herald TranscriptOct 4 2021, 10:48 PM
Herald added a subscriber: Restricted Project. · View Herald Transcript
morehouse accepted this revision.Oct 5 2021, 7:01 AM

Main benefit is we can use the full 32 bit hash for the equality check, right?

Seems like a good change to me.

This revision is now accepted and ready to land.Oct 5 2021, 7:01 AM

Main benefit is we can use the full 32 bit hash for the equality check, right?

Yes, but I am looking at 64bit hash, so we can speedup eq() by avoiding scanning actual trace.

This revision was automatically updated to reflect the committed changes.