ARM-software / acle

Arm C Language Extensions (ACLE)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

link each intrinsic to the correspondent documentation in the interactive guide on developer.arm.com

fpetrogalli opened this issue · comments

We need to modify the markdown workflow of tools/gen-intrinsics-specs.py so that each intrinsics in the table produced by the script has a link to the corresponding page on developer.arm.com describing the intrinsic.

For example, an intrinsic like [__arm_]vclsq[_s8] in the MVE specs should link to https://developer.arm.com/architectures/instruction-sets/intrinsics/[__arm_]vclsq[_s8]

The format is pretty simple, all we need to do to create the link is to add the name of the intrinsic to the base url of the interactive guide:

https://developer.arm.com/architectures/instruction-sets/intrinsics/<intrinsic name>

Implemented in #93