This is an archive of the discontinued LLVM Phabricator instance.

[RISCV][ASAN] implementation of SignalContext::GetWriteFlag
AbandonedPublic

Authored by EccoTheDolphin on Sep 12 2020, 6:10 PM.

Details

Reviewers
kcc
Summary

Depends On D87575

Diff Detail

Event Timeline

EccoTheDolphin created this revision.Sep 12 2020, 6:10 PM
Herald added a project: Restricted Project. · View Herald TranscriptSep 12 2020, 6:10 PM
Herald added subscribers: Restricted Project, evandro, luismarques and 12 others. · View Herald Transcript
EccoTheDolphin requested review of this revision.Sep 12 2020, 6:10 PM

There is already an implementation of GetWriteFlag for RISC-V. It was provided by D75168, and you can find it in lines 2002-2105.

There is already an implementation of GetWriteFlag for RISC-V. It was provided by D75168, and you can find it in lines 2002-2105.

Oh! At the time this code was originally written we were not aware of this implementation was already there... I'll adjust the patchset.

A general comment: please change revision summaries to describe what the current patch is doing - this will go into the git commit description.

A general comment: please change revision summaries to describe what the current patch is doing - this will go into the git commit description.

Will do.

If you don't mind - I have another question related to how patches are handled by Phabricator.

This is the first time I use Phabricator and I'm still trying to figure out how things work. I'm a little concerned with preserving the authorship of the commit (since some commits I've published are by Alexey Baturo <space.monkey.delivers@gmail.com>). This can be seen on the "commit" tab of Phabricator UI. When the patch is downloaded with

arc patch D<whatever>

The author of the respected change is set correctly. Does anyone know if it will be the case for when the change is landed/merged in?

EccoTheDolphin abandoned this revision.Sep 20 2020, 11:33 PM
EccoTheDolphin edited the summary of this revision. (Show Details)

the relevant functionality is already implemented/