LLVM: Target Specific Attributes.
In LLVM system compiler, there is an option in the command command -mattr called target specific attributes. You may check each target attributes by using this command. llvm-as < /dev/null || llc -march=aemb -mattr=help note that -march=aemb is to select target architecture, in my case, aeMB. A list of attributes will appear as below. Available features for this target: barrel – Implements barrel shifter. div – Implements hardware divider. efsl – Implements extended FSL instructions. esr – Implements ESR and Read more…