These flags are required for Comgr to annotate jump targets.
This is a supplement for D99955.
Details
Details
- Reviewers
foad rampitec - Commits
- rG09c9f4dc7db2: [AMDGPU][MC] Added missing isCall/isBranch flags
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
Looks like it is not possible to query values of these flags in assembler and I'm not aware of any other tools that would allow this.
The flags are utilized by MCInstrAnalysis.
Comgr uses MCInstrAnalysis functionality to identify calls and branches:
const MCInstrAnalysis MIA = ... if (MIA && MIA->isCall(Inst) ...)
I had to test the patch using Comgr.