Module arm_shared

ARM C Language Extensions (ACLE)

Developer notes

Below is a list of built-in targets that are representative of the different ARM architectures; the list includes the target_features they possess.

Section 10.1 of ACLE says:

From that info and from looking at how LLVM features work (using custom targets) we can identify features that are subsets of others:

Legend: a < b reads as "a is a subset of b"; this means that if b is enabled then a is enabled as well.

NOTE: Section 5.4.7 of ACLE says:

This does not match how LLVM uses the '+dsp' feature; this feature is not set for v5te targets so we have to work around this difference.

References

Modules