This way it can be reused easily in D128387.
Note this changes the IR slightly. Before The steps for calculating and storing the frame record info were:
- getPC
- getSP
- inttoptr
- or SP, PC
- store
Now the steps are:
- getPC
- getSP
- or SP, PC
- inttoptr
- store
Paths
| Differential D129315
[hwasan] Refactor frame record info into function ClosedPublic Authored by leonardchan on Jul 7 2022, 11:42 AM.
Details Summary This way it can be reused easily in D128387. Note this changes the IR slightly. Before The steps for calculating and storing the frame record info were:
Now the steps are:
Diff Detail
Event TimelineThis revision is now accepted and ready to land.Jul 7 2022, 12:13 PM This revision was landed with ongoing or failed builds.Jul 7 2022, 2:45 PM Closed by commit rG0f589826a301: [hwasan] Refactor frame record info into function (authored by leonardchan). · Explain Why This revision was automatically updated to reflect the committed changes.
Revision Contents
Diff 443068 llvm/lib/Transforms/Instrumentation/HWAddressSanitizer.cpp
llvm/test/Instrumentation/HWAddressSanitizer/use-after-scope.ll
|